79void TMWriter::write(
Model* model,
const string& pathName,
const string& fileName)
83 FileSystem::getInstance()->setContent(pathName, fileName, data);
112 if (Application::hasApplication() ==
true && os.
getData()->size() < 10 * 1024 * 1024)
writeThumbnail(&os, model);
116 map<string, Texture*> embeddedTextures;
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();
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();
132 os->
writeInt(embeddedTextures.size());
133 for (
auto it: embeddedTextures) {
134 auto texture = it.second;
136 vector<uint8_t> pngData;
137 PNGTextureWriter::write(texture, pngData,
false,
false);
155 os->
writeInt(smp->getTextureAtlasSize());
158 os->
writeString(smp->getDiffuseTransparencyTexturePathName());
159 os->
writeString(smp->getDiffuseTransparencyTextureFileName());
160 os->
writeString(smp->getSpecularTexturePathName());
161 os->
writeString(smp->getSpecularTextureFileName());
165 os->
writeBoolean(smp->hasDiffuseTextureMaskedTransparency());
166 os->
writeFloat(smp->getDiffuseTextureMaskedTransparencyThreshold());
169 if (pmp ==
nullptr) {
175 os->
writeString(pmp->getBaseColorTexturePathName());
176 os->
writeString(pmp->getBaseColorTextureFileName());
177 os->
writeBoolean(pmp->hasBaseColorTextureMaskedTransparency());
178 os->
writeFloat(pmp->getBaseColorTextureMaskedTransparencyThreshold());
181 os->
writeString(pmp->getMetallicRoughnessTexturePathName());
182 os->
writeString(pmp->getMetallicRoughnessTextureFileName());
206 for (
auto i = 0; i < v.size(); i++) {
214 if (tc.size() == 0) {
219 for (
auto i = 0; i < tc.size(); i++) {
229 for (
auto i = 0; i < indices.size(); i++) {
250 for (
auto i = 0; i < facesEntities.size(); i++) {
251 auto& fe = facesEntities[i];
253 if (fe.getMaterial() ==
nullptr) {
260 for (
auto j = 0; j < fe.getFaces().size(); j++) {
261 auto& f = fe.getFaces()[j];
285 if (skinning ==
nullptr) {
291 for (
auto i = 0; i < skinning->
getJoints().size(); i++) {
307 for (
auto it: subNodes) {
308 Node* subNode = it.second;
334 Prototype_Type::MODEL,
343 vector<uint8_t> pngData;
344 string base64PNGData;
345 Tools::oseThumbnail(prototype, pngData);
346 prototype->unsetModel();
Application base class, please make sure to allocate application on heap to have correct application ...
void writeString(const string &s)
Writes a string to output stream.
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.
void writeByte(uint8_t b)
Writes a byte to output stream.
void writeInt(int32_t i)
Writes a integer to output stream.
void writeFloat(float f)
Writes a float to output stream.
void writeFloatArray(const array< float, 2 > &f)
Writes a float array to output stream.
void writeBoolean(bool b)
Writes a boolean to output stream.
vector< uint8_t > * getData()
Get data.
static void writeAnimationSetup(TMWriterOutputStream *os, AnimationSetup *animationSetup)
Write animation setup.
static void writeAnimation(TMWriterOutputStream *os, Animation *a)
Write animation to output stream.
static void writeTextureCoordinates(TMWriterOutputStream *os, const vector< TextureCoordinate > &tc)
Write texture coordinates to output stream.
static void writeEmbeddedTextures(TMWriterOutputStream *os, Model *m)
Write embedded textures.
static void writeFacesEntities(TMWriterOutputStream *os, const vector< FacesEntity > &facesEntities)
Write faces entities to output stream.
static void writeSubNodes(TMWriterOutputStream *os, const map< string, Node * > &subNodes)
Write sub nodes.
static void writeSkinning(TMWriterOutputStream *os, Skinning *skinning)
Write skinning to output stream.
static void writeThumbnail(TMWriterOutputStream *os, Model *model)
Write thumbnail to output stream.
static void writeVertices(TMWriterOutputStream *os, const vector< Vector3 > &v)
Write vertices to output stream.
static void writeMaterial(TMWriterOutputStream *os, Material *m)
Write material.
static void writeSkinningJoint(TMWriterOutputStream *os, const Joint &joint)
Write skinning joint.
static void writeNode(TMWriterOutputStream *os, Node *g)
Write node to output stream.
static void write(Model *model, const string &pathName, const string &fileName)
TDME model format writer.
static void writeIndices(TMWriterOutputStream *os, const array< int32_t, 3 > &indices)
Write indices to output stream.
static void writeSkinningJointWeight(TMWriterOutputStream *os, const JointWeight &jointWeight)
Write skinning joint weight.
PNG texture writer class.
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.
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Node faces entity A node can have multiple entities containing faces and a applied material.
int32_t getWeightIndex() const
int32_t getJointIndex() const
const Matrix4x4 & getBindMatrix() const
Bind matrix.
const string & getNodeId() const
Associated node or bone id.
const string & getId() const
const PBRMaterialProperties * getPBRMaterialProperties() const
bool isDoubleSided() const
const SpecularMaterialProperties * getSpecularMaterialProperties() const
const Matrix2D3x3 & getTextureMatrix() const
Representation of a 3d model.
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
RotationOrder * getRotationOrder()
const Matrix4x4 & getImportTransformationsMatrix()
ShaderModel * getShaderModel()
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
BoundingBox * getBoundingBox()
map< string, Material * > & getMaterials()
Returns all object materials.
const vector< Vector3 > & getTangents() const
const Matrix4x4 & getTransformationsMatrix() const
const vector< Vector3 > & getBitangents() const
const vector< TextureCoordinate > & getTextureCoordinates() const
const string & getId()
Returns id.
const vector< Vector3 > & getNormals() const
Animation * getAnimation()
const vector< FacesEntity > & getFacesEntities() const
const vector< Vector3 > & getVertices() const
map< string, Node * > & getSubNodes()
Represents specular material properties.
Texture * getBaseColorTexture() const
Represents rotation orders of a model.
Skinning definition for nodes.
const vector< Joint > & getJoints()
const vector< vector< JointWeight > > & getVerticesJointsWeights()
const vector< float > & getWeights()
Represents specular material properties.
Texture * getDiffuseTexture() const
Class representing texture UV coordinates data.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
array< float, 9 > & getArray() const
Returns array data.
array< float, 16 > & getArray() const
Returns array data.
array< float, 3 > & getArray() const
File system singleton class.
const string & getName() const
std::exception Exception
Exception base class.