summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2014-12-09 23:22:38 -0500
committerkwolekr <kwolekr@minetest.net>2014-12-09 23:29:34 -0500
commitf2c18511a4a3c3cfdda3671d02f1b7468cb56405 (patch)
tree4303d699ada85923509a3f505ad86b051b933ef7 /src/settings.h
parent2f8fbdb9f52d2118108d69914207766e296d7d37 (diff)
downloadminetest-f2c18511a4a3c3cfdda3671d02f1b7468cb56405.tar.gz
minetest-f2c18511a4a3c3cfdda3671d02f1b7468cb56405.tar.bz2
minetest-f2c18511a4a3c3cfdda3671d02f1b7468cb56405.zip
Settings: Make setting entry group and values mutually exclusive
This greatly reduces the complexity of Settings code. Additionally, several memory leaks were fixed.
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h38
1 files changed, 14 insertions, 24 deletions
diff --git a/src/settings.h b/src/settings.h
index 6c063e43e..7241877bd 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -59,36 +59,31 @@ struct ValueSpec {
const char *help;
};
-/** function type to register a changed callback */
-
struct SettingsEntry {
SettingsEntry()
{
- group = NULL;
+ group = NULL;
+ is_group = false;
}
SettingsEntry(const std::string &value_)
{
- value = value_;
- group = NULL;
+ value = value_;
+ group = NULL;
+ is_group = false;
}
SettingsEntry(Settings *group_)
{
- group = group_;
- }
-
- SettingsEntry(const std::string &value_, Settings *group_)
- {
- value = value_;
- group = group_;
+ group = group_;
+ is_group = true;
}
std::string value;
Settings *group;
+ bool is_group;
};
-
class Settings {
public:
Settings() {}
@@ -97,7 +92,6 @@ public:
Settings & operator += (const Settings &other);
Settings & operator = (const Settings &other);
-
/***********************
* Reading and writing *
***********************/
@@ -114,20 +108,13 @@ public:
SettingsParseEvent parseConfigObject(const std::string &line,
const std::string &end, std::string &name, std::string &value);
- void getNamesPresent(std::istream &is, const std::string &end,
- std::set<std::string> &present_values,
- std::set<std::string> &present_groups);
bool updateConfigObject(std::istream &is, std::ostream &os,
const std::string &end, u32 tab_depth=0);
static std::string getMultiline(std::istream &is, size_t *num_lines=NULL);
static std::string sanitizeString(const std::string &value);
- static bool printEntry(std::ostream &os, const std::string &name,
+ static void printEntry(std::ostream &os, const std::string &name,
const SettingsEntry &entry, u32 tab_depth=0);
- static void printValue(std::ostream &os, const std::string &name,
- const std::string &value, u32 tab_depth=0);
- static void printGroup(std::ostream &os, const std::string &name,
- const Settings *group, u32 tab_depth=0);
/***********
* Getters *
@@ -186,9 +173,11 @@ public:
// N.B. Groups not allocated with new must be set to NULL in the settings
// tree before object destruction.
+ void setEntry(const std::string &name, const void *entry,
+ bool set_group, bool set_default);
void set(const std::string &name, const std::string &value);
- void setGroup(const std::string &name, Settings *group);
void setDefault(const std::string &name, const std::string &value);
+ void setGroup(const std::string &name, Settings *group);
void setGroupDefault(const std::string &name, Settings *group);
void setBool(const std::string &name, bool value);
void setS16(const std::string &name, s16 value);
@@ -200,7 +189,8 @@ public:
void setV3F(const std::string &name, v3f value);
void setFlagStr(const std::string &name, u32 flags,
const FlagDesc *flagdesc, u32 flagmask);
- void setNoiseParams(const std::string &name, const NoiseParams &np);
+ void setNoiseParams(const std::string &name, const NoiseParams &np,
+ bool set_default=false);
// N.B. if setStruct() is used to write a non-POD aggregate type,
// the behavior is undefined.
bool setStruct(const std::string &name, const std::string &format, void *value);