/**************************************************************************** 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/CCNavMeshDebugDraw.h" #if CC_USE_NAVMESH #include // offsetof #include "base/ccTypes.h" #include "renderer/backend/ProgramState.h" #include "renderer/backend/Device.h" #include "renderer/CCRenderer.h" #include "renderer/CCRenderState.h" #include "renderer/ccShaders.h" #include "base/CCDirector.h" #include "base/ccMacros.h" NS_CC_BEGIN NavMeshDebugDraw::NavMeshDebugDraw() { auto* program = backend::Program::getBuiltinProgram(backend::ProgramType::POSITION_COLOR); _programState = new backend::ProgramState(program); _locMVP = _programState->getUniformLocation("u_MVPMatrix"); auto vertexLayout = _programState->getVertexLayout(); vertexLayout->setAttribute("a_position", _programState->getAttributeLocation("a_position"), backend::VertexFormat::FLOAT3, offsetof(V3F_C4F, position), false); vertexLayout->setAttribute("a_color", _programState->getAttributeLocation("a_color"), backend::VertexFormat::FLOAT4, offsetof(V3F_C4F, color), false); vertexLayout->setLayout(sizeof(V3F_C4F)); _beforeCommand.func = CC_CALLBACK_0(NavMeshDebugDraw::onBeforeVisitCmd, this); _afterCommand.func = CC_CALLBACK_0(NavMeshDebugDraw::onAfterVisitCmd, this); _beforeCommand.set3D(true); _beforeCommand.setTransparent(true); _afterCommand.set3D(true); _afterCommand.setTransparent(true); } void NavMeshDebugDraw::initCustomCommand(CustomCommand &command) { command.set3D(true); command.setTransparent(true); command.init(0, Mat4::IDENTITY, Node::FLAGS_RENDER_AS_3D); command.setDrawType(CustomCommand::DrawType::ARRAY); auto &pipelineDescriptor = command.getPipelineDescriptor(); pipelineDescriptor.programState = _programState; auto &blend = pipelineDescriptor.blendDescriptor; blend.blendEnabled = true; blend.sourceRGBBlendFactor = blend.sourceAlphaBlendFactor = BlendFunc::ALPHA_NON_PREMULTIPLIED.src; blend.destinationRGBBlendFactor = blend.destinationAlphaBlendFactor = BlendFunc::ALPHA_NON_PREMULTIPLIED.dst; } void NavMeshDebugDraw::vertex(const float /*x*/, const float /*y*/, const float /*z*/, unsigned int /*color*/, const float /*u*/, const float /*v*/) { } void NavMeshDebugDraw::vertex(const float* pos, unsigned int color, const float* uv) { vertex(pos[0], pos[1], pos[2], color, uv[0], uv[1]); } void NavMeshDebugDraw::vertex(const float x, const float y, const float z, unsigned int color) { if (!_currentPrimitive) return; V3F_C4F vertex = { Vec3(x, y, z), getColor(color) }; _vertices.push_back(vertex); _dirtyBuffer = true; } void NavMeshDebugDraw::vertex(const float* pos, unsigned int color) { vertex(pos[0], pos[1], pos[2], color); } NavMeshDebugDraw::~NavMeshDebugDraw() { for (auto iter : _primitiveList){ delete iter; } CC_SAFE_RELEASE_NULL(_programState); CC_SAFE_RELEASE_NULL(_vertexBuffer); } void NavMeshDebugDraw::depthMask(bool state) { _currentDepthMask = state; } void NavMeshDebugDraw::begin(duDebugDrawPrimitives prim, float size /*= 1.0f*/) { if (_currentPrimitive) return; _currentPrimitive = new (std::nothrow) Primitive; _currentPrimitive->type = getPrimitiveType(prim); _currentPrimitive->depthMask = _currentDepthMask; _currentPrimitive->start = _vertices.size(); _currentPrimitive->size = size; } void NavMeshDebugDraw::end() { if (!_currentPrimitive) return; _currentPrimitive->end = _vertices.size(); _primitiveList.push_back(_currentPrimitive); _currentPrimitive = nullptr; } Vec4 NavMeshDebugDraw::getColor(unsigned int col) { const unsigned int r = col & 0xff; const unsigned int g = (col >> 8) & 0xff; const unsigned int b = (col >> 16) & 0xff; const unsigned int a = (col >> 24) & 0xff; float factor = 1.0f / 255.0f; return Vec4(r, g, b, a) * factor; } backend::PrimitiveType NavMeshDebugDraw::getPrimitiveType(duDebugDrawPrimitives prim) { switch (prim) { case DU_DRAW_POINTS: return backend::PrimitiveType::POINT; case DU_DRAW_LINES: return backend::PrimitiveType::LINE; case DU_DRAW_TRIS: return backend::PrimitiveType::TRIANGLE; default: return backend::PrimitiveType::POINT; } } void NavMeshDebugDraw::draw(Renderer* renderer) { auto &transform = Director::getInstance()->getMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION); _beforeCommand.init(0, Mat4::IDENTITY, Node::FLAGS_RENDER_AS_3D); _beforeCommand.init(0, Mat4::IDENTITY, Node::FLAGS_RENDER_AS_3D); _programState->setUniform(_locMVP, transform.m, sizeof(transform.m)); renderer->addCommand(&_beforeCommand); if (!_vertexBuffer || _vertexBuffer->getSize() < _vertices.size() * sizeof(_vertices[0])) { _vertexBuffer = backend::Device::getInstance()->newBuffer(_vertices.size() * sizeof(_vertices[0]), backend::BufferType::VERTEX, backend::BufferUsage::STATIC); _dirtyBuffer = true; } if (_dirtyBuffer) { _vertexBuffer->updateData(_vertices.data(), sizeof(_vertices[0]) * _vertices.size()); _dirtyBuffer = false; } int idx = 0; if (_commands.size() < _primitiveList.size()) { _commands.resize(_primitiveList.size()); } for (auto &iter : _primitiveList) { if (iter->type == backend::PrimitiveType::POINT) continue; if (iter->end - iter->start <= 0) continue; auto &command = _commands[idx]; initCustomCommand(command); command.setBeforeCallback(CC_CALLBACK_0(NavMeshDebugDraw::onBeforeEachCommand, this, iter->depthMask)); if (iter->type == backend::PrimitiveType::LINE) { command.setLineWidth(iter->size); } command.setVertexBuffer(_vertexBuffer); command.setPrimitiveType(iter->type); command.setVertexDrawInfo(iter->start, iter->end - iter->start); renderer->addCommand(&command); CC_INCREMENT_GL_DRAWN_BATCHES_AND_VERTICES(1, iter->end - iter->start); idx++; } renderer->addCommand(&_afterCommand); } void NavMeshDebugDraw::onBeforeVisitCmd() { auto *renderer = Director::getInstance()->getRenderer(); _rendererDepthTestEnabled = renderer->getDepthTest(); _rendererDepthCmpFunc = renderer->getDepthCompareFunction(); _rendererCullMode = renderer->getCullMode(); _rendererDepthWrite = renderer->getDepthWrite(); _rendererWinding = renderer->getWinding(); renderer->setCullMode(backend::CullMode::NONE); renderer->setDepthTest(true); } void NavMeshDebugDraw::onAfterVisitCmd() { auto *renderer = Director::getInstance()->getRenderer(); renderer->setDepthTest(_rendererDepthTestEnabled); renderer->setDepthCompareFunction(_rendererDepthCmpFunc); renderer->setCullMode(_rendererCullMode); renderer->setDepthWrite(_rendererDepthWrite); renderer->setWinding(_rendererWinding); } void NavMeshDebugDraw::onBeforeEachCommand(bool enableDepthWrite) { auto *renderer = Director::getInstance()->getRenderer(); renderer->setDepthWrite(enableDepthWrite); } void NavMeshDebugDraw::clear() { _vertices.clear(); for (auto iter : _primitiveList){ delete iter; } _primitiveList.clear(); } NS_CC_END #endif //CC_USE_NAVMESH