CartDemoPlugin.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 #ifndef _GAZEBO_CART_DEMO_PLUGIN_HH_
18 #define _GAZEBO_CART_DEMO_PLUGIN_HH_
19 
20 #include "gazebo/common/Plugin.hh"
21 #include "gazebo/physics/physics.hh"
23 #include "gazebo/util/system.hh"
24 
25 #define NUM_JOINTS 3
26 
27 namespace gazebo
28 {
35  {
36  public: CartDemoPlugin();
37  public: virtual void Load(physics::ModelPtr _model, sdf::ElementPtr _sdf);
38  public: virtual void Init();
39 
40  private: void OnUpdate();
41 
42  private: transport::NodePtr node;
43 
44  private: event::ConnectionPtr updateConnection;
45 
46  private: physics::ModelPtr model;
47 
48  private: physics::JointPtr joints[NUM_JOINTS];
49  private: common::PID jointPIDs[NUM_JOINTS];
50  private: double jointPositions[NUM_JOINTS];
51  private: double jointVelocities[NUM_JOINTS];
52  private: double jointMaxEfforts[NUM_JOINTS];
53 
54  private: common::Time prevUpdateTime;
55  };
56 }
57 #endif
This plugin drives a four wheeled cart model forward and back by applying a small wheel torque...
Definition: CartDemoPlugin.hh:34
Forward declarations for transport.
boost::shared_ptr< Joint > JointPtr
Definition: PhysicsTypes.hh:117
boost::shared_ptr< Node > NodePtr
Definition: TransportTypes.hh:57
boost::shared_ptr< Connection > ConnectionPtr
Definition: CommonTypes.hh:153
#define NUM_JOINTS
Definition: CartDemoPlugin.hh:25
boost::shared_ptr< Model > ModelPtr
Definition: PhysicsTypes.hh:93
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
A plugin with access to physics::Model.
Definition: Plugin.hh:245
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:59
Generic PID controller class.
Definition: PID.hh:36
A Time class, can be used to hold wall- or sim-time.
Definition: Time.hh:44