69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
|
/*
|
||
|
* Copyright (C) 2012 Open Source Robotics Foundation
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*
|
||
|
*/
|
||
|
/*
|
||
|
* Desc: a test for setting joint angles
|
||
|
* Author: John Hsu
|
||
|
*/
|
||
|
#ifndef GAZEBO_JOINT_TRAJECTORY_PLUGIN_HH
|
||
|
#define GAZEBO_JOINT_TRAJECTORY_PLUGIN_HH
|
||
|
|
||
|
#include <boost/thread.hpp>
|
||
|
#include <boost/thread/mutex.hpp>
|
||
|
|
||
|
#include "gazebo/physics/physics.hh"
|
||
|
#include "gazebo/transport/TransportTypes.hh"
|
||
|
#include "gazebo/common/Time.hh"
|
||
|
#include "gazebo/common/Plugin.hh"
|
||
|
#include "gazebo/common/Events.hh"
|
||
|
#include "gazebo/util/system.hh"
|
||
|
|
||
|
namespace gazebo
|
||
|
{
|
||
|
class GAZEBO_VISIBLE JointTrajectoryPlugin : public ModelPlugin
|
||
|
{
|
||
|
/// \brief Constructor
|
||
|
public: JointTrajectoryPlugin();
|
||
|
|
||
|
/// \brief Destructor
|
||
|
public: virtual ~JointTrajectoryPlugin();
|
||
|
|
||
|
/// \brief Load the controller
|
||
|
public: void Load(physics::ModelPtr _parent, sdf::ElementPtr _sdf);
|
||
|
|
||
|
/// \brief Update the controller
|
||
|
/// \param[in] _info Update information provided by the server.
|
||
|
private: void UpdateStates(const common::UpdateInfo &_info);
|
||
|
|
||
|
|
||
|
// This function is commented out because it is not used.
|
||
|
// private: void FixLink(physics::LinkPtr link);
|
||
|
|
||
|
// This function is commented out because it is not used.
|
||
|
// private: void UnfixLink();
|
||
|
|
||
|
private: physics::WorldPtr world;
|
||
|
private: physics::ModelPtr model;
|
||
|
private: physics::JointPtr joint;
|
||
|
|
||
|
private: boost::mutex update_mutex;
|
||
|
|
||
|
// Pointer to the update event connection
|
||
|
private: event::ConnectionPtr updateConnection;
|
||
|
};
|
||
|
}
|
||
|
#endif
|