TDME2 1.9.121
Tools.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
28#include <tdme/engine/Camera.h>
29#include <tdme/engine/Engine.h>
30#include <tdme/engine/Entity.h>
33#include <tdme/engine/Light.h>
38#include <tdme/math/Math.h>
39#include <tdme/math/Matrix4x4.h>
41#include <tdme/math/Vector3.h>
42#include <tdme/math/Vector4.h>
55
56using std::array;
57using std::string;
58using std::to_string;
59
61
110
111Engine* Tools::osEngine = nullptr;
112Model* Tools::gizmoAll = nullptr;
113Model* Tools::gizmoTranslationScale = nullptr;
114Model* Tools::gizmoTranslation = nullptr;
115Model* Tools::gizmoScale = nullptr;
116Model* Tools::gizmoRotations = nullptr;
117Model* Tools::defaultOBB = nullptr;
118Tools::ToolsShutdown Tools::toolsShutdown;
119
120string Tools::formatFloat(float value)
121{
122
123 string floatString = to_string(value);
124 return floatString.substr(0, floatString.length() - 3);
125}
126
128{
129 light->setAmbient(Color4(1.0f, 1.0f, 1.0f, 1.0f));
130 light->setDiffuse(Color4(0.5f, 0.5f, 0.5f, 1.0f));
131 light->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
132 light->setPosition(Vector4(0.0f, 20000.0f, 0.0f, 0.0f));
133 light->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light->getPosition().getX(), light->getPosition().getY(), light->getPosition().getZ())));
134 light->setConstantAttenuation(0.5f);
135 light->setLinearAttenuation(0.0f);
136 light->setQuadraticAttenuation(0.0f);
137 light->setSpotExponent(0.0f);
138 light->setSpotCutOff(180.0f);
139 light->setEnabled(true);
140}
141
143{
144 if (osEngine != nullptr) return;
145 osEngine = Engine::createOffScreenInstance(128, 128, false, true, false);
148}
149
151{
152 if (osEngine == nullptr) return;
153 osEngine->dispose();
154 delete osEngine;
155}
156
157void Tools::oseThumbnail(Prototype* prototype, vector<uint8_t>& pngData)
158{
159 oseInit();
160 Vector3 objectScale;
161 Transformations oseLookFromRotations;
162 oseLookFromRotations.addRotation(Vector3(0.0f, 1.0f, 0.0f), -45.0f);
163 oseLookFromRotations.addRotation(Vector3(1.0f, 0.0f, 0.0f), -45.0f);
164 oseLookFromRotations.addRotation(Vector3(0.0f, 0.0f, 1.0f), 0.0f);
165 oseLookFromRotations.update();
166 Tools::setupPrototype(prototype, osEngine, oseLookFromRotations, 1, objectScale, nullptr, 1.0f);
167 osEngine->setSceneColor(Color4(0.5f, 0.5f, 0.5f, 1.0f));
168 osEngine->display();
169 osEngine->makeScreenshot(pngData);
170 /*
171 osEngine->setSceneColor(Color4(0.8f, 0.0f, 0.0f, 1.0f));
172 osEngine->display();
173 osEngine->makeScreenshot(pngData);
174 */
175 osEngine->reset();
176}
177
179{
180 auto maxAxisDimension = 0.0f;
181 Vector3 dimension = boundingBox->getMax().clone().sub(boundingBox->getMin());
182 if (dimension.getX() > maxAxisDimension) maxAxisDimension = dimension.getX();
183 if (dimension.getY() > maxAxisDimension) maxAxisDimension = dimension.getY();
184 if (dimension.getZ() > maxAxisDimension) maxAxisDimension = dimension.getZ();
185 return maxAxisDimension;
186}
187
188Model* Tools::createGroundModel(float width, float depth, float y)
189{
190 auto modelId = "tdme.ground" + to_string(static_cast<int>(width * 100)) + "x" + to_string(static_cast<int>(depth * 100)) + "@" + to_string(static_cast<int>(y * 100));
191 auto ground = new Model(modelId, modelId, UpVector::Y_UP, RotationOrder::ZYX, nullptr);
192 auto groundMaterial = new Material("ground");
193 groundMaterial->setSpecularMaterialProperties(new SpecularMaterialProperties());
194 groundMaterial->getSpecularMaterialProperties()->setSpecularColor(Color4(0.0f, 0.0f, 0.0f, 1.0f));
195 groundMaterial->getSpecularMaterialProperties()->setDiffuseTexture("resources/engine/textures", "groundplate.png");
196 ground->getMaterials()["ground"] = groundMaterial;
197 auto groundNode = new Node(ground, nullptr, "ground", "ground");
198 vector<Vector3> groundVertices;
199 groundVertices.push_back(Vector3(-width, y, -depth));
200 groundVertices.push_back(Vector3(-width, y, +depth));
201 groundVertices.push_back(Vector3(+width, y, +depth));
202 groundVertices.push_back(Vector3(+width, y, -depth));
203 vector<Vector3> groundNormals;
204 groundNormals.push_back(Vector3(0.0f, 1.0f, 0.0f));
205 vector<TextureCoordinate> groundTextureCoordinates;
206 groundTextureCoordinates.push_back(TextureCoordinate(0.0f, depth));
207 groundTextureCoordinates.push_back(TextureCoordinate(0.0f, 0.0f));
208 groundTextureCoordinates.push_back(TextureCoordinate(width, 0.0f));
209 groundTextureCoordinates.push_back(TextureCoordinate(width, depth));
210 vector<Face> groundFacesGround;
211 groundFacesGround.push_back(Face(groundNode, 0, 1, 2, 0, 0, 0, 0, 1, 2));
212 groundFacesGround.push_back(Face(groundNode, 2, 3, 0, 0, 0, 0, 2, 3, 0));
213 FacesEntity nodeFacesEntityGround(groundNode, "ground.facesentity");
214 nodeFacesEntityGround.setMaterial(groundMaterial);
215 vector<FacesEntity> nodeFacesEntities;
216 nodeFacesEntityGround.setFaces(groundFacesGround);
217 nodeFacesEntities.push_back(nodeFacesEntityGround);
218 groundNode->setVertices(groundVertices);
219 groundNode->setNormals(groundNormals);
220 groundNode->setTextureCoordinates(groundTextureCoordinates);
221 groundNode->setFacesEntities(nodeFacesEntities);
222 ground->getNodes()["ground"] = groundNode;
223 ground->getSubNodes()["ground"] = groundNode;
224 ModelTools::prepareForIndexedRendering(ground);
225 return ground;
226}
227
229{
230 auto groundPlate = new Model("tdme.grid", "tdme.grid", UpVector::Y_UP, RotationOrder::XYZ, new BoundingBox(Vector3(0.0f, -0.01f, 0.0f), Vector3(10000.0f, +0.01f, 10000.0f)));
231 auto groundPlateMaterial = new Material("ground");
232 groundPlateMaterial->setSpecularMaterialProperties(new SpecularMaterialProperties());
233 groundPlateMaterial->getSpecularMaterialProperties()->setDiffuseColor(
234 Color4(
235 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getRed(),
236 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getGreen(),
237 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getBlue(),
238 0.75f
239 )
240 );
241 groundPlateMaterial->getSpecularMaterialProperties()->setDiffuseTexture("resources/engine/textures", "groundplate.png");
242 groundPlateMaterial->getSpecularMaterialProperties()->setSpecularColor(Color4(0.0f, 0.0f, 0.0f, 1.0f));
243 groundPlate->getMaterials()["grid"] = groundPlateMaterial;
244 auto groundNode = new Node(groundPlate, nullptr, "grid", "grid");
245 vector<Vector3> groundVertices;
246 groundVertices.push_back(Vector3(0.0f, 0.0f, 0.0f));
247 groundVertices.push_back(Vector3(0.0f, 0.0f, 10000.0f));
248 groundVertices.push_back(Vector3(10000.0f, 0.0f, 10000.0f));
249 groundVertices.push_back(Vector3(10000.0f, 0.0f, 0.0f));
250 vector<Vector3> groundNormals;
251 groundNormals.push_back(Vector3(0.0f, 1.0f, 0.0f));
252 vector<TextureCoordinate> groundTextureCoordinates;
253 groundTextureCoordinates.push_back(TextureCoordinate(0.0f, 10000.0f));
254 groundTextureCoordinates.push_back(TextureCoordinate(0.0f, 0.0f));
255 groundTextureCoordinates.push_back(TextureCoordinate(10000.0f, 0.0f));
256 groundTextureCoordinates.push_back(TextureCoordinate(10000.0f, 10000.0f));
257 vector<Face> groundFacesGround;
258 groundFacesGround.push_back(Face(groundNode, 0, 1, 2, 0, 0, 0, 0, 1, 2));
259 groundFacesGround.push_back(Face(groundNode, 2, 3, 0, 0, 0, 0, 2, 3, 0));
260 FacesEntity nodeFacesEntityGround(groundNode, "tdme.sceneeditor.grid.facesentity");
261 nodeFacesEntityGround.setMaterial(groundPlateMaterial);
262 nodeFacesEntityGround.setFaces(groundFacesGround);
263 vector<FacesEntity> nodeFacesEntities;
264 nodeFacesEntities.push_back(nodeFacesEntityGround);
265 groundNode->setVertices(groundVertices);
266 groundNode->setNormals(groundNormals);
267 groundNode->setTextureCoordinates(groundTextureCoordinates);
268 groundNode->setFacesEntities(nodeFacesEntities);
269 groundPlate->getNodes()[groundNode->getId()] = groundNode;
270 groundPlate->getSubNodes()[groundNode->getId()] = groundNode;
271 ModelTools::prepareForIndexedRendering(groundPlate);
272 return groundPlate;
273}
274
275void Tools::setupPrototype(Prototype* prototype, Engine* engine, const Transformations& lookFromRotations, int lodLevel, Vector3& objectScale, CameraRotationInputHandler* cameraRotationInputHandler, float scale, bool resetup)
276{
277 if (prototype == nullptr) return;
278
279 // create engine entity
280 BoundingBox* entityBoundingBoxFallback = new BoundingBox(Vector3(-2.5f, 0.0f, -2.5f), Vector3(2.5f, 2.0f, 2.5f));
281 BoundingBox* entityBoundingBox = nullptr;
282 Entity* modelEntity = nullptr;
283 objectScale.set(1.0f, 1.0f, 1.0f);
284 Color4 colorMul(1.0f, 1.0f, 1.0f, 1.0f);
285 Color4 colorAdd(0.0f, 0.0f, 0.0f, 0.0f);
286
287 // bounding volumes
288 auto entityBoundingVolumesHierarchy = new EntityHierarchy("tdme.prototype.bvs");
289 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
290 auto entityBoundingVolume = prototype->getBoundingVolume(i);
291 if (entityBoundingVolume->getModel() != nullptr) {
292 auto bvObject = new Object3D("tdme.prototype.bv." + to_string(i), entityBoundingVolume->getModel());
293 bvObject->setEnabled(false);
294 entityBoundingVolumesHierarchy->addEntity(bvObject);
295 }
296 }
297 entityBoundingVolumesHierarchy->update();
298 engine->addEntity(entityBoundingVolumesHierarchy);
299
300 //
301 if (prototype->getType() == Prototype_Type::TRIGGER ||
302 prototype->getType() == Prototype_Type::ENVIRONMENTMAPPING) {
303 entityBoundingBox = entityBoundingVolumesHierarchy->getBoundingBox();
304 } else
305 if (prototype->getType() == Prototype_Type::PARTICLESYSTEM) {
306 modelEntity = SceneConnector::createEntity(prototype, "model", Transformations());
307 if (modelEntity != nullptr) engine->addEntity(modelEntity);
308 } else
309 if (prototype->getModel() != nullptr) {
310 // model
311 Model* model = nullptr;
312 switch (lodLevel) {
313 case 1:
314 model = prototype->getModel();
315 break;
316 case 2:
317 {
318 auto lodLevelEntity = prototype->getLODLevel2();
319 if (lodLevelEntity != nullptr) {
320 model = lodLevelEntity->getModel();
321 colorMul.set(lodLevelEntity->getColorMul());
322 colorAdd.set(lodLevelEntity->getColorAdd());
323 }
324 break;
325 }
326 case 3:
327 {
328 auto lodLevelEntity = prototype->getLODLevel3();
329 if (lodLevelEntity != nullptr) {
330 model = lodLevelEntity->getModel();
331 colorMul.set(lodLevelEntity->getColorMul());
332 colorAdd.set(lodLevelEntity->getColorAdd());
333 }
334 break;
335 }
336 case 4:
337 {
338 auto imposterLOD = prototype->getImposterLOD();
339 if (imposterLOD != nullptr) {
340 modelEntity = new ImposterObject3D(
341 "model",
342 imposterLOD->getModels()
343 );
344 // TODO: remove this duplicated code, see :368
345 modelEntity->setContributesShadows(true);
346 modelEntity->setReceivesShadows(true);
347 modelEntity->setEffectColorMul(colorMul);
348 modelEntity->setEffectColorAdd(colorAdd);
349 auto object = dynamic_cast<ImposterObject3D*>(modelEntity);
350 object->setShader(prototype->getShader());
351 object->setDistanceShader(prototype->getDistanceShader());
352 object->setDistanceShaderDistance(prototype->getDistanceShaderDistance());
353 auto shaderParametersDefault = Engine::getShaderParameterDefaults(prototype->getShader());
354 auto distanceShaderParametersDefault = Engine::getShaderParameterDefaults(prototype->getDistanceShader());
355 for (auto& parameterIt: shaderParametersDefault) {
356 auto& parameterName = parameterIt.first;
357 auto parameterValue = prototype->getShaderParameters().getShaderParameter(parameterName);
358 object->setShaderParameter(parameterName, parameterValue);
359 }
360 for (auto& parameterIt: distanceShaderParametersDefault) {
361 auto& parameterName = parameterIt.first;
362 auto parameterValue = prototype->getDistanceShaderParameters().getShaderParameter(parameterName);
363 object->setDistanceShaderParameter(parameterName, parameterValue);
364 }
365 engine->addEntity(modelEntity);
366 }
367 }
368 }
369 entityBoundingBox = prototype->getModel()->getBoundingBox();
370 if (model != nullptr) {
371 modelEntity = new Object3D("model", model);
372 modelEntity->setContributesShadows(true);
373 modelEntity->setReceivesShadows(true);
374 modelEntity->setEffectColorMul(colorMul);
375 modelEntity->setEffectColorAdd(colorAdd);
376 auto object = dynamic_cast<Object3D*>(modelEntity);
377 object->setShader(prototype->getShader());
378 object->setDistanceShader(prototype->getDistanceShader());
379 object->setDistanceShaderDistance(prototype->getDistanceShaderDistance());
380 auto shaderParametersDefault = Engine::getShaderParameterDefaults(prototype->getShader());
381 auto distanceShaderParametersDefault = Engine::getShaderParameterDefaults(prototype->getDistanceShader());
382 for (auto& parameterIt: shaderParametersDefault) {
383 auto& parameterName = parameterIt.first;
384 auto parameterValue = prototype->getShaderParameters().getShaderParameter(parameterName);
385 object->setShaderParameter(parameterName, parameterValue);
386 }
387 for (auto& parameterIt: distanceShaderParametersDefault) {
388 auto& parameterName = parameterIt.first;
389 auto parameterValue = prototype->getDistanceShaderParameters().getShaderParameter(parameterName);
390 object->setDistanceShaderParameter(parameterName, parameterValue);
391 }
392 engine->addEntity(modelEntity);
393 }
394 }
395
396 //
397 auto entityBoundingBoxToUse = entityBoundingBox != nullptr?entityBoundingBox:entityBoundingBoxFallback;
398
399 // do a feasible scale
400 float maxAxisDimension = Tools::computeMaxAxisDimension(entityBoundingBoxToUse);
401 if (maxAxisDimension < Math::EPSILON) maxAxisDimension = 1.0f;
402
403 if (modelEntity != nullptr) {
404 modelEntity->setPickable(true);
405 modelEntity->setScale(objectScale);
406 modelEntity->update();
407 }
408
409 // generate ground
410 auto ground = createGroundModel(
411 Math::ceil(maxAxisDimension),
412 Math::ceil(maxAxisDimension),
413 0.0f
414 );
415 auto groundObject = new Object3D("ground", ground);
416 groundObject->setEnabled(false);
417 groundObject->setScale(objectScale);
418 groundObject->update();
419 engine->addEntity(groundObject);
420
421 //
422 dynamic_cast<EntityHierarchy*>(engine->getEntity("tdme.prototype.bvs"))->setScale(objectScale);
423 dynamic_cast<EntityHierarchy*>(engine->getEntity("tdme.prototype.bvs"))->update();
424
425 // if re setting up we do leave camera and lighting as it is
426 if (resetup == false) {
427 // lights
428 for (auto i = 1; i < engine->getLightCount(); i++) engine->getLightAt(i)->setEnabled(false);
429 auto light0 = engine->getLightAt(0);
430 light0->setAmbient(Color4(0.7f, 0.7f, 0.7f, 1.0f));
431 light0->setDiffuse(Color4(0.3f, 0.3f, 0.3f, 1.0f));
432 light0->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
433 light0->setPosition(
434 Vector4(
435 0.0f,
436 20.0f * maxAxisDimension,
437 20.0f * maxAxisDimension,
438 1.0f
439 )
440 );
441 light0->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light0->getPosition().getX(), light0->getPosition().getY(), light0->getPosition().getZ())).normalize());
442 light0->setConstantAttenuation(0.5f);
443 light0->setLinearAttenuation(0.0f);
444 light0->setQuadraticAttenuation(0.0f);
445 light0->setSpotExponent(0.0f);
446 light0->setSpotCutOff(180.0f);
447 light0->setEnabled(true);
448
449 // cam
450 auto cam = engine->getCamera();
451 auto lookAt = cam->getLookAt();
452 lookAt.set(entityBoundingBoxToUse->getCenter().clone().scale(objectScale));
453 Vector3 forwardVector(0.0f, 0.0f, 1.0f);
454 // TODO: a.drewke
455 Transformations _lookFromRotations;
456 _lookFromRotations.fromTransformations(lookFromRotations);
457 if (cameraRotationInputHandler != nullptr) {
458 cameraRotationInputHandler->setDefaultScale(maxAxisDimension * scale);
459 cameraRotationInputHandler->setScale(maxAxisDimension * scale);
460 }
461 auto forwardVectorTransformed = _lookFromRotations.getTransformationsMatrix().multiply(forwardVector).scale(cameraRotationInputHandler != nullptr?cameraRotationInputHandler->getScale():maxAxisDimension * scale);
462 auto upVector = _lookFromRotations.getRotation(2).getQuaternion().multiply(Vector3(0.0f, 1.0f, 0.0f)).normalize();
463 auto lookFrom = lookAt.clone().add(forwardVectorTransformed);
464 cam->setLookFrom(lookFrom);
465 cam->setLookAt(lookAt);
466 cam->setUpVector(upVector);
467 } else {
468 if (cameraRotationInputHandler != nullptr) {
469 cameraRotationInputHandler->setDefaultScale(maxAxisDimension * scale);
470 }
471 }
472
473 //
474 delete entityBoundingBoxFallback;
475}
476
477const string Tools::getRelativeResourcesFileName(const string& applicationRoot, const string& fileName)
478{
479 auto newFileName = StringTools::replace(fileName, '\\', '/');
480 auto cutFileNameIdx = string::npos;
481 if (cutFileNameIdx == string::npos) {
482 cutFileNameIdx = fileName.rfind("/resources/");
483 if (cutFileNameIdx != string::npos) {
484 newFileName = StringTools::substring(fileName, cutFileNameIdx + 1);
485 }
486 }
487 if (cutFileNameIdx == string::npos) {
488 cutFileNameIdx = fileName.rfind("resources/");
489 if (cutFileNameIdx != string::npos) {
490 newFileName = StringTools::substring(fileName, cutFileNameIdx);
491 }
492 }
493 return newFileName;
494}
495
496const string Tools::getApplicationRootPathName(const string& fileName)
497{
498 auto newFileName = StringTools::replace(fileName, '\\', '/');
499 auto applicationRootPathNameIdx = string::npos;
500 if (applicationRootPathNameIdx == string::npos) {
501 applicationRootPathNameIdx = fileName.rfind("/resources/");
502 if (applicationRootPathNameIdx != string::npos) return StringTools::substring(fileName, 0, applicationRootPathNameIdx);
503 }
504 if (StringTools::startsWith(fileName, "resources/") == true) {
505 return "";
506 }
507 if (StringTools::endsWith(fileName, "/resources") == true) {
508 return StringTools::substring(fileName, 0, fileName.size() - string("/resources").size());
509 }
510 return "";
511}
512
513const string Tools::getApplicationSubPathName(const string& fileName)
514{
515 auto newFileName = StringTools::replace(fileName, '\\', '/');
516 auto applicationSubPathNameIdx = -1;
517 if (applicationSubPathNameIdx == -1) {
518 applicationSubPathNameIdx = fileName.rfind("/resources/");
519 if (applicationSubPathNameIdx != -1) {
520 applicationSubPathNameIdx+= string("/resources/").size();
521 auto applicationSubPathName = StringTools::substring(fileName, applicationSubPathNameIdx, fileName.find("/", applicationSubPathNameIdx));
522 if (applicationSubPathName == "engine") return applicationSubPathName; else
523 if (applicationSubPathName == "project") return applicationSubPathName; else
524 if (applicationSubPathName == "installer") return applicationSubPathName; else
525 return "engine";
526 }
527 }
528 if (applicationSubPathNameIdx == -1) {
529 applicationSubPathNameIdx = fileName.rfind("resources/");
530 if (applicationSubPathNameIdx != -1) {
531 applicationSubPathNameIdx+= string("resources/").size();
532 auto applicationSubPathName = StringTools::substring(fileName, applicationSubPathNameIdx, fileName.find("/", applicationSubPathNameIdx));
533 if (applicationSubPathName == "engine") return applicationSubPathName; else
534 if (applicationSubPathName == "project") return applicationSubPathName; else
535 if (applicationSubPathName == "installer") return applicationSubPathName; else
536 return "engine";
537 }
538 }
539 return "";
540}
541
542const string Tools::getPathName(const string& fileName)
543{
544 return FileSystem::getInstance()->getPathName(fileName);
545}
546
547const string Tools::getFileName(const string& fileName)
548{
549 return FileSystem::getInstance()->getFileName(fileName);
550}
551
552const string Tools::removeFileEnding(const string& fileName)
553{
554 auto idx = fileName.rfind('.');
555 if (idx == string::npos) {
556 return fileName;
557 } else {
558 return fileName.substr(0, idx);
559 }
560}
561
562const string Tools::ensureFileEnding(const string& fileName, const string& extension)
563{
564 if (StringTools::endsWith(StringTools::toLowerCase(fileName), extension) == true) {
565 return fileName;
566 } else {
567 return removeFileEnding(fileName) + "." + extension;
568 }
569}
570
572 Properties settings;
573
574 // settings
575 try {
576 settings.load("settings", "settings.properties");
577 } catch (FileSystemException &exception) {
578 Console::println(string("Error loading properties: ") + exception.what());
579 }
580
581 // 4k
582 if (settings.get("4k", "false") == "true") {
583 Console::println("Settings: enable 4k");
584 Engine::set4K(true);
585 }
586
587 // Window
588 Console::println("Settings: window width: " + settings.get("window_width", "1024"));
589 Console::println("Settings: window height: " + settings.get("window_height", "768"));
590 Console::println("Settings: window X position: " + settings.get("window_x", "-1"));
591 Console::println("Settings: window Y position: " + settings.get("window_y", "-1"));
592 Console::println("Settings: fullscreen: " + settings.get("fullscreen", "false"));
593 application->setWindowWidth(Integer::parse(settings.get("window_width", "1024")));
594 application->setWindowHeight(Integer::parse(settings.get("window_height", "768")));
595 application->setWindowXPosition(Integer::parse(settings.get("window_x", "-1")));
596 application->setWindowYPosition(Integer::parse(settings.get("window_y", "-1")));
597 application->setFullScreen(settings.get("fullscreen", "false") == "true");
598}
599
601 if (gizmoAll == nullptr) {
602 gizmoAll = ModelReader::read("resources/engine/models", "gizmo_all.tm");
603 }
604 return gizmoAll;
605}
606
608 if (gizmoTranslationScale == nullptr) {
609 gizmoTranslationScale = ModelReader::read("resources/engine/models", "gizmo_transscale.tm");
610 }
612}
613
615 if (gizmoTranslation == nullptr) {
616 gizmoTranslation = ModelReader::read("resources/engine/models", "gizmo_translate.tm");
617 }
618 return gizmoTranslation;
619}
620
622 if (gizmoScale == nullptr) {
623 gizmoScale = ModelReader::read("resources/engine/models", "gizmo_scale.tm");
624 }
625 return gizmoScale;
626}
627
629 if (gizmoRotations == nullptr) {
630 gizmoRotations = ModelReader::read("resources/engine/models", "gizmo_rotate.tm");
631 }
632 return gizmoRotations;
633}
634
636 if (defaultOBB == nullptr) {
638 Vector3(),
639 OrientedBoundingBox::AABB_AXIS_X,
640 OrientedBoundingBox::AABB_AXIS_Y,
641 OrientedBoundingBox::AABB_AXIS_Z,
642 Vector3(0.5f, 0.5f, 0.5f)
643 );
644 defaultOBB = Primitives::createModel(&obb, "tdme.obb.default");
645 }
646 return defaultOBB;
647
648}
649
651 if (Application::hasApplication() == true) Tools::oseDispose();
652};
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
void setWindowXPosition(int windowXPosition)
Set window X position when initializing.
void setWindowYPosition(int windowYPosition)
Set window Y position when initializing.
void setWindowWidth(int windowWidth)
Set window width.
void setFullScreen(bool fullScreen)
Set full screen mode.
void setWindowHeight(int windowHeight)
Set window height.
const Vector3 & getLookAt() const
Definition: Camera.h:228
Engine main class.
Definition: Engine.h:122
int32_t getLightCount()
Definition: Engine.h:941
void display()
Renders the scene.
Definition: Engine.cpp:1269
bool makeScreenshot(const string &pathName, const string &fileName, bool removeAlphaChannel=true)
Creates a PNG file from current screen( This does not seem to work with GLES2 and offscreen engines.
Definition: Engine.cpp:1971
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
Definition: Engine.h:950
void setPartition(Partition *partition)
Set partition.
Definition: Engine.cpp:358
void addEntity(Entity *entity)
Adds an entity by id.
Definition: Engine.cpp:364
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
void reset()
Removes all entities and caches.
Definition: Engine.cpp:652
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Camera * getCamera()
Definition: Engine.h:907
Entity hierarchy to be used with engine class.
const ShaderParameter getShaderParameter(const string &parameterName) const
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
TDME engine entity.
Definition: Entity.h:31
virtual void setScale(const Vector3 &scale)=0
Set scale.
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set effect color that will be multiplied with fragment color.
virtual void update()=0
Update transformations.
virtual void setContributesShadows(bool contributesShadows)=0
Enable/disable contributes shadows.
virtual void setPickable(bool pickable)=0
Set this object pickable.
virtual void setReceivesShadows(bool receivesShadows)=0
Enable/disable receives shadows.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set effect color that will be added to fragment color.
Imposter object 3d to be used with engine class.
void setShader(const string &id)
Set shader id.
Light representation.
Definition: Light.h:32
void setEnabled(bool enabled)
Set enabled.
Definition: Light.h:82
void setSpecular(const Color4 &specular)
Set specular light component.
Definition: Light.h:127
void setConstantAttenuation(float constantAttenuation)
Set up constant attenuation.
Definition: Light.h:202
void setSpotDirection(const Vector3 &spotDirection)
Set spot direction.
Definition: Light.h:157
void setAmbient(const Color4 &ambient)
Set ambient light component.
Definition: Light.h:97
void setQuadraticAttenuation(float quadraticAttenuation)
Set up quadratic attenuation.
Definition: Light.h:232
void setSpotCutOff(float spotCutOff)
Set spot cut off.
Definition: Light.h:187
void setPosition(const Vector4 &position)
Set light position.
Definition: Light.h:142
void setDiffuse(const Color4 &diffuse)
Set diffuse light component.
Definition: Light.h:112
void setLinearAttenuation(float linearAttenuation)
Set up linear attenuation.
Definition: Light.h:217
void setSpotExponent(float spotExponent)
Set up spot exponent.
Definition: Light.h:172
const Vector4 & getPosition() const
Definition: Light.h:134
Object 3D to be used with engine class.
Definition: Object3D.h:60
void setShader(const string &id)
Set shader.
Definition: Object3D.cpp:116
const Quaternion & getQuaternion() const
Definition: Rotation.h:85
Scene engine/physics connector.
Bogus/Simple partition implementation.
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Rotation & getRotation(const int idx)
Get rotation at given index.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
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
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Oriented bounding box physics primitive.
Prototype LOD level definition.
Prototype definition.
Definition: Prototype.h:49
PrototypeLODLevel * getLODLevel2()
Definition: Prototype.h:251
PrototypeImposterLOD * getImposterLOD()
Definition: Prototype.h:283
const string & getShader()
Get shader.
Definition: Prototype.h:398
PrototypeLODLevel * getLODLevel3()
Definition: Prototype.h:264
float getDistanceShaderDistance()
Get distance shader distance.
Definition: Prototype.h:432
const string & getDistanceShader()
Get distance shader.
Definition: Prototype.h:415
const EntityShaderParameters & getDistanceShaderParameters()
Get distance shader parameters.
Definition: Prototype.h:464
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
Definition: Prototype.h:223
const EntityShaderParameters & getShaderParameters()
Get shader parameters.
Definition: Prototype.h:448
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
Quaternion class.
Definition: Quaternion.h:22
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Definition: Quaternion.h:227
Quaternion & normalize()
Normalize quaternion.
Definition: Quaternion.h:213
Quaternion clone() const
Clones the quaternion.
Definition: Quaternion.h:477
Quaternion & add(const Quaternion &q)
Adds given quaternion q to this quaternion.
Definition: Quaternion.h:242
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
3D vector 4 class
Definition: Vector4.h:19
float getY() const
Definition: Vector4.h:149
float getX() const
Definition: Vector4.h:132
float getZ() const
Definition: Vector4.h:166
File system singleton class.
Definition: FileSystem.h:14
void setDefaultScale(float defaultScale)
Set default scale.
static const string getApplicationRootPathName(const string &fileName)
Get application root path name.
Definition: Tools.cpp:496
static STATIC_DLL_IMPEXT Model * gizmoTranslation
Definition: Tools.h:43
static STATIC_DLL_IMPEXT Model * defaultOBB
Definition: Tools.h:46
static const string ensureFileEnding(const string &fileName, const string &extension)
Ensure file ending.
Definition: Tools.cpp:562
static STATIC_DLL_IMPEXT Model * gizmoRotations
Definition: Tools.h:45
static STATIC_DLL_IMPEXT Model * gizmoTranslationScale
Definition: Tools.h:42
static Model * getGizmoTranslation()
Definition: Tools.cpp:614
static void oseInit()
Init off screen engine for making thumbails.
Definition: Tools.cpp:142
static void setDefaultLight(Light *light)
Set up given engine light with default light.
Definition: Tools.cpp:127
static Model * getGizmoTranslationScale()
Definition: Tools.cpp:607
static Model * getGizmoScale()
Definition: Tools.cpp:621
static STATIC_DLL_IMPEXT Model * gizmoScale
Definition: Tools.h:44
static Model * createGroundModel(float width, float depth, float y)
Creates ground plate with 1m x 1m texture.
Definition: Tools.cpp:188
static void loadSettings(Application *application)
Load settings.
Definition: Tools.cpp:571
static STATIC_DLL_IMPEXT Model * gizmoAll
Definition: Tools.h:41
static STATIC_DLL_IMPEXT Engine * osEngine
Definition: Tools.h:40
static const string getFileName(const string &fileName)
Get file name of given file name.
Definition: Tools.cpp:547
static const string getRelativeResourcesFileName(const string &applicationRoot, const string &fileName)
Get relative resources file name.
Definition: Tools.cpp:477
static float computeMaxAxisDimension(BoundingBox *boundingBox)
Compute max axis dimension for given bounding box.
Definition: Tools.cpp:178
static Model * createGridModel()
Creates grid plate with 1m x 1m texture.
Definition: Tools.cpp:228
static void oseThumbnail(Prototype *prototype, vector< uint8_t > &pngData)
Make a thumbnail of given prototype with off screen engine.
Definition: Tools.cpp:157
static void oseDispose()
Dispose off screen engine.
Definition: Tools.cpp:150
static const string removeFileEnding(const string &fileName)
Remove file ending, e.g.
Definition: Tools.cpp:552
static Model * getGizmoRotations()
Definition: Tools.cpp:628
static const string getPathName(const string &fileName)
Get path of given file name.
Definition: Tools.cpp:542
static void setupPrototype(Prototype *prototype, Engine *engine, const Transformations &lookFromRotations, int lodLevel, Vector3 &objectScale, CameraRotationInputHandler *cameraRotationInputHandler=nullptr, float scale=1.5f, bool resetup=false)
Set up entity in given engine with look from rotations and scale.
Definition: Tools.cpp:275
static Model * getGizmoAll()
Definition: Tools.cpp:600
static Model * getDefaultObb()
Definition: Tools.cpp:635
static const string getApplicationSubPathName(const string &fileName)
Get application sub path name.
Definition: Tools.cpp:513
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Model tools functions class.
Definition: ModelTools.h:38
Helper class to create models from physics primitive bounding volumes.
Definition: Primitives.h:34
Properties class, which helps out with storeing or loading key value pairs from/to property files.
Definition: Properties.h:23
const string & get(const string &key, const string &defaultValue) const
Get property value by key.
Definition: Properties.h:46
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
Definition: Properties.cpp:26
String tokenizer class.
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19