2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2015-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
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 "navmesh/CCNavMeshObstacle.h"
|
|
|
|
#if CC_USE_NAVMESH
|
|
|
|
|
|
|
|
#include "navmesh/CCNavMesh.h"
|
|
|
|
#include "2d/CCNode.h"
|
|
|
|
#include "2d/CCScene.h"
|
2020-11-14 13:32:51 +08:00
|
|
|
#include "recast/DetourTileCache.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
NavMeshObstacle* NavMeshObstacle::create(float radius, float height)
|
|
|
|
{
|
|
|
|
auto ref = new (std::nothrow) NavMeshObstacle();
|
|
|
|
if (ref && ref->initWith(radius, height))
|
|
|
|
{
|
|
|
|
ref->autorelease();
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(ref);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& NavMeshObstacle::getNavMeshObstacleComponentName()
|
|
|
|
{
|
|
|
|
static std::string comName = "___NavMeshObstacleComponent___";
|
|
|
|
return comName;
|
|
|
|
}
|
|
|
|
|
|
|
|
NavMeshObstacle::NavMeshObstacle()
|
|
|
|
: _radius(0.0f)
|
|
|
|
, _height(0.0f)
|
|
|
|
, _syncFlag(NODE_AND_NODE)
|
|
|
|
, _obstacleID(-1)
|
|
|
|
, _tileCache(nullptr)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cocos2d::NavMeshObstacle::~NavMeshObstacle()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NavMeshObstacle::initWith(float radius, float height)
|
|
|
|
{
|
|
|
|
_radius = radius;
|
|
|
|
_height = height;
|
|
|
|
setName(getNavMeshObstacleComponentName());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::removeFrom(dtTileCache* /*tileCache*/)
|
|
|
|
{
|
|
|
|
_tileCache->removeObstacle(_obstacleID);
|
|
|
|
_tileCache = nullptr;
|
|
|
|
_obstacleID = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::addTo(dtTileCache *tileCache)
|
|
|
|
{
|
|
|
|
_tileCache = tileCache;
|
|
|
|
Mat4 mat = _owner->getNodeToWorldTransform();
|
|
|
|
_tileCache->addObstacle(&mat.m[12], _radius, _height, &_obstacleID);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::onExit()
|
|
|
|
{
|
|
|
|
if (_obstacleID == -1) return;
|
|
|
|
Component::onExit();
|
|
|
|
auto scene = _owner->getScene();
|
|
|
|
if (scene && scene->getNavMesh()){
|
|
|
|
scene->getNavMesh()->removeNavMeshObstacle(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::onEnter()
|
|
|
|
{
|
|
|
|
if (_obstacleID != -1) return;
|
|
|
|
Component::onEnter();
|
|
|
|
auto scene = _owner->getScene();
|
|
|
|
if (scene && scene->getNavMesh()){
|
|
|
|
scene->getNavMesh()->addNavMeshObstacle(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::postUpdate(float /*delta*/)
|
|
|
|
{
|
|
|
|
if ((_syncFlag & OBSTACLE_TO_NODE) != 0)
|
|
|
|
syncToNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::preUpdate(float /*delta*/)
|
|
|
|
{
|
|
|
|
if ((_syncFlag & NODE_TO_OBSTACLE) != 0)
|
|
|
|
syncToObstacle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavMeshObstacle::syncToNode()
|
|
|
|
{
|
|
|
|
if (_tileCache){
|
|
|
|
auto obstacle = _tileCache->getObstacleByRef(_obstacleID);
|
2020-11-14 13:32:51 +08:00
|
|
|
if (obstacle && obstacle->type == DT_OBSTACLE_CYLINDER){
|
|
|
|
auto& cylinder = obstacle->cylinder;
|
|
|
|
Vec3 localPos = Vec3(cylinder.pos[0], cylinder.pos[1], cylinder.pos[2]);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (_owner->getParent())
|
|
|
|
_owner->getParent()->getWorldToNodeTransform().transformPoint(localPos, &localPos);
|
|
|
|
_owner->setPosition3D(localPos);
|
2020-11-14 13:32:51 +08:00
|
|
|
_radius = cylinder.radius;
|
|
|
|
_height = cylinder.height;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::setRadius(float radius)
|
|
|
|
{
|
|
|
|
_radius = radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cocos2d::NavMeshObstacle::setHeight(float height)
|
|
|
|
{
|
|
|
|
_height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NavMeshObstacle::syncToObstacle()
|
|
|
|
{
|
|
|
|
if (_tileCache){
|
|
|
|
auto obstacle = _tileCache->getObstacleByRef(_obstacleID);
|
2020-11-14 13:32:51 +08:00
|
|
|
if (obstacle && obstacle->type == DT_OBSTACLE_CYLINDER){
|
2019-11-23 20:27:39 +08:00
|
|
|
Mat4 mat = _owner->getNodeToWorldTransform();
|
2020-11-14 13:32:51 +08:00
|
|
|
auto& cylinder = obstacle->cylinder;
|
|
|
|
if ((mat.m[12] != cylinder.pos[0] && mat.m[13] != cylinder.pos[1] && mat.m[14] != cylinder.pos[2])
|
|
|
|
|| cylinder.radius != _radius
|
|
|
|
|| cylinder.height != _height){
|
2019-11-23 20:27:39 +08:00
|
|
|
_tileCache->removeObstacle(_obstacleID);
|
|
|
|
_tileCache->addObstacle(&mat.m[12], _radius, _height, &_obstacleID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif //CC_USE_NAVMESH
|