From feed914b97f324929f7f3d832eec8550bd362741 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 14 May 2006 20:58:12 +0000 Subject: (svn r4869) - NewGRF: support setting train list vehicle width to 32 instead of 29 pixels, for sets which use 32 pixel long engines/wagons. --- train_gui.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index b8bb9f2bd..bed0b9cd6 100644 --- a/train_gui.c +++ b/train_gui.c @@ -357,19 +357,19 @@ static void ShowBuildTrainWindow(TileIndex tile) * @return Number of pixels across. */ static int WagonLengthToPixels(int len) { - return (len * 29) / 8; + return (len * _traininfo_vehicle_width) / 8; } static void DrawTrainImage(const Vehicle *v, int x, int y, int count, int skip, VehicleID selection) { int dx = 0; - count *= 8; + count *= 29; do { if (--skip < 0) { int width = v->u.rail.cached_veh_length; - if (dx + width <= count) { + if (WagonLengthToPixels(dx + width) <= count) { PalSpriteID pal = (v->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(v); DrawSprite(GetTrainImage(v, DIR_W) | pal, x + 14 + WagonLengthToPixels(dx), y + 6 + (is_custom_sprite(RailVehInfo(v->engine_type)->image_index) ? _traininfo_vehicle_pitch : 0)); if (v->index == selection) @@ -379,7 +379,7 @@ static void DrawTrainImage(const Vehicle *v, int x, int y, int count, int skip, } v = v->next; - } while (dx < count && v != NULL); + } while (WagonLengthToPixels(dx) < count && v != NULL); } static void DrawTrainDepotWindow(Window *w) @@ -498,7 +498,7 @@ static int GetVehicleFromTrainDepotWndPt(const Window *w, int x, int y, GetDepot } } - x -= 29; /* free wagons don't have an initial loco. */ + x -= _traininfo_vehicle_width; /* free wagons don't have an initial loco. */ /* and then the list of free wagons */ FOR_ALL_VEHICLES(v) { -- cgit v1.2.3-54-g00ecf