mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-13 14:00:27 +01:00
21c3c16557
Also converted all .cpp and .h line endings to CRLF in this commit.
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
#include "CGLTFMeshFileLoader.h"
|
|
#include "CMeshBuffer.h"
|
|
#include "coreutil.h"
|
|
#include "IAnimatedMesh.h"
|
|
#include "IReadFile.h"
|
|
#include "irrTypes.h"
|
|
#include "path.h"
|
|
#include "S3DVertex.h"
|
|
#include "SAnimatedMesh.h"
|
|
#include "SColor.h"
|
|
#include "SMesh.h"
|
|
|
|
#define TINYGLTF_IMPLEMENTATION
|
|
#include <tiny_gltf.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace irr
|
|
{
|
|
|
|
namespace scene
|
|
{
|
|
|
|
CGLTFMeshFileLoader::CGLTFMeshFileLoader()
|
|
{
|
|
}
|
|
|
|
bool CGLTFMeshFileLoader::isALoadableFileExtension(
|
|
const io::path& filename) const
|
|
{
|
|
return core::hasFileExtension(filename, "gltf");
|
|
}
|
|
|
|
IAnimatedMesh* CGLTFMeshFileLoader::createMesh(io::IReadFile* file)
|
|
{
|
|
if (file->getSize() == 0 || !tryParseGLTF(file)) {
|
|
return nullptr;
|
|
}
|
|
|
|
// sorry Bjarne
|
|
SMeshBuffer* meshbuf { new SMeshBuffer {} };
|
|
|
|
const video::S3DVertex* vertices { new video::S3DVertex[3] {
|
|
{{0.0f, 0.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {0.0f, 0.0f}},
|
|
{{0.0f, 1.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {1.0f, 0.0f}},
|
|
{{-1.0f, 0.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {0.0f, 1.0f}} } };
|
|
const u16* indices { new u16[3] {0, 1, 2} };
|
|
meshbuf->append(vertices, 3, indices, 3);
|
|
|
|
SMesh* mesh { new SMesh {} };
|
|
mesh->addMeshBuffer(meshbuf);
|
|
|
|
SAnimatedMesh* animatedMesh { new SAnimatedMesh {} };
|
|
animatedMesh->addMesh(mesh);
|
|
|
|
return animatedMesh;
|
|
}
|
|
|
|
bool CGLTFMeshFileLoader::tryParseGLTF(io::IReadFile* file) const
|
|
{
|
|
tinygltf::Model model {};
|
|
tinygltf::TinyGLTF loader {};
|
|
std::string err {};
|
|
std::string warn {};
|
|
|
|
auto buf = std::make_unique<char[]>(file->getSize());
|
|
file->read(buf.get(), file->getSize());
|
|
return loader.LoadASCIIFromString(
|
|
&model, &err, &warn, buf.get(), file->getSize(), "", 1);
|
|
}
|
|
|
|
} // namespace irr
|
|
|
|
} // namespace scene
|
|
|