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

506 lines
12 KiB
C++
Raw Normal View History

2013-06-06 12:02:54 +08:00
/****************************************************************************
Copyright (c) 2013-2014 Chukong Technologies Inc.
2013-06-06 12:02:54 +08:00
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 "cocostudio/CCColliderDetector.h"
#include "cocostudio/CCBone.h"
#include "cocostudio/CCTransformHelp.h"
2013-09-13 18:07:37 +08:00
2013-11-27 11:32:37 +08:00
2013-09-13 18:07:37 +08:00
using namespace cocos2d;
2013-09-13 18:07:37 +08:00
namespace cocostudio {
2013-09-13 18:07:37 +08:00
2013-11-01 14:36:44 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
2013-11-27 11:39:58 +08:00
ColliderFilter::ColliderFilter(uint16 categoryBits, uint16 maskBits, int16 groupIndex)
2013-11-01 14:36:44 +08:00
: _categoryBits(categoryBits)
, _maskBits(maskBits)
, _groupIndex(groupIndex)
{
}
void ColliderFilter::updateShape(b2Fixture *fixture)
{
b2Filter filter;
filter.categoryBits = _categoryBits;
filter.groupIndex = _groupIndex;
filter.maskBits = _maskBits;
fixture->SetFilterData(filter);
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-27 11:39:58 +08:00
ColliderFilter::ColliderFilter(cpCollisionType collisionType, cpGroup group)
2013-11-01 14:36:44 +08:00
: _collisionType(collisionType)
, _group(group)
{
}
void ColliderFilter::updateShape(cpShape *shape)
{
shape->collision_type = _collisionType;
shape->group = _group;
}
#endif
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
ColliderBody::ColliderBody(ContourData *contourData)
: _fixture(nullptr)
2013-09-15 20:24:25 +08:00
, _contourData(contourData)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
CC_SAFE_RETAIN(_contourData);
2013-11-01 14:36:44 +08:00
_filter = new ColliderFilter();
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
_calculatedVertexList = Array::create();
CC_SAFE_RETAIN(_calculatedVertexList);
#endif
2013-09-13 18:07:37 +08:00
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
ColliderBody::ColliderBody(ContourData *contourData)
: _shape(nullptr)
2013-09-15 20:24:25 +08:00
, _contourData(contourData)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
CC_SAFE_RETAIN(_contourData);
2013-11-01 14:36:44 +08:00
_filter = new ColliderFilter();
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
_calculatedVertexList = Array::create();
CC_SAFE_RETAIN(_calculatedVertexList);
#endif
2013-09-13 18:07:37 +08:00
}
#elif ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
ColliderBody::ColliderBody(ContourData *contourData)
: _contourData(contourData)
{
CC_SAFE_RETAIN(_contourData);
}
2013-09-13 18:07:37 +08:00
#endif
ColliderBody::~ColliderBody()
{
2013-09-15 20:24:25 +08:00
CC_SAFE_RELEASE(_contourData);
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
CC_SAFE_DELETE(_filter);
#endif
2013-11-01 14:36:44 +08:00
}
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-01 14:36:44 +08:00
void ColliderBody::setColliderFilter(ColliderFilter *filter)
{
*_filter = *filter;
}
ColliderFilter *ColliderBody::getColliderFilter()
{
return _filter;
2013-09-13 18:07:37 +08:00
}
#endif
2013-06-06 12:02:54 +08:00
2013-09-13 18:07:37 +08:00
ColliderDetector *ColliderDetector::create()
2013-06-06 12:02:54 +08:00
{
ColliderDetector *pColliderDetector = new ColliderDetector();
2013-06-07 10:52:32 +08:00
if (pColliderDetector && pColliderDetector->init())
{
pColliderDetector->autorelease();
return pColliderDetector;
}
CC_SAFE_DELETE(pColliderDetector);
return nullptr;
2013-06-06 12:02:54 +08:00
}
ColliderDetector *ColliderDetector::create(Bone *bone)
2013-06-06 12:02:54 +08:00
{
ColliderDetector *pColliderDetector = new ColliderDetector();
2013-06-07 10:52:32 +08:00
if (pColliderDetector && pColliderDetector->init(bone))
{
pColliderDetector->autorelease();
return pColliderDetector;
}
CC_SAFE_DELETE(pColliderDetector);
return nullptr;
2013-06-06 12:02:54 +08:00
}
ColliderDetector::ColliderDetector()
: _active(false)
2013-06-06 12:02:54 +08:00
{
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
_body = nullptr;
_filter = nullptr;
#endif
2013-06-06 12:02:54 +08:00
}
ColliderDetector::~ColliderDetector()
2013-06-06 12:02:54 +08:00
{
_colliderBodyList.clear();
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-01 14:36:44 +08:00
CC_SAFE_DELETE(_filter);
#endif
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
bool ColliderDetector::init()
2013-06-06 12:02:54 +08:00
{
_colliderBodyList.clear();
2013-06-07 10:52:32 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-01 14:36:44 +08:00
_filter = new ColliderFilter();
#endif
2013-11-01 14:36:44 +08:00
2013-06-06 12:02:54 +08:00
return true;
}
bool ColliderDetector::init(Bone *bone)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
init();
setBone(bone);
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
return true;
2013-06-06 12:02:54 +08:00
}
void ColliderDetector::addContourData(ContourData *contourData)
2013-06-06 12:02:54 +08:00
{
2013-09-13 18:07:37 +08:00
ColliderBody *colliderBody = new ColliderBody(contourData);
_colliderBodyList.pushBack(colliderBody);
2013-09-13 18:07:37 +08:00
colliderBody->release();
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2013-12-13 19:40:38 +08:00
std::vector<Point> &calculatedVertexList = colliderBody->_calculatedVertexList;
2013-12-17 19:32:16 +08:00
unsigned long num = contourData->vertexList.size();
for (unsigned long i = 0; i < num; i++)
{
2013-12-13 19:40:38 +08:00
calculatedVertexList.push_back(Point());
}
#endif
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
2013-12-13 19:40:38 +08:00
void ColliderDetector::addContourDataList(cocos2d::Vector<ContourData*> &contourDataList)
2013-09-13 18:07:37 +08:00
{
for (const auto &contourData : contourDataList)
2013-06-07 10:52:32 +08:00
{
2013-12-18 22:07:33 +08:00
this->addContourData(contourData);
}
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
void ColliderDetector::removeContourData(ContourData *contourData)
2013-09-13 18:07:37 +08:00
{
2013-12-18 22:07:33 +08:00
std::vector<ColliderBody*> eraseList;
for (const auto &body : _colliderBodyList)
2013-12-18 22:07:33 +08:00
{
2013-09-13 18:07:37 +08:00
if (body && body->getContourData() == contourData)
{
2013-12-18 22:07:33 +08:00
eraseList.push_back(body);
2013-09-13 18:07:37 +08:00
}
}
2013-12-18 22:07:33 +08:00
for (const auto &body : eraseList)
2013-12-18 22:07:33 +08:00
{
this->_colliderBodyList.eraseObject(body);
}
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
void ColliderDetector::removeAll()
2013-09-13 18:07:37 +08:00
{
_colliderBodyList.clear();
2013-09-13 18:07:37 +08:00
}
2013-06-07 10:52:32 +08:00
void ColliderDetector::setActive(bool active)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
if (_active == active)
2013-09-13 18:07:37 +08:00
{
return;
}
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
_active = active;
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
2013-09-15 20:24:25 +08:00
if (_body)
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
if (active)
{
2013-09-15 20:24:25 +08:00
setBody(_body);
2013-09-13 18:07:37 +08:00
}
else
{
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-09-13 18:07:37 +08:00
{
ColliderBody *colliderBody = (ColliderBody *)object;
b2Fixture *fixture = colliderBody->getB2Fixture();
2013-09-15 20:24:25 +08:00
_body->DestroyFixture(fixture);
colliderBody->setB2Fixture(nullptr);
2013-09-13 18:07:37 +08:00
}
}
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-09-15 20:24:25 +08:00
if (_body)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
if (_active)
2013-09-13 18:07:37 +08:00
{
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-09-13 18:07:37 +08:00
{
ColliderBody *colliderBody = (ColliderBody *)object;
cpShape *shape = colliderBody->getShape();
if(shape->space_private == nullptr)
2013-10-30 09:41:40 +08:00
{
cpSpaceAddShape(_body->space_private, shape);
}
2013-09-13 18:07:37 +08:00
}
}
else
{
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-09-13 18:07:37 +08:00
{
ColliderBody *colliderBody = (ColliderBody *)object;
cpShape *shape = colliderBody->getShape();
if (shape->space_private != nullptr)
2013-10-30 09:41:40 +08:00
{
cpSpaceRemoveShape(_body->space_private, shape);
}
2013-09-13 18:07:37 +08:00
}
}
2013-06-07 10:52:32 +08:00
}
2013-09-13 18:07:37 +08:00
#endif
2013-06-06 12:02:54 +08:00
}
bool ColliderDetector::getActive()
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _active;
2013-06-06 12:02:54 +08:00
}
const cocos2d::Vector<ColliderBody*>& ColliderDetector::getColliderBodyList()
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _colliderBodyList;
2013-06-06 12:02:54 +08:00
}
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-11-01 14:36:44 +08:00
void ColliderDetector::setColliderFilter(ColliderFilter *filter)
{
*_filter = *filter;
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-11-01 14:36:44 +08:00
{
ColliderBody *colliderBody = (ColliderBody *)object;
colliderBody->setColliderFilter(filter);
#if ENABLE_PHYSICS_BOX2D_DETECT
if (colliderBody->getB2Fixture())
{
colliderBody->getColliderFilter()->updateShape(colliderBody->getB2Fixture());
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
if (colliderBody->getShape())
{
colliderBody->getColliderFilter()->updateShape(colliderBody->getShape());
}
#endif
}
}
ColliderFilter *ColliderDetector::getColliderFilter()
{
return _filter;
}
#endif
2013-11-01 14:36:44 +08:00
2013-09-13 18:07:37 +08:00
Point helpPoint;
2013-12-11 03:07:15 +08:00
void ColliderDetector::updateTransform(kmMat4 &t)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
if (!_active)
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
return;
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
2013-12-18 22:07:33 +08:00
for(auto& object : _colliderBodyList)
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
ColliderBody *colliderBody = (ColliderBody *)object;
ContourData *contourData = colliderBody->getContourData();
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
b2PolygonShape *shape = nullptr;
if (_body != nullptr)
2013-09-13 18:07:37 +08:00
{
shape = (b2PolygonShape *)colliderBody->getB2Fixture()->GetShape();
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
cpPolyShape *shape = nullptr;
if (_body != nullptr)
2013-09-13 18:07:37 +08:00
{
shape = (cpPolyShape *)colliderBody->getShape();
}
#endif
2013-12-17 19:32:16 +08:00
unsigned long num = contourData->vertexList.size();
2013-12-13 19:40:38 +08:00
std::vector<cocos2d::Point> &vs = contourData->vertexList;
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2013-12-13 19:40:38 +08:00
std::vector<cocos2d::Point> &cvs = colliderBody->_calculatedVertexList;
#endif
2013-12-17 19:32:16 +08:00
for (unsigned long i = 0; i < num; i++)
2013-09-13 18:07:37 +08:00
{
2013-12-13 19:40:38 +08:00
helpPoint.setPoint( vs.at(i).x, vs.at(i).y);
2013-12-11 03:07:15 +08:00
helpPoint = PointApplyTransform(helpPoint, t);
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2013-12-13 19:40:38 +08:00
cvs.at(i).x = helpPoint.x;
cvs.at(i).y = helpPoint.y;
#endif
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
if (shape != nullptr)
2013-09-13 18:07:37 +08:00
{
b2Vec2 &bv = shape->m_vertices[i];
bv.Set(helpPoint.x / PT_RATIO, helpPoint.y / PT_RATIO);
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
if (shape != nullptr)
2013-09-13 18:07:37 +08:00
{
cpVect v ;
v.x = helpPoint.x;
v.y = helpPoint.y;
shape->verts[i] = v;
}
#endif
}
#if ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-12-18 22:36:10 +08:00
cpConvexHull((int)num, shape->verts, nullptr, nullptr, 0);
2013-12-17 19:32:16 +08:00
for (unsigned long i = 0; i < num; i++)
2013-09-13 18:07:37 +08:00
{
cpVect b = shape->verts[(i + 1) % shape->numVerts];
cpVect n = cpvnormalize(cpvperp(cpvsub(b, shape->verts[i])));
shape->planes[i].n = n;
shape->planes[i].d = cpvdot(n, shape->verts[i]);
}
#endif
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT
2013-06-06 12:02:54 +08:00
void ColliderDetector::setBody(b2Body *pBody)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
_body = pBody;
2013-09-13 18:07:37 +08:00
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
ColliderBody *colliderBody = (ColliderBody *)object;
2013-06-07 10:52:32 +08:00
ContourData *contourData = colliderBody->getContourData();
2013-12-18 22:36:10 +08:00
b2Vec2 *b2bv = new b2Vec2[contourData->vertexList.size()];
2013-06-07 10:52:32 +08:00
int i = 0;
2013-12-18 22:36:10 +08:00
for(auto& v : contourData->vertexList)
2013-06-07 10:52:32 +08:00
{
2013-12-18 22:36:10 +08:00
b2bv[i].Set(v.x / PT_RATIO, v.y / PT_RATIO);
2013-09-13 18:07:37 +08:00
i++;
}
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
b2PolygonShape polygon;
2013-12-18 22:36:10 +08:00
polygon.Set(b2bv, (int)contourData->vertexList.size());
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
CC_SAFE_DELETE(b2bv);
2013-06-07 10:52:32 +08:00
2013-09-13 18:07:37 +08:00
b2FixtureDef fixtureDef;
fixtureDef.shape = &polygon;
fixtureDef.isSensor = true;
2013-09-15 20:24:25 +08:00
b2Fixture *fixture = _body->CreateFixture(&fixtureDef);
fixture->SetUserData(_bone);
2013-09-13 18:07:37 +08:00
if (colliderBody->getB2Fixture() != nullptr)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_body->DestroyFixture(colliderBody->getB2Fixture());
2013-09-13 18:07:37 +08:00
}
colliderBody->setB2Fixture(fixture);
2013-11-01 14:36:44 +08:00
colliderBody->getColliderFilter()->updateShape(fixture);
2013-09-13 18:07:37 +08:00
}
}
2013-11-05 19:53:38 +08:00
b2Body *ColliderDetector::getBody() const
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
return _body;
2013-09-13 18:07:37 +08:00
}
#elif ENABLE_PHYSICS_CHIPMUNK_DETECT
void ColliderDetector::setBody(cpBody *pBody)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_body = pBody;
2013-09-13 18:07:37 +08:00
2013-12-18 22:36:10 +08:00
for(auto& object : _colliderBodyList)
2013-09-13 18:07:37 +08:00
{
ColliderBody *colliderBody = (ColliderBody *)object;
ContourData *contourData = colliderBody->getContourData();
2013-09-13 18:07:37 +08:00
2013-12-18 22:36:10 +08:00
ssize_t num = contourData->vertexList.size();
auto vs = contourData->vertexList;
2013-09-13 18:07:37 +08:00
cpVect *verts = new cpVect[num];
for (int i = 0; i < num; i++)
{
2013-12-18 22:36:10 +08:00
verts[num - 1 - i].x = vs.at(i).x;
verts[num - 1 - i].y = vs.at(i).y;
2013-06-07 10:52:32 +08:00
}
2013-09-13 18:07:37 +08:00
2013-12-18 22:36:10 +08:00
cpShape *shape = cpPolyShapeNew(_body, (int)num, verts, cpvzero);
2013-09-13 18:07:37 +08:00
shape->sensor = true;
2013-09-15 20:24:25 +08:00
shape->data = _bone;
2013-11-01 14:36:44 +08:00
if (_active)
{
cpSpaceAddShape(_body->space_private, shape);
}
2013-09-13 18:07:37 +08:00
colliderBody->setShape(shape);
2013-11-01 14:36:44 +08:00
colliderBody->getColliderFilter()->updateShape(shape);
2013-09-13 18:07:37 +08:00
delete []verts;
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
cpBody *ColliderDetector::getBody() const
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
return _body;
2013-09-13 18:07:37 +08:00
}
#endif
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
}