TDME2 1.9.121
TMWriter.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
32#include <tdme/math/Matrix4x4.h>
33#include <tdme/math/Vector3.h>
39
40using std::array;
41using std::map;
42using std::string;
43using std::to_string;
44using std::vector;
45
78
79void TMWriter::write(Model* model, const string& pathName, const string& fileName)
80{
81 vector<uint8_t> data;
82 write(model, data);
83 FileSystem::getInstance()->setContent(pathName, fileName, data);
84}
85
86void TMWriter::write(Model* model, vector<uint8_t>& data) {
87 TMWriterOutputStream os(&data);
88 os.writeString("TDME Model");
89 os.writeByte(static_cast< uint8_t >(1));
90 os.writeByte(static_cast< uint8_t >(9));
91 os.writeByte(static_cast< uint8_t >(17));
92 os.writeString(model->getName());
93 os.writeString(model->getUpVector()->getName());
94 os.writeString(model->getRotationOrder()->getName());
95 os.writeString(model->getShaderModel()->getName());
98 os.writeFloat(model->getFPS());
100 writeEmbeddedTextures(&os, model);
101 os.writeInt(model->getMaterials().size());
102 for (auto it: model->getMaterials()) {
103 Material* material = it.second;
104 writeMaterial(&os, material);
105 }
106 writeSubNodes(&os, model->getSubNodes());
107 os.writeInt(model->getAnimationSetups().size());
108 for (auto it: model->getAnimationSetups()) {
109 AnimationSetup* animationSetup = it.second;
110 writeAnimationSetup(&os, animationSetup);
111 }
112 if (Application::hasApplication() == true && os.getData()->size() < 10 * 1024 * 1024) writeThumbnail(&os, model);
113}
114
116 map<string, Texture*> embeddedTextures;
117 for (auto it: m->getMaterials()) {
118 Material* material = it.second;
119 auto smp = material->getSpecularMaterialProperties();
120 if (smp != nullptr && smp->hasEmbeddedTextures() == true) {
121 if (smp->getDiffuseTexture() != nullptr) embeddedTextures[smp->getDiffuseTexture()->getId()] = smp->getDiffuseTexture();
122 if (smp->getSpecularTexture() != nullptr) embeddedTextures[smp->getSpecularTexture()->getId()] = smp->getSpecularTexture();
123 if (smp->getNormalTexture() != nullptr) embeddedTextures[smp->getNormalTexture()->getId()] = smp->getNormalTexture();
124 }
125 auto pmp = material->getPBRMaterialProperties();
126 if (pmp != nullptr && pmp->hasEmbeddedTextures() == true) {
127 if (pmp->getBaseColorTexture() != nullptr) embeddedTextures[pmp->getBaseColorTexture()->getId()] = pmp->getBaseColorTexture();
128 if (pmp->getMetallicRoughnessTexture() != nullptr) embeddedTextures[pmp->getMetallicRoughnessTexture()->getId()] = pmp->getMetallicRoughnessTexture();
129 if (pmp->getNormalTexture() != nullptr) embeddedTextures[pmp->getNormalTexture()->getId()] = pmp->getNormalTexture();
130 }
131 }
132 os->writeInt(embeddedTextures.size());
133 for (auto it: embeddedTextures) {
134 auto texture = it.second;
135 os->writeString(texture->getId());
136 vector<uint8_t> pngData;
137 PNGTextureWriter::write(texture, pngData, false, false);
138 os->writeByte(1); // PNG
139 os->writeInt(pngData.size());
140 os->writeUInt8tArray(pngData);
141 }
142}
143
145{
146 auto smp = m->getSpecularMaterialProperties();
147 auto pmp = m->getPBRMaterialProperties();
148 os->writeString(m->getId());
149 os->writeBoolean(smp->hasEmbeddedTextures());
150 os->writeFloatArray(smp->getAmbientColor().getArray());
151 os->writeFloatArray(smp->getDiffuseColor().getArray());
152 os->writeFloatArray(smp->getSpecularColor().getArray());
153 os->writeFloatArray(smp->getEmissionColor().getArray());
154 os->writeFloat(smp->getShininess());
155 os->writeInt(smp->getTextureAtlasSize());
156 os->writeString(smp->getDiffuseTexturePathName());
157 os->writeString(smp->getDiffuseTextureFileName());
158 os->writeString(smp->getDiffuseTransparencyTexturePathName());
159 os->writeString(smp->getDiffuseTransparencyTextureFileName());
160 os->writeString(smp->getSpecularTexturePathName());
161 os->writeString(smp->getSpecularTextureFileName());
162 os->writeString(smp->getNormalTexturePathName());
163 os->writeString(smp->getNormalTextureFileName());
164 os->writeBoolean(smp->hasDiffuseTextureTransparency());
165 os->writeBoolean(smp->hasDiffuseTextureMaskedTransparency());
166 os->writeFloat(smp->getDiffuseTextureMaskedTransparencyThreshold());
167 os->writeBoolean(m->isDoubleSided());
169 if (pmp == nullptr) {
170 os->writeBoolean(false);
171 } else {
172 os->writeBoolean(true);
173 os->writeBoolean(pmp->hasEmbeddedTextures());
174 os->writeFloatArray(pmp->getBaseColorFactor().getArray());
175 os->writeString(pmp->getBaseColorTexturePathName());
176 os->writeString(pmp->getBaseColorTextureFileName());
177 os->writeBoolean(pmp->hasBaseColorTextureMaskedTransparency());
178 os->writeFloat(pmp->getBaseColorTextureMaskedTransparencyThreshold());
179 os->writeFloat(pmp->getMetallicFactor());
180 os->writeFloat(pmp->getRoughnessFactor());
181 os->writeString(pmp->getMetallicRoughnessTexturePathName());
182 os->writeString(pmp->getMetallicRoughnessTextureFileName());
183 os->writeFloat(pmp->getNormalScale());
184 os->writeString(pmp->getNormalTexturePathName());
185 os->writeString(pmp->getNormalTextureFileName());
186 os->writeFloat(pmp->getExposure());
187 }
188}
189
191 os->writeString(animationSetup->getId());
192 os->writeString(animationSetup->getOverlayFromNodeId());
193 os->writeInt(animationSetup->getStartFrame());
194 os->writeInt(animationSetup->getEndFrame());
195 os->writeBoolean(animationSetup->isLoop());
196 os->writeFloat(animationSetup->getSpeed());
197}
198
199void TMWriter::writeVertices(TMWriterOutputStream* os, const vector<Vector3>& v)
200{
201 if (v.size() == 0) {
202 os->writeBoolean(false);
203 } else {
204 os->writeBoolean(true);
205 os->writeInt(v.size());
206 for (auto i = 0; i < v.size(); i++) {
207 os->writeFloatArray(v[i].getArray());
208 }
209 }
210}
211
212void TMWriter::writeTextureCoordinates(TMWriterOutputStream* os, const vector<TextureCoordinate>& tc) // TODO: change std::vector* argument to std::vector& ?
213{
214 if (tc.size() == 0) {
215 os->writeBoolean(false);
216 } else {
217 os->writeBoolean(true);
218 os->writeInt(tc.size());
219 for (auto i = 0; i < tc.size(); i++) {
220 os->writeFloatArray(tc[i].getArray());
221 }
222 }
223}
224
225void TMWriter::writeIndices(TMWriterOutputStream* os, const array<int32_t, 3>& indices)
226{
227 os->writeBoolean(true);
228 os->writeInt(indices.size());
229 for (auto i = 0; i < indices.size(); i++) {
230 os->writeInt(indices[i]);
231 }
232}
233
235{
236 if (a == nullptr) {
237 os->writeBoolean(false);
238 } else {
239 os->writeBoolean(true);
240 os->writeInt(a->getTransformationsMatrices().size());
241 for (auto i = 0; i < a->getTransformationsMatrices().size(); i++) {
242 os->writeFloatArray(a->getTransformationsMatrices()[i].getArray());
243 }
244 }
245}
246
247void TMWriter::writeFacesEntities(TMWriterOutputStream* os, const vector<FacesEntity>& facesEntities)
248{
249 os->writeInt(facesEntities.size());
250 for (auto i = 0; i < facesEntities.size(); i++) {
251 auto& fe = facesEntities[i];
252 os->writeString(fe.getId());
253 if (fe.getMaterial() == nullptr) {
254 os->writeBoolean(false);
255 } else {
256 os->writeBoolean(true);
257 os->writeString(fe.getMaterial()->getId());
258 }
259 os->writeInt(fe.getFaces().size());
260 for (auto j = 0; j < fe.getFaces().size(); j++) {
261 auto& f = fe.getFaces()[j];
262 writeIndices(os, f.getVertexIndices());
263 writeIndices(os, f.getNormalIndices());
264 writeIndices(os, f.getTextureCoordinateIndices());
265 writeIndices(os, f.getTangentIndices());
266 writeIndices(os, f.getBitangentIndices());
267 }
268 }
269}
270
272{
273 os->writeString(joint.getNodeId());
275}
276
278{
279 os->writeInt(jointWeight.getJointIndex());
280 os->writeInt(jointWeight.getWeightIndex());
281}
282
284{
285 if (skinning == nullptr) {
286 os->writeBoolean(false);
287 } else {
288 os->writeBoolean(true);
289 os->writeFloatArray(skinning->getWeights());
290 os->writeInt(skinning->getJoints().size());
291 for (auto i = 0; i < skinning->getJoints().size(); i++) {
292 writeSkinningJoint(os, skinning->getJoints()[i]);
293 }
294 os->writeInt(skinning->getVerticesJointsWeights().size());
295 for (auto i = 0; i < skinning->getVerticesJointsWeights().size(); i++) {
296 os->writeInt(skinning->getVerticesJointsWeights()[i].size());
297 for (auto j = 0; j < skinning->getVerticesJointsWeights()[i].size(); j++) {
299 }
300 }
301 }
302}
303
304void TMWriter::writeSubNodes(TMWriterOutputStream* os, const map<string, Node*>& subNodes)
305{
306 os->writeInt(subNodes.size());
307 for (auto it: subNodes) {
308 Node* subNode = it.second;
309 writeNode(os, subNode);
310 }
311}
312
314{
315 os->writeString(g->getId());
316 os->writeString(g->getName());
317 os->writeBoolean(g->isJoint());
319 writeVertices(os, g->getVertices());
320 writeVertices(os, g->getNormals());
322 writeVertices(os, g->getTangents());
325 writeSkinning(os, g->getSkinning());
327 writeSubNodes(os, g->getSubNodes());
328}
329
331 // generate thumbnail
332 auto prototype = new Prototype(
333 Prototype::ID_NONE,
334 Prototype_Type::MODEL,
335 model->getId(),
336 model->getId(),
337 "",
338 model->getId(),
339 string(),
340 model,
341 Vector3(0.0f, 0.0f, 0.0f)
342 );
343 vector<uint8_t> pngData;
344 string base64PNGData;
345 Tools::oseThumbnail(prototype, pngData);
346 prototype->unsetModel();
347 delete prototype;
348
349 // write as attachment
350 os->writeUInt8tArray(pngData);
351 os->writeInt(pngData.size()); // png size
352 os->writeUInt8tArray({'T', 'M', 'B', 'N'}); // attachment type id
353 os->writeUInt8tArray({'A', 'T', 'M', 'T'}); // attachment id
354}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
void writeString(const string &s)
Writes a string to output stream.
Definition: TMWriter.h:115
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
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
const string & getOverlayFromNodeId()
If this is a overlay animation this returns a node id from which node the animation will start in the...
const vector< Matrix4x4 > & getTransformationsMatrices() const
Returns transformation matrices.
Definition: Animation.h:41
Color 4 definition.
Definition: Color4.h:20
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
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
const Matrix4x4 & getBindMatrix() const
Bind matrix.
Definition: Joint.h:47
const string & getNodeId() const
Associated node or bone id.
Definition: Joint.h:39
Represents a material.
Definition: Material.h:21
const string & getId() const
Definition: Material.h:57
const PBRMaterialProperties * getPBRMaterialProperties() const
Definition: Material.h:78
const SpecularMaterialProperties * getSpecularMaterialProperties() const
Definition: Material.h:64
const Matrix2D3x3 & getTextureMatrix() const
Definition: Material.h:119
Representation of a 3d model.
Definition: Model.h:32
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Definition: Model.h:274
UpVector * getUpVector()
Definition: Model.h:133
RotationOrder * getRotationOrder()
Definition: Model.h:148
const Matrix4x4 & getImportTransformationsMatrix()
Definition: Model.h:293
const string & getId()
Definition: Model.h:119
ShaderModel * getShaderModel()
Definition: Model.h:155
const string & getName()
Definition: Model.h:126
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
Definition: Model.h:194
BoundingBox * getBoundingBox()
Definition: Model.cpp:142
map< string, Material * > & getMaterials()
Returns all object materials.
Definition: Model.h:171
Model node.
Definition: Node.h:31
const vector< Vector3 > & getTangents() const
Definition: Node.h:199
const Matrix4x4 & getTransformationsMatrix() const
Definition: Node.h:121
const vector< Vector3 > & getBitangents() const
Definition: Node.h:212
Skinning * getSkinning()
Definition: Node.h:238
bool isJoint() const
Definition: Node.h:106
const vector< TextureCoordinate > & getTextureCoordinates() const
Definition: Node.h:186
const string & getId()
Returns id.
Definition: Node.h:85
const vector< Vector3 > & getNormals() const
Definition: Node.h:173
const string & getName()
Definition: Node.h:92
Animation * getAnimation()
Definition: Node.h:225
const vector< FacesEntity > & getFacesEntities() const
Definition: Node.h:256
const vector< Vector3 > & getVertices() const
Definition: Node.h:151
map< string, Node * > & getSubNodes()
Definition: Node.h:289
Represents specular material properties.
Represents rotation orders of a model.
Definition: RotationOrder.h:23
Skinning definition for nodes.
Definition: Skinning.h:27
const vector< Joint > & getJoints()
Definition: Skinning.h:55
const vector< vector< JointWeight > > & getVerticesJointsWeights()
Definition: Skinning.h:68
const vector< float > & getWeights()
Definition: Skinning.h:42
Represents specular material properties.
Class representing texture UV coordinates data.
Model up vector.
Definition: UpVector.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Prototype definition.
Definition: Prototype.h:49
array< float, 9 > & getArray() const
Returns array data.
Definition: Matrix2D3x3.h:348
4x4 3D Matrix class
Definition: Matrix4x4.h:24
array< float, 16 > & getArray() const
Returns array data.
Definition: Matrix4x4.h:616
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
const string & getName() const
Definition: Enum.h:30
std::exception Exception
Exception base class.
Definition: Exception.h:19