summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-10-31 18:01:41 +0000
committerbelugas <belugas@openttd.org>2007-10-31 18:01:41 +0000
commit87fcd4b6d701f384615472c5af5eb73c9613fdec (patch)
treedd6d241dd38addb8dc8f7e7c957d5459e4bb7615 /src/station_cmd.cpp
parent6cc287c66914c72aaa63cc3caa27d5480399f15b (diff)
downloadopenttd-87fcd4b6d701f384615472c5af5eb73c9613fdec.tar.xz
(svn r11363) -Codechange: Remove some magical numbers
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index aee5f4182..bdd578090 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -226,6 +226,16 @@ static bool CMSAForest(TileIndex tile)
#define M(x) ((x) - STR_SV_STNAME)
+enum StationNaming = {
+ STATIONNAMING_RAIL = 0,
+ STATIONNAMING_ROAD = 0,
+ STATIONNAMING_AIRPORT,
+ STATIONNAMING_OILRIG,
+ STATIONNAMING_DOCK,
+ STATIONNAMING_BUOY,
+ STATIONNAMING_HELIPORT,
+}
+
static bool GenerateStationName(Station *st, TileIndex tile, int flag)
{
static const uint32 _gen_station_name_bits[] = {
@@ -962,7 +972,7 @@ CommandCost CmdBuildRailroadStation(TileIndex tile_org, uint32 flags, uint32 p1,
st_auto_delete = st;
st->town = ClosestTownFromTile(tile_org, (uint)-1);
- if (!GenerateStationName(st, tile_org, 0)) return CMD_ERROR;
+ if (!GenerateStationName(st, tile_org, STATIONNAMING_RAIL)) return CMD_ERROR;
if (IsValidPlayer(_current_player) && (flags & DC_EXEC) != 0) {
SETBIT(st->town->have_ratings, _current_player);
@@ -1387,7 +1397,7 @@ CommandCost CmdBuildRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
Town *t = st->town = ClosestTownFromTile(tile, (uint)-1);
- if (!GenerateStationName(st, tile, 0)) return CMD_ERROR;
+ if (!GenerateStationName(st, tile, STATIONNAMING_ROAD)) return CMD_ERROR;
if (IsValidPlayer(_current_player) && (flags & DC_EXEC) != 0) {
SETBIT(t->have_ratings, _current_player);
@@ -1695,7 +1705,7 @@ CommandCost CmdBuildAirport(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
/* If only helicopters may use the airport generate a helicopter related (5)
* station name, otherwise generate a normal airport name (1) */
- if (!GenerateStationName(st, tile, !(afc->flags & AirportFTAClass::AIRPLANES) ? 5 : 1)) {
+ if (!GenerateStationName(st, tile, !(afc->flags & AirportFTAClass::AIRPLANES) ? STATIONNAMING_HELIPORT : STATIONNAMING_AIRPORT)) {
return CMD_ERROR;
}
}
@@ -1810,7 +1820,7 @@ CommandCost CmdBuildBuoy(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
st->town = ClosestTownFromTile(tile, (uint)-1);
st->sign.width_1 = 0;
- if (!GenerateStationName(st, tile, 4)) return CMD_ERROR;
+ if (!GenerateStationName(st, tile, STATIONNAMING_BUOY)) return CMD_ERROR;
if (flags & DC_EXEC) {
st->dock_tile = tile;
@@ -1980,7 +1990,7 @@ CommandCost CmdBuildDock(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
st->sign.width_1 = 0;
- if (!GenerateStationName(st, tile, 3)) return CMD_ERROR;
+ if (!GenerateStationName(st, tile, STATIONNAMING_DOCK)) return CMD_ERROR;
}
if (flags & DC_EXEC) {
@@ -2749,7 +2759,7 @@ void BuildOilRig(TileIndex tile)
DEBUG(misc, 0, "Can't allocate station for oilrig at 0x%X, reverting to oilrig only", tile);
return;
}
- if (!GenerateStationName(st, tile, 2)) {
+ if (!GenerateStationName(st, tile, STATIONNAMING_OILRIG)) {
DEBUG(misc, 0, "Can't allocate station-name for oilrig at 0x%X, reverting to oilrig only", tile);
return;
}