]> git.localhorst.tv Git - blank.git/commitdiff
read preferences from user config file
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 5 Oct 2015 15:32:01 +0000 (17:32 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 5 Oct 2015 15:32:01 +0000 (17:32 +0200)
src/app/Runtime.hpp
src/app/runtime.cpp
src/blank.cpp

index 2d169d0149abbcddf69ee8321f121484f783b7f5..1e660e0ac9465903bb475410fb542303425f4b00 100644 (file)
@@ -48,11 +48,14 @@ public:
 
        Runtime() noexcept;
 
-       void ReadArgs(int argc, const char *const *argv);
+       void Initialize(int argc, const char *const *argv);
 
        int Execute();
 
 private:
+       void ReadArgs(int argc, const char *const *argv);
+       void ReadPreferences();
+
        void RunStandalone();
        void RunServer();
        void RunClient();
index 780a063fc1c3b27e1f15599dd47c32bfcbc37393..22ca920d21c1ff2dde734234c80c749dad6faf0f 100644 (file)
@@ -106,10 +106,10 @@ void Config::Save(std::ostream &out) {
        out << "player.name = \"" << player.name << "\";" << std::endl;
        out << "video.dblbuf = " << (video.dblbuf ? "on" : "off") << ';' << std::endl;
        out << "video.vsync = " << (video.vsync ? "on" : "off") << ';' << std::endl;
-       out << "video.msaa = " << net.port << ';' << std::endl;
+       out << "video.msaa = " << video.msaa << ';' << std::endl;
        out << "video.hud = " << (video.hud ? "on" : "off") << ';' << std::endl;
        out << "video.world = " << (video.world ? "on" : "off") << ';' << std::endl;
-       out << "video.debug = " << (video.world ? "on" : "off") << ';' << std::endl;
+       out << "video.debug = " << (video.debug ? "on" : "off") << ';' << std::endl;
 }
 
 
@@ -169,6 +169,13 @@ Runtime::Runtime() noexcept
 }
 
 
+void Runtime::Initialize(int argc, const char *const *argv) {
+       ReadArgs(argc, argv);
+       if (mode == ERROR) return;
+       ReadPreferences();
+       ReadArgs(argc, argv);
+}
+
 void Runtime::ReadArgs(int argc, const char *const *argv) {
        if (argc <= 0) return;
        name = argv[0];
@@ -324,9 +331,20 @@ void Runtime::ReadArgs(int argc, const char *const *argv) {
 
        if (error) {
                mode = ERROR;
-               return;
+       } else if (n > 0) {
+               if (t > 0) {
+                       mode = FIXED_FRAME_LIMIT;
+               } else {
+                       mode = FRAME_LIMIT;
+               }
+       } else if (t > 0) {
+               mode = TIME_LIMIT;
+       } else {
+               mode = NORMAL;
        }
+}
 
+void Runtime::ReadPreferences() {
        if (config.env.asset_path.empty()) {
                config.env.asset_path = default_asset_path();
        } else if (
@@ -344,16 +362,14 @@ void Runtime::ReadArgs(int argc, const char *const *argv) {
                config.env.save_path += '/';
        }
 
-       if (n > 0) {
-               if (t > 0) {
-                       mode = FIXED_FRAME_LIMIT;
-               } else {
-                       mode = FRAME_LIMIT;
-               }
-       } else if (t > 0) {
-               mode = TIME_LIMIT;
+       string prefs_path = config.env.save_path + "prefs.conf";
+       if (is_file(prefs_path)) {
+               ifstream file(prefs_path);
+               config.game.Load(file);
        } else {
-               mode = NORMAL;
+               make_dirs(config.env.save_path);
+               ofstream file(prefs_path);
+               config.game.Save(file);
        }
 }
 
index d11ee9b4b8e12d76bc5dc3588f3bc49781c86e0b..2c3c40d860d9189f8264386026748272e579b126 100644 (file)
@@ -4,6 +4,6 @@ using namespace blank;
 
 int main(int argc, char *argv[]) {
        Runtime rt;
-       rt.ReadArgs(argc, argv);
+       rt.Initialize(argc, argv);
        return rt.Execute();
 }