axmol/extensions/physics-nodes/CCPhysicsSprite.cpp

471 lines
11 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/* Copyright (c) 2012 Scott Lembcke and Howling Moon Software
* Copyright (c) 2012 cocos2d-x.org
* Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
* Copyright (c) 2021 @aismann; Peter Eismann, Germany; dreifrankensoft
2019-11-23 20:27:39 +08:00
*
* 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 "CCPhysicsSprite.h"
#include "base/CCDirector.h"
#include "base/CCEventDispatcher.h"
#if (CC_ENABLE_CHIPMUNK_INTEGRATION || CC_ENABLE_BOX2D_INTEGRATION)
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
# include "chipmunk/chipmunk.h"
# elif CC_ENABLE_BOX2D_INTEGRATION
# include "box2d/box2d.h"
# endif
2019-11-23 20:27:39 +08:00
NS_AX_EXT_BEGIN
2019-11-23 20:27:39 +08:00
PhysicsSprite::PhysicsSprite()
2021-12-25 10:04:45 +08:00
: _ignoreBodyRotation(false), _CPBody(nullptr), _pB2Body(nullptr), _PTMRatio(0.0f), _syncTransform(nullptr)
2019-11-23 20:27:39 +08:00
{}
PhysicsSprite* PhysicsSprite::create()
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->init())
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::createWithTexture(Texture2D* pTexture)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithTexture(pTexture))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::createWithTexture(Texture2D* pTexture, const Rect& rect)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithTexture(pTexture, rect))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::createWithSpriteFrame(SpriteFrame* pSpriteFrame)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithSpriteFrame(pSpriteFrame))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::createWithSpriteFrameName(const char* pszSpriteFrameName)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithSpriteFrameName(pszSpriteFrameName))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::create(const char* pszFileName)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithFile(pszFileName))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
2021-12-25 10:04:45 +08:00
PhysicsSprite* PhysicsSprite::create(const char* pszFileName, const Rect& rect)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
PhysicsSprite* pRet = new PhysicsSprite();
if (pRet->initWithFile(pszFileName, rect))
2019-11-23 20:27:39 +08:00
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
// this method will only get called if the sprite is batched.
// return YES if the physic's values (angles, position ) changed.
// If you return NO, then getNodeToParentTransform won't be called.
bool PhysicsSprite::isDirty() const
{
return true;
}
bool PhysicsSprite::isIgnoreBodyRotation() const
{
return _ignoreBodyRotation;
}
void PhysicsSprite::setIgnoreBodyRotation(bool bIgnoreBodyRotation)
{
_ignoreBodyRotation = bIgnoreBodyRotation;
}
// Override the setters and getters to always reflect the body's properties.
const Vec2& PhysicsSprite::getPosition() const
{
return getPosFromPhysics();
}
void PhysicsSprite::getPosition(float* x, float* y) const
{
2021-12-25 10:04:45 +08:00
if (x == nullptr || y == nullptr)
{
2019-11-23 20:27:39 +08:00
return;
}
const Vec2& pos = getPosFromPhysics();
2021-12-25 10:04:45 +08:00
*x = pos.x;
*y = pos.y;
2019-11-23 20:27:39 +08:00
}
float PhysicsSprite::getPositionX() const
{
return getPosFromPhysics().x;
}
float PhysicsSprite::getPositionY() const
{
return getPosFromPhysics().y;
}
Vec3 PhysicsSprite::getPosition3D() const
{
Vec2 pos = getPosFromPhysics();
return Vec3(pos.x, pos.y, 0);
}
//
// Chipmunk only
//
cpBody* PhysicsSprite::getCPBody() const
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
return _CPBody;
2021-12-25 10:04:45 +08:00
# else
2019-11-23 20:27:39 +08:00
CCASSERT(false, "Can't call chipmunk methods when Chipmunk is disabled");
return nullptr;
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void PhysicsSprite::setCPBody(cpBody* pBody)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
_CPBody = pBody;
2021-12-25 10:04:45 +08:00
# else
2019-11-23 20:27:39 +08:00
CCASSERT(false, "Can't call chipmunk methods when Chipmunk is disabled");
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
b2Body* PhysicsSprite::getB2Body() const
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
return _pB2Body;
2021-12-25 10:04:45 +08:00
# else
2019-11-23 20:27:39 +08:00
CCASSERT(false, "Can't call box2d methods when Box2d is disabled");
return nullptr;
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void PhysicsSprite::setB2Body(b2Body* pBody)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
_pB2Body = pBody;
2021-12-25 10:04:45 +08:00
# else
2019-11-23 20:27:39 +08:00
CC_UNUSED_PARAM(pBody);
CCASSERT(false, "Can't call box2d methods when Box2d is disabled");
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
float PhysicsSprite::getPTMRatio() const
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
return _PTMRatio;
2021-12-25 10:04:45 +08:00
# else
2019-11-23 20:27:39 +08:00
CCASSERT(false, "Can't call box2d methods when Box2d is disabled");
return 0;
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
void PhysicsSprite::setPTMRatio(float fRatio)
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_BOX2D_INTEGRATION
_PTMRatio = fRatio;
# else
2019-11-23 20:27:39 +08:00
CC_UNUSED_PARAM(fRatio);
CCASSERT(false, "Can't call box2d methods when Box2d is disabled");
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
//
// Common to Box2d and Chipmunk
//
const Vec2& PhysicsSprite::getPosFromPhysics() const
{
static Vec2 s_physicPosion;
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
cpVect cpPos = cpBodyGetPosition(_CPBody);
2019-11-23 20:27:39 +08:00
s_physicPosion = Vec2(cpPos.x, cpPos.y);
2021-12-25 10:04:45 +08:00
# elif CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
b2Vec2 pos = _pB2Body->GetPosition();
2021-12-25 10:04:45 +08:00
float x = pos.x * _PTMRatio;
float y = pos.y * _PTMRatio;
s_physicPosion.set(x, y);
# endif
2019-11-23 20:27:39 +08:00
return s_physicPosion;
}
void PhysicsSprite::setPosition(float x, float y)
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
cpVect cpPos = cpv(x, y);
cpBodySetPosition(_CPBody, cpPos);
2021-12-25 10:04:45 +08:00
# elif CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
float angle = _pB2Body->GetAngle();
_pB2Body->SetTransform(b2Vec2(x / _PTMRatio, y / _PTMRatio), angle);
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void PhysicsSprite::setPosition(const Vec2& pos)
2019-11-23 20:27:39 +08:00
{
setPosition(pos.x, pos.y);
}
void PhysicsSprite::setPositionX(float x)
{
setPosition(x, getPositionY());
}
void PhysicsSprite::setPositionY(float y)
{
setPosition(getPositionX(), y);
}
void PhysicsSprite::setPosition3D(const Vec3& position)
{
setPosition(position.x, position.y);
}
float PhysicsSprite::getRotation() const
{
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
return (_ignoreBodyRotation ? Sprite::getRotation() : -CC_RADIANS_TO_DEGREES(cpBodyGetAngle(_CPBody)));
2021-12-25 10:04:45 +08:00
# elif CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
return (_ignoreBodyRotation ? Sprite::getRotation() : CC_RADIANS_TO_DEGREES(_pB2Body->GetAngle()));
# else
return 0.0f;
# endif
2019-11-23 20:27:39 +08:00
}
void PhysicsSprite::setRotation(float fRotation)
{
if (_ignoreBodyRotation)
{
Sprite::setRotation(fRotation);
}
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
else
{
cpBodySetAngle(_CPBody, -CC_DEGREES_TO_RADIANS(fRotation));
}
2021-12-25 10:04:45 +08:00
# elif CC_ENABLE_BOX2D_INTEGRATION
2019-11-23 20:27:39 +08:00
else
{
2021-12-25 10:04:45 +08:00
b2Vec2 p = _pB2Body->GetPosition();
2019-11-23 20:27:39 +08:00
float radians = CC_DEGREES_TO_RADIANS(fRotation);
_pB2Body->SetTransform(p, radians);
}
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
void PhysicsSprite::syncPhysicsTransform() const
{
// Although scale is not used by physics engines, it is calculated just in case
// the sprite is animated (scaled up/down) using actions.
// For more info see: http://www.cocos2d-iphone.org/forum/topic/68990
2021-12-25 10:04:45 +08:00
# if CC_ENABLE_CHIPMUNK_INTEGRATION
2019-11-23 20:27:39 +08:00
cpVect rot = (_ignoreBodyRotation ? cpvforangle(-CC_DEGREES_TO_RADIANS(_rotationX)) : cpBodyGetRotation(_CPBody));
2021-12-25 10:04:45 +08:00
float x = cpBodyGetPosition(_CPBody).x + rot.x * -_anchorPointInPoints.x * _scaleX -
rot.y * -_anchorPointInPoints.y * _scaleY;
float y = cpBodyGetPosition(_CPBody).y + rot.y * -_anchorPointInPoints.x * _scaleX +
rot.x * -_anchorPointInPoints.y * _scaleY;
2019-11-23 20:27:39 +08:00
if (_ignoreAnchorPointForPosition)
{
x += _anchorPointInPoints.x;
y += _anchorPointInPoints.y;
}
2021-12-25 10:04:45 +08:00
float mat[] = {(float)rot.x * _scaleX,
(float)rot.y * _scaleX,
0,
0,
(float)-rot.y * _scaleY,
(float)rot.x * _scaleY,
0,
0,
0,
0,
1,
0,
x,
y,
0,
1};
2019-11-23 20:27:39 +08:00
_transform.set(mat);
2021-12-25 10:04:45 +08:00
# elif CC_ENABLE_BOX2D_INTEGRATION
b2Vec2 pos = _pB2Body->GetPosition();
2019-11-23 20:27:39 +08:00
float x = pos.x * _PTMRatio;
float y = pos.y * _PTMRatio;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (_ignoreAnchorPointForPosition)
{
x += _anchorPointInPoints.x;
y += _anchorPointInPoints.y;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Make matrix
float radians = _pB2Body->GetAngle();
2021-12-25 10:04:45 +08:00
float c = cosf(radians);
float s = sinf(radians);
2019-11-23 20:27:39 +08:00
if (!_anchorPointInPoints.isZero())
{
x += ((c * -_anchorPointInPoints.x * _scaleX) + (-s * -_anchorPointInPoints.y * _scaleY));
y += ((s * -_anchorPointInPoints.x * _scaleX) + (c * -_anchorPointInPoints.y * _scaleY));
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Rot, Translate Matrix
2021-12-25 10:04:45 +08:00
float mat[] = {(float)c * _scaleX,
(float)s * _scaleX,
0,
0,
(float)-s * _scaleY,
(float)c * _scaleY,
0,
0,
0,
0,
1,
0,
x,
y,
0,
1};
2019-11-23 20:27:39 +08:00
_transform.set(mat);
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
void PhysicsSprite::onEnter()
{
Node::onEnter();
2021-12-25 10:04:45 +08:00
_syncTransform = Director::getInstance()->getEventDispatcher()->addCustomEventListener(
Director::EVENT_AFTER_UPDATE, std::bind(&PhysicsSprite::afterUpdate, this, std::placeholders::_1));
2019-11-23 20:27:39 +08:00
_syncTransform->retain();
}
void PhysicsSprite::onExit()
{
if (_syncTransform != nullptr)
{
Director::getInstance()->getEventDispatcher()->removeEventListener(_syncTransform);
_syncTransform->release();
}
Node::onExit();
}
void PhysicsSprite::afterUpdate(EventCustom* /*event*/)
{
syncPhysicsTransform();
2021-12-25 10:04:45 +08:00
_transformDirty = false;
2019-11-23 20:27:39 +08:00
_transformUpdated = true;
setDirtyRecursively(true);
}
NS_AX_EXT_END
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#endif // CC_ENABLE_CHIPMUNK_INTEGRATION || CC_ENABLE_BOX2D_INTEGRATION