Former-commit-id: a73d38ce2db2e780ad5b02cdae1c590606081650 [formerly 3d21c0fa44481bf91418a15012fa187a210fc9ad] [formerly b80263df8e91b85f3fd091724c54dec7f05bc535 [formerly 7dcaabaabf74fbdf840289bfc435fdd8e88969d7]] Former-commit-id: a669a933edd2364d9ee487c7d1bb38e28ad87a2d [formerly b8c5c09df10ce2f831635f460393216799d44056] Former-commit-id: 6bbd5af22e30cc7fd4b4478162ae89e69b3d274e
87 lines
1.7 KiB
C++
87 lines
1.7 KiB
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Utility module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_FORMATS_MD5MESHPARSER_HPP
|
|
#define NAZARA_FORMATS_MD5MESHPARSER_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Core/Stream.hpp>
|
|
#include <Nazara/Core/String.hpp>
|
|
#include <Nazara/Math/Quaternion.hpp>
|
|
#include <Nazara/Math/Vector3.hpp>
|
|
#include <Nazara/Utility/Mesh.hpp>
|
|
#include <vector>
|
|
|
|
namespace Nz
|
|
{
|
|
class NAZARA_UTILITY_API MD5MeshParser
|
|
{
|
|
public:
|
|
struct Joint
|
|
{
|
|
Int32 parent;
|
|
Quaternionf bindOrient;
|
|
String name;
|
|
Vector3f bindPos;
|
|
};
|
|
|
|
typedef Vector3ui Triangle;
|
|
|
|
struct Vertex
|
|
{
|
|
Vector2f uv;
|
|
unsigned int startWeight;
|
|
unsigned int weightCount;
|
|
};
|
|
|
|
struct Weight
|
|
{
|
|
Vector3f pos;
|
|
float bias;
|
|
unsigned int joint;
|
|
};
|
|
|
|
struct Mesh
|
|
{
|
|
std::vector<Triangle> triangles;
|
|
std::vector<Vertex> vertices;
|
|
std::vector<Weight> weights;
|
|
String shader;
|
|
};
|
|
|
|
MD5MeshParser(Stream& stream);
|
|
~MD5MeshParser();
|
|
|
|
Ternary Check();
|
|
|
|
const Joint* GetJoints() const;
|
|
UInt32 GetJointCount() const;
|
|
const Mesh* GetMeshes() const;
|
|
UInt32 GetMeshCount() const;
|
|
|
|
bool Parse();
|
|
|
|
private:
|
|
bool Advance(bool required = true);
|
|
void Error(const String& message);
|
|
bool ParseJoints();
|
|
bool ParseMesh();
|
|
void Warning(const String& message);
|
|
void UnrecognizedLine(bool error = false);
|
|
|
|
std::vector<Joint> m_joints;
|
|
std::vector<Mesh> m_meshes;
|
|
Stream& m_stream;
|
|
String m_currentLine;
|
|
bool m_keepLastLine;
|
|
unsigned int m_lineCount;
|
|
unsigned int m_meshIndex;
|
|
unsigned int m_streamFlags;
|
|
};
|
|
}
|
|
|
|
#endif // NAZARA_FORMATS_MD5MESHPARSER_HPP
|