Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/intro/intro.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/game/intro/intro.cc b/src/game/intro/intro.cc
index 2147d02..cd77388 100644
--- a/src/game/intro/intro.cc
+++ b/src/game/intro/intro.cc
@@ -50,6 +50,7 @@ bool Intro::load_world()
std::string strval;
core::EntityGlobe *globe = 0;
+ core::Entity *entity = 0;
math::Color color;
math::Vector3f v;
float f;
@@ -65,6 +66,11 @@ bool Intro::load_world()
zone->set_sky("sky");
core::Zone::add(zone);
+ } else if (ini.got_section("entity")) {
+ if (zone) {
+ entity = new core::Entity();
+ }
+
} else if (ini.got_section("convoy")) {
if (zone) {
convoy = new Convoy(zone);
@@ -93,6 +99,14 @@ bool Intro::load_world()
ini.unkown_key();
}
+ } else if (ini.in_section("entity")) {
+
+ if (core::Parser::got_entity_key(ini, entity)) {
+ continue;
+ } else {
+ ini.unkown_key();
+ }
+
} else if (ini.in_section("convoy")) {
if (ini.got_key_string("label", strval)) {