pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/physics/dart/DARTHingeJoint.cc

164 lines
4.6 KiB
C++

/*
* Copyright (C) 2014 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.
*
*/
#include <boost/bind.hpp>
#include "gazebo/gazebo_config.h"
#include "gazebo/common/Console.hh"
#include "gazebo/physics/Link.hh"
#include "gazebo/physics/dart/DARTJointPrivate.hh"
#include "gazebo/physics/dart/DARTHingeJoint.hh"
using namespace gazebo;
using namespace physics;
//////////////////////////////////////////////////
DARTHingeJoint::DARTHingeJoint(BasePtr _parent)
: HingeJoint<DARTJoint>(_parent)
{
this->dataPtr->dtJoint = new dart::dynamics::RevoluteJoint();
}
//////////////////////////////////////////////////
DARTHingeJoint::~DARTHingeJoint()
{
// We don't need to delete dtJoint because the world will delete it
}
//////////////////////////////////////////////////
void DARTHingeJoint::Load(sdf::ElementPtr _sdf)
{
HingeJoint<DARTJoint>::Load(_sdf);
}
//////////////////////////////////////////////////
void DARTHingeJoint::Init()
{
HingeJoint<DARTJoint>::Init();
}
//////////////////////////////////////////////////
math::Vector3 DARTHingeJoint::GetAnchor(unsigned int /*index*/) const
{
Eigen::Isometry3d T = this->dataPtr->dtChildBodyNode->getTransform() *
this->dataPtr->dtJoint->getTransformFromChildBodyNode();
Eigen::Vector3d worldOrigin = T.translation();
return DARTTypes::ConvVec3(worldOrigin);
}
//////////////////////////////////////////////////
math::Vector3 DARTHingeJoint::GetGlobalAxis(unsigned int _index) const
{
Eigen::Vector3d globalAxis = Eigen::Vector3d::UnitX();
if (_index == 0)
{
dart::dynamics::RevoluteJoint *dtRevoluteJoint =
reinterpret_cast<dart::dynamics::RevoluteJoint *>(
this->dataPtr->dtJoint);
Eigen::Isometry3d T = this->dataPtr->dtChildBodyNode->getTransform() *
this->dataPtr->dtJoint->getTransformFromChildBodyNode();
Eigen::Vector3d axis = dtRevoluteJoint->getAxis();
globalAxis = T.linear() * axis;
}
else
{
gzerr << "Invalid index[" << _index << "]\n";
}
return DARTTypes::ConvVec3(globalAxis);
}
//////////////////////////////////////////////////
void DARTHingeJoint::SetAxis(unsigned int _index, const math::Vector3& _axis)
{
if (_index == 0)
{
dart::dynamics::RevoluteJoint *dtRevoluteJoint =
reinterpret_cast<dart::dynamics::RevoluteJoint *>(
this->dataPtr->dtJoint);
Eigen::Vector3d dartAxis = DARTTypes::ConvVec3(
this->GetAxisFrameOffset(0).RotateVector(_axis));
Eigen::Isometry3d dartTransfJointLeftToParentLink
= this->dataPtr->dtJoint->getTransformFromParentBodyNode().inverse();
dartAxis = dartTransfJointLeftToParentLink.linear() * dartAxis;
//--------------------------------------------------------------------------
dtRevoluteJoint->setAxis(dartAxis);
}
else
{
gzerr << "Invalid index[" << _index << "]\n";
}
}
//////////////////////////////////////////////////
math::Angle DARTHingeJoint::GetAngleImpl(unsigned int _index) const
{
math::Angle result;
if (_index == 0)
{
double radianAngle = this->dataPtr->dtJoint->getPosition(0);
result.SetFromRadian(radianAngle);
}
else
{
gzerr << "Invalid index[" << _index << "]\n";
}
return result;
}
//////////////////////////////////////////////////
void DARTHingeJoint::SetVelocity(unsigned int _index, double _vel)
{
if (_index == 0)
{
this->dataPtr->dtJoint->setVelocity(0, _vel);
this->dataPtr->dtJoint->getSkeleton()->computeForwardKinematics(
false, true, false);
}
else
gzerr << "Invalid index[" << _index << "]\n";
}
//////////////////////////////////////////////////
double DARTHingeJoint::GetVelocity(unsigned int _index) const
{
double result = 0.0;
if (_index == 0)
result = this->dataPtr->dtJoint->getVelocity(0);
else
gzerr << "Invalid index[" << _index << "]\n";
return result;
}
//////////////////////////////////////////////////
void DARTHingeJoint::SetForceImpl(unsigned int _index, double _effort)
{
if (_index == 0)
this->dataPtr->dtJoint->setForce(0, _effort);
else
gzerr << "Invalid index[" << _index << "]\n";
}