summaryrefslogtreecommitdiff
path: root/train_gui.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-11-19 19:13:32 +0000
committerdarkvater <darkvater@openttd.org>2004-11-19 19:13:32 +0000
commit249438be886bfc9be4f8048ac7a6b0e695dcc2ac (patch)
tree5c9ff0e5738b435a8d51a83e7e7abdf5ea641c61 /train_gui.c
parentd51daeab1add65308ed8ddf193fd43a7348b2ce1 (diff)
downloadopenttd-249438be886bfc9be4f8048ac7a6b0e695dcc2ac.tar.xz
(svn r677) -newgrf: Fix some custom electric trains appearing in maglev depots (pasky).
Diffstat (limited to 'train_gui.c')
-rw-r--r--train_gui.c69
1 files changed, 33 insertions, 36 deletions
diff --git a/train_gui.c b/train_gui.c
index 2a2e0ae62..1cd2c9b60 100644
--- a/train_gui.c
+++ b/train_gui.c
@@ -14,23 +14,6 @@
int _traininfo_vehicle_pitch = 0;
-static Engine * const _rail_engines[3] = {
- &_engines[0],
- &_engines[NUM_NORMAL_RAIL_ENGINES],
- &_engines[NUM_MONORAIL_ENGINES + NUM_NORMAL_RAIL_ENGINES],
-};
-
-const byte _rail_engines_count[3] = {
- NUM_NORMAL_RAIL_ENGINES,
- NUM_MONORAIL_ENGINES,
- NUM_MAGLEV_ENGINES,
-};
-
-const byte _rail_engines_start[3] = {
- 0,
- NUM_NORMAL_RAIL_ENGINES,
- NUM_MONORAIL_ENGINES + NUM_NORMAL_RAIL_ENGINES,
-};
static void CcBuildWagon(bool success, uint tile, uint32 p1, uint32 p2)
{
@@ -85,12 +68,15 @@ static void NewRailVehicleWndProc(Window *w, WindowEvent *e)
{
int count = 0;
- int num = _rail_engines_count[WP(w,buildtrain_d).railtype];
- Engine *e = _rail_engines[WP(w,buildtrain_d).railtype];
- do {
- if (HASBIT(e->player_avail, _local_player))
+ byte railtype = WP(w,buildtrain_d).railtype;
+ int i;
+
+ for (i = 0; i < NUM_TRAIN_ENGINES; i++) {
+ Engine *e = &_engines[i];
+ if (e->railtype == railtype
+ && HASBIT(e->player_avail, _local_player))
count++;
- } while (++e,--num);
+ }
SetVScrollCount(w, count);
}
@@ -98,26 +84,37 @@ static void NewRailVehicleWndProc(Window *w, WindowEvent *e)
DrawWindowWidgets(w);
{
- int num = _rail_engines_count[WP(w,buildtrain_d).railtype];
- Engine *e = _rail_engines[WP(w,buildtrain_d).railtype];
+ byte railtype = WP(w,buildtrain_d).railtype;
int sel = WP(w,buildtrain_d).sel_index;
int pos = w->vscroll.pos;
int x = 1;
int y = 15;
- int engine_id = _rail_engines_start[WP(w,buildtrain_d).railtype];
int selected_id = -1;
+ int i;
+
+ /* Ensure that custom engines which substituted wagons
+ * are sorted correctly. */
+#define engine_drawing_loop(cmp_) \
+ for (i = 0; i < NUM_TRAIN_ENGINES; i++) { \
+ Engine *e = DEREF_ENGINE(i); \
+ RailVehicleInfo *rvi = &rail_vehinfo(i); \
+ \
+ if (e->railtype != railtype || (rvi->flags & RVI_WAGON) cmp_ 0 \
+ || !HASBIT(e->player_avail, _local_player)) \
+ continue; \
+ \
+ if (sel == 0) selected_id = i; \
+ if (IS_INT_INSIDE(--pos, -8, 0)) { \
+ DrawString(x+59, y+2, GetCustomEngineName(i), sel == 0 ? 0xC : 0x10); \
+ DrawTrainEngine(x+29, y+6+_traininfo_vehicle_pitch, i, \
+ SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player))); \
+ y += 14; \
+ } \
+ sel--; \
+ }
- do {
- if (HASBIT(e->player_avail, _local_player)) {
- if (sel==0) selected_id = engine_id;
- if (IS_INT_INSIDE(--pos, -8, 0)) {
- DrawString(x+59, y+2, GetCustomEngineName(engine_id), sel==0 ? 0xC : 0x10);
- DrawTrainEngine(x+29, y+6+_traininfo_vehicle_pitch, engine_id, SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)));
- y += 14;
- }
- sel--;
- }
- } while (++engine_id, ++e,--num);
+ engine_drawing_loop(!=); // True engines
+ engine_drawing_loop(==); // Feeble wagons
WP(w,buildtrain_d).sel_engine = selected_id;