summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorJürgen Doser <jurgen.doser@gmail.com>2012-12-08 18:10:54 +0100
committerPerttu Ahola <celeron55@gmail.com>2013-01-21 17:31:50 +0200
commit6af8a34d91582ce15a0341e75d3e55d847a5a47a (patch)
tree58651158dbc0c897dd110ffade114d250be5e597 /src/settings.h
parent6f93c01af942d75db105eac6afcd7d477967ccb6 (diff)
downloadminetest-6af8a34d91582ce15a0341e75d3e55d847a5a47a.tar.gz
minetest-6af8a34d91582ce15a0341e75d3e55d847a5a47a.tar.bz2
minetest-6af8a34d91582ce15a0341e75d3e55d847a5a47a.zip
Basic support for configuring which mods to load for each world
settings.h: added function to return all keys used in settings, and a function to remove a setting mods.{h,cpp}: added class ModConfiguration that represents a subset of the installed mods. server.{h,cpp}: server does not load add-on mods that are disabled in the world.mt file. mods are disabled by a setting of the form "load_mod_<modname> = false". if no load_mod_<modname> = ... setting is found, the mod is loaded anyways for backwards compatibilty. server also complains to errorstream about mods with unstatisfied dependencies and about mods that are not installed. guiConfigureWorld.{h,cpp}: shows a treeview of installed add-on mods and modpacks with little icons in front of their name indicating their status: a checkmark for enabled mods, a cross for disabled mods, a question mark for "new" mods Mods can be enabled/disabled by a checkbox. Mods also show a list of dependencies and reverse dependencies. double-click on a mod in dependency or reverse dependency listbox selects the corresponding mod. Enabling a mod also enables all its dependencies. Disabling a mod also disables all its reverse dependencies. For modpacks, show buttons to enable/disable all mods (recursively, including their dependencies) in it. Button "Save" saves the current settings to the world.mt file and returns to the main menu. Button "Cancel" returns to main menu without saving. basic keyboard controls (if the proper widget has keyboard focus): up/down: scroll through tree of mods left/right: collaps/expand a modpack space: enable/disable the selected mod
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index 1ab6fcc6b..1a29ef00a 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -71,6 +71,26 @@ public:
os<<name<<" = "<<value<<"\n";
}
}
+
+ // return all keys used
+ std::vector<std::string> getNames(){
+ std::vector<std::string> names;
+ for(core::map<std::string, std::string>::Iterator
+ i = m_settings.getIterator();
+ i.atEnd() == false; i++)
+ {
+ std::string name = i.getNode()->getKey();
+ names.push_back(name);
+ }
+ return names;
+ }
+
+ // remove a setting
+ bool remove(const std::string& name)
+ {
+ return m_settings.remove(name);
+ }
+
bool parseConfigLine(const std::string &line)
{