TDME2 1.9.121
ScenePropertyPresets.cpp
Go to the documentation of this file.
2
3#include <stdlib.h>
4
5#include <map>
6#include <string>
7#include <vector>
8
9#include <tdme/tdme.h>
16#include <tdme/math/Vector3.h>
17#include <tdme/math/Vector4.h>
22
23#include <ext/tinyxml/tinyxml.h>
24
25using std::map;
26using std::string;
27using std::vector;
28
44
45ScenePropertyPresets* ScenePropertyPresets::instance = nullptr;
46
47ScenePropertyPresets::ScenePropertyPresets(const string& pathName, const string& fileName)
48{
49 /*
50 auto xmlContent = FileSystem::getInstance()->getContentAsString(pathName, fileName);
51 TiXmlDocument xmlDocument;
52 xmlDocument.Parse(xmlContent.c_str());
53 if (xmlDocument.Error() == true) {
54 Console::println(
55 "ScenePropertyPresets::ScenePropertyPresets():: Could not parse file '" +
56 pathName + "/" + fileName +
57 "'. Error='" +
58 xmlDocument.ErrorDesc() +
59 "'. Exiting.\n"
60 );
61 Application::exit(1);
62 }
63 TiXmlElement* xmlRoot = xmlDocument.RootElement();
64
65 for (auto xmlMap: getChildrenByTagName(xmlRoot, "map")) {
66 for (auto xmlProperty: getChildrenByTagName(xmlMap, "property")) {
67 scenePropertiesPreset.push_back(
68 new PrototypeProperty(
69 (xmlProperty->Attribute("name")),
70 (xmlProperty->Attribute("value"))
71 )
72 );
73 }
74 }
75
76 for (auto xmlObject: getChildrenByTagName(xmlRoot, "object")) {
77 for (auto xmlType: getChildrenByTagName(xmlObject, "type")) {
78 auto typeId = (xmlType->Attribute("id"));
79 entityPropertiesPresets[typeId].push_back(new PrototypeProperty("preset", typeId));
80 for (auto xmlProperty: getChildrenByTagName(xmlType, "property")) {
81 entityPropertiesPresets[typeId].push_back(
82 new PrototypeProperty(
83 (xmlProperty->Attribute("name")),
84 (xmlProperty->Attribute("value"))
85 )
86 );
87 }
88 }
89 }
90 auto lightId = 0;
91 for (auto xmlLights: getChildrenByTagName(xmlRoot, "lights")) {
92 for (auto xmlType: getChildrenByTagName(xmlLights, "type")) {
93 {
94 auto typeId = ((xmlType->Attribute("id")));
95 auto light = new SceneLight(lightId++);
96 light->getAmbient().set(Tools::convertToColor4((getChildrenByTagName(xmlType, "ambient")[0]->GetText())));
97 light->getDiffuse().set(Tools::convertToColor4((getChildrenByTagName(xmlType, "diffuse")[0]->GetText())));
98 light->getSpecular().set(Tools::convertToColor4((getChildrenByTagName(xmlType, "specular")[0]->GetText())));
99 light->getPosition().set(Tools::convertToVector4((getChildrenByTagName(xmlType, "position")[0]->GetText())));
100 light->setConstantAttenuation(Tools::convertToFloat((getChildrenByTagName(xmlType, "constant_attenuation")[0]->GetText())));
101 light->setLinearAttenuation(Tools::convertToFloat((getChildrenByTagName(xmlType, "linear_attenuation")[0]->GetText())));
102 light->setQuadraticAttenuation(Tools::convertToFloat((getChildrenByTagName(xmlType, "quadratic_attenuation")[0]->GetText())));
103 light->getSpotTo().set(Tools::convertToVector3((getChildrenByTagName(xmlType, "spot_to")[0]->GetText())));
104 light->getSpotDirection().set(Tools::convertToVector3((getChildrenByTagName(xmlType, "spot_direction")[0]->GetText())));
105 light->setSpotExponent(Tools::convertToFloat((getChildrenByTagName(xmlType, "spot_exponent")[0]->GetText())));
106 light->setSpotCutOff(Tools::convertToFloat((getChildrenByTagName(xmlType, "spot_cutoff")[0]->GetText())));
107 light->setEnabled(true);
108 lightPresets[typeId] = light;
109 }
110 }
111 }
112 */
113}
114
116 for (auto scenePropertiesPresetEntity: scenePropertiesPreset) {
117 delete scenePropertiesPresetEntity;
118 }
119 for (auto it = entityPropertiesPresets.begin(); it != entityPropertiesPresets.end(); ++it) {
120 for (auto propertyModelClass: it->second) {
121 delete propertyModelClass;
122 }
123 }
124 for (auto it = lightPresets.begin(); it != lightPresets.end(); ++it) {
125 delete it->second;
126 }
127}
128
130{
131 if (instance == nullptr) {
132 try {
133 instance = new ScenePropertyPresets("resources/engine/tools/sceneeditor/gd", "presets.xml");
134 } catch (Exception& exception) {
135 Console::println(string(" ScenePropertyPresets::getInstance(): An error occurred: "));
136 Console::print(string(exception.what()));
137 Application::exit(1);
138 }
139 }
140 return instance;
141}
142
144{
145 for (auto sceneProperty: scenePropertiesPreset) {
146 scene->addProperty(sceneProperty->getName(), sceneProperty->getValue());
147 }
148}
149
150const vector<TiXmlElement*> ScenePropertyPresets::getChildrenByTagName(TiXmlElement* parent, const char* name)
151{
152 vector<TiXmlElement*> elementList;
153 for (auto *child = parent->FirstChildElement(name); child != nullptr; child = child->NextSiblingElement(name)) {
154 elementList.push_back(child);
155 }
156 return elementList;
157}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Color 4 base definition class.
Definition: Color4Base.h:19
Color 4 definition.
Definition: Color4.h:20
bool addProperty(const string &name, const string &value)
Add a property.
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
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
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
Always the top level node.
Definition: tinyxml.h:1317
The element is a container class.
Definition: tinyxml.h:886
const TiXmlElement * NextSiblingElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:471
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:441
std::exception Exception
Exception base class.
Definition: Exception.h:19