3#if defined(_WIN32) && defined(_MSC_VER)
4 #pragma warning(disable:4503)
165Model* SceneConnector::emptyModel =
nullptr;
166float SceneConnector::renderGroupsPartitionWidth = 64.0f;
167float SceneConnector::renderGroupsPartitionHeight = 64.0f;
168float SceneConnector::renderGroupsPartitionDepth = 64.0f;
169int SceneConnector::renderGroupsReduceBy = 1;
170int SceneConnector::renderGroupsLODLevels = 3;
171float SceneConnector::renderGroupsLOD2MinDistance = 25.0;
172float SceneConnector::renderGroupsLOD3MinDistance = 50.0;
173int SceneConnector::renderGroupsLOD2ReduceBy = 4;
174int SceneConnector::renderGroupsLOD3ReduceBy = 16;
175bool SceneConnector::enableEarlyZRejection =
false;
210 if (v == PrototypeParticleSystem_Emitter::NONE) {
213 if (v == PrototypeParticleSystem_Emitter::POINT_PARTICLE_EMITTER) {
215 engineEmitter =
new PointParticleEmitter(emitter->getCount(), emitter->getLifeTime(), emitter->getLifeTimeRnd(), emitter->getMass(), emitter->getMassRnd(), emitter->getPosition(), emitter->getVelocity(), emitter->getVelocityRnd(), emitter->getColorStart(), emitter->getColorEnd());
217 if (v == PrototypeParticleSystem_Emitter::BOUNDINGBOX_PARTICLE_EMITTER) {
219 engineEmitter =
new BoundingBoxParticleEmitter(emitter->getCount(), emitter->getLifeTime(), emitter->getLifeTimeRnd(), emitter->getMass(), emitter->getMassRnd(),
new OrientedBoundingBox(emitter->getObbCenter(), emitter->getObbAxis0(), emitter->getObbAxis1(), emitter->getObbAxis2(), emitter->getObbHalfextension()), emitter->getVelocity(), emitter->getVelocityRnd(), emitter->getColorStart(), emitter->getColorEnd());
221 if (v == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER) {
223 engineEmitter =
new CircleParticleEmitter(emitter->getCount(), emitter->getLifeTime(), emitter->getLifeTimeRnd(), emitter->getAxis0(), emitter->getAxis1(), emitter->getCenter(), emitter->getRadius(), emitter->getMass(), emitter->getMassRnd(), emitter->getVelocity(), emitter->getVelocityRnd(), emitter->getColorStart(), emitter->getColorEnd());
225 if (v == PrototypeParticleSystem_Emitter::CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY) {
227 engineEmitter =
new CircleParticleEmitterPlaneVelocity(emitter->getCount(), emitter->getLifeTime(), emitter->getLifeTimeRnd(), emitter->getAxis0(), emitter->getAxis1(), emitter->getCenter(), emitter->getRadius(), emitter->getMass(), emitter->getMassRnd(), emitter->getVelocity(), emitter->getVelocityRnd(), emitter->getColorStart(), emitter->getColorEnd());
229 if (v == PrototypeParticleSystem_Emitter::SPHERE_PARTICLE_EMITTER) {
231 engineEmitter =
new SphereParticleEmitter(emitter->getCount(), emitter->getLifeTime(), emitter->getLifeTimeRnd(), emitter->getMass(), emitter->getMassRnd(),
new Sphere(emitter->getCenter(), emitter->getRadius()), emitter->getVelocity(), emitter->getVelocityRnd(), emitter->getColorStart(), emitter->getColorEnd());
235 "SceneConnector::createParticleSystem(): unknown particle system emitter '" +
246 auto v = particleSystem->
getType();
247 if (v == PrototypeParticleSystem_Type::NONE) {
250 if (v == PrototypeParticleSystem_Type::OBJECT_PARTICLE_SYSTEM) {
252 if (objectParticleSystem->getModel() ==
nullptr)
return nullptr;
256 objectParticleSystem->getModel(),
257 objectParticleSystem->getScale(),
258 objectParticleSystem->isAutoEmit(),
259 enableDynamicShadows,
260 enableDynamicShadows,
261 objectParticleSystem->getMaxCount(),
265 if (v == PrototypeParticleSystem_Type::POINT_PARTICLE_SYSTEM) {
270 pointParticleSystem->getMaxPoints(),
271 pointParticleSystem->getPointSize(),
272 pointParticleSystem->isAutoEmit(),
273 pointParticleSystem->getTexture(),
274 pointParticleSystem->getTextureHorizontalSprites(),
275 pointParticleSystem->getTextureVerticalSprites(),
276 pointParticleSystem->getTextureSpritesFPS()
279 if (v == PrototypeParticleSystem_Type::FOG_PARTICLE_SYSTEM) {
284 fogParticleSystem->getMaxPoints(),
285 fogParticleSystem->getPointSize(),
286 fogParticleSystem->getTexture(),
287 fogParticleSystem->getTextureHorizontalSprites(),
288 fogParticleSystem->getTextureVerticalSprites(),
289 fogParticleSystem->getTextureSpritesFPS()
294 "SceneConnector::createParticleSystem(): unknown particle system type '" +
308 emptyModel = ModelReader::read(
"resources/engine/models",
"empty.tm");
314 entity->fromTransformations(transformations);
322 if (prototype->
getModel() !=
nullptr) {
327 if (imposterLOD !=
nullptr) {
331 imposterLOD->getModels(),
332 imposterLOD->getMinDistance()
337 imposterLodObject->setEffectColorMulLOD2(imposterLOD->getColorMul());
339 imposterLodObject->setShader(prototype->
getShader());
344 for (
auto& parameterIt: shaderParametersDefault) {
345 auto& parameterName = parameterIt.first;
347 imposterLodObject->setShaderParameter(parameterName, parameterValue);
349 for (
auto& parameterIt: distanceShaderParametersDefault) {
350 auto& parameterName = parameterIt.first;
352 imposterLodObject->setDistanceShaderParameter(parameterName, parameterValue);
355 if (lodLevel2 !=
nullptr) {
359 lodLevel2->getType(),
360 lodLevel2->getMinDistance(),
361 lodLevel2->getModel(),
363 lodLevel3 !=
nullptr?lodLevel3->getMinDistance():0.0f,
364 lodLevel3 !=
nullptr?lodLevel3->getModel():
nullptr
367 auto lodObject =
dynamic_cast<LODObject3D*
>(entity);
369 lodObject->setEffectColorMulLOD2(lodLevel2->getColorMul());
370 if (lodLevel3 !=
nullptr) {
371 lodObject->setEffectColorAddLOD3(lodLevel3->getColorAdd());
372 lodObject->setEffectColorMulLOD3(lodLevel3->getColorMul());
375 lodObject->setShader(prototype->
getShader());
380 for (
auto& parameterIt: shaderParametersDefault) {
381 auto& parameterName = parameterIt.first;
383 lodObject->setShaderParameter(parameterName, parameterValue);
385 for (
auto& parameterIt: distanceShaderParametersDefault) {
386 auto& parameterName = parameterIt.first;
388 lodObject->setDistanceShaderParameter(parameterName, parameterValue);
398 auto object =
dynamic_cast<Object3D*
>(entity);
400 object->setShader(prototype->
getShader());
405 for (
auto& parameterIt: shaderParametersDefault) {
406 auto& parameterName = parameterIt.first;
408 object->setShaderParameter(parameterName, parameterValue);
410 for (
auto& parameterIt: distanceShaderParametersDefault) {
411 auto& parameterName = parameterIt.first;
413 object->setDistanceShaderParameter(parameterName, parameterValue);
416 object->setEnableEarlyZRejection(
true);
421 if (prototype->
getType() == Prototype_Type::PARTICLESYSTEM) {
422 vector<ParticleSystemEntity*> particleSystems;
426 id + (i == 0?
"":
"." + to_string(i)),
429 if (particleSystem !=
nullptr) {
433 if (particleSystems.size() == 1) {
434 entity =
dynamic_cast<Entity*
>(particleSystems[0]);
437 if (particleSystems.size() > 1) {
449 if (prototype->
getType() == Prototype_Type::TRIGGER ||
450 prototype->
getType() == Prototype_Type::ENVIRONMENTMAPPING) {
455 if (entityBoundingVolume->getModel() !=
nullptr) {
456 auto bvObject =
new Object3D(
"tdme.prototype.bv." + to_string(i), entityBoundingVolume->getModel());
458 entityBoundingVolumesHierarchy->addEntity(bvObject);
461 if (prototype->
getType() == Prototype_Type::ENVIRONMENTMAPPING &&
468 entityBoundingVolumesHierarchy->addEntity(environmentMapping);
470 entityBoundingVolumesHierarchy->update();
471 if (entityBoundingVolumesHierarchy->getEntities().size() == 0) {
472 entityBoundingVolumesHierarchy->dispose();
473 delete entityBoundingVolumesHierarchy;
475 entity = entityBoundingVolumesHierarchy;
481 if (entity !=
nullptr) {
506 if (progressCallback !=
nullptr) progressCallback->
progress(0.0f);
515 if (prototype !=
nullptr) {
519 auto depth = terrain->getDepth();
522 vector<Model*> terrainModels;
523 Terrain2::createTerrainModels(width, depth, 0.0f, terrain->getHeightVector(), terrainBoundingBox, terrainModels);
524 if (terrainModels.empty() ==
false) {
526 for (
auto terrainModel: terrainModels) {
527 auto terrainObject3D =
new Object3D(
"tdme.terrain." + to_string(idx++), terrainModel);
529 terrainObject3D->setShader(
"terrain");
530 terrainObject3D->setDistanceShader(
"terrain");
531 terrainObject3D->setContributesShadows(
true);
532 terrainObject3D->setReceivesShadows(
true);
533 terrainObject3D->setPickable(pickable);
534 terrainObject3D->setEnabled(enable);
535 terrainObject3D->setTranslation(translation);
536 terrainObject3D->update();
543 auto waterPositionMapsIndices = terrain->getWaterPositionMapsIndices();
544 for (
auto waterPositionMapIdx: waterPositionMapsIndices) {
545 vector<Model*> waterModels;
546 Terrain2::createWaterModels(
548 prototype->getTerrain()->getWaterPositionMap(waterPositionMapIdx),
549 prototype->getTerrain()->getWaterPositionMapHeight(waterPositionMapIdx),
553 for (
auto waterModel: waterModels) {
554 auto waterObject3D =
new Object3D(
"tdme.water." + to_string(idx++), waterModel);
556 waterObject3D->setShader(
"water");
557 waterObject3D->setDistanceShader(
"water");
558 waterObject3D->setContributesShadows(
false);
559 waterObject3D->setReceivesShadows(
false);
560 waterObject3D->setReflectionEnvironmentMappingId(
"sky_environment_mapping");
561 waterObject3D->setReflectionEnvironmentMappingPosition(
562 Terrain2::computeWaterReflectionEnvironmentMappingPosition(
563 terrain->getWaterPositionMap(waterPositionMapIdx),
564 terrain->getWaterPositionMapHeight(waterPositionMapIdx)
567 waterObject3D->setPickable(pickable);
568 waterObject3D->setEnabled(enable);
569 waterObject3D->setTranslation(translation);
570 waterObject3D->update();
578 auto& foliageMaps = terrain->getFoliageMaps();
581 auto foliageRenderGroupIdx = 0;
582 auto partitionIdx = 0;
583 map<int, int> prototypeEntityIdx;
584 for (
auto& foliageMapPartition: foliageMaps) {
585 auto partitionPrototypeInstanceCount = 0;
586 for (
auto& foliageMapPartitionIt: foliageMapPartition) {
587 partitionPrototypeInstanceCount+= foliageMapPartitionIt.second.size();
589 if (partitionPrototypeInstanceCount > 0) {
590 unordered_map<string, Object3DRenderGroup*> object3DRenderGroupByShaderParameters;
591 for (
auto& foliageMapPartitionIt: foliageMapPartition) {
592 auto prototypeIdx = foliageMapPartitionIt.first;
593 auto& transformationsVector = foliageMapPartitionIt.second;
594 if (transformationsVector.empty() ==
true)
continue;
595 auto foliagePrototype = prototype->getTerrain()->getFoliagePrototype(prototypeIdx);
596 if (foliagePrototype->isRenderGroups() ==
false) {
597 for (
auto& transformations: transformationsVector) {
598 auto entity =
createEntity(foliagePrototype,
"tdme.foliage." + to_string(prototypeIdx) +
"." + to_string(prototypeEntityIdx[prototypeIdx]++), transformations);
599 if (entity ==
nullptr)
continue;
600 entity->setTranslation(entity->getTranslation().clone().add(translation));
601 entity->setPickable(pickable);
602 entity->setEnabled(enable);
609 auto receivesShadows = foliagePrototype->isReceivesShadows();
610 auto hash = foliagePrototype->getShaderParameters().getShaderParametersHash() +
"|" + foliagePrototype->getDistanceShaderParameters().getShaderParametersHash() +
"|" + to_string(contributesShadows) +
"|" + to_string(receivesShadows);
611 auto foliagePartitionObject3DRenderGroupIt = object3DRenderGroupByShaderParameters.find(hash);
612 if (foliagePartitionObject3DRenderGroupIt != object3DRenderGroupByShaderParameters.end()) {
613 foliagePartitionObject3DRenderGroup = foliagePartitionObject3DRenderGroupIt->second;
615 if (foliagePartitionObject3DRenderGroup ==
nullptr) {
616 foliagePartitionObject3DRenderGroup =
618 "tdme.fo3rg." + to_string(foliageRenderGroupIdx++),
627 foliagePartitionObject3DRenderGroup->
setShader(foliagePrototype->getShader());
628 foliagePartitionObject3DRenderGroup->
setDistanceShader(foliagePrototype->getDistanceShader());
632 for (
auto& parameterIt: shaderParametersDefault) {
633 auto& parameterName = parameterIt.first;
634 auto parameterValue = foliagePrototype->getShaderParameters().getShaderParameter(parameterName);
635 foliagePartitionObject3DRenderGroup->
setShaderParameter(parameterName, parameterValue);
637 for (
auto& parameterIt: distanceShaderParametersDefault) {
638 auto& parameterName = parameterIt.first;
639 auto parameterValue = foliagePrototype->getDistanceShaderParameters().getShaderParameter(parameterName);
642 foliagePartitionObject3DRenderGroup->
setPickable(
false);
643 foliagePartitionObject3DRenderGroup->
setEnabled(enable);
644 object3DRenderGroupByShaderParameters[hash] = foliagePartitionObject3DRenderGroup;
649 for (
auto& transformations: transformationsVector) {
652 foliagePartitionObject3DRenderGroup->
addObject(foliagePrototype->getModel(), transformations);
656 for (
auto& object3DRenderGroupByShaderParametersIt: object3DRenderGroupByShaderParameters) {
657 auto foliagePartitionObject3DRenderGroup = object3DRenderGroupByShaderParametersIt.second;
658 foliagePartitionObject3DRenderGroup->updateRenderGroup();
659 foliagePartitionObject3DRenderGroup->setTranslation(translation);
660 foliagePartitionObject3DRenderGroup->update();
661 engine->
addEntity(foliagePartitionObject3DRenderGroup);
671 map<string, map<string, map<Model*, vector<Transformations*>>>> renderGroupEntitiesByShaderPartitionModel;
672 map<Model*, Prototype*> renderGroupSceneEditorEntities;
673 auto progressStepCurrent = 0;
677 if (progressCallback !=
nullptr && progressStepCurrent % 1000 == 0) progressCallback->
progress(0.0f +
static_cast<float>(progressStepCurrent) /
static_cast<float>(scene->
getEntityCount()) * 0.5f);
678 progressStepCurrent++;
680 if (addEmpties ==
false && sceneEntity->getPrototype()->getType() == Prototype_Type::EMPTY)
continue;
681 if (addTrigger ==
false && sceneEntity->getPrototype()->getType() == Prototype_Type::TRIGGER)
continue;
683 if (sceneEntity->getPrototype()->isRenderGroups() ==
true) {
684 auto minX = sceneEntity->getTransformations().getTranslation().getX();
685 auto minY = sceneEntity->getTransformations().getTranslation().getY();
686 auto minZ = sceneEntity->getTransformations().getTranslation().getZ();
690 renderGroupSceneEditorEntities[sceneEntity->getPrototype()->getModel()] = sceneEntity->getPrototype();
691 renderGroupEntitiesByShaderPartitionModel[sceneEntity->getPrototype()->getShader() +
"." + sceneEntity->getPrototype()->getDistanceShader() +
"." + to_string(
static_cast<int>(sceneEntity->getPrototype()->getDistanceShaderDistance() / 10.0f))][to_string(partitionX) +
"," + to_string(partitionY) +
"," + to_string(partitionZ)][sceneEntity->getPrototype()->getModel()].push_back(&sceneEntity->getTransformations());
694 if (entity ==
nullptr)
continue;
700 if (sceneEntity->getPrototype()->getType() == Prototype_Type::EMPTY) {
703 if (sceneEntity->getPrototype()->getType()->hasNonEditScaleDownMode() ==
true) {
705 sceneEntity->getPrototype()->getType()->getNonEditScaleDownModeDimension().
719 auto object =
dynamic_cast<Object3D*
>(entity);
729 progressStepCurrent = 0;
730 auto progressStepMax = 0;
731 if (progressCallback !=
nullptr) {
732 for (
auto& itShader: renderGroupEntitiesByShaderPartitionModel) {
733 for (
auto& itPartition: itShader.second) {
734 for (
auto& itModel: itPartition.second) {
740 for (
auto& itShader: renderGroupEntitiesByShaderPartitionModel) {
741 Console::println(
"SceneConnector::addLevel(): adding render group: " + itShader.first);
742 for (
auto& itPartition: itShader.second) {
743 map<string, Object3DRenderGroup*> object3DRenderGroupsByShaderParameters;
744 for (
auto& itModel: itPartition.second) {
745 if (progressCallback !=
nullptr) {
746 progressCallback->
progress(0.5f +
static_cast<float>(progressStepCurrent) /
static_cast<float>(progressStepMax) * 0.5f);
748 progressStepCurrent++;
749 auto prototype = renderGroupSceneEditorEntities[itModel.first];
750 auto contributesShadows = prototype->isContributesShadows();
751 auto receivesShadows = prototype->isReceivesShadows();
752 auto hash = prototype->getShaderParameters().getShaderParametersHash() +
"|" + prototype->getDistanceShaderParameters().getShaderParametersHash() +
"|" + to_string(contributesShadows) +
"|" + to_string(receivesShadows);
753 if (object3DRenderGroupsByShaderParameters.find(hash) == object3DRenderGroupsByShaderParameters.end()) {
754 auto object3DRenderNode =
756 "tdme.o3rg." + to_string(idx++),
763 object3DRenderNode->setContributesShadows(contributesShadows);
764 object3DRenderNode->setReceivesShadows(receivesShadows);
765 object3DRenderNode->setShader(prototype->getShader());
766 object3DRenderNode->setDistanceShader(prototype->getDistanceShader());
767 object3DRenderNode->setDistanceShaderDistance(prototype->getDistanceShaderDistance());
770 for (
auto& parameterIt: shaderParametersDefault) {
771 auto& parameterName = parameterIt.first;
772 auto parameterValue = prototype->getShaderParameters().getShaderParameter(parameterName);
773 object3DRenderNode->setShaderParameter(parameterName, parameterValue);
775 for (
auto& parameterIt: distanceShaderParametersDefault) {
776 auto& parameterName = parameterIt.first;
777 auto parameterValue = prototype->getDistanceShaderParameters().getShaderParameter(parameterName);
778 object3DRenderNode->setDistanceShaderParameter(parameterName, parameterValue);
780 object3DRenderGroupsByShaderParameters[hash] = object3DRenderNode;
782 auto object3DRenderNode = object3DRenderGroupsByShaderParameters[hash];
784 for (
auto transformation: itModel.second) {
787 object3DRenderNode->addObject(prototype->getModel(), *transformation);
790 for (
auto& object3DRenderGroupsByShaderParametersIt: object3DRenderGroupsByShaderParameters) {
791 auto object3DRenderNode = object3DRenderGroupsByShaderParametersIt.second;
792 object3DRenderNode->updateRenderGroup();
800 if (progressCallback !=
nullptr) {
802 delete progressCallback;
807 if (prototype->
getType() == Prototype_Type::EMPTY)
return nullptr;
809 auto physicsType = overrideType !=
nullptr?overrideType:prototype->
getPhysics()->
getType();
810 if (prototype->
getType() == Prototype_Type::TRIGGER) {
811 vector<BoundingVolume*> boundingVolumes;
814 if (index == -1 || index == j) boundingVolumes.push_back(entityBv->getBoundingVolume());
816 if (boundingVolumes.size() == 0)
return nullptr;
825 if (prototype->
getType() == Prototype_Type::MODEL &&
828 auto terrainMesh =
new TerrainMesh(&terrainModel, transformations);
829 if (physicsType == PrototypePhysics_BodyType::COLLISION_BODY) {
838 if (physicsType == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
848 if (physicsType == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
862 vector<BoundingVolume*> boundingVolumes;
865 if (index == -1 || index == j) boundingVolumes.push_back(entityBv->getBoundingVolume());
867 if (boundingVolumes.size() == 0)
return nullptr;
868 if (physicsType == PrototypePhysics_BodyType::COLLISION_BODY) {
877 if (physicsType == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
887 if (physicsType == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
911 return createBody(world, sceneEntity->
getPrototype(), sceneEntity->
getId(), transformations, collisionTypeId, index, overrideType);
916 if (progressCallback !=
nullptr) progressCallback->
progress(0.0f);
917 auto progressStepCurrent = 0;
925 if (prototype !=
nullptr) {
929 auto depth = terrain->getDepth();
930 auto terrainHeightVectorVerticesPerX =
static_cast<int>(Math::ceil(width / Terrain2::STEP_SIZE));
931 auto terreinHeightVectorVerticesPerZ =
static_cast<int>(Math::ceil(depth / Terrain2::STEP_SIZE));
933 auto minHeight = terrain->getHeightVector()[0];
934 auto maxHeight = terrain->getHeightVector()[0];
935 for (
auto heightValue: terrain->getHeightVector()) {
936 if (heightValue < minHeight) minHeight = heightValue;
937 if (heightValue > maxHeight) maxHeight = heightValue;
951 terrainHeightVectorVerticesPerX,
952 terreinHeightVectorVerticesPerZ,
955 terrain->getHeightVector().data()
964 auto& foliageMaps = terrain->getFoliageMaps();
967 map<int, int> prototypeBodyIdx;
968 for (
auto& foliageMapPartition: foliageMaps) {
969 for (
auto& foliageMapPartitionIt: foliageMapPartition) {
970 auto prototypeIdx = foliageMapPartitionIt.first;
971 auto& transformationsVector = foliageMapPartitionIt.second;
972 if (transformationsVector.empty() ==
true)
continue;
973 auto foliagePrototype = prototype->getTerrain()->getFoliagePrototype(prototypeIdx);
974 if (foliagePrototype->isRenderGroups() ==
true)
continue;
975 for (
auto& foliageTransformations: transformationsVector) {
976 auto body =
createBody(world, foliagePrototype,
"tdme.foliage." + to_string(prototypeIdx) +
"." + to_string(prototypeBodyIdx[prototypeIdx]++), foliageTransformations);
977 if (body ==
nullptr)
continue;
979 auto transformations = foliageTransformations;
980 transformations.setTranslation(transformations.getTranslation().clone().add(translation));
981 transformations.update();
982 body->fromTransformations(transformations);
984 body->setEnabled(enable);
997 if (progressCallback !=
nullptr && progressStepCurrent % 1000 == 0) progressCallback->
progress(0.0f +
static_cast<float>(progressStepCurrent) /
static_cast<float>(scene->
getEntityCount()) * 1.0f);
998 progressStepCurrent++;
1001 auto rigidBody =
createBody(world, sceneEntity);
1002 if (rigidBody ==
nullptr)
continue;
1004 auto transformations = sceneEntity->getTransformations();
1005 transformations.setTranslation(transformations.getTranslation().clone().add(translation));
1006 transformations.update();
1007 rigidBody->fromTransformations(transformations);
1009 rigidBody->setEnabled(enable);
1013 if (progressCallback !=
nullptr) {
1015 delete progressCallback;
1024 Entity* entity =
nullptr;
1025 while ((entity = engine->
getEntity(
"tdme.terrain." + to_string(idx++))) !=
nullptr) {
1031 Entity* entity =
nullptr;
1032 while ((entity = engine->
getEntity(
"tdme.water." + to_string(idx++))) !=
nullptr) {
1038 Entity* entity =
nullptr;
1039 while ((entity = engine->
getEntity(
"tdme.fo3rg." + to_string(idx++))) !=
nullptr) {
1045 Entity* entity =
nullptr;
1046 while ((entity = engine->
getEntity(
"tdme.o3rg." + to_string(idx++))) !=
nullptr) {
1057 if (prototype !=
nullptr) {
1061 for (
auto prototypeIdx: terrain->getFoliagePrototypeIndices()) {
1063 if (foliagePrototype->isRenderGroups() ==
true)
continue;
1064 for (
auto& entityId: terrain->getFoliagePrototypeEntityIds(prototypeIdx)) {
1065 auto entity = engine->
getEntity(entityId);
1066 if (entity !=
nullptr) entity->
setEnabled(
false);
1075 auto entity = engine->
getEntity(sceneEntity->getId());
1076 if (entity ==
nullptr)
1087 auto body = world->
getBody(
"tdme.terrain");
1088 if (body !=
nullptr) body->
setEnabled(
false);
1097 if (prototype !=
nullptr) {
1101 for (
auto prototypeIdx: terrain->getFoliagePrototypeIndices()) {
1103 if (foliagePrototype->isRenderGroups() ==
true)
continue;
1104 for (
auto& bodyId: terrain->getFoliagePrototypeEntityIds(prototypeIdx)) {
1105 auto body = world->
getBody(bodyId);
1106 if (body !=
nullptr) body->
setEnabled(
false);
1115 auto body = world->
getBody(sceneEntity->getId());
1116 if (body ==
nullptr)
continue;
1126 Entity* entity =
nullptr;
1127 while ((entity = engine->
getEntity(
"tdme.terrain." + to_string(idx++))) !=
nullptr) {
1133 Entity* entity =
nullptr;
1134 while ((entity = engine->
getEntity(
"tdme.water." + to_string(idx++))) !=
nullptr) {
1140 Entity* entity =
nullptr;
1141 while ((entity = engine->
getEntity(
"tdme.fo3rg." + to_string(idx++))) !=
nullptr) {
1147 Entity* entity =
nullptr;
1148 while ((entity = engine->
getEntity(
"tdme.o3rg." + to_string(idx++))) !=
nullptr) {
1159 if (prototype !=
nullptr) {
1163 for (
auto prototypeIdx: terrain->getFoliagePrototypeIndices()) {
1165 if (foliagePrototype->isRenderGroups() ==
true)
continue;
1166 for (
auto& entityId: terrain->getFoliagePrototypeEntityIds(prototypeIdx)) {
1167 auto entity = engine->
getEntity(entityId);
1168 if (entity !=
nullptr) entity->
setEnabled(
true);
1177 auto entity = engine->
getEntity(sceneEntity->getId());
1178 if (entity ==
nullptr)
1182 entity->setTranslation(entity->getTranslation().clone().add(translation));
1183 if (sceneEntity->getPrototype()->getType() == Prototype_Type::EMPTY) {
1184 entity->setScale(
Vector3(Math::sign(entity->getScale().getX()), Math::sign(entity->getScale().getY()), Math::sign(entity->getScale().getZ())));
1187 entity->setEnabled(
true);
1195 auto body = world->
getBody(
"tdme.terrain");
1196 if (body !=
nullptr) {
1208 if (prototype !=
nullptr) {
1212 for (
auto prototypeIdx: terrain->getFoliagePrototypeIndices()) {
1214 if (foliagePrototype->isRenderGroups() ==
true)
continue;
1215 for (
auto& bodyId: terrain->getFoliagePrototypeEntityIds(prototypeIdx)) {
1216 auto body = world->
getBody(bodyId);
1227 auto rigidBody = world->
getBody(sceneEntity->getId());
1228 if (rigidBody ==
nullptr)
continue;
1231 transformations.
update();
1232 rigidBody->fromTransformations(transformations);
1233 rigidBody->setEnabled(
true);
1240 Entity* entity =
nullptr;
1241 while ((entity = engine->
getEntity(
"tdme.terrain." + to_string(idx++))) !=
nullptr) {
1242 Model* model =
nullptr;
1245 if (model !=
nullptr)
delete model;
1250 Entity* entity =
nullptr;
1251 while ((entity = engine->
getEntity(
"tdme.water." + to_string(idx++))) !=
nullptr) {
1252 Model* model =
nullptr;
1255 if (model !=
nullptr)
delete model;
1263 for (
auto soundDefinition: prototype->
getSounds()) {
1264 if (soundDefinition->getFileName().length() > 0) {
1265 for (
auto poolIdx = 0; poolIdx < poolSize; poolIdx++) {
1266 string pathName = PrototypeReader::getResourcePathName(
1268 soundDefinition->getFileName()
1270 string fileName = Tools::getFileName(soundDefinition->getFileName());
1271 auto sound =
new Sound(
1272 id +
"." + soundDefinition->getId() + (poolSize > 1?
"." + to_string(poolIdx):
""),
1276 sound->setGain(soundDefinition->getGain());
1277 sound->setPitch(soundDefinition->getPitch());
1278 sound->setLooping(soundDefinition->isLooping());
1279 sound->setFixed(soundDefinition->isFixed());
Interface to audio module.
void addEntity(AudioEntity *entity)
Adds a audio entity.
Sound audio entity implementation.
bool removeEntity(const string &id)
Removes an entity.
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
static const map< string, ShaderParameter > getShaderParameterDefaults(const string &shaderId)
Returns parameter defaults of shader with given id.
void addEntity(Entity *entity)
Adds an entity by id.
Entity * getEntity(const string &id)
Returns a entity by given id.
static constexpr int LIGHTS_MAX
void reset()
Removes all entities and caches.
static int32_t getEnvironmentMappingWidth()
static int32_t getEnvironmentMappingHeight()
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.
@ RENDERPASS_POST_POSTPROCESSING
virtual const Vector3 & getTranslation() const =0
virtual void setRenderPass(RenderPass renderPass)=0
Set render pass.
virtual const Vector3 & getScale() const =0
virtual const string & getId()=0
virtual void setTranslation(const Vector3 &translation)=0
Set translation.
virtual EntityType getEntityType()=0
virtual void fromTransformations(const Transformations &transformations)=0
Set up this transformations from given transformations.
virtual void update()=0
Update transformations.
virtual BoundingBox * getBoundingBox()=0
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 setEnabled(bool enabled)=0
Enable/disable rendering.
virtual void setParentEntity(Entity *entity)=0
Set parent entity, needs to be called before adding to engine.
Environment mapping entity.
Fog particle system entity to be used with engine class.
LOD object 3D + imposter to be used with engine class.
void setEffectColorAddLOD2(const Color4 &effectColorAddLOD2)
Set effect color add for LOD2 level.
LOD object 3D to be used with engine class.
void setEffectColorAddLOD2(const Color4 &effectColorAddLOD2)
Set effect color add for LOD2 level.
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.
Object 3D render group for static objects that might be animated by shaders.
void setShader(const string &id)
Set shader id.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void addObject(Model *model, const Transformations &transformations)
Adds a instance to this render group.
void setPickable(bool pickable) override
Set this object pickable.
void setShaderParameter(const string ¶meterName, const ShaderParameter ¶meterValue)
Set shader parameter for given parameter name.
void setDistanceShader(const string &id)
Set distance shader id.
bool isContributesShadows() override
void setEnabled(bool enabled) override
Enable/disable rendering.
void setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
void setDistanceShaderParameter(const string ¶meterName, const ShaderParameter ¶meterValue)
Set distance shader parameter for given parameter name.
Object 3D to be used with engine class.
void setRenderPass(RenderPass renderPass) override
Set render pass.
void setReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Object particle system entity to be used with engine class.
Particle system group, which combines several particle systems into a group, to be used with engine c...
Point particle system entity to be used with engine class.
Scene engine/physics connector.
static STATIC_DLL_IMPEXT int renderGroupsLODLevels
static Entity * createEntity(Prototype *prototype, const string &id, const Transformations &transformations, int instances=1, Entity *parentEntity=nullptr)
Create engine entity.
static Body * createBody(World *world, Prototype *prototype, const string &id, const Transformations &transformations, uint16_t collisionTypeId=0, int index=-1, PrototypePhysics_BodyType *overrideType=nullptr)
Create rigid body.
static void addScene(Engine *engine, Scene *scene, bool addEmpties, bool addTrigger, bool addEnvironmentMapping, bool pickable, bool enable=true, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f), ProgressCallback *progressCallback=nullptr)
Add scene to engine.
static STATIC_DLL_IMPEXT int renderGroupsReduceBy
static STATIC_DLL_IMPEXT Model * emptyModel
static constexpr int32_t RIGIDBODY_TYPEID_COLLISION
static STATIC_DLL_IMPEXT float renderGroupsPartitionHeight
static void enableScene(Engine *engine, Scene *scene, const Vector3 &translation=Vector3(0.0f, 0.0f, 0.0f))
Enable disabled scene in engine.
static constexpr int32_t RIGIDBODY_TYPEID_DYNAMIC
static STATIC_DLL_IMPEXT int renderGroupsLOD3ReduceBy
static STATIC_DLL_IMPEXT bool enableEarlyZRejection
static STATIC_DLL_IMPEXT int renderGroupsLOD2ReduceBy
static void disableScene(Engine *engine, Scene *scene)
Disable scene in engine.
static Entity * createEmpty(const string &id, const Transformations &transformations)
Create engine entity.
static STATIC_DLL_IMPEXT float renderGroupsPartitionDepth
static Entity * createParticleSystem(PrototypeParticleSystem *particleSystem, const string &id, bool enableDynamicShadows=true)
Create particle system.
static constexpr int32_t RIGIDBODY_TYPEID_TRIGGER
static void addSounds(Audio *audio, Prototype *prototype, const string &id, const int poolSize=1)
Add scene entity sounds into given audio instance associated with given id.
static void resetEngine(Engine *engine, Scene *scene)
Reset engine regarding given scene.
static STATIC_DLL_IMPEXT float renderGroupsPartitionWidth
static STATIC_DLL_IMPEXT float renderGroupsLOD3MinDistance
static STATIC_DLL_IMPEXT float renderGroupsLOD2MinDistance
static constexpr int32_t RIGIDBODY_TYPEID_STATIC
Color 4 base definition class.
Representation of a 3d model.
Dynamic rigid/static rigid/collision body class.
void setEnabled(bool enabled)
Set up if rigid body is enabled.
Dynamic physics world class.
Body * addRigidBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float restitution, float friction, float mass, const Vector3 &inertiaTensor, vector< BoundingVolume * > boundingVolumes)
Add a rigid body.
Body * addStaticRigidBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float friction, vector< BoundingVolume * > boundingVolumes)
Add a static rigid body.
Body * getBody(const string &id)
Returns body identified by id.
Body * addCollisionBody(const string &id, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, vector< BoundingVolume * > boundingVolumes)
Add a collision body.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
const Vector3 & getDimensions() const
Convex mesh physics primitive.
Height map physics primitive.
Oriented bounding box physics primitive.
Sphere physics primitive.
Terrain mesh physics primitive.
Base property model class.
Prototype audio definition.
Prototype bounding volume definition.
BoundingVolume * getBoundingVolume()
Prototype LOD level definition.
Prototype bounding box particle emitter definition.
Prototype circle particle emitter plane velocity definition.
Prototype circle particle emitter definition.
Prototype particle system emitter type enum.
Prototype point particle system definition.
Prototype object particle system definition.
Prototype point particle emitter definition.
Prototype point particle system definition.
Prototype sphere particle emitter definition.
Prototype particle system type enum.
Prototype particle system definition.
PrototypeParticleSystem_PointParticleEmitter * getPointParticleEmitter()
PrototypeParticleSystem_CircleParticleEmitterPlaneVelocity * getCircleParticleEmitterPlaneVelocity()
PrototypeParticleSystem_PointParticleSystem * getPointParticleSystem()
PrototypeParticleSystem_CircleParticleEmitter * getCircleParticleEmitter()
PrototypeParticleSystem_BoundingBoxParticleEmitter * getBoundingBoxParticleEmitters()
PrototypeParticleSystem_ObjectParticleSystem * getObjectParticleSystem()
PrototypeParticleSystem_Emitter * getEmitter()
PrototypeParticleSystem_SphereParticleEmitter * getSphereParticleEmitter()
PrototypeParticleSystem_FogParticleSystem * getFogParticleSystem()
PrototypeParticleSystem_Type * getType()
Prototype physics body type enum.
Prototype physics body definitions.
PrototypePhysics_BodyType * getType() const
float getFriction() const
const Vector3 & getInertiaTensor() const
float getRestitution() const
Prototype terrain definition.
Prototype * getFoliagePrototype(int prototypeIdx)
Get foliage prototype by given index.
int getParticleSystemsCount()
PrototypeLODLevel * getLODLevel2()
const vector< PrototypeAudio * > & getSounds()
PrototypeImposterLOD * getImposterLOD()
const string & getShader()
Get shader.
PrototypeLODLevel * getLODLevel3()
float getDistanceShaderDistance()
Get distance shader distance.
bool isContributesShadows()
bool isTerrainMesh()
Is terrain mesh.
const string & getFileName()
const string & getDistanceShader()
Get distance shader.
PrototypePhysics * getPhysics()
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
const EntityShaderParameters & getDistanceShaderParameters()
Get distance shader parameters.
int getBoundingVolumeCount()
int64_t getEnvironmentMapTimeRenderUpdateFrequency()
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
PrototypeTerrain * getTerrain()
const EntityShaderParameters & getShaderParameters()
Get shader parameters.
int getEnvironmentMapRenderPassMask()
Prototype_Type * getType()
Prototype * getPrototype()
Transformations & getTransformations()
Scene prototype library definition.
Prototype * getTerrainPrototype()
Get a terrain prototype.
const Color4 & getAmbient() const
float getQuadraticAttenuation() const
float getSpotExponent() const
const Color4 & getSpecular() const
float getSpotCutOff() const
float getLinearAttenuation() const
const Vector3 & getSpotDirection() const
const Color4 & getDiffuse() const
float getConstantAttenuation() const
const Vector4 & getPosition() const
SceneLibrary * getLibrary()
SceneLight * getLightAt(int i)
Get light at given index.
SceneEntity * getEntityAt(int idx)
Returns entity at given index.
Bounding box particle emitter.
Circle particle emitter with velocity that lives in plane only.
bool equals(const Vector3 &v) const
Compares this vector with given vector.
Vector3 clone() const
Clones the vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
const string & getName() const
Helper class to create models from physics primitive bounding volumes.
Particle system entity interface.
virtual void progress(float value)=0
Perform action.
Particle emitter interface.