|
| Scene (const string &name, const string &description) |
| Public constructor. More...
|
|
| ~Scene () |
| Destructor. More...
|
|
const string & | getApplicationRootPathName () |
|
void | setApplicationRootPathName (const string &applicationRootPathName) |
| Set application root path name. More...
|
|
const string & | getFileName () |
|
void | setFileName (const string &fileName) |
| Set up scene file name including relative path. More...
|
|
RotationOrder * | getRotationOrder () |
|
void | setRotationOrder (RotationOrder *rotationOrder) |
| Set rotation order. More...
|
|
int | getLightCount () |
|
SceneLight * | getLightAt (int i) |
| Get light at given index. More...
|
|
SceneLight * | addLight () |
| Add light. More...
|
|
bool | removeLightAt (int i) |
| Remove light at given index i. More...
|
|
SceneLibrary * | getLibrary () |
|
const Vector3 & | getDimension () |
|
BoundingBox * | getBoundingBox () |
|
const Vector3 & | getCenter () |
|
int | allocateEntityId () |
|
int | getEntityIdx () |
|
void | setEntityIdx (int entityIdx) |
| Set entity idx. More...
|
|
void | clearEntities () |
| Clears all scene entities. More...
|
|
void | getEntitiesByPrototypeId (int prototypeId, vector< string > &entitiesByPrototypeId) |
| Get entities with given prototype id. More...
|
|
void | removeEntitiesByPrototypeId (int prototypeId) |
| Remove entities with given prototype id. More...
|
|
void | replacePrototypeByIds (int searchPrototypeId, int newPrototypeId) |
| Replace prototype of given search prototype with new prototype. More...
|
|
set< string > | getEnvironmentMappingIds () |
|
void | addEntity (SceneEntity *entity) |
| Adds an entity to scene. More...
|
|
bool | removeEntity (const string &id) |
| Removes an entity from scene. More...
|
|
bool | renameEntity (const string &id, const string &newId) |
| Rename an entity from scene. More...
|
|
SceneEntity * | getEntity (const string &id) |
| Returns scene entity by id. More...
|
|
int | getEntityCount () |
|
SceneEntity * | getEntityAt (int idx) |
| Returns entity at given index. More...
|
|
const string & | getSkyModelFileName () |
|
void | setSkyModelFileName (const string &skyModelFileName) |
| Set sky model file name. More...
|
|
Model * | getSkyModel () |
|
void | setSkyModel (Model *model) |
| Set sky model. More...
|
|
const Vector3 & | getSkyModelScale () |
|
void | setSkyModelScale (const Vector3 &skyModelScale) |
| Set sky model scale. More...
|
|
void | update () |
| Update scene dimension, bounding box, center. More...
|
|
| BaseProperties (const string &name, const string &description) |
| Public constructor. More...
|
|
virtual | ~BaseProperties () |
| Destructor. More...
|
|
const string & | getName () |
|
void | setName (const string &name) |
| Set up name. More...
|
|
const string & | getDescription () |
|
void | setDescription (const string &description) |
| Set up description. More...
|
|
void | clearProperties () |
| Clears properties. More...
|
|
BaseProperty * | getProperty (const string &name) |
| Retrieve property by name. More...
|
|
int | getPropertyCount () |
|
int | getPropertyIndex (const string &name) |
| Get property index. More...
|
|
BaseProperty * | getPropertyByIndex (int idx) |
| Get property by index. More...
|
|
bool | addProperty (const string &name, const string &value) |
| Add a property. More...
|
|
bool | renameProperty (const string &oldName, const string &name) |
| Rename a property. More...
|
|
bool | updateProperty (const string &oldName, const string &name, const string &value) |
| Update a property. More...
|
|
bool | removeProperty (const string &name) |
| Removes a property. More...
|
|
Scene definition.
- Author
- Andreas Drewke
- Version
- $Id$
Definition at line 39 of file Scene.h.