Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
committerStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
commitd3477eedc113a2c126f36f41384b8921d610906a (patch)
tree68df921c4acf03878ae244db8350e2e96936c494 /src/game
parent598dba9d17838e92f89bcd3ec78c69cc4ce50044 (diff)
updated filesystem, removed inifile, updated game and tga loader
minor cleanups
Diffstat (limited to 'src/game')
-rw-r--r--src/game/game.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/game/game.cc b/src/game/game.cc
index 65e9450..f9c7aa4 100644
--- a/src/game/game.cc
+++ b/src/game/game.cc
@@ -21,10 +21,11 @@ namespace game
bool Game::init()
{
using math::Vector3f;
- using filesystem::IniFile;
+ //using filesystem::IniFile;
con_print << "Initializing game..." << std::endl;
+ /*
// read game.ini
IniFile f;
f.open("ini/game.ini");
@@ -90,14 +91,14 @@ bool Game::init()
}
f.close();
- /*
+
con_print << "Loading sectors..." << std::endl;
for (unsigned n =0; n < sectors.size(); n++)
con_print << " " << sectors[n]->label << " " << sectors[n]->name << std::endl;
*/
+
star.location = Vector3f(256.0f, 0.0f, 256.0f);
ship.location = Vector3f(0,0,0);
-
return true;
}