]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Settings.hh
cade lab fixes
[chaz/yoink] / src / Moof / Settings.hh
index dc29deb3ad260e772348bd8c40abe7e080a271c4..d4cbb9fa0cd47e0a06a0f21a4ea5a3923f6a5d7d 100644 (file)
@@ -49,58 +49,70 @@ namespace Mf {
 class Settings
 {
 public:
-       Settings() :
-               globals_(script_.getGlobalTable()),
-               top_(script_[-1])
+
+       Settings()
        {
-               importLogScript(script_);
+               mScript.importBaseLibrary();
+               importLogFunctions(mScript);
        }
 
-       // get global instance
-       static Settings& getInstance();
+       ~Settings();
 
        void parseArgs(int argc, char* argv[]);
 
-       void loadFromFile(const std::string& filePath);
-       void loadFromFiles(const std::vector<std::string>& filePaths);
+       void loadFromFiles(const std::string& path);
+       void loadFromFiles(const std::vector<std::string>& path);
+
+       void clear();           // remove all settings
+
+       void saveAs(const std::string& path);
+       void save() const;
 
        template <typename T>
-       bool get(const std::string& key, T& value);
+       bool get(const std::string& key, T& value) const;
 
 private:
-       Script                  script_;
-       Script::Value   globals_, top_;
+
+       mutable Script  mScript;
+
+       std::string             mUserFile;
 };
 
 
 template <typename T>
-bool Settings::get(const std::string& key, T& value)
+bool Settings::get(const std::string& key, T& value) const
 {
+       Script::Slot top = mScript[-1];
+       Script::Slot globals = mScript.getGlobalTable();
+
        std::vector<std::string> fields;
        boost::split(fields, key, boost::is_any_of("."));
 
-       globals_.pushCopy();
+       globals.pushCopy();
 
        std::vector<std::string>::iterator it;
        for (it = fields.begin(); it != fields.end(); ++it)
        {
-               if (top_.isTable())
+               if (top.isTable())
                {
-                       top_.pushField(*it);
+                       top.pushField(*it);
                }
                else
                {
-                       script_.clear();
+                       mScript.clear();
                        return false;
                }
        }
 
-       bool got = top_.get(value);
-       script_.clear();
+       bool got = top.get(value);
+       mScript.clear();
        return got;
 }
 
 
+extern Settings settings;
+
+
 } // namepsace Mf
 
 #endif // _MOOF_SETTINGS_HH_
This page took 0.023827 seconds and 4 git commands to generate.