159 lines
4.3 KiB
C++
159 lines
4.3 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 slider or primastic joint
|
|
* Author: Nate Koenig, Andrew Howard
|
|
* Date: 21 May 2003
|
|
*/
|
|
#include <boost/bind.hpp>
|
|
|
|
#include "gazebo/gazebo_config.h"
|
|
#include "gazebo/common/Console.hh"
|
|
|
|
#include "gazebo/physics/Model.hh"
|
|
#include "gazebo/physics/Link.hh"
|
|
#include "gazebo/physics/ode/ODESliderJoint.hh"
|
|
|
|
using namespace gazebo;
|
|
using namespace physics;
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
ODESliderJoint::ODESliderJoint(dWorldID _worldId, BasePtr _parent)
|
|
: SliderJoint<ODEJoint>(_parent)
|
|
{
|
|
this->jointId = dJointCreateSlider(_worldId, NULL);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
ODESliderJoint::~ODESliderJoint()
|
|
{
|
|
if (this->applyDamping)
|
|
physics::Joint::DisconnectJointUpdate(this->applyDamping);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::Load(sdf::ElementPtr _sdf)
|
|
{
|
|
SliderJoint<ODEJoint>::Load(_sdf);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
math::Vector3 ODESliderJoint::GetGlobalAxis(unsigned int /*_index*/) const
|
|
{
|
|
dVector3 result;
|
|
if (this->jointId)
|
|
dJointGetSliderAxis(this->jointId, result);
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
|
|
return math::Vector3(result[0], result[1], result[2]);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
math::Angle ODESliderJoint::GetAngleImpl(unsigned int /*_index*/) const
|
|
{
|
|
math::Angle result;
|
|
if (this->jointId)
|
|
result = dJointGetSliderPosition(this->jointId);
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
|
|
return result;
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
double ODESliderJoint::GetVelocity(unsigned int /*index*/) const
|
|
{
|
|
double result = 0;
|
|
if (this->jointId)
|
|
result = dJointGetSliderPositionRate(this->jointId);
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
|
|
return result;
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::SetVelocity(unsigned int _index, double _angle)
|
|
{
|
|
this->SetVelocityMaximal(_index, _angle);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::SetAxis(unsigned int /*index*/, const math::Vector3 &_axis)
|
|
{
|
|
if (this->childLink)
|
|
this->childLink->SetEnabled(true);
|
|
if (this->parentLink)
|
|
this->parentLink->SetEnabled(true);
|
|
|
|
// ODE needs global axis
|
|
math::Quaternion axisFrame = this->GetAxisFrame(0);
|
|
math::Vector3 globalAxis = axisFrame.RotateVector(_axis);
|
|
|
|
if (this->jointId)
|
|
{
|
|
dJointSetSliderAxis(this->jointId,
|
|
globalAxis.x, globalAxis.y, globalAxis.z);
|
|
}
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::SetForceImpl(unsigned int /*_index*/, double _effort)
|
|
{
|
|
if (this->jointId)
|
|
dJointAddSliderForce(this->jointId, _effort);
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::SetParam(unsigned int _parameter, double _value)
|
|
{
|
|
ODEJoint::SetParam(_parameter, _value);
|
|
dJointSetSliderParam(this->jointId, _parameter, _value);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
double ODESliderJoint::GetParam(unsigned int _parameter) const
|
|
{
|
|
double result = 0;
|
|
|
|
if (this->jointId)
|
|
result = dJointGetSliderParam(this->jointId, _parameter);
|
|
else
|
|
gzerr << "ODE Joint ID is invalid\n";
|
|
|
|
return result;
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
math::Vector3 ODESliderJoint::GetAnchor(unsigned int /*_index*/) const
|
|
{
|
|
gzlog << "ODESliderJoint::GetAnchor not implemented.\n";
|
|
return math::Vector3(0.0, 0.0, 0.0);
|
|
}
|
|
|
|
//////////////////////////////////////////////////
|
|
void ODESliderJoint::SetAnchor(unsigned int /*_index*/,
|
|
const math::Vector3 &/*_anchor*/)
|
|
{
|
|
gzlog << "ODESliderJoint::SetAnchor not implemented.\n";
|
|
}
|