TDME2 1.9.121
TMWriter.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
12#include <tdme/math/fwd-tdme.h>
15
18
19using std::array;
20using std::map;
21using std::string;
22using std::vector;
23
38
39namespace tdme {
40namespace engine {
41namespace fileio {
42namespace models {
43
44/**
45 * TM writer output stream
46 * @author Andreas Drewke
47 * @version $Id$
48 */
50private:
51 vector<uint8_t>* data;
52public:
53
54 /**
55 * Constructor
56 * @param data data vector to write TM to
57 */
58 inline TMWriterOutputStream(vector<uint8_t>* data) {
59 this->data = data;
60 }
61
62 /**
63 * Get data
64 * @return data
65 */
66 inline vector<uint8_t>* getData() {
67 return data;
68 }
69
70 /**
71 * Writes a boolean to output stream
72 * @throws model file IO exception
73 * @param b boolean
74 */
75 inline void writeBoolean(bool b) {
76 writeByte(b == true?1:0);
77 }
78
79 /**
80 * Writes a byte to output stream
81 * @throws model file IO exception
82 * @param b byte
83 */
84 inline void writeByte(uint8_t b) {
85 data->push_back(b);
86 }
87
88 /**
89 * Writes a integer to output stream
90 * @throws model file IO exception
91 * @param i int
92 */
93 inline void writeInt(int32_t i) {
94 writeByte((i >> 24) & 0xFF);
95 writeByte((i >> 16) & 0xFF);
96 writeByte((i >> 8) & 0xFF);
97 writeByte((i >> 0) & 0xFF);
98 }
99
100 /**
101 * Writes a float to output stream
102 * @param f float
103 * @throws model file IO exception
104 */
105 inline void writeFloat(float f) {
106 int value = *((int*)&f);
107 writeInt(value);
108 }
109
110 /**
111 * Writes a string to output stream
112 * @param s string
113 * @throws model file IO exception
114 */
115 inline void writeString(const string& s) {
116 if (s.size() == 0) {
117 writeBoolean(false);
118 } else {
119 writeBoolean(true);
120 writeInt(s.size());
121 for (auto i = 0; i < s.size(); i++) {
122 writeByte(static_cast< uint8_t >(s[i]));
123 }
124 }
125 }
126
127 /**
128 * Writes a float array to output stream
129 * @param f float array
130 * @throws model file IO exception
131 */
132 inline void writeFloatArray(const array<float,2>& f) {
133 writeInt(f.size());
134 for (auto i = 0; i < f.size(); i++) {
135 writeFloat(f[i]);
136 }
137 }
138
139 /**
140 * Writes a float array to output stream
141 * @param f float array
142 * @throws model file IO exception
143 */
144 inline void writeFloatArray(const array<float,3>& f) {
145 writeInt(f.size());
146 for (auto i = 0; i < f.size(); i++) {
147 writeFloat(f[i]);
148 }
149 }
150
151 /**
152 * Writes a float array to output stream
153 * @param f float array
154 * @throws model file IO exception
155 */
156 inline void writeFloatArray(const array<float,4>& f) {
157 writeInt(f.size());
158 for (auto i = 0; i < f.size(); i++) {
159 writeFloat(f[i]);
160 }
161 }
162
163 /**
164 * Writes a float array to output stream
165 * @param f float array
166 * @throws model file IO exception
167 */
168 inline void writeFloatArray(const array<float,9>& f) {
169 writeInt(f.size());
170 for (auto i = 0; i < f.size(); i++) {
171 writeFloat(f[i]);
172 }
173 }
174
175 /**
176 * Writes a float array to output stream
177 * @param f float array
178 * @throws model file IO exception
179 */
180 inline void writeFloatArray(const array<float,16>& f) {
181 writeInt(f.size());
182 for (auto i = 0; i < f.size(); i++) {
183 writeFloat(f[i]);
184 }
185 }
186
187 /**
188 * Writes a float array to output stream
189 * @param f float array
190 * @throws model file IO exception
191 */
192 inline void writeFloatArray(const vector<float>& f) {
193 writeInt(f.size());
194 for (auto i = 0; i < f.size(); i++) {
195 writeFloat(f[i]);
196 }
197 }
198
199 /**
200 * Writes a uint8_t array to output stream, note that no size information is given in this case
201 * @param d uint8_t array
202 * @throws model file IO exception
203 */
204 inline void writeUInt8tArray(const vector<uint8_t>& d) {
205 for (auto i = 0; i < d.size(); i++) {
206 writeByte(d[i]);
207 }
208 }
209
210};
211
212};
213};
214};
215};
216
217/**
218 * TDME model writer
219 * @author Andreas Drewke
220 * @version $Id$
221 */
223{
224public:
225
226 /**
227 * TDME model format writer
228 * @param model model
229 * @param pathName path name
230 * @param fileName file name
231 * @throws tdme::os::filesystem::FileSystemException
232 * @throws tdme::engine::fileio::models::ModelFileIOException
233 */
234 static void write(Model* model, const string& pathName, const string& fileName);
235
236 /**
237 * TDME model format writer
238 * @param model model
239 * @param data data to write TM to
240 */
241 static void write(Model* model, vector<uint8_t>& data);
242
243private:
244
245 /**
246 * Write embedded textures
247 * @param os output stream
248 * @param m model
249 * @throws model file IO exception
250 */
252
253 /**
254 * Write material
255 * @param os output stream
256 * @param m material
257 * @throws model file IO exception
258 */
259 static void writeMaterial(TMWriterOutputStream* os, Material* m);
260
261 /**
262 * Write animation setup
263 * @param os output stream
264 * @param animationSetup animation setup
265 * @throws model file IO exception
266 */
267 static void writeAnimationSetup(TMWriterOutputStream* os, AnimationSetup* animationSetup);
268
269 /**
270 * Write vertices to output stream
271 * @param os output stream
272 * @param v vertices
273 * @throws model file IO exception
274 */
275 static void writeVertices(TMWriterOutputStream* os, const vector<Vector3>& v);
276
277 /**
278 * Write texture coordinates to output stream
279 * @param os output stream
280 * @param tc texture coordinates
281 * @throws model file IO exception
282 */
283 static void writeTextureCoordinates(TMWriterOutputStream* os, const vector<TextureCoordinate>& tc);
284
285 /**
286 * Write indices to output stream
287 * @param os output stream
288 * @param indices indices
289 * @throws model file IO exception
290 */
291 static void writeIndices(TMWriterOutputStream* os, const array<int32_t, 3>& indices);
292
293 /**
294 * Write animation to output stream
295 * @param os output stream
296 * @param a animation
297 * @throws model file IO exception
298 */
299 static void writeAnimation(TMWriterOutputStream* os, Animation* a);
300
301 /**
302 * Write faces entities to output stream
303 * @param os output stream
304 * @param facesEntities faces entities
305 * @throws model file IO exception
306 */
307 static void writeFacesEntities(TMWriterOutputStream* os, const vector<FacesEntity>& facesEntities);
308
309 /**
310 * Write skinning joint
311 * @param os output stream
312 * @param joint joint
313 * @throws model file IO exception
314 */
315 static void writeSkinningJoint(TMWriterOutputStream* os, const Joint& joint);
316
317 /**
318 * Write skinning joint weight
319 * @param os output stream
320 * @param jointWeight joint
321 * @throws model file IO exception
322 */
323 static void writeSkinningJointWeight(TMWriterOutputStream* os, const JointWeight& jointWeight);
324
325 /**
326 * Write skinning to output stream
327 * @param os output stream
328 * @param skinning skinning
329 * @throws model file IO exception
330 */
331 static void writeSkinning(TMWriterOutputStream* os, Skinning* skinning);
332
333 /**
334 * Write sub nodes
335 * @param os output stream
336 * @param subNodes sub nodes
337 * @throws model file IO exception
338 */
339 static void writeSubNodes(TMWriterOutputStream* os, const map<string, Node*>& subNodes);
340
341 /**
342 * Write node to output stream
343 * @param os output stream
344 * @param g node
345 * @throws model file IO exception
346 */
347 static void writeNode(TMWriterOutputStream* os, Node* g);
348
349 /**
350 * Write thumbnail to output stream
351 * @param os output stream
352 * @param model model
353 * @throws model file IO exception
354 */
355 static void writeThumbnail(TMWriterOutputStream* os, Model* model);
356
357};
void writeFloatArray(const array< float, 3 > &f)
Writes a float array to output stream.
Definition: TMWriter.h:144
void writeString(const string &s)
Writes a string to output stream.
Definition: TMWriter.h:115
void writeFloatArray(const array< float, 9 > &f)
Writes a float array to output stream.
Definition: TMWriter.h:168
void writeFloatArray(const array< float, 4 > &f)
Writes a float array to output stream.
Definition: TMWriter.h:156
void writeUInt8tArray(const vector< uint8_t > &d)
Writes a uint8_t array to output stream, note that no size information is given in this case.
Definition: TMWriter.h:204
void writeByte(uint8_t b)
Writes a byte to output stream.
Definition: TMWriter.h:84
void writeInt(int32_t i)
Writes a integer to output stream.
Definition: TMWriter.h:93
void writeFloat(float f)
Writes a float to output stream.
Definition: TMWriter.h:105
void writeFloatArray(const array< float, 2 > &f)
Writes a float array to output stream.
Definition: TMWriter.h:132
void writeBoolean(bool b)
Writes a boolean to output stream.
Definition: TMWriter.h:75
void writeFloatArray(const vector< float > &f)
Writes a float array to output stream.
Definition: TMWriter.h:192
TMWriterOutputStream(vector< uint8_t > *data)
Constructor.
Definition: TMWriter.h:58
void writeFloatArray(const array< float, 16 > &f)
Writes a float array to output stream.
Definition: TMWriter.h:180
vector< uint8_t > * getData()
Get data.
Definition: TMWriter.h:66
static void writeAnimationSetup(TMWriterOutputStream *os, AnimationSetup *animationSetup)
Write animation setup.
Definition: TMWriter.cpp:190
static void writeAnimation(TMWriterOutputStream *os, Animation *a)
Write animation to output stream.
Definition: TMWriter.cpp:234
static void writeTextureCoordinates(TMWriterOutputStream *os, const vector< TextureCoordinate > &tc)
Write texture coordinates to output stream.
Definition: TMWriter.cpp:212
static void writeEmbeddedTextures(TMWriterOutputStream *os, Model *m)
Write embedded textures.
Definition: TMWriter.cpp:115
static void writeFacesEntities(TMWriterOutputStream *os, const vector< FacesEntity > &facesEntities)
Write faces entities to output stream.
Definition: TMWriter.cpp:247
static void writeSubNodes(TMWriterOutputStream *os, const map< string, Node * > &subNodes)
Write sub nodes.
Definition: TMWriter.cpp:304
static void writeSkinning(TMWriterOutputStream *os, Skinning *skinning)
Write skinning to output stream.
Definition: TMWriter.cpp:283
static void writeThumbnail(TMWriterOutputStream *os, Model *model)
Write thumbnail to output stream.
Definition: TMWriter.cpp:330
static void writeVertices(TMWriterOutputStream *os, const vector< Vector3 > &v)
Write vertices to output stream.
Definition: TMWriter.cpp:199
static void writeMaterial(TMWriterOutputStream *os, Material *m)
Write material.
Definition: TMWriter.cpp:144
static void writeSkinningJoint(TMWriterOutputStream *os, const Joint &joint)
Write skinning joint.
Definition: TMWriter.cpp:271
static void writeNode(TMWriterOutputStream *os, Node *g)
Write node to output stream.
Definition: TMWriter.cpp:313
static void write(Model *model, const string &pathName, const string &fileName)
TDME model format writer.
Definition: TMWriter.cpp:79
static void writeIndices(TMWriterOutputStream *os, const array< int32_t, 3 > &indices)
Write indices to output stream.
Definition: TMWriter.cpp:225
static void writeSkinningJointWeight(TMWriterOutputStream *os, const JointWeight &jointWeight)
Write skinning joint weight.
Definition: TMWriter.cpp:277
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
Joint / Bone.
Definition: Joint.h:19
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Skinning definition for nodes.
Definition: Skinning.h:27
Class representing texture UV coordinates data.
3D vector 3 class
Definition: Vector3.h:22
Definition: fwd-tdme.h:4