axmol/core/3d/MeshVertexIndexData.cpp

204 lines
6.7 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
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 <list>
#include <fstream>
#include <iostream>
#include <sstream>
#include "3d/MeshVertexIndexData.h"
#include "3d/ObjLoader.h"
#include "3d/MeshMaterial.h"
#include "3d/Mesh.h"
#include "3d/Bundle3D.h"
2019-11-23 20:27:39 +08:00
#include "base/Macros.h"
#include "base/EventCustom.h"
#include "base/EventListenerCustom.h"
#include "base/EventDispatcher.h"
#include "base/EventType.h"
#include "base/Director.h"
2019-11-23 20:27:39 +08:00
#include "renderer/backend/Buffer.h"
#include "renderer/backend/Device.h"
using namespace std;
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
MeshIndexData* MeshIndexData::create(std::string_view id,
2021-12-25 10:04:45 +08:00
MeshVertexData* vertexData,
backend::Buffer* indexbuffer,
const AABB& aabb)
2019-11-23 20:27:39 +08:00
{
2021-12-08 00:11:53 +08:00
auto meshindex = new MeshIndexData();
2021-12-25 10:04:45 +08:00
meshindex->_id = id;
2019-11-23 20:27:39 +08:00
meshindex->_indexBuffer = indexbuffer;
2021-12-25 10:04:45 +08:00
meshindex->_vertexData = vertexData;
2019-11-23 20:27:39 +08:00
indexbuffer->retain();
meshindex->_aabb = aabb;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
meshindex->autorelease();
return meshindex;
}
backend::Buffer* MeshIndexData::getVertexBuffer() const
{
return _vertexData->getVertexBuffer();
}
MeshIndexData::MeshIndexData()
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
_backToForegroundListener = EventListenerCustom::create(EVENT_RENDERER_RECREATED, [this](EventCustom*) {
_indexBuffer->updateData((void*)_indexData.data(), _indexData.bsize());
2019-11-23 20:27:39 +08:00
});
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(_backToForegroundListener, 1);
#endif
}
2022-08-08 18:02:17 +08:00
void MeshIndexData::setIndexData(const ax::MeshData::IndexArray& indexdata)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
if (!_indexData.empty())
2019-11-23 20:27:39 +08:00
return;
_indexData = indexdata;
#endif
}
MeshIndexData::~MeshIndexData()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_indexBuffer);
2019-11-23 20:27:39 +08:00
_indexData.clear();
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
Director::getInstance()->getEventDispatcher()->removeEventListener(_backToForegroundListener);
#endif
}
2021-12-25 10:04:45 +08:00
void MeshVertexData::setVertexData(const std::vector<float>& vertexData)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
if (!_vertexData.empty())
2019-11-23 20:27:39 +08:00
return;
_vertexData = vertexData;
#endif
}
MeshVertexData* MeshVertexData::create(const MeshData& meshdata, CustomCommand::IndexFormat format)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto vertexdata = new MeshVertexData();
vertexdata->_vertexBuffer = backend::Device::getInstance()->newBuffer(
meshdata.vertex.size() * sizeof(meshdata.vertex[0]), backend::BufferType::VERTEX, backend::BufferUsage::STATIC);
2022-07-16 10:43:05 +08:00
// AX_SAFE_RETAIN(vertexdata->_vertexBuffer);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
vertexdata->_sizePerVertex = meshdata.getPerVertexSize();
vertexdata->_attribs = meshdata.attribs;
2021-12-25 10:04:45 +08:00
if (vertexdata->_vertexBuffer)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
vertexdata->setVertexData(meshdata.vertex);
vertexdata->_vertexBuffer->usingDefaultStoredData(false);
#endif
2021-12-25 10:04:45 +08:00
vertexdata->_vertexBuffer->updateData((void*)&meshdata.vertex[0],
meshdata.vertex.size() * sizeof(meshdata.vertex[0]));
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
bool needCalcAABB = (meshdata.subMeshAABB.size() != meshdata.subMeshIndices.size());
for (size_t i = 0, size = meshdata.subMeshIndices.size(); i < size; ++i)
{
auto& indices = meshdata.subMeshIndices[i];
2021-12-25 10:04:45 +08:00
auto indexBuffer = backend::Device::getInstance()->newBuffer(
indices.bsize(), backend::BufferType::INDEX, backend::BufferUsage::STATIC);
2020-01-06 09:34:53 +08:00
indexBuffer->autorelease();
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
indexBuffer->usingDefaultStoredData(false);
#endif
indexBuffer->updateData((void*)indices.data(), indices.bsize());
2021-12-25 10:04:45 +08:00
std::string id = (i < meshdata.subMeshIds.size() ? meshdata.subMeshIds[i] : "");
2019-11-23 20:27:39 +08:00
MeshIndexData* indexdata = nullptr;
if (needCalcAABB)
{
auto aabb = Bundle3D::calculateAABB(meshdata.vertex, meshdata.getPerVertexSize(), indices);
2019-11-23 20:27:39 +08:00
indexdata = MeshIndexData::create(id, vertexdata, indexBuffer, aabb);
}
else
indexdata = MeshIndexData::create(id, vertexdata, indexBuffer, meshdata.subMeshAABB[i]);
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
indexdata->setIndexData(indices);
2019-11-23 20:27:39 +08:00
#endif
vertexdata->_indices.pushBack(indexdata);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
vertexdata->autorelease();
return vertexdata;
}
MeshIndexData* MeshVertexData::getMeshIndexDataById(std::string_view id) const
2019-11-23 20:27:39 +08:00
{
for (auto&& it : _indices)
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
if (it->getId() == id)
return it;
}
return nullptr;
}
bool MeshVertexData::hasVertexAttrib(shaderinfos::VertexKey attrib) const
{
2021-12-25 10:04:45 +08:00
for (const auto& it : _attribs)
{
2019-11-23 20:27:39 +08:00
if (it.vertexAttrib == attrib)
return true;
}
return false;
}
MeshVertexData::MeshVertexData()
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
_backToForegroundListener = EventListenerCustom::create(EVENT_RENDERER_RECREATED, [this](EventCustom*) {
2019-11-23 20:27:39 +08:00
_vertexBuffer->updateData((void*)_vertexData.data(), _vertexData.size() * sizeof(_vertexData[0]));
});
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(_backToForegroundListener, 1);
#endif
}
MeshVertexData::~MeshVertexData()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_vertexBuffer);
_indices.clear();
2019-11-23 20:27:39 +08:00
_vertexData.clear();
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
Director::getInstance()->getEventDispatcher()->removeEventListener(_backToForegroundListener);
#endif
}
NS_AX_END