Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/core/ConfigFileManager.h @ 1502

Last change on this file since 1502 was 1502, checked in by rgrieder, 16 years ago
  • @everyone: Do not create a branch until I've added the svn:eol-style property correctly. Otherwise this would cost me another 4 hours or so when we want to merge back.
  • merged network branch back to trunk
  • I had to omit the changes from last evening concerning the line endings
  • might not work yet because of the line endings
  • @beni: script branch is the only branch still open. you probably will have to apply a patch because of inconsistent new lines
File size: 12.9 KB
RevLine 
[989]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1056]3 *                    > www.orxonox.net <
[989]4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _ConfigFileManager_H__
30#define _ConfigFileManager_H__
31
[1062]32#include "CorePrereqs.h"
33
[1006]34#include <iostream>
35#include <string>
[989]36#include <list>
[1006]37#include <map>
[989]38
[1006]39#include "util/Math.h"
40
41#define DEFAULT_CONFIG_FILE "default.ini"
42
[989]43namespace orxonox
44{
[1006]45    enum _CoreExport ConfigFileType
[989]46    {
[1006]47        CFT_Settings,
48        CFT_Keybindings
49    };
50
51
[1502]52    bool config(const std::string& classname, const std::string& varname, const std::string& value);
53    bool tconfig(const std::string& classname, const std::string& varname, const std::string& value);
[1006]54    void reloadConfig();
55    void saveConfig();
56    void cleanConfig();
57    void loadSettings(const std::string& filename);
58    void loadKeybindings(const std::string& filename);
59
60
61    /////////////////////
62    // ConfigFileEntry //
63    /////////////////////
64    class _CoreExport ConfigFileEntry
65    {
[989]66        public:
[1116]67            virtual ~ConfigFileEntry() {};
[1006]68            virtual void setValue(const std::string& value) = 0;
[1049]69            virtual std::string getValue() const = 0;
[1006]70            virtual const std::string& getName() const = 0;
[1027]71            virtual void setComment(const std::string& comment) = 0;
[1006]72            virtual unsigned int getIndex() const { return 0; }
[1049]73            virtual void setString(bool bString) = 0;
[1006]74            virtual std::string getFileEntry() const = 0;
75    };
[989]76
77
[1006]78    //////////////////////////
79    // ConfigFileEntryValue //
80    //////////////////////////
81    class _CoreExport ConfigFileEntryValue : public ConfigFileEntry
82    {
83        public:
[1049]84            inline ConfigFileEntryValue(const std::string& name, const std::string& value = "", bool bString = false, const std::string& additionalComment = "") : name_(name), value_(value), bString_(bString), additionalComment_(additionalComment) {}
[1006]85            inline virtual ~ConfigFileEntryValue() {}
86
87            inline virtual const std::string& getName() const
88                { return this->name_; }
89
[1027]90            inline virtual void setComment(const std::string& comment)
91                { this->additionalComment_ = comment; }
92
[1049]93            virtual void setValue(const std::string& value);
94            virtual std::string getValue() const;
[1006]95
96            inline bool isString() const
97                { return this->bString_; }
98            inline void setString(bool bString)
99                { this->bString_ = bString; }
100
101            virtual std::string getFileEntry() const;
102
103        protected:
[989]104            std::string name_;
105            std::string value_;
[1049]106            bool bString_;
[1006]107            std::string additionalComment_;
[989]108    };
109
[1006]110
111    ///////////////////////////////
[1030]112    // ConfigFileEntryVectorValue //
[1006]113    ///////////////////////////////
[1030]114    class _CoreExport ConfigFileEntryVectorValue : public ConfigFileEntryValue
[989]115    {
116        public:
[1049]117            inline ConfigFileEntryVectorValue(const std::string& name, unsigned int index, const std::string& value = "", bool bString = false, const std::string& additionalComment = "") : ConfigFileEntryValue(name, value, bString, additionalComment), index_(index) {}
[1030]118            inline virtual ~ConfigFileEntryVectorValue() {}
[989]119
[1006]120            inline virtual unsigned int getIndex() const
121                { return this->index_; }
[989]122
[1006]123            virtual std::string getFileEntry() const;
124
[989]125        private:
[1006]126            unsigned int index_;
[989]127    };
128
[1006]129
130    ////////////////////////////
131    // ConfigFileEntryComment //
132    ////////////////////////////
133    class _CoreExport ConfigFileEntryComment : public ConfigFileEntry
[989]134    {
135        public:
[1006]136            inline ConfigFileEntryComment(const std::string& comment) : comment_(comment) {}
137            inline virtual ~ConfigFileEntryComment() {}
[989]138
[1006]139            inline virtual const std::string& getName() const
140                { return this->comment_; }
141
[1027]142            inline virtual void setComment(const std::string& comment)
143                { this->comment_ = comment; }
144
[1006]145            inline virtual void setValue(const std::string& value)
146                {}
[1049]147            inline virtual std::string getValue() const
[1006]148                { return this->comment_; }
149
[1049]150            inline void setString(bool bString) {}
151
[1006]152            inline virtual std::string getFileEntry() const
153                { return this->comment_; }
154
155        private:
156            std::string comment_;
157    };
158
159
160    ///////////////////////
161    // ConfigFileSection //
162    ///////////////////////
163    class _CoreExport ConfigFileSection
164    {
165        friend class ConfigFile;
166
[989]167        public:
[1006]168            inline ConfigFileSection(const std::string& name, const std::string& additionalComment = "") : name_(name), additionalComment_(additionalComment), bUpdated_(false) {}
169            ~ConfigFileSection();
[989]170
[1006]171            inline const std::string& getName() const
172                { return this->name_; }
[989]173
[1027]174            inline void setComment(const std::string& comment)
175                { this->additionalComment_ = comment; }
176
[1049]177            inline void setValue(const std::string& name, const std::string& value, bool bString)
178                { this->getEntry(name, value, bString)->setValue(value); }
179            inline std::string getValue(const std::string& name, const std::string& fallback, bool bString)
180                { return this->getEntry(name, fallback, bString)->getValue(); }
[989]181
[1049]182            inline void setValue(const std::string& name, unsigned int index, const std::string& value, bool bString)
183                { this->getEntry(name, index, value, bString)->setValue(value); }
184            inline std::string getValue(const std::string& name, unsigned int index, const std::string& fallback, bool bString)
185                { return this->getEntry(name, index, fallback, bString)->getValue(); }
[1006]186
[1030]187            void deleteVectorEntries(const std::string& name, unsigned int startindex = 0);
188            unsigned int getVectorSize(const std::string& name);
189
[1006]190            std::string getFileEntry() const;
191
[989]192        private:
[1006]193            std::list<ConfigFileEntry*>& getEntries()
194                { return this->entries_; }
195            std::list<ConfigFileEntry*>::const_iterator getEntriesBegin() const
196                { return this->entries_.begin(); }
197            std::list<ConfigFileEntry*>::const_iterator getEntriesEnd() const
198                { return this->entries_.end(); }
199
[1049]200            std::list<ConfigFileEntry*>::iterator getEntryIterator(const std::string& name, const std::string& fallback, bool bString);
201            std::list<ConfigFileEntry*>::iterator getEntryIterator(const std::string& name, unsigned int index, const std::string& fallback, bool bString);
[1006]202
[1049]203            inline ConfigFileEntry* getEntry(const std::string& name, const std::string& fallback, bool bString)
204                { return (*this->getEntryIterator(name, fallback, bString)); }
205            inline ConfigFileEntry* getEntry(const std::string& name, unsigned int index, const std::string& fallback, bool bString)
206                { return (*this->getEntryIterator(name, index, fallback, bString)); }
[1006]207
[989]208            std::string name_;
[1006]209            std::string additionalComment_;
210            std::list<ConfigFileEntry*> entries_;
211            bool bUpdated_;
[989]212    };
213
[1006]214
215    ////////////////
216    // ConfigFile //
217    ////////////////
218    class _CoreExport ConfigFile
[989]219    {
220        public:
[1006]221            inline ConfigFile(const std::string& filename) : filename_(filename), bUpdated_(false) {}
222            ~ConfigFile();
[989]223
[1027]224            void load(bool bCreateIfNotExisting = true);
[1006]225            void save() const;
[1502]226            void save(const std::string& filename);
[1030]227            void clean(bool bCleanComments = false);
[989]228
[1049]229            inline void setValue(const std::string& section, const std::string& name, const std::string& value, bool bString)
230                { this->getSection(section)->setValue(name, value, bString); this->save(); }
231            inline std::string getValue(const std::string& section, const std::string& name, const std::string& fallback, bool bString)
232                { std::string output = this->getSection(section)->getValue(name, fallback, bString); this->saveIfUpdated(); return output; }
[989]233
[1049]234            inline void setValue(const std::string& section, const std::string& name, unsigned int index, const std::string& value, bool bString)
235                { this->getSection(section)->setValue(name, index, value, bString); this->save(); }
236            inline std::string getValue(const std::string& section, const std::string& name, unsigned int index, const std::string& fallback, bool bString)
237                { std::string output = this->getSection(section)->getValue(name, index, fallback, bString); this->saveIfUpdated(); return output; }
[989]238
[1030]239            inline void deleteVectorEntries(const std::string& section, const std::string& name, unsigned int startindex = 0)
240                { this->getSection(section)->deleteVectorEntries(name, startindex); }
241            inline unsigned int getVectorSize(const std::string& section, const std::string& name)
242                { return this->getSection(section)->getVectorSize(name); }
243
[989]244        private:
[1006]245            ConfigFileSection* getSection(const std::string& section);
246            void saveIfUpdated();
247
248            std::string filename_;
249            std::list<ConfigFileSection*> sections_;
250            bool bUpdated_;
[989]251    };
[1006]252
253
254    ///////////////////////
255    // ConfigFileManager //
256    ///////////////////////
257    class _CoreExport ConfigFileManager
258    {
259        public:
[1020]260            static ConfigFileManager* getSingleton();
[1006]261
[1027]262            void setFile(ConfigFileType type, const std::string& filename, bool bCreateIfNotExisting = true);
[1006]263
[1027]264            void load(bool bCreateIfNotExisting = true);
[1006]265            void save();
[1030]266            void clean(bool bCleanComments = false);
[1006]267
[1027]268            void load(ConfigFileType type, bool bCreateIfNotExisting = true);
[1006]269            void save(ConfigFileType type);
[1502]270            void save(ConfigFileType type, const std::string& filename);
[1030]271            void clean(ConfigFileType type, bool bCleanComments = false);
[1006]272
[1049]273            inline void setValue(ConfigFileType type, const std::string& section, const std::string& name, const std::string& value, bool bString)
274                { this->getFile(type)->setValue(section, name, value, bString); }
275            inline std::string getValue(ConfigFileType type, const std::string& section, const std::string& name, const std::string& fallback, bool bString)
276                { return this->getFile(type)->getValue(section, name, fallback, bString); }
[1006]277
[1049]278            inline void setValue(ConfigFileType type, const std::string& section, const std::string& name, unsigned int index, const std::string& value, bool bString)
279                { this->getFile(type)->setValue(section, name, index, value, bString); }
280            inline std::string getValue(ConfigFileType type, const std::string& section, const std::string& name, unsigned int index, const std::string& fallback, bool bString)
281                { return this->getFile(type)->getValue(section, name, index, fallback, bString); }
[1006]282
[1030]283            inline void deleteVectorEntries(ConfigFileType type, const std::string& section, const std::string& name, unsigned int startindex = 0)
284                { this->getFile(type)->deleteVectorEntries(section, name, startindex); }
285            inline unsigned int getVectorSize(ConfigFileType type, const std::string& section, const std::string& name)
286                { return this->getFile(type)->getVectorSize(section, name); }
287
[1006]288            void updateConfigValues() const;
289            void updateConfigValues(ConfigFileType type) const;
290
291        private:
292            ConfigFileManager();
[1064]293            ConfigFileManager(const ConfigFileManager& other);
[1006]294            ~ConfigFileManager();
295
296            ConfigFile* getFile(ConfigFileType type);
297
298            std::string getFilePath(const std::string& name) const;
299
300            std::map<ConfigFileType, ConfigFile*> configFiles_;
301    };
[989]302}
303
304#endif /* _ConfigFileManager_H__ */
Note: See TracBrowser for help on using the repository browser.