axmol/cocos/editor-support/cocostudio/CCColliderDetector.h

197 lines
5.5 KiB
C
Raw Normal View History

2013-06-06 12:02:54 +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 __CCCOLLIDERDETECTOR_H__
#define __CCCOLLIDERDETECTOR_H__
#include "cocostudio/CCArmatureDefine.h"
#include "cocostudio/CCDatas.h"
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
#ifndef PT_RATIO
#define PT_RATIO 32
#endif
2013-11-01 14:36:44 +08:00
#if ENABLE_PHYSICS_CHIPMUNK_DETECT
struct cpBody;
struct cpShape;
#elif ENABLE_PHYSICS_BOX2D_DETECT
2013-06-07 10:52:32 +08:00
class b2Body;
2013-09-13 18:07:37 +08:00
class b2Fixture;
2013-06-07 10:52:32 +08:00
struct b2Filter;
2013-11-01 14:36:44 +08:00
#endif
2013-06-06 12:02:54 +08:00
namespace cocostudio {
2013-09-13 18:07:37 +08:00
class Bone;
2013-06-06 12:02:54 +08:00
/**
* @js NA
* @lua NA
*/
2013-11-01 14:36:44 +08:00
class ColliderFilter
{
public:
2013-11-13 11:22:34 +08:00
virtual ~ColliderFilter() { }
2013-11-01 14:36:44 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
public:
ColliderFilter(unsigned short categoryBits = 0x0001, unsigned short maskBits = 0xFFFF, signed short groupIndex = 0);
void updateShape(b2Fixture *fixture);
2013-11-05 19:53:38 +08:00
virtual void setCategoryBits(unsigned short categoryBits) { _categoryBits = categoryBits; }
virtual unsigned short getCategoryBits() const { return _categoryBits; }
virtual void setMaskBits(unsigned short maskBits) { _maskBits = maskBits; }
virtual unsigned short getMaskBits() const { return _maskBits; }
virtual void setGroupIndex(signed short groupIndex) { _groupIndex = groupIndex; }
virtual signed short getGroupIndex() const { return _groupIndex; }
2013-11-01 14:36:44 +08:00
protected:
2013-11-05 19:53:38 +08:00
unsigned short _categoryBits;
unsigned short _maskBits;
signed short _groupIndex;
2013-11-01 14:36:44 +08:00
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
public:
2013-11-05 13:42:27 +08:00
ColliderFilter(uintptr_t collisionType = 0, uintptr_t group = 0);
2013-11-01 14:36:44 +08:00
void updateShape(cpShape *shape);
2013-11-05 19:53:38 +08:00
virtual void setCollisionType(uintptr_t collisionType) { _collisionType = collisionType; }
virtual uintptr_t getCollisionType() const { return _collisionType; }
virtual void setGroup(uintptr_t group) { _group = group; }
virtual uintptr_t getGroup() const { return _group; }
2013-11-01 14:36:44 +08:00
protected:
2013-11-05 19:53:38 +08:00
uintptr_t _collisionType;
uintptr_t _group;
2013-11-01 14:36:44 +08:00
#endif
};
class ColliderBody : public cocos2d::Object
2013-06-06 12:02:54 +08:00
{
2013-09-13 18:07:37 +08:00
public:
ColliderBody(ContourData *contourData);
2013-09-13 18:07:37 +08:00
~ColliderBody();
2013-06-06 12:02:54 +08:00
2013-11-01 14:36:44 +08:00
inline ContourData *getContourData() { return _contourData; }
void setColliderFilter(ColliderFilter *filter);
ColliderFilter *getColliderFilter();
2013-11-05 19:53:38 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
virtual void setB2Fixture(b2Fixture *fixture) { _fixture = fixture; }
virtual b2Fixture *getB2Fixture() const { return _fixture; }
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
virtual void setShape(cpShape *shape) { _shape = shape; }
virtual cpShape *getShape() const { return _shape; }
#endif
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
virtual const cocos2d::Array *getCalculatedVertexList() const { return _calculatedVertexList; }
#endif
2013-06-06 12:02:54 +08:00
private:
2013-11-05 19:53:38 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
b2Fixture *_fixture;
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
cpShape *_shape;
#endif
2013-09-15 20:24:25 +08:00
ContourData *_contourData;
2013-11-01 14:36:44 +08:00
ColliderFilter *_filter;
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2013-11-05 19:53:38 +08:00
cocos2d::Array *_calculatedVertexList;
#endif
2013-06-06 12:02:54 +08:00
};
/*
* @brief ContourSprite used to draw the contour of the display
* @js NA
* @lua NA
2013-06-06 12:02:54 +08:00
*/
class ColliderDetector : public cocos2d::Object
2013-06-06 12:02:54 +08:00
{
public:
static ColliderDetector *create();
static ColliderDetector *create(Bone *bone);
2013-06-06 12:02:54 +08:00
public:
2013-09-16 14:13:55 +08:00
/**
* @js ctor
*/
ColliderDetector();
2013-09-16 14:13:55 +08:00
/**
* @js NA
* @lua NA
*/
~ColliderDetector(void);
2013-09-13 18:07:37 +08:00
2013-06-06 12:02:54 +08:00
virtual bool init();
virtual bool init(Bone *bone);
2013-09-13 18:07:37 +08:00
void addContourData(ContourData *contourData);
void addContourDataList(cocos2d::Array *contourDataList);
2013-06-06 12:02:54 +08:00
void removeContourData(ContourData *contourData);
2013-09-13 18:07:37 +08:00
void removeAll();
void updateTransform(cocos2d::AffineTransform &t);
2013-06-06 12:02:54 +08:00
void setActive(bool active);
2013-09-13 18:07:37 +08:00
bool getActive();
2013-06-06 12:02:54 +08:00
cocos2d::Array *getColliderBodyList();
2013-09-13 18:07:37 +08:00
2013-11-01 14:36:44 +08:00
virtual void setColliderFilter(ColliderFilter *filter);
virtual ColliderFilter *getColliderFilter();
2013-11-05 19:53:38 +08:00
virtual void setBone(Bone *bone) { _bone = bone; }
virtual Bone *getBone() const { return _bone; }
#if ENABLE_PHYSICS_BOX2D_DETECT
virtual void setBody(b2Body *body);
virtual b2Body *getBody() const;
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
virtual void setBody(cpBody *body);
virtual cpBody *getBody() const;
#endif
protected:
cocos2d::Array *_colliderBodyList;
2013-11-01 14:36:44 +08:00
ColliderFilter *_filter;
2013-11-05 19:53:38 +08:00
Bone *_bone;
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
2013-11-05 19:53:38 +08:00
b2Body *_body;
2013-09-13 18:07:37 +08:00
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-05 19:53:38 +08:00
cpBody *_body;
2013-09-13 18:07:37 +08:00
#endif
protected:
2013-09-15 20:24:25 +08:00
bool _active;
2013-06-06 12:02:54 +08:00
};
2013-09-13 18:07:37 +08:00
}
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
#endif /*__CCCOLLIDERDETECTOR_H__*/