58Model* GenerateBillboardLOD::generate(
60 const string& pathName,
61 const string& fileName
63 auto osEngine = Engine::createOffScreenInstance(4096, 4096,
true,
true,
false);
65 osEngine->setSceneColor(
Color4(0.0f, 0.0f, 0.0f, 0.0f));
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);
82 if (maxAxisDimension < Math::EPSILON) maxAxisDimension = 1.0f;
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)));
88 osEngine->addEntity(
new Object3D(
"model", model));
93 osEngine->makeScreenshot(pathName, textureFileName,
false);
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);
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",
123 croppedTextureHeight,
125 croppedTextureHeight,
126 croppedTextureByteBuffer
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);
143 texture->releaseReference();
146 croppedTexture->acquireReference();
147 auto scaledTexture = TextureReader::scale(croppedTexture, 1024, 1024);
148 croppedTexture->releaseReference();
151 PNGTextureWriter::write(scaledTexture, pathName, textureFileName,
false,
false);
152 scaledTexture->releaseReference();
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();
161 auto billboard =
new Model(modelId, modelId, UpVector::Y_UP, RotationOrder::ZYX,
nullptr);
162 auto billboardMaterial =
new Material(
"billboard");
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;
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);
LOD object 3D to be used with engine class.
Object 3D to be used with engine class.
Bogus/Simple partition implementation.
PNG texture writer class.
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.
void setMaterial(Material *material)
Set up the entity's material.
void setFaces(const vector< Face > &faces)
Set up entity's faces.
Representation of a 3d model.
BoundingBox * getBoundingBox()
Represents rotation orders of a model.
Represents specular material properties.
Class representing texture UV coordinates data.
std::exception Exception
Exception base class.