From 0b3706a8d390e97c2d39f901977b414a5440d174 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 7 Nov 2008 17:59:51 +0000 Subject: (svn r14566) -Fix [FS#2397]: RV's go via order would reserve a slot at the 'via' station which it never uses, which makes it unlikely that it reserves a slot for the next station and that makes queueing fail (Aali) --- src/smallmap_gui.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/smallmap_gui.cpp') diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 5c993cc2c..4eaf50926 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -383,6 +383,20 @@ static inline uint32 GetSmallMapIndustriesPixels(TileIndex tile) return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]); } +#define MK(x) MKCOLOR(x << 24 | x << 16 | x << 8 | x) + +static const uint32 _busyness[] = { + MK(15), + MK(150), + MK(209), + MK(206), + MK(191), + MK(186), + MK(184), + MK(180), +}; + + /** * Return the color a tile would be displayed with in the small map in mode "Routes". * @@ -405,7 +419,7 @@ static inline uint32 GetSmallMapRoutesPixels(TileIndex tile) } } else { /* ground color */ - bits = ApplyMask(MKCOLOR(0x54545454), &_smallmap_contours_andor[t]); + bits = ApplyMask(t == MP_RAILWAY ? _busyness[CountBits(GetStat(tile))] : MKCOLOR(0x54545454), &_smallmap_contours_andor[t]); } return bits; } -- cgit v1.2.3-54-g00ecf