2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCPHYSICS_JOINT_H__
|
|
|
|
#define __CCPHYSICS_JOINT_H__
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include "base/ccConfig.h"
|
2022-07-16 10:43:05 +08:00
|
|
|
#if AX_USE_PHYSICS
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# include "base/CCRef.h"
|
|
|
|
# include "math/CCMath.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
struct cpConstraint;
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
class Node;
|
|
|
|
class PhysicsBody;
|
|
|
|
class PhysicsWorld;
|
|
|
|
|
|
|
|
class WriteCache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup physics
|
|
|
|
* @{
|
|
|
|
* @addtogroup physics_2d
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief An PhysicsJoint object connects two physics bodies together.
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
typedef std::function<void()> DelayTask;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
protected:
|
|
|
|
PhysicsJoint();
|
|
|
|
virtual ~PhysicsJoint() = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**Get physics body a connected to this joint.*/
|
|
|
|
PhysicsBody* getBodyA() const { return _bodyA; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**Get physics body b connected to this joint.*/
|
|
|
|
PhysicsBody* getBodyB() const { return _bodyB; }
|
|
|
|
|
|
|
|
/**Get the physics world.*/
|
|
|
|
PhysicsWorld* getWorld() const { return _world; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Get this joint's tag.
|
|
|
|
*
|
|
|
|
* @return An integer number.
|
|
|
|
*/
|
|
|
|
int getTag() const { return _tag; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Set this joint's tag.
|
|
|
|
*
|
|
|
|
* @param tag An integer number that identifies a PhysicsJoint.
|
|
|
|
*/
|
|
|
|
void setTag(int tag) { _tag = tag; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Determines if the joint is enable. */
|
|
|
|
bool isEnabled() const { return _enable; }
|
|
|
|
|
|
|
|
/** Enable/Disable the joint. */
|
|
|
|
void setEnable(bool enable);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Determines if the collision is enable. */
|
|
|
|
bool isCollisionEnabled() const { return _collisionEnable; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Enable/disable the collision between two bodies. */
|
|
|
|
void setCollisionEnable(bool enable);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Remove the joint from the world. */
|
|
|
|
void removeFormWorld();
|
|
|
|
|
|
|
|
/** Set the max force between two bodies. */
|
|
|
|
void setMaxForce(float force);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the max force setting. */
|
|
|
|
float getMaxForce() const { return _maxForce; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init(PhysicsBody* a, PhysicsBody* b);
|
|
|
|
|
|
|
|
bool initJoint();
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void delay(const DelayTask& task) { _delayTasks.push_back(task); }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
void flushDelayTasks();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Create constraints for this type joint */
|
|
|
|
virtual bool createConstraints() { return false; }
|
|
|
|
|
|
|
|
std::vector<cpConstraint*> _cpConstraints;
|
|
|
|
std::vector<DelayTask> _delayTasks;
|
|
|
|
PhysicsBody* _bodyA;
|
|
|
|
PhysicsBody* _bodyB;
|
|
|
|
PhysicsWorld* _world;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
WriteCache* _writeCache = nullptr;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
bool _enable;
|
|
|
|
bool _collisionEnable;
|
|
|
|
bool _destroyMark;
|
|
|
|
int _tag;
|
|
|
|
float _maxForce;
|
|
|
|
|
|
|
|
bool _initDirty;
|
|
|
|
|
|
|
|
friend class PhysicsBody;
|
|
|
|
friend class PhysicsWorld;
|
|
|
|
friend class PhysicsDebugDraw;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* @brief A fixed joint fuses the two bodies together at a reference point. Fixed joints are useful for creating complex
|
|
|
|
* shapes that can be broken apart later.
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointFixed : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a fixed joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr It's the pivot position.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointFixed* construct(PhysicsBody* a, PhysicsBody* b, const Vec2& anchr);
|
|
|
|
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointFixed() {}
|
|
|
|
virtual ~PhysicsJointFixed() {}
|
|
|
|
|
|
|
|
Vec2 _anchr;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* @brief A limit joint imposes a maximum distance between the two bodies, as if they were connected by a rope.
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointLimit : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a limit joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr1 Anchr1 is the anchor point on body a.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointLimit* construct(PhysicsBody* a, PhysicsBody* b, const Vec2& anchr1, const Vec2& anchr2);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Create a limit joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr1 Anchr1 is the anchor point on body a.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@param min Define the allowed min distance of the anchor points.
|
|
|
|
@param max Define the allowed max distance of the anchor points.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
static PhysicsJointLimit* construct(PhysicsBody* a,
|
|
|
|
PhysicsBody* b,
|
|
|
|
const Vec2& anchr1,
|
|
|
|
const Vec2& anchr2,
|
|
|
|
float min,
|
|
|
|
float max);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Get the anchor point on body a.*/
|
|
|
|
Vec2 getAnchr1() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the anchor point on body a.*/
|
|
|
|
void setAnchr1(const Vec2& anchr1);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the anchor point on body b.*/
|
|
|
|
Vec2 getAnchr2() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the anchor point on body b.*/
|
|
|
|
void setAnchr2(const Vec2& anchr2);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the allowed min distance of the anchor points.*/
|
|
|
|
float getMin() const;
|
|
|
|
/** Set the min distance of the anchor points.*/
|
|
|
|
void setMin(float min);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the allowed max distance of the anchor points.*/
|
|
|
|
float getMax() const;
|
|
|
|
/** Set the max distance of the anchor points.*/
|
|
|
|
void setMax(float max);
|
|
|
|
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointLimit() {}
|
|
|
|
virtual ~PhysicsJointLimit() {}
|
|
|
|
|
|
|
|
Vec2 _anchr1;
|
|
|
|
Vec2 _anchr2;
|
|
|
|
float _min;
|
|
|
|
float _max;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* @brief A pin joint allows the two bodies to independently rotate around the anchor point as if pinned together.
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointPin : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a pin joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param pivot It's the pivot position.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointPin* construct(PhysicsBody* a, PhysicsBody* b, const Vec2& pivot);
|
|
|
|
|
|
|
|
/** Create a pin joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr1 Anchr1 is the anchor point on body a.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointPin* construct(PhysicsBody* a, PhysicsBody* b, const Vec2& anchr1, const Vec2& anchr2);
|
|
|
|
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointPin() {}
|
|
|
|
virtual ~PhysicsJointPin() {}
|
|
|
|
|
|
|
|
bool _useSpecificAnchr;
|
|
|
|
Vec2 _anchr1;
|
|
|
|
Vec2 _anchr2;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Set the fixed distance with two bodies */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointDistance : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a fixed distance joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr1 Anchr1 is the anchor point on body a.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointDistance* construct(PhysicsBody* a, PhysicsBody* b, const Vec2& anchr1, const Vec2& anchr2);
|
|
|
|
|
|
|
|
/** Get the distance of the anchor points.*/
|
|
|
|
float getDistance() const;
|
|
|
|
/** Set the distance of the anchor points.*/
|
|
|
|
void setDistance(float distance);
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointDistance() {}
|
|
|
|
virtual ~PhysicsJointDistance() {}
|
|
|
|
|
|
|
|
Vec2 _anchr1;
|
|
|
|
Vec2 _anchr2;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Connecting two physics bodies together with a spring. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointSpring : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a fixed distance joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param anchr1 Anchr1 is the anchor point on body a.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@param stiffness It's the spring constant.
|
|
|
|
@param damping It's how soft to make the damping of the spring.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
static PhysicsJointSpring* construct(PhysicsBody* a,
|
|
|
|
PhysicsBody* b,
|
|
|
|
const Vec2& anchr1,
|
|
|
|
const Vec2& anchr2,
|
|
|
|
float stiffness,
|
|
|
|
float damping);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Get the anchor point on body a.*/
|
|
|
|
Vec2 getAnchr1() const;
|
|
|
|
|
|
|
|
/** Set the anchor point on body a.*/
|
|
|
|
void setAnchr1(const Vec2& anchr1);
|
|
|
|
|
|
|
|
/** Get the anchor point on body b.*/
|
|
|
|
Vec2 getAnchr2() const;
|
|
|
|
|
|
|
|
/** Set the anchor point on body b.*/
|
|
|
|
void setAnchr2(const Vec2& anchr2);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the distance of the anchor points.*/
|
|
|
|
float getRestLength() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the distance of the anchor points.*/
|
|
|
|
void setRestLength(float restLength);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the spring constant.*/
|
|
|
|
float getStiffness() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the spring constant.*/
|
|
|
|
void setStiffness(float stiffness);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the spring soft constant.*/
|
|
|
|
float getDamping() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the spring soft constant.*/
|
|
|
|
void setDamping(float damping);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointSpring() {}
|
|
|
|
virtual ~PhysicsJointSpring() {}
|
|
|
|
|
|
|
|
Vec2 _anchr1;
|
|
|
|
Vec2 _anchr2;
|
|
|
|
float _stiffness;
|
|
|
|
float _damping;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Attach body a to a line, and attach body b to a dot. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointGroove : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a groove joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param grooveA The line begin position.
|
|
|
|
@param grooveB The line end position.
|
|
|
|
@param anchr2 Anchr2 is the anchor point on body b.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
static PhysicsJointGroove* construct(PhysicsBody* a,
|
|
|
|
PhysicsBody* b,
|
|
|
|
const Vec2& grooveA,
|
|
|
|
const Vec2& grooveB,
|
|
|
|
const Vec2& anchr2);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/** Get the line begin position*/
|
|
|
|
Vec2 getGrooveA() const;
|
|
|
|
|
|
|
|
/** Set the line begin position*/
|
|
|
|
void setGrooveA(const Vec2& grooveA);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the line end position*/
|
|
|
|
Vec2 getGrooveB() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the line end position*/
|
|
|
|
void setGrooveB(const Vec2& grooveB);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the anchor point on body b.*/
|
|
|
|
Vec2 getAnchr2() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the anchor point on body b.*/
|
|
|
|
void setAnchr2(const Vec2& anchr2);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointGroove() {}
|
|
|
|
virtual ~PhysicsJointGroove() {}
|
|
|
|
|
|
|
|
Vec2 _grooveA;
|
|
|
|
Vec2 _grooveB;
|
|
|
|
Vec2 _anchr2;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Likes a spring joint, but works with rotary. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointRotarySpring : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a damped rotary spring joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param stiffness It's the spring constant.
|
|
|
|
@param damping It's how soft to make the damping of the spring.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointRotarySpring* construct(PhysicsBody* a, PhysicsBody* b, float stiffness, float damping);
|
|
|
|
|
|
|
|
/** Get the relative angle in radians from the body a to b.*/
|
|
|
|
float getRestAngle() const;
|
|
|
|
|
|
|
|
/** Set the relative angle in radians from the body a to b.*/
|
|
|
|
void setRestAngle(float restAngle);
|
|
|
|
|
|
|
|
/** Get the spring constant.*/
|
|
|
|
float getStiffness() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the spring constant.*/
|
|
|
|
void setStiffness(float stiffness);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the spring soft constant.*/
|
|
|
|
float getDamping() const;
|
|
|
|
|
|
|
|
/** Set the spring soft constant.*/
|
|
|
|
void setDamping(float damping);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointRotarySpring() {}
|
|
|
|
virtual ~PhysicsJointRotarySpring() {}
|
|
|
|
|
|
|
|
float _stiffness;
|
|
|
|
float _damping;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Likes a limit joint, but works with rotary. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointRotaryLimit : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a limit rotary joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param min It's min rotation limit in radians.
|
|
|
|
@param max It's max rotation limit in radians.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointRotaryLimit* construct(PhysicsBody* a, PhysicsBody* b, float min, float max);
|
|
|
|
|
|
|
|
/** Create a limit rotary joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointRotaryLimit* construct(PhysicsBody* a, PhysicsBody* b);
|
|
|
|
|
|
|
|
/** Get the min rotation limit.*/
|
|
|
|
float getMin() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the min rotation limit.*/
|
|
|
|
void setMin(float min);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the max rotation limit.*/
|
|
|
|
float getMax() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the max rotation limit.*/
|
|
|
|
void setMax(float max);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointRotaryLimit() {}
|
|
|
|
virtual ~PhysicsJointRotaryLimit() {}
|
|
|
|
|
|
|
|
float _min;
|
|
|
|
float _max;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Works like a socket wrench. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointRatchet : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a ratchet joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param phase Phase is the initial offset to use when deciding where the ratchet angles are.
|
|
|
|
@param ratchet Ratchet is the distance between "clicks".
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointRatchet* construct(PhysicsBody* a, PhysicsBody* b, float phase, float ratchet);
|
|
|
|
|
|
|
|
/** Get the ratchet angle.*/
|
|
|
|
float getAngle() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the ratchet angle.*/
|
|
|
|
void setAngle(float angle);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the initial offset.*/
|
|
|
|
float getPhase() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the initial offset.*/
|
|
|
|
void setPhase(float phase);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the distance between "clicks".*/
|
|
|
|
float getRatchet() const;
|
|
|
|
|
|
|
|
/** Set the distance between "clicks".*/
|
|
|
|
void setRatchet(float ratchet);
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointRatchet() {}
|
|
|
|
virtual ~PhysicsJointRatchet() {}
|
|
|
|
|
|
|
|
float _phase;
|
|
|
|
float _ratchet;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Keeps the angular velocity ratio of a pair of bodies constant. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointGear : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a gear joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param phase Phase is the initial angular offset of the two bodies.
|
|
|
|
@param ratio Ratio is always measured in absolute terms.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointGear* construct(PhysicsBody* a, PhysicsBody* b, float phase, float ratio);
|
|
|
|
|
|
|
|
/** Get the angular offset of the two bodies.*/
|
|
|
|
float getPhase() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the angular offset of the two bodies.*/
|
|
|
|
void setPhase(float phase);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get the ratio.*/
|
|
|
|
float getRatio() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the ratio.*/
|
|
|
|
void setRatio(float ratchet);
|
|
|
|
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointGear() {}
|
|
|
|
virtual ~PhysicsJointGear() {}
|
|
|
|
|
|
|
|
float _phase;
|
|
|
|
float _ratio;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Keeps the relative angular velocity of a pair of bodies constant. */
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PhysicsJointMotor : public PhysicsJoint
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a motor joint.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
@param a A is the body to connect.
|
|
|
|
@param b B is the body to connect.
|
|
|
|
@param rate Rate is the desired relative angular velocity.
|
|
|
|
@return A object pointer.
|
|
|
|
*/
|
|
|
|
static PhysicsJointMotor* construct(PhysicsBody* a, PhysicsBody* b, float rate);
|
|
|
|
|
|
|
|
/** Get the relative angular velocity.*/
|
|
|
|
float getRate() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Set the relative angular velocity.*/
|
|
|
|
void setRate(float rate);
|
|
|
|
virtual bool createConstraints() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointMotor() {}
|
|
|
|
virtual ~PhysicsJointMotor() {}
|
|
|
|
|
|
|
|
float _rate;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
/** @} */
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
#endif // AX_USE_PHYSICS
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // __CCPHYSICS_JOINT_H__
|