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-09 10:40:31 +08:00
|
|
|
****************************************************************************/
|
2013-09-16 21:22:22 +08:00
|
|
|
|
2013-11-06 14:51:56 +08:00
|
|
|
#ifndef __CCPHYSICS_SHAPE_INFO_CHIPMUNK_H__
|
|
|
|
#define __CCPHYSICS_SHAPE_INFO_CHIPMUNK_H__
|
|
|
|
|
2013-11-26 13:47:42 +08:00
|
|
|
#if CC_USE_PHYSICS
|
2013-10-29 17:31:35 +08:00
|
|
|
|
2013-09-17 17:39:08 +08:00
|
|
|
#include <vector>
|
2013-11-22 05:43:59 +08:00
|
|
|
#include <unordered_map>
|
2013-09-17 17:39:08 +08:00
|
|
|
#include "chipmunk.h"
|
2013-10-18 15:55:47 +08:00
|
|
|
#include "CCPlatformMacros.h"
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-09-16 21:22:22 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class PhysicsShape;
|
2013-09-09 10:29:02 +08:00
|
|
|
|
2013-09-16 21:22:22 +08:00
|
|
|
class PhysicsShapeInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void add(cpShape* shape);
|
|
|
|
void remove(cpShape* shape);
|
2013-10-18 15:34:13 +08:00
|
|
|
void removeAll();
|
|
|
|
void setGroup(cpGroup group);
|
|
|
|
void setBody(cpBody* body);
|
2013-11-22 05:43:59 +08:00
|
|
|
|
2013-11-05 20:02:58 +08:00
|
|
|
PhysicsShape* getShape() const { return _shape; }
|
|
|
|
std::vector<cpShape*>& getShapes() { return _shapes; }
|
|
|
|
cpBody* getBody() const { return _body; }
|
|
|
|
cpGroup getGourp() const { return _group; }
|
2013-11-22 05:43:59 +08:00
|
|
|
static std::unordered_map<cpShape*, PhysicsShapeInfo*>& getMap() { return _map; }
|
2013-11-05 20:02:58 +08:00
|
|
|
static cpBody* getSharedBody() { return _sharedBody; }
|
2013-09-16 21:22:22 +08:00
|
|
|
|
2013-11-22 05:43:59 +08:00
|
|
|
protected:
|
2013-09-16 21:22:22 +08:00
|
|
|
PhysicsShapeInfo(PhysicsShape* shape);
|
|
|
|
~PhysicsShapeInfo();
|
|
|
|
|
2013-11-05 20:02:58 +08:00
|
|
|
std::vector<cpShape*> _shapes;
|
|
|
|
PhysicsShape* _shape;
|
|
|
|
cpBody* _body;
|
|
|
|
cpGroup _group;
|
2013-11-22 05:43:59 +08:00
|
|
|
static std::unordered_map<cpShape*, PhysicsShapeInfo*> _map;
|
2013-11-05 20:02:58 +08:00
|
|
|
static cpBody* _sharedBody;
|
|
|
|
|
2013-09-16 21:22:22 +08:00
|
|
|
friend class PhysicsShape;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
2013-11-26 13:47:42 +08:00
|
|
|
#endif // CC_USE_PHYSICS
|
2013-11-06 14:51:56 +08:00
|
|
|
#endif // __CCPHYSICS_SHAPE_INFO_CHIPMUNK_H__
|