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;
120string Tools::formatFloat(
float value)
123 string floatString = to_string(value);
124 return floatString.substr(0, floatString.length() - 3);
145 osEngine = Engine::createOffScreenInstance(128, 128,
false,
true,
false);
165 oseLookFromRotations.
update();
180 auto maxAxisDimension = 0.0f;
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;
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");
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;
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");
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);
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");
233 groundPlateMaterial->getSpecularMaterialProperties()->setDiffuseColor(
235 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getRed(),
236 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getGreen(),
237 groundPlateMaterial->getSpecularMaterialProperties()->getDiffuseColor().getBlue(),
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;
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);
277 if (prototype ==
nullptr)
return;
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);
288 auto entityBoundingVolumesHierarchy =
new EntityHierarchy(
"tdme.prototype.bvs");
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);
297 entityBoundingVolumesHierarchy->update();
298 engine->
addEntity(entityBoundingVolumesHierarchy);
301 if (prototype->
getType() == Prototype_Type::TRIGGER ||
302 prototype->
getType() == Prototype_Type::ENVIRONMENTMAPPING) {
303 entityBoundingBox = entityBoundingVolumesHierarchy->getBoundingBox();
305 if (prototype->
getType() == Prototype_Type::PARTICLESYSTEM) {
306 modelEntity = SceneConnector::createEntity(prototype,
"model",
Transformations());
307 if (modelEntity !=
nullptr) engine->
addEntity(modelEntity);
309 if (prototype->
getModel() !=
nullptr) {
311 Model* model =
nullptr;
319 if (lodLevelEntity !=
nullptr) {
320 model = lodLevelEntity->getModel();
321 colorMul.
set(lodLevelEntity->getColorMul());
322 colorAdd.
set(lodLevelEntity->getColorAdd());
329 if (lodLevelEntity !=
nullptr) {
330 model = lodLevelEntity->getModel();
331 colorMul.
set(lodLevelEntity->getColorMul());
332 colorAdd.
set(lodLevelEntity->getColorAdd());
339 if (imposterLOD !=
nullptr) {
342 imposterLOD->getModels()
353 auto shaderParametersDefault = Engine::getShaderParameterDefaults(prototype->
getShader());
354 auto distanceShaderParametersDefault = Engine::getShaderParameterDefaults(prototype->
getDistanceShader());
355 for (
auto& parameterIt: shaderParametersDefault) {
356 auto& parameterName = parameterIt.first;
358 object->setShaderParameter(parameterName, parameterValue);
360 for (
auto& parameterIt: distanceShaderParametersDefault) {
361 auto& parameterName = parameterIt.first;
363 object->setDistanceShaderParameter(parameterName, parameterValue);
370 if (model !=
nullptr) {
371 modelEntity =
new Object3D(
"model", model);
376 auto object =
dynamic_cast<Object3D*
>(modelEntity);
380 auto shaderParametersDefault = Engine::getShaderParameterDefaults(prototype->
getShader());
381 auto distanceShaderParametersDefault = Engine::getShaderParameterDefaults(prototype->
getDistanceShader());
382 for (
auto& parameterIt: shaderParametersDefault) {
383 auto& parameterName = parameterIt.first;
385 object->setShaderParameter(parameterName, parameterValue);
387 for (
auto& parameterIt: distanceShaderParametersDefault) {
388 auto& parameterName = parameterIt.first;
390 object->setDistanceShaderParameter(parameterName, parameterValue);
397 auto entityBoundingBoxToUse = entityBoundingBox !=
nullptr?entityBoundingBox:entityBoundingBoxFallback;
401 if (maxAxisDimension < Math::EPSILON) maxAxisDimension = 1.0f;
403 if (modelEntity !=
nullptr) {
411 Math::ceil(maxAxisDimension),
412 Math::ceil(maxAxisDimension),
415 auto groundObject =
new Object3D(
"ground", ground);
416 groundObject->setEnabled(
false);
417 groundObject->setScale(objectScale);
418 groundObject->update();
426 if (resetup ==
false) {
431 light0->setDiffuse(
Color4(0.3f, 0.3f, 0.3f, 1.0f));
432 light0->setSpecular(
Color4(1.0f, 1.0f, 1.0f, 1.0f));
436 20.0f * maxAxisDimension,
437 20.0f * maxAxisDimension,
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);
452 lookAt.
set(entityBoundingBoxToUse->getCenter().clone().scale(objectScale));
453 Vector3 forwardVector(0.0f, 0.0f, 1.0f);
457 if (cameraRotationInputHandler !=
nullptr) {
459 cameraRotationInputHandler->
setScale(maxAxisDimension * scale);
463 auto lookFrom = lookAt.
clone().
add(forwardVectorTransformed);
464 cam->setLookFrom(lookFrom);
465 cam->setLookAt(lookAt);
466 cam->setUpVector(upVector);
468 if (cameraRotationInputHandler !=
nullptr) {
474 delete entityBoundingBoxFallback;
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);
487 if (cutFileNameIdx == string::npos) {
488 cutFileNameIdx = fileName.rfind(
"resources/");
489 if (cutFileNameIdx != string::npos) {
490 newFileName = StringTools::substring(fileName, cutFileNameIdx);
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);
504 if (StringTools::startsWith(fileName,
"resources/") ==
true) {
507 if (StringTools::endsWith(fileName,
"/resources") ==
true) {
508 return StringTools::substring(fileName, 0, fileName.size() -
string(
"/resources").size());
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
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
544 return FileSystem::getInstance()->getPathName(fileName);
549 return FileSystem::getInstance()->getFileName(fileName);
554 auto idx = fileName.rfind(
'.');
555 if (idx == string::npos) {
558 return fileName.substr(0, idx);
564 if (StringTools::endsWith(StringTools::toLowerCase(fileName), extension) ==
true) {
576 settings.
load(
"settings",
"settings.properties");
578 Console::println(
string(
"Error loading properties: ") + exception.what());
582 if (settings.
get(
"4k",
"false") ==
"true") {
583 Console::println(
"Settings: enable 4k");
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")));
602 gizmoAll = ModelReader::read(
"resources/engine/models",
"gizmo_all.tm");
616 gizmoTranslation = ModelReader::read(
"resources/engine/models",
"gizmo_translate.tm");
623 gizmoScale = ModelReader::read(
"resources/engine/models",
"gizmo_scale.tm");
630 gizmoRotations = ModelReader::read(
"resources/engine/models",
"gizmo_rotate.tm");
639 OrientedBoundingBox::AABB_AXIS_X,
640 OrientedBoundingBox::AABB_AXIS_Y,
641 OrientedBoundingBox::AABB_AXIS_Z,
644 defaultOBB = Primitives::createModel(&obb,
"tdme.obb.default");
Application base class, please make sure to allocate application on heap to have correct application ...
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
void display()
Renders the scene.
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.
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
void setPartition(Partition *partition)
Set partition.
void addEntity(Entity *entity)
Adds an entity by id.
void dispose()
Shutdown the engine.
Entity * getEntity(const string &id)
Returns a entity by given id.
void reset()
Removes all entities and caches.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Entity hierarchy to be used with engine class.
const ShaderParameter getShaderParameter(const string ¶meterName) const
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
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.
void setEnabled(bool enabled)
Set enabled.
void setSpecular(const Color4 &specular)
Set specular light component.
void setConstantAttenuation(float constantAttenuation)
Set up constant attenuation.
void setSpotDirection(const Vector3 &spotDirection)
Set spot direction.
void setAmbient(const Color4 &ambient)
Set ambient light component.
void setQuadraticAttenuation(float quadraticAttenuation)
Set up quadratic attenuation.
void setSpotCutOff(float spotCutOff)
Set spot cut off.
void setPosition(const Vector4 &position)
Set light position.
void setDiffuse(const Color4 &diffuse)
Set diffuse light component.
void setLinearAttenuation(float linearAttenuation)
Set up linear attenuation.
void setSpotExponent(float spotExponent)
Set up spot exponent.
const Vector4 & getPosition() const
Object 3D to be used with engine class.
void setShader(const string &id)
Set shader.
const Quaternion & getQuaternion() const
Scene engine/physics connector.
Bogus/Simple partition implementation.
void set(const array< float, 4 > &color)
Set up color.
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.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Oriented bounding box physics primitive.
Prototype bounding volume definition.
Prototype LOD level definition.
PrototypeLODLevel * getLODLevel2()
PrototypeImposterLOD * getImposterLOD()
const string & getShader()
Get shader.
PrototypeLODLevel * getLODLevel3()
float getDistanceShaderDistance()
Get distance shader distance.
const string & getDistanceShader()
Get distance shader.
const EntityShaderParameters & getDistanceShaderParameters()
Get distance shader parameters.
int getBoundingVolumeCount()
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
const EntityShaderParameters & getShaderParameters()
Get shader parameters.
Prototype_Type * getType()
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Quaternion & normalize()
Normalize quaternion.
Quaternion clone() const
Clones the quaternion.
Quaternion & add(const Quaternion &q)
Adds given quaternion q to this quaternion.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & scale(float scale)
Scale this vector.
File system singleton class.
Helper class to create models from physics primitive bounding volumes.
Properties class, which helps out with storeing or loading key value pairs from/to property files.
const string & get(const string &key, const string &defaultValue) const
Get property value by key.
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
std::exception Exception
Exception base class.