00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include <physics/ODESliderJoint>
00026 #include <physics/ODEConstraintGroup>
00027
00028 using physics::ODESliderJoint;
00029 using physics::ODEConstraintGroup;
00030
00031
00032 ODESliderJoint::ODESliderJoint()
00033 {
00034 }
00035
00036 ODESliderJoint::~ODESliderJoint()
00037 {
00038 }
00039
00040 void ODESliderJoint::onConstraintGroupAdd(ref<ConstraintGroup> g)
00041 {
00042 Assert(g != 0);
00043 Assert(instanceof(*g,ODEConstraintGroup));
00044 group = g;
00045
00046 ref<ODEConstraintGroup> ogroup = narrow_ref<ODEConstraintGroup>(group);
00047 setJointID( dJointCreateSlider(ogroup->getWorldID(), ogroup->getJointGroupID()) );
00048 }
00049
00050
00051
00052 void ODESliderJoint::setAxis(const Vector3& v)
00053 {
00054 checkAddedAndAttached();
00055
00056 Vector3 g(v);
00057 body1->getOrientation().rotatePoint(g);
00058 dJointSetSliderAxis(jointID, g.x, g.y, g.z);
00059 }
00060
00061 base::Vector3 ODESliderJoint::getAxis() const
00062 {
00063 checkAddedAndAttached();
00064 dVector3 gaxis;
00065 dJointGetSliderAxis(jointID, gaxis);
00066
00067 Vector3 l(gaxis[0], gaxis[1], gaxis[2]);
00068 body1->getOrientation().invert().rotatePoint(l);
00069 return l;
00070 }
00071
00072 Real ODESliderJoint::getPosition() const
00073 {
00074 checkAddedAndAttached();
00075 return dJointGetSliderPosition(jointID);
00076 }
00077
00078 Real ODESliderJoint::getPositionRate() const
00079 {
00080 checkAddedAndAttached();
00081 return dJointGetSliderPositionRate(jointID);
00082 }
00083
00084
00085 void ODESliderJoint::setHighStop(Real pos)
00086 {
00087 checkAddedAndAttached();
00088 dJointSetSliderParam(jointID, dParamHiStop, pos);
00089 }
00090
00091 void ODESliderJoint::setLowStop(Real pos)
00092 {
00093 checkAddedAndAttached();
00094 dJointSetSliderParam(jointID, dParamLoStop, pos);
00095 }
00096
00097 void ODESliderJoint::setStopRestitution(Real r)
00098 {
00099 checkAddedAndAttached();
00100 Assertm( 0 <= r && r <= 1, "restitution within range");
00101 dJointSetSliderParam(jointID, dParamBounce, r);
00102 }
00103
00104
00105 void ODESliderJoint::setParameter(const String& name, Real value, Int dof)
00106 {
00107 Assert(dof==1);
00108 if (name == "CFM")
00109 dJointSetSliderParam(jointID, dParamCFM, value);
00110 else if (name == "StopERP")
00111 dJointSetSliderParam(jointID, dParamStopERP, value);
00112 else if (name == "StopCFM")
00113 dJointSetSliderParam(jointID, dParamStopCFM, value);
00114 else if (name == "FudgeFactor")
00115 dJointSetSliderParam(jointID, dParamFudgeFactor, value);
00116 else
00117 SliderJoint::setParameter(name,value, dof);
00118 }
00119
00120
00121
00122
00123
00124 bool ODESliderJoint::hasMotor(Int dof) const
00125 {
00126 return (dof==1);
00127 }
00128
00129 void ODESliderJoint::setMotorTargetVel(Int dof, Real vel)
00130 {
00131 Assert(dof==1);
00132 dJointSetSliderParam(jointID, dParamVel, vel);
00133 }
00134
00135 void ODESliderJoint::setMotorMaxForce(Int dof, Real force)
00136 {
00137 Assert(dof==1);
00138 dJointSetSliderParam(jointID, dParamFMax, force);
00139 }