summaryrefslogtreecommitdiff
path: root/src/oldloader.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-05-16 21:28:23 +0000
committerrubidium <rubidium@openttd.org>2007-05-16 21:28:23 +0000
commit042bcc03252514747675b0170bd86eac64e96067 (patch)
tree8410752c9aca425bd6e52d689c4978a5dba5d135 /src/oldloader.cpp
parentc53bd7404d8a4fd67baef79c6c44e861d6d2f67d (diff)
downloadopenttd-042bcc03252514747675b0170bd86eac64e96067.tar.xz
(svn r9857) -Fix: loading of TTDP savegames with features that OTTD has.
Diffstat (limited to 'src/oldloader.cpp')
-rw-r--r--src/oldloader.cpp23
1 files changed, 17 insertions, 6 deletions
diff --git a/src/oldloader.cpp b/src/oldloader.cpp
index 7ac69d4dd..da2dd4836 100644
--- a/src/oldloader.cpp
+++ b/src/oldloader.cpp
@@ -329,6 +329,9 @@ static void FixOldVehicles()
FOR_ALL_VEHICLES(v) {
Vehicle *u;
+ /* We haven't used this bit for stations for ages */
+ if (v->type == VEH_ROAD) CLRBIT(v->u.road.state, RVS_IS_STOPPING);
+
FOR_ALL_VEHICLES_FROM(u, v->index + 1) {
/* If a vehicle has the same orders, add the link to eachother
* in both vehicles */
@@ -621,12 +624,7 @@ static const OldChunks station_chunk[] = {
};
static bool LoadOldStation(LoadgameState *ls, int num)
{
- Station *st;
-
- if (!AddBlockIfNeeded(&_Station_pool, num))
- error("Stations: failed loading savegame: too many stations");
-
- st = GetStation(num);
+ Station *st = new (num) Station();
_current_station_id = num;
if (!LoadChunk(ls, st, station_chunk))
@@ -1554,6 +1552,19 @@ static bool LoadOldMain(LoadgameState *ls)
for (i = 0; i < OLD_MAP_SIZE; i ++) {
switch (GetTileType(i)) {
+ case MP_STATION:
+ _m[i].m4 = 0; // We do not understand this TTDP station mapping (yet)
+ switch (_m[i].m5) {
+ /* We have drive through stops at a totally different place */
+ case 0x53: case 0x54: _m[i].m5 += GFX_BUS_BASE_EXT - 0x53; break;
+ case 0x57: case 0x58: _m[i].m5 += GFX_TRUCK_BASE_EXT - 0x57; break;
+ case 0x55: case 0x56: // Bus tram stop
+ case 0x59: case 0x5A: // Truck tram stop
+ DEBUG(oldloader, 0, "Loading failed - we don't support trams (yet)");
+ return false;
+ }
+ break;
+
case MP_RAILWAY:
/* We save presignals different from TTDPatch, convert them */
if (GetRailTileType(i) == RAIL_TILE_SIGNALS) {