# HG changeset patch # User belugas # Date 1176081283 0 # Node ID 1cb1c647752f190122dc45b88e959f9dad4f65a7 # Parent 862590c931fb1cda96fe9f2e56f9b74f5cacb6f4 (svn r9578) -Codechange: Cleanup of industry_cmd (Step-10). Use industry's spec map_colour for smallmap industry color code drawing diff -r 862590c931fb -r 1cb1c647752f src/smallmap_gui.cpp --- a/src/smallmap_gui.cpp Mon Apr 09 01:08:11 2007 +0000 +++ b/src/smallmap_gui.cpp Mon Apr 09 01:14:43 2007 +0000 @@ -392,32 +392,6 @@ return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]); } -/* Industry colours... a total of 175 gfx - XXX - increase if more industries */ -static const byte _industry_smallmap_colors[175] = { - 215, 215, 215, 215, 215, 215, 215, 184, - 184, 184, 184, 194, 194, 194, 194, 194, - 86, 86, 191, 191, 191, 191, 191, 191, - 152, 152, 152, 152, 152, 152, 152, 152, - 152, 48, 48, 48, 48, 48, 48, 174, - 174, 174, 174, 174, 174, 174, 174, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 15, 15, 55, 55, 55, 55, - 10, 10, 10, 10, 10, 10, 10, 10, - 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, - 194, 15, 15, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 55, 55, 55, 55, - 55, 55, 55, 55, 55, 55, 55, 55, - 55, 55, 55, 55, 86, 39, 37, 37, - 208, 174, 174, 174, 174, 194, 194, 194, - 194, 48, 48, 174, 174, 174, 174, 39, - 39, 55, 208, 208, 208, 208, 10, 10, - 10, 10, 10, 10, 37, 37, 37, 37, - 37, 37, 37, 37, 184, 184, 184, 184, - 152, 152, 152, 152, 194, 194, 194, 15, - 15, 15, 15, 15, 15, 15, 15, -}; - /** * Return the color a tile would be displayed with in the small map in mode "Industries". * @@ -429,7 +403,7 @@ TileType t = GetEffectiveTileType(tile); if (t == MP_INDUSTRY) { - return _industry_smallmap_colors[GetIndustryGfx(tile)] * 0x01010101; + return GetIndustrySpec(GetIndustryByTile(tile)->type)->map_colour * 0x01010101; } return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]);