summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-05-30 10:55:52 +0200
committerGitHub <noreply@github.com>2021-05-30 10:55:52 +0200
commit0c968847006ba7206265651ac45f8fa0ce6141ac (patch)
tree71159110d86179955fc747dbece3ef91f50b37a6 /src
parente9e4588db105f5827c5356933023f6ce698fe6aa (diff)
downloadopenttd-0c968847006ba7206265651ac45f8fa0ce6141ac.tar.xz
Codechange: add a wrapper function to find all settings based on prefix (#9312)
Diffstat (limited to 'src')
-rw-r--r--src/saveload/linkgraph_sl.cpp17
-rw-r--r--src/settings.cpp26
-rw-r--r--src/settings_internal.h1
3 files changed, 20 insertions, 24 deletions
diff --git a/src/saveload/linkgraph_sl.cpp b/src/saveload/linkgraph_sl.cpp
index af2890244..7d4fe5671 100644
--- a/src/saveload/linkgraph_sl.cpp
+++ b/src/saveload/linkgraph_sl.cpp
@@ -20,8 +20,6 @@
typedef LinkGraph::BaseNode Node;
typedef LinkGraph::BaseEdge Edge;
-const SettingDesc *GetSettingDescription(uint index);
-
static uint16 _num_nodes;
/**
@@ -70,17 +68,10 @@ const SaveLoad *GetLinkGraphJobDesc()
/* Build the SaveLoad array on first call and don't touch it later on */
if (saveloads.size() == 0) {
- size_t prefixlen = strlen(prefix);
-
- int setting = 0;
- const SettingDesc *desc = GetSettingDescription(setting);
- while (desc != nullptr) {
- if (desc->name != nullptr && strncmp(desc->name, prefix, prefixlen) == 0) {
- SaveLoad sl = desc->save;
- sl.address_proc = proc;
- saveloads.push_back(sl);
- }
- desc = GetSettingDescription(++setting);
+ GetSettingSaveLoadByPrefix(prefix, saveloads);
+
+ for (auto &sl : saveloads) {
+ sl.address_proc = proc;
}
int i = 0;
diff --git a/src/settings.cpp b/src/settings.cpp
index d39c04593..f7a4ff5de 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -94,17 +94,6 @@ typedef void SettingDescProcList(IniFile *ini, const char *grpname, StringList &
static bool IsSignedVarMemType(VarType vt);
/**
- * Get the setting at the given index into the settings table.
- * @param index The index to look for.
- * @return The setting at the given index, or nullptr when the index is invalid.
- */
-const SettingDesc *GetSettingDescription(uint index)
-{
- if (index >= _settings.size()) return nullptr;
- return _settings.begin()[index].get();
-}
-
-/**
* Groups in openttd.cfg that are actually lists.
*/
static const char * const _list_group_names[] = {
@@ -1740,6 +1729,21 @@ static const SettingDesc *GetSettingFromName(const char *name, const SettingTabl
}
/**
+ * Get the SaveLoad from all settings matching the prefix.
+ * @param prefix The prefix to look for.
+ * @param saveloads A vector to store the result in.
+ */
+void GetSettingSaveLoadByPrefix(const char *prefix, std::vector<SaveLoad> &saveloads)
+{
+ size_t prefixlen = strlen(prefix);
+
+ for (auto &sd : _settings) {
+ if (!SlIsObjectCurrentlyValid(sd->save.version_from, sd->save.version_to)) continue;
+ if (strncmp(sd->name, prefix, prefixlen) == 0) saveloads.push_back(sd->save);
+ }
+}
+
+/**
* Given a name of setting, return a company setting description of it.
* @param name Name of the company setting to return a setting description of.
* @return Pointer to the setting description of setting \a name if it can be found,
diff --git a/src/settings_internal.h b/src/settings_internal.h
index ba5331288..632d4081d 100644
--- a/src/settings_internal.h
+++ b/src/settings_internal.h
@@ -300,6 +300,7 @@ struct NullSettingDesc : SettingDesc {
typedef std::initializer_list<std::unique_ptr<const SettingDesc>> SettingTable;
const SettingDesc *GetSettingFromName(const char *name);
+void GetSettingSaveLoadByPrefix(const char *prefix, std::vector<SaveLoad> &saveloads);
bool SetSettingValue(const IntSettingDesc *sd, int32 value, bool force_newgame = false);
bool SetSettingValue(const StringSettingDesc *sd, const std::string value, bool force_newgame = false);