2016-09-06 13:15:29 +00:00
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
2016-09-13 17:48:27 +00:00
|
|
|
#include <list>
|
|
|
|
#include <fstream>
|
2016-10-11 11:41:24 +00:00
|
|
|
#include <string>
|
2016-10-30 13:22:08 +00:00
|
|
|
#include <glm\gtc\matrix_transform.hpp>
|
2016-10-11 11:41:24 +00:00
|
|
|
|
2016-10-12 13:55:36 +00:00
|
|
|
enum Mtyp {
|
2016-10-11 11:41:24 +00:00
|
|
|
null,
|
|
|
|
dynamicMesh,
|
|
|
|
cloth,
|
|
|
|
bone,
|
|
|
|
staticMesh,
|
|
|
|
shadowMesh = 6
|
|
|
|
};
|
2016-09-06 13:15:29 +00:00
|
|
|
|
2016-10-12 13:55:36 +00:00
|
|
|
struct ChunkHeader {
|
2016-09-13 17:48:27 +00:00
|
|
|
char name[5];
|
2016-10-10 10:34:01 +00:00
|
|
|
std::uint32_t size;
|
2016-09-13 17:48:27 +00:00
|
|
|
std::streampos position;
|
|
|
|
};
|
2016-09-12 14:49:05 +00:00
|
|
|
|
2016-11-13 11:15:33 +00:00
|
|
|
struct Segment {
|
2016-11-13 14:46:52 +00:00
|
|
|
std::uint32_t textureIndex = 0;
|
2016-11-13 11:15:33 +00:00
|
|
|
float* vertex = nullptr;
|
|
|
|
float* uv = nullptr;
|
2016-11-20 11:26:23 +00:00
|
|
|
std::vector<std::vector<std::uint32_t>*> meshIndices; // indices into vertex array
|
2016-11-13 11:15:33 +00:00
|
|
|
};
|
|
|
|
|
2016-10-12 13:55:36 +00:00
|
|
|
struct Modl {
|
2016-11-12 11:05:03 +00:00
|
|
|
std::string name = "";
|
|
|
|
std::string parent = "";
|
|
|
|
Mtyp type = null;
|
|
|
|
std::int32_t renderFlags = -1;
|
|
|
|
glm::mat4 m4x4Translation = glm::mat4(1.0f);
|
2016-11-13 11:15:33 +00:00
|
|
|
std::vector<Segment*> segmLst;
|
2016-10-11 11:41:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-09-06 13:15:29 +00:00
|
|
|
class Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Object(const char* path);
|
|
|
|
~Object();
|
|
|
|
|
|
|
|
private:
|
2016-09-13 17:48:27 +00:00
|
|
|
|
2016-10-30 13:22:08 +00:00
|
|
|
std::vector<Modl*> vModls;
|
2016-09-13 17:48:27 +00:00
|
|
|
std::fstream fsMesh;
|
2016-10-22 11:49:45 +00:00
|
|
|
std::vector<std::string> vTextures;
|
2016-09-13 17:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
2016-10-12 13:55:36 +00:00
|
|
|
void loadChunks(std::list<ChunkHeader*> &destination, std::streampos start, const std::uint32_t end);
|
2016-10-21 17:24:30 +00:00
|
|
|
void analyseMsh2Chunks(std::list<ChunkHeader*> &chunkList);
|
2016-10-22 12:05:46 +00:00
|
|
|
void analyseMatdChunks(std::list<ChunkHeader*> &chunkList);
|
2016-10-12 13:55:36 +00:00
|
|
|
void analyseModlChunks(Modl* dataDestination, std::list<ChunkHeader*> &chunkList);
|
|
|
|
void analyseGeomChunks(Modl* dataDestination, std::list<ChunkHeader*> &chunkList);
|
|
|
|
void analyseSegmChunks(Modl* dataDestination, std::list<ChunkHeader*> &chunkList);
|
|
|
|
void analyseClthChunks(Modl* dataDestination, std::list<ChunkHeader*> &chunkList);
|
2016-11-13 11:15:33 +00:00
|
|
|
void readVertex(Segment* dataDestination, std::streampos position);
|
|
|
|
void readUV(Segment* dataDestination, std::streampos position);
|
2016-10-16 10:33:25 +00:00
|
|
|
|
2016-09-06 13:15:29 +00:00
|
|
|
|
|
|
|
public:
|
2016-10-30 13:22:08 +00:00
|
|
|
std::vector<Modl*> getModels() const;
|
2016-11-13 14:46:52 +00:00
|
|
|
std::vector<std::string> getTextureList() const;
|
2016-09-06 13:15:29 +00:00
|
|
|
|
|
|
|
};
|