TDME2 1.9.121
ScenePropertyPresets.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
10
11#include <ext/tinyxml/tinyxml.h>
12
16
17using std::map;
18using std::string;
19using std::vector;
20
22
28
29/**
30 * Scene Property Presets
31 * @author Andreas Drewke
32 * @version $Id$
33 */
35{
36
37private:
38 vector<BaseProperty*> scenePropertiesPreset;
39 map<string, vector<BaseProperty*>> entityPropertiesPresets;
40 map<string, SceneLight*> lightPresets;
42
43public:
44 /**
45 * Constructor
46 * @param pathName path name
47 * @param fileName file name
48 */
49 ScenePropertyPresets(const string& pathName, const string& fileName);
50
51 /**
52 * Destructor
53 */
55
56 /**
57 * @return scene property presets instance
58 */
60
61 /**
62 * Set default scene properties
63 * @param scene scene
64 */
66
67 /**
68 * @return scene properties preset
69 */
70 inline const vector<BaseProperty*>& getScenePropertiesPreset() const {
72 }
73
74 /**
75 * @return entity property presets
76 */
77 inline const map<string, vector<BaseProperty*>>& getEntityPropertiesPresets() const {
79 }
80
81 /**
82 * @return light presets
83 */
84 inline const map<string, SceneLight*>& getLightPresets() const {
85 return lightPresets;
86 }
87
88private:
89
90 /**
91 * Returns immediate children by tagnames of parent
92 * @param parent parent
93 * @param name name
94 * @return children with given name
95 */
96 const vector<TiXmlElement*> getChildrenByTagName(TiXmlElement* parent, const char* name);
97
98};
Base property model class.
Definition: BaseProperty.h:16
Scene light definition.
Definition: SceneLight.h:21
void setDefaultSceneProperties(Scene *scene)
Set default scene properties.
static STATIC_DLL_IMPEXT ScenePropertyPresets * instance
const map< string, SceneLight * > & getLightPresets() const
const vector< BaseProperty * > & getScenePropertiesPreset() const
const map< string, vector< BaseProperty * > > & getEntityPropertiesPresets() const
ScenePropertyPresets(const string &pathName, const string &fileName)
Constructor.
static ScenePropertyPresets * getInstance()
map< string, vector< BaseProperty * > > entityPropertiesPresets
const vector< TiXmlElement * > getChildrenByTagName(TiXmlElement *parent, const char *name)
Returns immediate children by tagnames of parent.
Scene definition.
Definition: Scene.h:41
The element is a container class.
Definition: tinyxml.h:886
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11