TDME2 1.9.121
PrototypeReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
13
14#include <ext/rapidjson/document.h>
15
16using std::string;
17
25
26using rapidjson::Value;
27
28/**
29 * Prototype reader
30 * @author Andreas Drewke
31 * @version $Id$
32 */
34{
36
37 STATIC_DLL_IMPEXT static vector<string> extensions;
38
39public:
40 /**
41 * Get supported model extensions
42 */
43 static const vector<string>& getPrototypeExtensions();
44
45 /**
46 * Read thumbnail from file
47 * @param pathName path name
48 * @param fileName file name
49 * @param pngData PNG data
50 */
51 static bool readThumbnail(const string& pathName, const string& fileName, vector<uint8_t>& pngData);
52
53 /**
54 * Reads a prototype from file
55 * @param pathName path name
56 * @param fileName file name
57 * @param transformFilter transform filter or nullptr
58 * @throws tdme::os::filesystem::FileSystemException
59 * @throws tdme::engine::fileio::models::ModelFileIOException
60 * @return prototype
61 */
62 inline static Prototype* read(const string& pathName, const string& fileName, PrototypeTransformFilter* transformFilter = nullptr) {
63 return read(Prototype::ID_NONE, pathName, fileName, transformFilter);
64 }
65
66 /**
67 * Reads a prototype from file
68 * @param id id or Prototype.ID_NONE
69 * @param pathName path name
70 * @param fileName file name
71 * @param transformFilter transform filter or nullptr
72 * @throws tdme::os::filesystem::FileSystemException
73 * @throws tdme::engine::fileio::models::ModelFileIOException
74 * @return prototype
75 */
76 static Prototype* read(int id, const string& pathName, const string& fileName, PrototypeTransformFilter* transformFilter = nullptr);
77
78 /**
79 * Get resource path name
80 * @param pathName path name within a TDME2 resource folder where parent resource was loaded from
81 * @param fileName file name containing a path and file in a TDME2 resource folder
82 * @return model path name
83 */
84 static const string getResourcePathName(const string& pathName, const string& fileName);
85
86private:
87 /**
88 * Reads a prototype from JSON object
89 * @param id id or Prototype.ID_NONE
90 * @param pathName path name or null
91 * @param jPrototypeRoot JSON entity root
92 * @param transformFilter transform filter or nullptr
93 * @throws tdme::os::filesystem::FileSystemException
94 * @throws tdme::engine::fileio::models::ModelFileIOException
95 * @return prototype
96 */
97 static Prototype* read(int id, const string& pathName, Value& jPrototypeRoot, PrototypeTransformFilter* transformFilter = nullptr);
98
99 /**
100 * Parse bounding volume
101 * @param idx idx
102 * @param prototype prototype
103 * @param pathName path name
104 * @param jBv JSON bounding volume node
105 * @throws tdme::os::filesystem::FileSystemException
106 * @throws tdme::engine::fileio::models::ModelFileIOException
107 * @return prototype bounding volume
108 */
109 static PrototypeBoundingVolume* parseBoundingVolume(int idx, Prototype* prototype, const string& pathName, Value& jBv);
110
111 /**
112 * Parse LOD level
113 * @param pathName path name
114 * @param jLodLevel JSON LOD level
115 * @return prototype lod level
116 */
117 static PrototypeLODLevel* parseLODLevel(const string& pathName, Value& jLodLevel);
118
119 /**
120 * Parse LOD level
121 * @param pathName path name
122 * @param jImposterLOD JSON Imposter LOD level
123 * @return prototype imposter LOD
124 */
125 static PrototypeImposterLOD* parseImposterLODLevel(const string& pathName, Value& jImposterLOD);
126
127 /**
128 * Parse particle system
129 * @param particleSystem particle system to be parsed into
130 * @param pathName path name
131 * @param jParticleSystem JSON particle system object
132 */
133 static void parseParticleSystem(PrototypeParticleSystem* particleSystem, const string& pathName, Value& jParticleSystem);
134
135};
static PrototypeImposterLOD * parseImposterLODLevel(const string &pathName, Value &jImposterLOD)
Parse LOD level.
static PrototypeBoundingVolume * parseBoundingVolume(int idx, Prototype *prototype, const string &pathName, Value &jBv)
Parse bounding volume.
static PrototypeLODLevel * parseLODLevel(const string &pathName, Value &jLodLevel)
Parse LOD level.
static void parseParticleSystem(PrototypeParticleSystem *particleSystem, const string &pathName, Value &jParticleSystem)
Parse particle system.
static const string getResourcePathName(const string &pathName, const string &fileName)
Get resource path name.
static Prototype * read(const string &pathName, const string &fileName, PrototypeTransformFilter *transformFilter=nullptr)
Reads a prototype from file.
static const vector< string > & getPrototypeExtensions()
Get supported model extensions.
static bool readThumbnail(const string &pathName, const string &fileName, vector< uint8_t > &pngData)
Read thumbnail from file.
static STATIC_DLL_IMPEXT vector< string > extensions
Prototype LOD level definition.
Prototype definition.
Definition: Prototype.h:49
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11