Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/file.cc')
-rw-r--r--src/game/file.cc61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/game/file.cc b/src/game/file.cc
new file mode 100644
index 0000000..b819416
--- /dev/null
+++ b/src/game/file.cc
@@ -0,0 +1,61 @@
+/* file.cc
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+// project headers
+#include "file.h"
+
+namespace game {
+
+void File::open(const char * filename, ios_base::openmode mode)
+{
+ std::string fn;
+
+ // if moddir is set, try the mods subdir first
+ if (game::moddir.size() > 0) {
+ // try game::homedir+game::moddir
+ fn = homedir;
+ fn.append(moddir);
+ fn.append(filename);
+ std::ifstream::open(fn.c_str(), mode);
+ if (this->is_open()) {
+ std::cerr << "game::File opened " << fn << std::endl;
+ return;
+ }
+
+ // try datadir + moddir
+ fn = game::datadir;
+ fn.append(game::moddir);
+ std::ifstream::open(fn.c_str(), mode);
+ if (this->is_open()) {
+ std::cerr << "game::File opened " << fn << std::endl;
+ return;
+ }
+ }
+
+ // try game::homedir+game::basedir
+ fn = homedir;
+ fn.append(basedir);
+ fn.append(filename);
+ std::ifstream::open(fn.c_str(), mode);
+ if (this->is_open()) {
+ std::cerr << "game::File opened " << fn << std::endl;
+ return;
+ }
+
+ // try game::datadir+game::basedir
+ fn = datadir;
+ fn.append(basedir);
+ fn.append(filename);
+ std::ifstream::open(fn.c_str(), mode);
+
+ // FIXME console
+ if (!this->is_open()) {
+ std::cerr << "game::File could not open " << filename << std::endl;
+ } else {
+ std::cerr << "game::File opened " << fn << std::endl;
+ }
+}
+
+}