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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCPHYSICS_WORLD_H__
|
|
|
|
#define __CCPHYSICS_WORLD_H__
|
|
|
|
|
2013-11-06 14:51:56 +08:00
|
|
|
#include "CCPhysicsSetting.h"
|
|
|
|
#ifdef CC_USE_PHYSICS
|
|
|
|
|
2013-09-29 09:39:20 +08:00
|
|
|
#include <list>
|
2013-11-04 19:26:34 +08:00
|
|
|
#include <vector>
|
2013-09-29 09:39:20 +08:00
|
|
|
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCObject.h"
|
|
|
|
#include "CCGeometry.h"
|
2013-09-09 16:36:19 +08:00
|
|
|
|
2013-09-09 10:29:02 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class PhysicsBody;
|
|
|
|
class PhysicsJoint;
|
|
|
|
class PhysicsWorldInfo;
|
2013-09-16 21:22:22 +08:00
|
|
|
class PhysicsShape;
|
|
|
|
class PhysicsContact;
|
|
|
|
class Array;
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-09-09 16:36:19 +08:00
|
|
|
class Sprite;
|
|
|
|
class Scene;
|
2013-09-16 21:22:22 +08:00
|
|
|
class DrawNode;
|
|
|
|
|
2013-10-21 23:16:21 +08:00
|
|
|
class PhysicsWorld;
|
|
|
|
class PhysicsRayCastCallback
|
|
|
|
{
|
2013-11-05 15:54:33 +08:00
|
|
|
public:
|
|
|
|
typedef struct Info
|
|
|
|
{
|
|
|
|
PhysicsShape* shape;
|
|
|
|
Point start;
|
|
|
|
Point end;
|
|
|
|
Point contact;
|
2013-11-07 14:17:57 +08:00
|
|
|
Vect normal;
|
2013-11-05 15:54:33 +08:00
|
|
|
float fraction;
|
|
|
|
void* data;
|
|
|
|
}Info;
|
|
|
|
|
2013-10-21 23:16:21 +08:00
|
|
|
public:
|
2013-10-22 18:00:24 +08:00
|
|
|
PhysicsRayCastCallback()
|
|
|
|
: report(nullptr)
|
|
|
|
{}
|
|
|
|
virtual ~PhysicsRayCastCallback(){}
|
2013-10-21 23:16:21 +08:00
|
|
|
/**
|
|
|
|
* @brief Called for each fixture found in the query. You control how the ray cast
|
|
|
|
* proceeds by returning a float:
|
|
|
|
* return true: continue
|
|
|
|
* return false: terminate the ray cast
|
|
|
|
* @param fixture the fixture hit by the ray
|
|
|
|
* @param point the point of initial intersection
|
|
|
|
* @param normal the normal vector at the point of intersection
|
|
|
|
* @return true to continue, false to terminate
|
|
|
|
*/
|
2013-11-05 20:02:58 +08:00
|
|
|
std::function<bool(PhysicsWorld& world, const Info& info, void* data)> report;
|
2013-10-21 23:16:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicsRectQueryCallback
|
|
|
|
{
|
|
|
|
public:
|
2013-10-22 18:00:24 +08:00
|
|
|
PhysicsRectQueryCallback()
|
|
|
|
: report(nullptr)
|
|
|
|
{}
|
|
|
|
virtual ~PhysicsRectQueryCallback(){}
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::function<bool(PhysicsWorld&, PhysicsShape&, void*)> report;
|
2013-10-21 23:16:21 +08:00
|
|
|
};
|
|
|
|
|
2013-09-17 16:27:43 +08:00
|
|
|
/**
|
|
|
|
* @brief An PhysicsWorld object simulates collisions and other physical properties. You do not create PhysicsWorld objects directly; instead, you can get it from an Scene object.
|
|
|
|
*/
|
2013-09-09 16:36:19 +08:00
|
|
|
class PhysicsWorld
|
2013-09-09 10:29:02 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-17 16:27:43 +08:00
|
|
|
/** Adds a joint to the physics world.*/
|
2013-11-04 19:26:34 +08:00
|
|
|
virtual void addJoint(PhysicsJoint* joint);
|
2013-09-17 16:27:43 +08:00
|
|
|
/** Removes a joint from the physics world.*/
|
2013-11-07 14:17:57 +08:00
|
|
|
virtual void removeJoint(PhysicsJoint* joint, bool destroy);
|
2013-09-17 16:27:43 +08:00
|
|
|
/** Remove all joints from the physics world.*/
|
2013-11-07 14:17:57 +08:00
|
|
|
virtual void removeAllJoints(bool destroy);
|
2013-11-04 19:26:34 +08:00
|
|
|
|
|
|
|
virtual void removeBody(PhysicsBody* body);
|
2013-11-05 20:02:58 +08:00
|
|
|
virtual void removeBody(int tag);
|
2013-11-04 19:26:34 +08:00
|
|
|
virtual void removeAllBodies();
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-11-05 20:02:58 +08:00
|
|
|
void rayCast(PhysicsRayCastCallback& callback, const Point& point1, const Point& point2, void* data);
|
|
|
|
void rectQuery(PhysicsRectQueryCallback& callback, const Rect& rect, void* data);
|
|
|
|
Array* getShapes(const Point& point) const;
|
|
|
|
PhysicsShape* getShape(const Point& point) const;
|
2013-10-29 17:31:35 +08:00
|
|
|
Array* getAllBodies() const;
|
2013-11-05 20:02:58 +08:00
|
|
|
PhysicsBody* getBody(int tag) const;
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-09-17 16:27:43 +08:00
|
|
|
/** Register a listener to receive contact callbacks*/
|
2013-11-01 14:50:06 +08:00
|
|
|
//inline void registerContactListener(EventListenerPhysicsContact* delegate) { _listener = delegate; }
|
2013-09-17 16:27:43 +08:00
|
|
|
/** Unregister a listener. */
|
2013-11-01 14:50:06 +08:00
|
|
|
//inline void unregisterContactListener() { _listener = nullptr; }
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-11-01 16:26:03 +08:00
|
|
|
inline Scene& getScene() const { return *_scene; }
|
2013-09-17 16:27:43 +08:00
|
|
|
/** get the gravity value */
|
2013-11-07 14:17:57 +08:00
|
|
|
inline Vect getGravity() const { return _gravity; }
|
2013-09-17 16:27:43 +08:00
|
|
|
/** set the gravity value */
|
2013-11-07 14:17:57 +08:00
|
|
|
void setGravity(const Vect& gravity);
|
2013-09-10 17:36:49 +08:00
|
|
|
|
2013-09-17 16:27:43 +08:00
|
|
|
/** test the debug draw is enabled */
|
2013-11-01 16:26:03 +08:00
|
|
|
inline bool isDebugDraw() const { return _debugDraw; }
|
2013-09-17 16:27:43 +08:00
|
|
|
/** set the debug draw */
|
2013-09-16 21:22:22 +08:00
|
|
|
inline void setDebugDraw(bool debugDraw) { _debugDraw = debugDraw; }
|
|
|
|
|
2013-09-09 10:29:02 +08:00
|
|
|
protected:
|
2013-11-01 14:50:06 +08:00
|
|
|
static PhysicsWorld* create(Scene& scene);
|
|
|
|
bool init(Scene& scene);
|
2013-09-16 21:22:22 +08:00
|
|
|
|
2013-11-07 14:40:09 +08:00
|
|
|
virtual void addBody(PhysicsBody* body);
|
|
|
|
virtual void addShape(PhysicsShape* shape);
|
2013-09-29 09:39:20 +08:00
|
|
|
virtual void removeShape(PhysicsShape* shape);
|
2013-09-16 21:22:22 +08:00
|
|
|
virtual void update(float delta);
|
|
|
|
|
|
|
|
virtual void debugDraw();
|
|
|
|
virtual void drawWithShape(DrawNode* node, PhysicsShape* shape);
|
2013-10-29 17:31:35 +08:00
|
|
|
virtual void drawWithJoint(DrawNode* node, PhysicsJoint* joint);
|
2013-09-16 21:22:22 +08:00
|
|
|
|
2013-10-18 15:34:13 +08:00
|
|
|
virtual int collisionBeginCallback(PhysicsContact& contact);
|
2013-10-25 10:31:22 +08:00
|
|
|
virtual int collisionPreSolveCallback(PhysicsContact& contact);
|
|
|
|
virtual void collisionPostSolveCallback(PhysicsContact& contact);
|
2013-10-18 15:34:13 +08:00
|
|
|
virtual void collisionSeparateCallback(PhysicsContact& contact);
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-11-04 19:26:34 +08:00
|
|
|
virtual void realAddBody(PhysicsBody* body);
|
|
|
|
virtual void realRemoveBody(PhysicsBody* body);
|
|
|
|
virtual void realAddJoint(PhysicsJoint* joint);
|
|
|
|
virtual void realRemoveJoint(PhysicsJoint* joint);
|
|
|
|
virtual void delayTestAddBody(PhysicsBody* body);
|
|
|
|
virtual void delayTestRemoveBody(PhysicsBody* body);
|
|
|
|
virtual void delayTestAddJoint(PhysicsJoint* joint);
|
|
|
|
virtual void delayTestRemoveJoint(PhysicsJoint* joint);
|
|
|
|
virtual void updateBodies();
|
|
|
|
virtual void updateJoints();
|
|
|
|
|
2013-09-09 10:29:02 +08:00
|
|
|
protected:
|
2013-11-07 14:17:57 +08:00
|
|
|
Vect _gravity;
|
2013-09-09 10:29:02 +08:00
|
|
|
float _speed;
|
2013-09-16 21:22:22 +08:00
|
|
|
PhysicsWorldInfo* _info;
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-10-29 17:31:35 +08:00
|
|
|
Array* _bodies;
|
2013-09-29 09:39:20 +08:00
|
|
|
std::list<PhysicsJoint*> _joints;
|
2013-09-16 21:22:22 +08:00
|
|
|
Scene* _scene;
|
|
|
|
|
2013-11-04 19:26:34 +08:00
|
|
|
bool _delayDirty;
|
2013-09-16 21:22:22 +08:00
|
|
|
bool _debugDraw;
|
|
|
|
DrawNode* _drawNode;
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-11-04 19:26:34 +08:00
|
|
|
Array* _delayAddBodies;
|
|
|
|
Array* _delayRemoveBodies;
|
|
|
|
std::vector<PhysicsJoint*> _delayAddJoints;
|
|
|
|
std::vector<PhysicsJoint*> _delayRemoveJoints;
|
|
|
|
|
2013-09-09 10:29:02 +08:00
|
|
|
protected:
|
|
|
|
PhysicsWorld();
|
|
|
|
virtual ~PhysicsWorld();
|
2013-09-09 16:36:19 +08:00
|
|
|
|
|
|
|
friend class Sprite;
|
|
|
|
friend class Scene;
|
2013-09-16 21:22:22 +08:00
|
|
|
friend class PhysicsBody;
|
2013-09-29 09:39:20 +08:00
|
|
|
friend class PhysicsShape;
|
2013-11-07 14:17:57 +08:00
|
|
|
friend class PhysicsJoint;
|
2013-10-21 23:16:21 +08:00
|
|
|
friend class PhysicsWorldCallback;
|
2013-09-09 10:29:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
2013-09-10 17:36:49 +08:00
|
|
|
#endif // CC_USE_PHYSICS
|
2013-11-06 14:51:56 +08:00
|
|
|
#endif // __CCPHYSICS_WORLD_H__
|