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__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#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-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-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
struct cpBody;
|
|
|
|
struct cpShape;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
class Bone;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class ColliderBody : public cocos2d::Object
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-13 18:07:37 +08:00
|
|
|
#if ENABLE_PHYSICS_BOX2D_DETECT
|
2013-09-15 20:24:25 +08:00
|
|
|
CC_SYNTHESIZE(b2Fixture *, _fixture, B2Fixture)
|
|
|
|
CC_SYNTHESIZE(b2Filter *, _filter, B2Filter)
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
|
2013-09-15 20:24:25 +08:00
|
|
|
CC_SYNTHESIZE(cpShape *, _shape, Shape)
|
2013-09-13 18:07:37 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
2013-09-15 19:08:45 +08:00
|
|
|
ColliderBody(ContourData *contourData);
|
2013-09-13 18:07:37 +08:00
|
|
|
~ColliderBody();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
inline ContourData *getContourData()
|
2013-09-13 18:07:37 +08:00
|
|
|
{
|
2013-09-15 20:24:25 +08:00
|
|
|
return _contourData;
|
2013-09-13 18:07:37 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
private:
|
2013-09-15 20:24:25 +08:00
|
|
|
ContourData *_contourData;
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @brief ContourSprite used to draw the contour of the display
|
|
|
|
*/
|
2013-10-15 18:00:03 +08:00
|
|
|
class ColliderDetector : public cocos2d::Object
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-15 19:08:45 +08:00
|
|
|
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
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
ColliderDetector();
|
2013-09-16 14:13:55 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
~ColliderDetector(void);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
virtual bool init();
|
2013-09-15 19:08:45 +08:00
|
|
|
virtual bool init(Bone *bone);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
void addContourData(ContourData *contourData);
|
2013-10-15 18:00:03 +08:00
|
|
|
void addContourDataList(cocos2d::Array *contourDataList);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-15 19:08:45 +08:00
|
|
|
void removeContourData(ContourData *contourData);
|
2013-09-13 18:07:37 +08:00
|
|
|
void removeAll();
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
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
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
cocos2d::Array *getColliderBodyList();
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
protected:
|
2013-10-15 18:00:03 +08:00
|
|
|
cocos2d::Array *_colliderBodyList;
|
2013-09-15 20:24:25 +08:00
|
|
|
CC_SYNTHESIZE(Bone *, _bone, Bone);
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
#if ENABLE_PHYSICS_BOX2D_DETECT
|
2013-09-15 20:24:25 +08:00
|
|
|
CC_PROPERTY(b2Body *, _body, Body);
|
2013-09-13 18:07:37 +08:00
|
|
|
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
|
2013-09-15 20:24:25 +08:00
|
|
|
CC_PROPERTY(cpBody *, _body, 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-10-15 18:00:03 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
#endif /*__CCCOLLIDERDETECTOR_H__*/
|