47Scene::Scene(
const string& name,
const string& description):
BaseProperties(name, description)
54 light->setAmbient(
Color4(0.7f, 0.7f, 0.7f, 1.0f));
55 light->setDiffuse(
Color4(0.3f, 0.3f, 0.3f, 1.0f));
56 light->setSpecular(
Color4(1.0f, 1.0f, 1.0f, 1.0f));
57 light->setPosition(
Vector4(0.0f, 20000.0f, 0.0f, 1.0f));
58 light->setSpotDirection(
Vector3(0.0f, 0.0f, 0.0f).sub(
Vector3(light->getPosition().getX(), light->getPosition().getY(), light->getPosition().getZ())));
59 light->setConstantAttenuation(0.5f);
60 light->setLinearAttenuation(0.0f);
61 light->setQuadraticAttenuation(0.0f);
62 light->setSpotExponent(0.0f);
63 light->setSpotCutOff(180.0f);
64 light->setEnabled(
true);
83 auto haveDimension =
false;
84 auto levelLeft = 0.0f;
85 auto levelRight = 0.0f;
86 auto levelNear = 0.0f;
89 auto levelBottom = 0.0f;
90 Vector3 sideVector(1.0f, 0.0f, 0.0f);
91 Vector3 upVector(0.0f, 1.0f, 0.0f);
92 Vector3 forwardVector(0.0f, 0.0f, 1.0f);
99 if (sceneEntity->getPrototype()->getType() == Prototype_Type::MODEL) {
111 bbDimension.
scale(0.5f);
113 bbMin.
sub(bbDimension);
115 bbMax.
add(bbDimension);
116 auto entityLeft = bbMin.
getX();
117 auto entityRight = bbMax.
getX();
118 auto entityNear = bbMin.
getZ();
119 auto entityFar = bbMax.
getZ();
120 auto entityBottom = bbMin.
getY();
121 auto entityTop = bbMax.
getY();
122 if (haveDimension ==
false) {
123 levelLeft = entityLeft;
124 levelRight = entityRight;
125 levelNear = entityNear;
126 levelFar = entityFar;
127 levelTop = entityTop;
128 levelBottom = entityBottom;
129 haveDimension =
true;
131 if (entityLeft < levelLeft) levelLeft = entityLeft;
132 if (entityRight > levelRight) levelRight = entityRight;
133 if (entityNear < levelNear) levelNear = entityNear;
134 if (entityFar > levelFar) levelFar = entityFar;
135 if (entityTop > levelTop) levelTop = entityTop;
136 if (entityBottom < levelBottom) levelBottom = entityBottom;
141 if (prototype->getType() != Prototype_Type::TERRAIN)
continue;
143 auto entityLeft = 0.0f;
144 auto entityRight = terrain->
getWidth();
145 auto entityNear = 0.0f;
146 auto entityFar = terrain->getDepth();
147 if (entityLeft < levelLeft) levelLeft = entityLeft;
148 if (entityRight > levelRight) levelRight = entityRight;
149 if (entityNear < levelNear) levelNear = entityNear;
150 if (entityFar > levelFar) levelFar = entityFar;
151 for (
auto terrainHeight: terrain->getHeightVector()) {
152 auto entityTop = terrainHeight;
153 auto entityBottom = terrainHeight;
154 if (entityTop > levelTop) levelTop = entityTop;
155 if (entityBottom < levelBottom) levelBottom = entityBottom;
183 if (entity->getPrototype()->getId() == prototypeId) {
184 entitiesByPrototypeId.push_back(entity->getId());
191 vector<string> entitiesToRemove;
193 for (
auto entityId: entitiesToRemove) {
201 if (replaceEntity ==
nullptr)
205 if (entity->getPrototype()->getId() == searchPrototypeId) {
206 entity->setPrototype(replaceEntity);
214 if (_entity !=
nullptr) {
217 "Scene::addEntity():: entity with id '" +
219 "' already exists. Removing it!"
231 auto entity = entityByIdIt->second;
234 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING)
environmentMappingIds.erase(entity->getId());
243 if (
id == newId)
return true;
244 if (
getEntity(newId) !=
nullptr)
return false;
247 auto entity = entityByIdIt->second;
249 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING)
environmentMappingIds.erase(entity->getId());
250 entity->setName(newId);
252 if (entity->getPrototype()->getType() == Prototype_Type::ENVIRONMENTMAPPING)
environmentMappingIds.insert(entity->getId());
263 return entityByIdIt->second;
Representation of a 3d model.
Represents rotation orders of a model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
const Vector3 & getCenter() const
void update()
Updates this bounding box.
const Vector3 & getDimensions() const
Bounding volume interface.
Prototype terrain definition.
PrototypeTerrain * getTerrain()
Prototype_Type * getType()
Prototype * getPrototype()
Scene prototype library definition.
Prototype * getPrototype(int id)
Get a prototype by given id.
Prototype * getPrototypeAt(int idx)
Get prototype at given index.
map< string, SceneEntity * > entitiesById
vector< SceneEntity * > entities
bool removeEntity(const string &id)
Removes an entity from scene.
SceneLibrary * getLibrary()
void replacePrototypeByIds(int searchPrototypeId, int newPrototypeId)
Replace prototype of given search prototype with new prototype.
void removeEntitiesByPrototypeId(int prototypeId)
Remove entities with given prototype id.
void getEntitiesByPrototypeId(int prototypeId, vector< string > &entitiesByPrototypeId)
Get entities with given prototype id.
RotationOrder * rotationOrder
vector< SceneLight * > lights
void setSkyModel(Model *model)
Set sky model.
bool renameEntity(const string &id, const string &newId)
Rename an entity from scene.
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
void addEntity(SceneEntity *entity)
Adds an entity to scene.
set< string > environmentMappingIds
string applicationRootPathName
void update()
Update scene dimension, bounding box, center.
void clearEntities()
Clears all scene entities.
void computeBoundingBox()
Computes scene bounding box.
Vector3 & setZ(float z)
Set Z.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & setX(float x)
Set X.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.
Vector3 & setY(float y)
Set Y.