mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r13258) -Codechange: add support for using (most) of the old patch names in the console.
This commit is contained in:
parent
5f782d06be
commit
3a4b397961
@ -2104,11 +2104,22 @@ const SettingDesc *GetPatchFromName(const char *name, uint *i)
|
|||||||
{
|
{
|
||||||
const SettingDesc *sd;
|
const SettingDesc *sd;
|
||||||
|
|
||||||
|
/* First check all full names */
|
||||||
for (*i = 0, sd = _patch_settings; sd->save.cmd != SL_END; sd++, (*i)++) {
|
for (*i = 0, sd = _patch_settings; sd->save.cmd != SL_END; sd++, (*i)++) {
|
||||||
if (!SlIsObjectCurrentlyValid(sd->save.version_from, sd->save.version_to)) continue;
|
if (!SlIsObjectCurrentlyValid(sd->save.version_from, sd->save.version_to)) continue;
|
||||||
if (strcmp(sd->desc.name, name) == 0) return sd;
|
if (strcmp(sd->desc.name, name) == 0) return sd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Then check the shortcut variant of the name. */
|
||||||
|
for (*i = 0, sd = _patch_settings; sd->save.cmd != SL_END; sd++, (*i)++) {
|
||||||
|
if (!SlIsObjectCurrentlyValid(sd->save.version_from, sd->save.version_to)) continue;
|
||||||
|
const char *short_name = strchr(sd->desc.name, '.');
|
||||||
|
if (short_name != NULL) {
|
||||||
|
short_name++;
|
||||||
|
if (strcmp(short_name, name) == 0) return sd;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user