diff options
author | peter1138 <peter1138@openttd.org> | 2006-11-08 12:17:14 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-11-08 12:17:14 +0000 |
commit | ddc420941df55b84cfab21962a9e40159bb3c744 (patch) | |
tree | 1e7c5d1234332f86f7b7b1377dba55c22375ca0c | |
parent | 2f6bc5add3889f901c28c1ed74ed282c6a8b181c (diff) | |
download | openttd-ddc420941df55b84cfab21962a9e40159bb3c744.tar.xz |
(svn r7113) -Codechange: [NewStations] Add support for copying custom station layouts
-rw-r--r-- | newgrf.c | 13 | ||||
-rw-r--r-- | newgrf_station.h | 1 |
2 files changed, 11 insertions, 3 deletions
@@ -952,6 +952,8 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int FOR_EACH_OBJECT { StationSpec *statspec = _cur_grffile->stations[stid + i]; + statspec->copied_layouts = false; + while (buf < *bufp + len) { byte length = grf_load_byte(&buf); byte number = grf_load_byte(&buf); @@ -1001,11 +1003,16 @@ static bool StationChangeInfo(uint stid, int numinfo, int prop, byte **bufp, int break; case 0x0F: /* Copy custom layout */ - /* TODO */ FOR_EACH_OBJECT { - grf_load_byte(&buf); + StationSpec *statspec = _cur_grffile->stations[stid + i]; + byte srcid = grf_load_byte(&buf); + const StationSpec *srcstatspec = _cur_grffile->stations[srcid]; + + statspec->lengths = srcstatspec->lengths; + statspec->platforms = srcstatspec->platforms; + statspec->layouts = srcstatspec->layouts; + statspec->copied_layouts = true; } - ret = true; break; case 0x10: /* Little/lots cargo threshold */ diff --git a/newgrf_station.h b/newgrf_station.h index a5a45d9a0..a133fb3d7 100644 --- a/newgrf_station.h +++ b/newgrf_station.h @@ -67,6 +67,7 @@ typedef struct StationSpec { byte lengths; byte *platforms; StationLayout **layouts; + bool copied_layouts; /** * NUM_GLOBAL_CID sprite groups. |