/**************************************************************************** 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. ****************************************************************************/ #include "CCPhysicsSetting.h" #ifdef CC_USE_PHYSICS #ifndef __CCPHYSICS_WORLD_H__ #define __CCPHYSICS_WORLD_H__ #include #include #include "CCObject.h" #include "CCGeometry.h" NS_CC_BEGIN class PhysicsBody; class PhysicsJoint; class PhysicsWorldInfo; class PhysicsShape; class PhysicsContact; class Array; class Sprite; class Scene; class DrawNode; class PhysicsWorld; class PhysicsRayCastCallback { public: typedef struct Info { PhysicsShape* shape; Point start; Point end; Point contact; Point normal; float fraction; void* data; }Info; public: PhysicsRayCastCallback() : report(nullptr) {} virtual ~PhysicsRayCastCallback(){} /** * @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 */ std::function report; }; class PhysicsRectQueryCallback { public: PhysicsRectQueryCallback() : report(nullptr) {} virtual ~PhysicsRectQueryCallback(){} public: std::function report; }; /** * @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. */ class PhysicsWorld { public: /** Adds a joint to the physics world.*/ virtual void addJoint(PhysicsJoint* joint); /** Removes a joint from the physics world.*/ virtual void removeJoint(PhysicsJoint* joint); /** Remove all joints from the physics world.*/ virtual void removeAllJoints(); virtual void removeBody(PhysicsBody* body); virtual void removeBody(int tag); virtual void removeAllBodies(); 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; Array* getAllBodies() const; PhysicsBody* getBody(int tag) const; /** Register a listener to receive contact callbacks*/ //inline void registerContactListener(EventListenerPhysicsContact* delegate) { _listener = delegate; } /** Unregister a listener. */ //inline void unregisterContactListener() { _listener = nullptr; } inline Scene& getScene() const { return *_scene; } /** get the gravity value */ inline Point getGravity() const { return _gravity; } /** set the gravity value */ void setGravity(Point gravity); /** test the debug draw is enabled */ inline bool isDebugDraw() const { return _debugDraw; } /** set the debug draw */ inline void setDebugDraw(bool debugDraw) { _debugDraw = debugDraw; } protected: static PhysicsWorld* create(Scene& scene); bool init(Scene& scene); virtual PhysicsBody* addBody(PhysicsBody* body); virtual PhysicsShape* addShape(PhysicsShape* shape); virtual void removeShape(PhysicsShape* shape); virtual void update(float delta); virtual void debugDraw(); virtual void drawWithShape(DrawNode* node, PhysicsShape* shape); virtual void drawWithJoint(DrawNode* node, PhysicsJoint* joint); virtual int collisionBeginCallback(PhysicsContact& contact); virtual int collisionPreSolveCallback(PhysicsContact& contact); virtual void collisionPostSolveCallback(PhysicsContact& contact); virtual void collisionSeparateCallback(PhysicsContact& contact); 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(); protected: Point _gravity; float _speed; PhysicsWorldInfo* _info; Array* _bodies; std::list _joints; Scene* _scene; bool _delayDirty; bool _debugDraw; DrawNode* _drawNode; Array* _delayAddBodies; Array* _delayRemoveBodies; std::vector _delayAddJoints; std::vector _delayRemoveJoints; protected: PhysicsWorld(); virtual ~PhysicsWorld(); friend class Sprite; friend class Scene; friend class PhysicsBody; friend class PhysicsShape; friend class PhysicsWorldCallback; }; NS_CC_END #endif // __CCPHYSICS_WORLD_H__ #endif // CC_USE_PHYSICS