2013-09-09 10:29:02 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-09-10 14:15:19 +08:00
|
|
|
#include "CCPhysicsSetting.h"
|
2013-09-10 17:36:49 +08:00
|
|
|
#ifdef CC_USE_PHYSICS
|
2013-09-10 14:15:19 +08:00
|
|
|
|
2013-09-09 10:29:02 +08:00
|
|
|
#ifndef __CCPHYSICS_JOINT_H__
|
|
|
|
#define __CCPHYSICS_JOINT_H__
|
|
|
|
|
2013-09-09 16:58:55 +08:00
|
|
|
#include "cocoa/CCObject.h"
|
|
|
|
#include "cocoa/CCGeometry.h"
|
2013-09-09 10:29:02 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class PhysicsBody;
|
|
|
|
|
2013-09-09 16:36:19 +08:00
|
|
|
class PhysicsJoint
|
2013-09-09 10:29:02 +08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
PhysicsJoint();
|
|
|
|
virtual ~PhysicsJoint();
|
|
|
|
|
|
|
|
private:
|
|
|
|
PhysicsBody* _bodyA;
|
|
|
|
PhysicsBody* _bodyB;
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsJointFixed : public PhysicsJoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PhysicsJointFixed* create();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointFixed();
|
|
|
|
~PhysicsJointFixed();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsJointSliding : public PhysicsJoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PhysicsJointSliding* create();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointSliding();
|
|
|
|
~PhysicsJointSliding();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsJointSpring : public PhysicsJoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PhysicsJointSpring* create();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointSpring();
|
|
|
|
~PhysicsJointSpring();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsJointLimit : public PhysicsJoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PhysicsJointLimit* create();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointLimit();
|
|
|
|
~PhysicsJointLimit();
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsJointPin : public PhysicsJoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PhysicsJointPin* create();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PhysicsJointPin();
|
|
|
|
~PhysicsJointPin();
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
2013-09-09 10:40:31 +08:00
|
|
|
#endif // __CCPHYSICS_JOINT_H__
|
2013-09-10 14:15:19 +08:00
|
|
|
|
2013-09-10 17:36:49 +08:00
|
|
|
#endif // CC_USE_PHYSICS
|