2014-07-29 10:49:06 +08:00
|
|
|
/****************************************************************************
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2014-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2014-07-29 10:49:06 +08:00
|
|
|
|
|
|
|
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 <list>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2014-08-22 13:52:03 +08:00
|
|
|
#include "3d/CCMeshVertexIndexData.h"
|
2014-07-29 10:49:06 +08:00
|
|
|
#include "3d/CCObjLoader.h"
|
|
|
|
#include "3d/CCSprite3DMaterial.h"
|
2014-08-15 14:58:30 +08:00
|
|
|
#include "3d/CCMesh.h"
|
2014-12-08 10:30:06 +08:00
|
|
|
#include "3d/CCBundle3D.h"
|
2014-07-29 10:49:06 +08:00
|
|
|
|
|
|
|
#include "base/ccMacros.h"
|
|
|
|
#include "base/CCEventCustom.h"
|
|
|
|
#include "base/CCEventListenerCustom.h"
|
|
|
|
#include "base/CCEventDispatcher.h"
|
|
|
|
#include "base/CCEventType.h"
|
|
|
|
#include "base/CCDirector.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
MeshIndexData* MeshIndexData::create(const std::string& id, MeshVertexData* vertexData, IndexBuffer* indexbuffer, const AABB& aabb)
|
2014-07-29 10:49:06 +08:00
|
|
|
{
|
2014-08-28 07:31:57 +08:00
|
|
|
auto meshindex = new (std::nothrow) MeshIndexData();
|
2014-08-22 13:25:26 +08:00
|
|
|
|
|
|
|
meshindex->_id = id;
|
|
|
|
meshindex->_indexBuffer = indexbuffer;
|
|
|
|
meshindex->_vertexData = vertexData;
|
|
|
|
indexbuffer->retain();
|
|
|
|
meshindex->_aabb = aabb;
|
|
|
|
|
|
|
|
meshindex->autorelease();
|
|
|
|
return meshindex;
|
2014-07-29 10:49:06 +08:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
const VertexBuffer* MeshIndexData::getVertexBuffer() const
|
2014-07-29 10:49:06 +08:00
|
|
|
{
|
2014-08-22 13:25:26 +08:00
|
|
|
return _vertexData->getVertexBuffer();
|
2014-07-29 10:49:06 +08:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
MeshIndexData::MeshIndexData()
|
|
|
|
: _indexBuffer(nullptr)
|
|
|
|
, _vertexData(nullptr)
|
|
|
|
, _primitiveType(GL_TRIANGLES)
|
2014-07-29 10:49:06 +08:00
|
|
|
{
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
}
|
|
|
|
MeshIndexData::~MeshIndexData()
|
|
|
|
{
|
|
|
|
CC_SAFE_RELEASE(_indexBuffer);
|
2014-07-29 10:49:06 +08:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
MeshVertexData* MeshVertexData::create(const MeshData& meshdata)
|
2014-08-15 14:58:30 +08:00
|
|
|
{
|
2014-08-28 07:31:57 +08:00
|
|
|
auto vertexdata = new (std::nothrow) MeshVertexData();
|
2014-08-22 13:25:26 +08:00
|
|
|
int pervertexsize = meshdata.getPerVertexSize();
|
|
|
|
vertexdata->_vertexBuffer = VertexBuffer::create(pervertexsize, (int)(meshdata.vertex.size() / (pervertexsize / 4)));
|
|
|
|
vertexdata->_vertexData = VertexData::create();
|
|
|
|
CC_SAFE_RETAIN(vertexdata->_vertexData);
|
|
|
|
CC_SAFE_RETAIN(vertexdata->_vertexBuffer);
|
|
|
|
|
|
|
|
int offset = 0;
|
|
|
|
for (const auto& it : meshdata.attribs) {
|
|
|
|
vertexdata->_vertexData->setStream(vertexdata->_vertexBuffer, VertexStreamAttribute(offset, it.vertexAttrib, it.type, it.size));
|
|
|
|
offset += it.attribSizeBytes;
|
|
|
|
}
|
2014-08-15 14:58:30 +08:00
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
vertexdata->_attribs = meshdata.attribs;
|
|
|
|
|
|
|
|
if(vertexdata->_vertexBuffer)
|
|
|
|
{
|
2014-10-27 13:59:40 +08:00
|
|
|
vertexdata->_vertexBuffer->updateVertices((void*)&meshdata.vertex[0], (int)meshdata.vertex.size() * 4 / vertexdata->_vertexBuffer->getSizePerVertex(), 0);
|
2014-08-22 13:25:26 +08:00
|
|
|
}
|
|
|
|
|
2014-12-08 10:30:06 +08:00
|
|
|
bool needCalcAABB = (meshdata.subMeshAABB.size() != meshdata.subMeshIndices.size());
|
2016-10-27 15:10:24 +08:00
|
|
|
for (size_t i = 0, size = meshdata.subMeshIndices.size(); i < size; ++i) {
|
2014-11-04 10:20:22 +08:00
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
auto& index = meshdata.subMeshIndices[i];
|
|
|
|
auto indexBuffer = IndexBuffer::create(IndexBuffer::IndexType::INDEX_TYPE_SHORT_16, (int)(index.size()));
|
|
|
|
indexBuffer->updateIndices(&index[0], (int)index.size(), 0);
|
|
|
|
std::string id = (i < meshdata.subMeshIds.size() ? meshdata.subMeshIds[i] : "");
|
2014-12-08 10:30:06 +08:00
|
|
|
MeshIndexData* indexdata = nullptr;
|
|
|
|
if (needCalcAABB)
|
|
|
|
{
|
|
|
|
auto aabb = Bundle3D::calculateAABB(meshdata.vertex, meshdata.getPerVertexSize(), index);
|
|
|
|
indexdata = MeshIndexData::create(id, vertexdata, indexBuffer, aabb);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
indexdata = MeshIndexData::create(id, vertexdata, indexBuffer, meshdata.subMeshAABB[i]);
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
vertexdata->_indexs.pushBack(indexdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
vertexdata->autorelease();
|
|
|
|
return vertexdata;
|
2014-08-15 14:58:30 +08:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
MeshIndexData* MeshVertexData::getMeshIndexDataById(const std::string& id) const
|
|
|
|
{
|
|
|
|
for (auto it : _indexs) {
|
|
|
|
if (it->getId() == id)
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MeshVertexData::hasVertexAttrib(int attrib) const
|
|
|
|
{
|
|
|
|
for (const auto& it : _attribs) {
|
|
|
|
if (it.vertexAttrib == attrib)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MeshVertexData::MeshVertexData()
|
|
|
|
: _vertexData(nullptr)
|
|
|
|
, _vertexBuffer(nullptr)
|
|
|
|
, _vertexCount(0)
|
2014-07-29 10:49:06 +08:00
|
|
|
{
|
|
|
|
|
2014-08-22 13:25:26 +08:00
|
|
|
}
|
|
|
|
MeshVertexData::~MeshVertexData()
|
|
|
|
{
|
|
|
|
CC_SAFE_RELEASE(_vertexData);
|
|
|
|
CC_SAFE_RELEASE(_vertexBuffer);
|
|
|
|
_indexs.clear();
|
2014-07-29 10:49:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|