summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-09-15 19:02:50 +0000
committersmatz <smatz@openttd.org>2008-09-15 19:02:50 +0000
commit1266b1a73f4197e3bf4d2cc0e09e9e667d7c640e (patch)
tree9ea3e279046e9a622321db881df0c37605fde380 /src/engine.cpp
parent42f33890aa4612a821c20783778bb086ee2028b6 (diff)
downloadopenttd-1266b1a73f4197e3bf4d2cc0e09e9e667d7c640e.tar.xz
(svn r14334) -Feature: ability to reset name to default/automatic value (for vehicles, engines, towns, groups, stations, waypoints, managers and companies)
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp26
1 files changed, 22 insertions, 4 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 60000ac5b..91d52f5cb 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -494,15 +494,33 @@ static bool IsUniqueEngineName(const char *name)
CommandCost CmdRenameEngine(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
{
if (!IsEngineIndex(p1)) return CMD_ERROR;
- if (StrEmpty(_cmd_text) || strlen(_cmd_text) >= MAX_LENGTH_ENGINE_NAME_BYTES) return CMD_ERROR;
- if (!IsUniqueEngineName(_cmd_text)) return_cmd_error(STR_NAME_MUST_BE_UNIQUE);
+ bool reset = StrEmpty(_cmd_text);
+
+ if (!reset) {
+ if (strlen(_cmd_text) >= MAX_LENGTH_ENGINE_NAME_BYTES) return CMD_ERROR;
+ if (!IsUniqueEngineName(_cmd_text)) return_cmd_error(STR_NAME_MUST_BE_UNIQUE);
+ }
if (flags & DC_EXEC) {
Engine *e = GetEngine(p1);
free(e->name);
- e->name = strdup(_cmd_text);
- _vehicle_design_names |= 3;
+
+ if (reset) {
+ e->name = NULL;
+ /* if we removed the last custom name, disable the 'Save custom names' button */
+ _vehicle_design_names &= ~1;
+ FOR_ALL_ENGINES(e) {
+ if (e->name != NULL) {
+ _vehicle_design_names |= 1;
+ break;
+ }
+ }
+ } else {
+ e->name = strdup(_cmd_text);
+ _vehicle_design_names |= 3;
+ }
+
MarkWholeScreenDirty();
}