TDME2 1.9.121
GenerateBillboardLOD.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
19#include <tdme/engine/Engine.h>
23#include <tdme/math/Math.h>
29
31
32using std::string;
33
57
58Model* GenerateBillboardLOD::generate(
59 Model* model,
60 const string& pathName,
61 const string& fileName
62) {
63 auto osEngine = Engine::createOffScreenInstance(4096, 4096, true, true, false);
64 osEngine->setPartition(new SimplePartition());
65 osEngine->setSceneColor(Color4(0.0f, 0.0f, 0.0f, 0.0f));
66 //
67 auto light = osEngine->getLightAt(0);
68 light->setAmbient(Color4(1.0f, 1.0f, 1.0f, 1.0f));
69 light->setDiffuse(Color4(0.5f, 0.5f, 0.5f, 1.0f));
70 light->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
71 light->setPosition(Vector4(0.0f, 20000.0f, 0.0f, 0.0f));
72 light->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light->getPosition().getX(), light->getPosition().getY(), light->getPosition().getZ())));
73 light->setConstantAttenuation(0.5f);
74 light->setLinearAttenuation(0.0f);
75 light->setQuadraticAttenuation(0.0f);
76 light->setSpotExponent(0.0f);
77 light->setSpotCutOff(180.0f);
78 light->setEnabled(true);
79 // do a feasible scale
80 auto boundingBox = model->getBoundingBox();
81 float maxAxisDimension = Tools::computeMaxAxisDimension(boundingBox);
82 if (maxAxisDimension < Math::EPSILON) maxAxisDimension = 1.0f;
83 //
84 auto camera = osEngine->getCamera();
85 camera->setLookAt(boundingBox->getCenter());
86 camera->setLookFrom(boundingBox->getCenter().clone().add(Vector3(0.0f, 0.0f, boundingBox->getCenter().getZ() + maxAxisDimension * 1.25f)));
87 //
88 osEngine->addEntity(new Object3D("model", model));
89 //
90 osEngine->display();
91 //
92 auto textureFileName = Tools::removeFileEnding(fileName) + ".png";
93 osEngine->makeScreenshot(pathName, textureFileName, false);
94 //
95 osEngine->dispose();
96 delete osEngine;
97
98 //
99 auto minX = 10000;
100 auto maxX = -1;
101 auto minY = 10000;
102 auto maxY = -1;
103 auto texture = TextureReader::read(pathName, textureFileName, false, false);
104 for (auto y = 0; y < texture->getTextureHeight(); y++) {
105 for (auto x = 0; x < texture->getTextureWidth(); x++) {
106 auto alpha = texture->getTextureData()->get(y * texture->getTextureWidth() * 4 + x * 4 + 3);
107 if (alpha < 5) continue;
108 minX = Math::min(minX, x);
109 maxX = Math::max(maxX, x);
110 minY = Math::min(minY, y);
111 maxY = Math::max(maxY, y);
112 }
113 }
114
115 // crop texture
116 auto croppedTextureWidth = maxX - minX;
117 auto croppedTextureHeight = maxY - minY;
118 auto croppedTextureByteBuffer = new ByteBuffer(croppedTextureWidth * croppedTextureHeight * 4);
119 auto croppedTexture = new Texture(
120 "tdme.engine.croppedtexture",
121 32,
122 croppedTextureWidth,
123 croppedTextureHeight,
124 croppedTextureWidth,
125 croppedTextureHeight,
126 croppedTextureByteBuffer
127 );
128 for (auto y = minY; y < maxY; y++) {
129 for (auto x = minX; x < maxX; x++) {
130 auto pixelOffset = y * texture->getTextureWidth() * 4 + x * 4;
131 auto red = texture->getTextureData()->get(pixelOffset + 0);
132 auto green = texture->getTextureData()->get(pixelOffset + 1);
133 auto blue = texture->getTextureData()->get(pixelOffset + 2);
134 auto alpha = texture->getTextureData()->get(pixelOffset + 3);
135 croppedTextureByteBuffer->put(red);
136 croppedTextureByteBuffer->put(green);
137 croppedTextureByteBuffer->put(blue);
138 croppedTextureByteBuffer->put(alpha);
139 }
140 }
141
142 //
143 texture->releaseReference();
144
145 //
146 croppedTexture->acquireReference();
147 auto scaledTexture = TextureReader::scale(croppedTexture, 1024, 1024);
148 croppedTexture->releaseReference();
149
150 // save
151 PNGTextureWriter::write(scaledTexture, pathName, textureFileName, false, false);
152 scaledTexture->releaseReference();
153
154 // create model
155 auto left = boundingBox->getMin().getX();
156 auto right = boundingBox->getMax().getX();
157 auto top = boundingBox->getMin().getY();
158 auto bottom = boundingBox->getMax().getY();
159 auto depth = boundingBox->getCenter().getZ();
160 auto modelId = Tools::removeFileEnding(textureFileName) + ".tm";
161 auto billboard = new Model(modelId, modelId, UpVector::Y_UP, RotationOrder::ZYX, nullptr);
162 auto billboardMaterial = new Material("billboard");
163 billboardMaterial->setSpecularMaterialProperties(new SpecularMaterialProperties());
164 billboardMaterial->getSpecularMaterialProperties()->setSpecularColor(Color4(0.0f, 0.0f, 0.0f, 1.0f));
165 billboardMaterial->getSpecularMaterialProperties()->setDiffuseTexture(pathName, textureFileName);
166 billboardMaterial->getSpecularMaterialProperties()->setDiffuseTextureMaskedTransparency(true);
167 billboard->getMaterials()[billboardMaterial->getId()] = billboardMaterial;
168 auto billboardNode = new Node(billboard, nullptr, "billboard", "billboard");
169 vector<Vector3> billboardVertices;
170 billboardVertices.push_back(Vector3(left, top, depth));
171 billboardVertices.push_back(Vector3(left, bottom, depth));
172 billboardVertices.push_back(Vector3(right, bottom, depth));
173 billboardVertices.push_back(Vector3(right, top, depth));
174 vector<Vector3> billboardNormals;
175 billboardNormals.push_back(Vector3(0.0f, 1.0f, 0.0f));
176 vector<TextureCoordinate> billboardTextureCoordinates;
177 billboardTextureCoordinates.push_back(TextureCoordinate(0.0f, 0.0f));
178 billboardTextureCoordinates.push_back(TextureCoordinate(0.0f, 1.0f));
179 billboardTextureCoordinates.push_back(TextureCoordinate(1.0f, 1.0f));
180 billboardTextureCoordinates.push_back(TextureCoordinate(1.0f, 0.0f));
181 vector<Face> billboardFacesGround;
182 billboardFacesGround.push_back(Face(billboardNode, 0, 1, 2, 0, 0, 0, 0, 1, 2));
183 billboardFacesGround.push_back(Face(billboardNode, 2, 3, 0, 0, 0, 0, 2, 3, 0));
184 FacesEntity billboardNodeFacesEntity(billboardNode, "billboard.facesentity");
185 billboardNodeFacesEntity.setMaterial(billboardMaterial);
186 vector<FacesEntity> billboardNodeFacesEntities;
187 billboardNodeFacesEntity.setFaces(billboardFacesGround);
188 billboardNodeFacesEntities.push_back(billboardNodeFacesEntity);
189 billboardNode->setVertices(billboardVertices);
190 billboardNode->setNormals(billboardNormals);
191 billboardNode->setTextureCoordinates(billboardTextureCoordinates);
192 billboardNode->setFacesEntities(billboardNodeFacesEntities);
193 billboard->getNodes()["billboard"] = billboardNode;
194 billboard->getSubNodes()["billboard"] = billboardNode;
195 ModelTools::prepareForIndexedRendering(billboard);
196
197 //
198 TMWriter::write(
199 billboard,
200 pathName,
201 fileName
202 );
203
204 //
205 return billboard;
206}
207
Engine main class.
Definition: Engine.h:122
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
Object 3D to be used with engine class.
Definition: Object3D.h:60
Bogus/Simple partition implementation.
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
void setMaterial(Material *material)
Set up the entity's material.
Definition: FacesEntity.h:72
void setFaces(const vector< Face > &faces)
Set up entity's faces.
Definition: FacesEntity.cpp:47
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
BoundingBox * getBoundingBox()
Definition: Model.cpp:142
Model node.
Definition: Node.h:31
Represents rotation orders of a model.
Definition: RotationOrder.h:23
Represents specular material properties.
Class representing texture UV coordinates data.
Model up vector.
Definition: UpVector.h:20
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19
Generate billboard LOD utility class.
static float computeMaxAxisDimension(BoundingBox *boundingBox)
Compute max axis dimension for given bounding box.
Definition: Tools.cpp:178
static const string removeFileEnding(const string &fileName)
Remove file ending, e.g.
Definition: Tools.cpp:552
Byte buffer class.
Definition: ByteBuffer.h:24
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Model tools functions class.
Definition: ModelTools.h:38
std::exception Exception
Exception base class.
Definition: Exception.h:19