123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /****************************************************************************
- 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"
- #include "recast/DetourTileCache/DetourTileCache.h"
- 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);
- if (obstacle){
- Vec3 localPos = Vec3(obstacle->pos[0], obstacle->pos[1], obstacle->pos[2]);
- if (_owner->getParent())
- _owner->getParent()->getWorldToNodeTransform().transformPoint(localPos, &localPos);
- _owner->setPosition3D(localPos);
- _radius = obstacle->radius;
- _height = obstacle->height;
- }
- }
- }
- 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);
- if (obstacle){
- Vec3 worldPos = Vec3(obstacle->pos[0], obstacle->pos[1], obstacle->pos[2]);
- Mat4 mat = _owner->getNodeToWorldTransform();
- if ((mat.m[12] != obstacle->pos[0] && mat.m[13] != obstacle->pos[1] && mat.m[14] != obstacle->pos[2])
- || obstacle->radius != _radius
- || obstacle->height != _height){
- _tileCache->removeObstacle(_obstacleID);
- _tileCache->addObstacle(&mat.m[12], _radius, _height, &_obstacleID);
- }
- }
- }
- }
- NS_CC_END
- #endif //CC_USE_NAVMESH
|