00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #include "stdafx.h"
00013 #include "clear_map.h"
00014 #include "industry.h"
00015 #include "station_map.h"
00016 #include "landscape.h"
00017 #include "tree_map.h"
00018 #include "viewport_func.h"
00019 #include "town.h"
00020 #include "tunnelbridge_map.h"
00021 #include "core/endian_func.hpp"
00022 #include "vehicle_base.h"
00023 #include "sound_func.h"
00024 #include "window_func.h"
00025 #include "company_base.h"
00026 #include "smallmap_gui.h"
00027
00028 #include "table/strings.h"
00029
00030 static int _smallmap_industry_count;
00031 static int _smallmap_company_count;
00032 static int _smallmap_cargo_count;
00033
00035 static uint8 _linkstat_colours_in_legenda[] = {0, 1, 3, 5, 7, 9, 11};
00036
00037 static const int NUM_NO_COMPANY_ENTRIES = 4;
00038
00039 static const uint8 PC_ROUGH_LAND = 0x52;
00040 static const uint8 PC_GRASS_LAND = 0x54;
00041 static const uint8 PC_BARE_LAND = 0x37;
00042 static const uint8 PC_FIELDS = 0x25;
00043 static const uint8 PC_TREES = 0x57;
00044 static const uint8 PC_WATER = 0xCA;
00045
00047 #define MK(a, b) {a, b, INVALID_INDUSTRYTYPE, 0, INVALID_COMPANY, true, false, false}
00048
00050 #define MC(height) {0, STR_TINY_BLACK_HEIGHT, INVALID_INDUSTRYTYPE, height, INVALID_COMPANY, true, false, false}
00051
00053 #define MO(a, b) {a, b, INVALID_INDUSTRYTYPE, 0, INVALID_COMPANY, true, false, false}
00054
00056 #define MOEND() {0, 0, INVALID_INDUSTRYTYPE, 0, OWNER_NONE, true, true, false}
00057
00059 #define MKEND() {0, STR_NULL, INVALID_INDUSTRYTYPE, 0, INVALID_COMPANY, true, true, false}
00060
00065 #define MS(a, b) {a, b, INVALID_INDUSTRYTYPE, 0, INVALID_COMPANY, true, false, true}
00066
00068 static LegendAndColour _legend_land_contours[] = {
00069
00070 MC(0),
00071 MC(4),
00072 MC(8),
00073 MC(12),
00074 MC(14),
00075
00076 MS(PC_BLACK, STR_SMALLMAP_LEGENDA_ROADS),
00077 MK(PC_GREY, STR_SMALLMAP_LEGENDA_RAILROADS),
00078 MK(PC_LIGHT_BLUE, STR_SMALLMAP_LEGENDA_STATIONS_AIRPORTS_DOCKS),
00079 MK(PC_DARK_RED, STR_SMALLMAP_LEGENDA_BUILDINGS_INDUSTRIES),
00080 MK(PC_WHITE, STR_SMALLMAP_LEGENDA_VEHICLES),
00081 MKEND()
00082 };
00083
00084 static const LegendAndColour _legend_vehicles[] = {
00085 MK(PC_RED, STR_SMALLMAP_LEGENDA_TRAINS),
00086 MK(PC_YELLOW, STR_SMALLMAP_LEGENDA_ROAD_VEHICLES),
00087 MK(PC_LIGHT_BLUE, STR_SMALLMAP_LEGENDA_SHIPS),
00088 MK(PC_WHITE, STR_SMALLMAP_LEGENDA_AIRCRAFT),
00089
00090 MS(PC_BLACK, STR_SMALLMAP_LEGENDA_TRANSPORT_ROUTES),
00091 MK(PC_DARK_RED, STR_SMALLMAP_LEGENDA_BUILDINGS_INDUSTRIES),
00092 MKEND()
00093 };
00094
00095 static const LegendAndColour _legend_routes[] = {
00096 MK(PC_BLACK, STR_SMALLMAP_LEGENDA_ROADS),
00097 MK(PC_GREY, STR_SMALLMAP_LEGENDA_RAILROADS),
00098 MK(PC_DARK_RED, STR_SMALLMAP_LEGENDA_BUILDINGS_INDUSTRIES),
00099
00100 MS(PC_VERY_DARK_BROWN, STR_SMALLMAP_LEGENDA_RAILROAD_STATION),
00101 MK(PC_ORANGE, STR_SMALLMAP_LEGENDA_TRUCK_LOADING_BAY),
00102 MK(PC_YELLOW, STR_SMALLMAP_LEGENDA_BUS_STATION),
00103 MK(PC_RED, STR_SMALLMAP_LEGENDA_AIRPORT_HELIPORT),
00104 MK(PC_LIGHT_BLUE, STR_SMALLMAP_LEGENDA_DOCK),
00105 MKEND()
00106 };
00107
00108 static const LegendAndColour _legend_vegetation[] = {
00109 MK(PC_ROUGH_LAND, STR_SMALLMAP_LEGENDA_ROUGH_LAND),
00110 MK(PC_GRASS_LAND, STR_SMALLMAP_LEGENDA_GRASS_LAND),
00111 MK(PC_BARE_LAND, STR_SMALLMAP_LEGENDA_BARE_LAND),
00112 MK(PC_FIELDS, STR_SMALLMAP_LEGENDA_FIELDS),
00113 MK(PC_TREES, STR_SMALLMAP_LEGENDA_TREES),
00114 MK(PC_GREEN, STR_SMALLMAP_LEGENDA_FOREST),
00115
00116 MS(PC_GREY, STR_SMALLMAP_LEGENDA_ROCKS),
00117 MK(PC_ORANGE, STR_SMALLMAP_LEGENDA_DESERT),
00118 MK(PC_LIGHT_BLUE, STR_SMALLMAP_LEGENDA_SNOW),
00119 MK(PC_BLACK, STR_SMALLMAP_LEGENDA_TRANSPORT_ROUTES),
00120 MK(PC_DARK_RED, STR_SMALLMAP_LEGENDA_BUILDINGS_INDUSTRIES),
00121 MKEND()
00122 };
00123
00124 static LegendAndColour _legend_land_owners[NUM_NO_COMPANY_ENTRIES + MAX_COMPANIES + 1] = {
00125 MO(PC_WATER, STR_SMALLMAP_LEGENDA_WATER),
00126 MO(0x00, STR_SMALLMAP_LEGENDA_NO_OWNER),
00127 MO(PC_DARK_RED, STR_SMALLMAP_LEGENDA_TOWNS),
00128 MO(PC_DARK_GREY, STR_SMALLMAP_LEGENDA_INDUSTRIES),
00129
00130 MOEND(),
00131 };
00132
00133 #undef MK
00134 #undef MC
00135 #undef MS
00136 #undef MO
00137 #undef MOEND
00138 #undef MKEND
00139
00141 static LegendAndColour _legend_linkstats[NUM_CARGO + lengthof(_linkstat_colours_in_legenda) + 1];
00146 static LegendAndColour _legend_from_industries[NUM_INDUSTRYTYPES + 1];
00148 static uint _industry_to_list_pos[NUM_INDUSTRYTYPES];
00150 static bool _smallmap_show_heightmap = false;
00152 static uint _company_to_list_pos[MAX_COMPANIES];
00153
00157 void BuildIndustriesLegend()
00158 {
00159 uint j = 0;
00160
00161
00162 for (uint8 i = 0; i < NUM_INDUSTRYTYPES; i++) {
00163 IndustryType ind = _sorted_industry_types[i];
00164 const IndustrySpec *indsp = GetIndustrySpec(ind);
00165 if (indsp->enabled) {
00166 _legend_from_industries[j].legend = indsp->name;
00167 _legend_from_industries[j].colour = indsp->map_colour;
00168 _legend_from_industries[j].type = ind;
00169 _legend_from_industries[j].show_on_map = true;
00170 _legend_from_industries[j].col_break = false;
00171 _legend_from_industries[j].end = false;
00172
00173
00174 _industry_to_list_pos[ind] = j;
00175 j++;
00176 }
00177 }
00178
00179 _legend_from_industries[j].end = true;
00180
00181
00182 _smallmap_industry_count = j;
00183 }
00184
00188 void BuildLinkStatsLegend()
00189 {
00190
00191 memset(_legend_linkstats, 0, sizeof(_legend_linkstats));
00192
00193 uint i = 0;
00194 for (; i < _sorted_cargo_specs_size; ++i) {
00195 const CargoSpec *cs = _sorted_cargo_specs[i];
00196
00197 _legend_linkstats[i].legend = cs->name;
00198 _legend_linkstats[i].colour = cs->legend_colour;
00199 _legend_linkstats[i].type = cs->Index();
00200 _legend_linkstats[i].show_on_map = true;
00201 }
00202
00203 _legend_linkstats[i].col_break = true;
00204 _smallmap_cargo_count = i;
00205
00206 for (; i < _smallmap_cargo_count + lengthof(_linkstat_colours_in_legenda); ++i) {
00207 _legend_linkstats[i].legend = STR_EMPTY;
00208 _legend_linkstats[i].colour = LinkGraphOverlay::LINK_COLOURS[_linkstat_colours_in_legenda[i - _smallmap_cargo_count]];
00209 _legend_linkstats[i].show_on_map = true;
00210 }
00211
00212 _legend_linkstats[_smallmap_cargo_count].legend = STR_LINKGRAPH_LEGEND_UNUSED;
00213 _legend_linkstats[i - 1].legend = STR_LINKGRAPH_LEGEND_OVERLOADED;
00214 _legend_linkstats[(_smallmap_cargo_count + i - 1) / 2].legend = STR_LINKGRAPH_LEGEND_SATURATED;
00215 _legend_linkstats[i].end = true;
00216 }
00217
00218 static const LegendAndColour * const _legend_table[] = {
00219 _legend_land_contours,
00220 _legend_vehicles,
00221 _legend_from_industries,
00222 _legend_linkstats,
00223 _legend_routes,
00224 _legend_vegetation,
00225 _legend_land_owners,
00226 };
00227
00228 #define MKCOLOUR(x) TO_LE32X(x)
00229
00230 #define MKCOLOUR_XXXX(x) (MKCOLOUR(0x01010101) * (uint)(x))
00231 #define MKCOLOUR_X0X0(x) (MKCOLOUR(0x01000100) * (uint)(x))
00232 #define MKCOLOUR_0X0X(x) (MKCOLOUR(0x00010001) * (uint)(x))
00233 #define MKCOLOUR_0XX0(x) (MKCOLOUR(0x00010100) * (uint)(x))
00234 #define MKCOLOUR_X00X(x) (MKCOLOUR(0x01000001) * (uint)(x))
00235
00236 #define MKCOLOUR_XYXY(x, y) (MKCOLOUR_X0X0(x) | MKCOLOUR_0X0X(y))
00237 #define MKCOLOUR_XYYX(x, y) (MKCOLOUR_X00X(x) | MKCOLOUR_0XX0(y))
00238
00239 #define MKCOLOUR_0000 MKCOLOUR_XXXX(0x00)
00240 #define MKCOLOUR_0FF0 MKCOLOUR_0XX0(0xFF)
00241 #define MKCOLOUR_F00F MKCOLOUR_X00X(0xFF)
00242 #define MKCOLOUR_FFFF MKCOLOUR_XXXX(0xFF)
00243
00245 static const uint32 _green_map_heights[] = {
00246 MKCOLOUR_XXXX(0x5A),
00247 MKCOLOUR_XYXY(0x5A, 0x5B),
00248 MKCOLOUR_XXXX(0x5B),
00249 MKCOLOUR_XYXY(0x5B, 0x5C),
00250 MKCOLOUR_XXXX(0x5C),
00251 MKCOLOUR_XYXY(0x5C, 0x5D),
00252 MKCOLOUR_XXXX(0x5D),
00253 MKCOLOUR_XYXY(0x5D, 0x5E),
00254 MKCOLOUR_XXXX(0x5E),
00255 MKCOLOUR_XYXY(0x5E, 0x5F),
00256 MKCOLOUR_XXXX(0x5F),
00257 MKCOLOUR_XYXY(0x5F, 0x1F),
00258 MKCOLOUR_XXXX(0x1F),
00259 MKCOLOUR_XYXY(0x1F, 0x27),
00260 MKCOLOUR_XXXX(0x27),
00261 MKCOLOUR_XXXX(0x27),
00262 };
00263 assert_compile(lengthof(_green_map_heights) == MAX_TILE_HEIGHT + 1);
00264
00266 static const uint32 _dark_green_map_heights[] = {
00267 MKCOLOUR_XXXX(0x60),
00268 MKCOLOUR_XYXY(0x60, 0x61),
00269 MKCOLOUR_XXXX(0x61),
00270 MKCOLOUR_XYXY(0x61, 0x62),
00271 MKCOLOUR_XXXX(0x62),
00272 MKCOLOUR_XYXY(0x62, 0x63),
00273 MKCOLOUR_XXXX(0x63),
00274 MKCOLOUR_XYXY(0x63, 0x64),
00275 MKCOLOUR_XXXX(0x64),
00276 MKCOLOUR_XYXY(0x64, 0x65),
00277 MKCOLOUR_XXXX(0x65),
00278 MKCOLOUR_XYXY(0x65, 0x66),
00279 MKCOLOUR_XXXX(0x66),
00280 MKCOLOUR_XYXY(0x66, 0x67),
00281 MKCOLOUR_XXXX(0x67),
00282 MKCOLOUR_XXXX(0x67),
00283 };
00284 assert_compile(lengthof(_dark_green_map_heights) == MAX_TILE_HEIGHT + 1);
00285
00287 static const uint32 _violet_map_heights[] = {
00288 MKCOLOUR_XXXX(0x80),
00289 MKCOLOUR_XYXY(0x80, 0x81),
00290 MKCOLOUR_XXXX(0x81),
00291 MKCOLOUR_XYXY(0x81, 0x82),
00292 MKCOLOUR_XXXX(0x82),
00293 MKCOLOUR_XYXY(0x82, 0x83),
00294 MKCOLOUR_XXXX(0x83),
00295 MKCOLOUR_XYXY(0x83, 0x84),
00296 MKCOLOUR_XXXX(0x84),
00297 MKCOLOUR_XYXY(0x84, 0x85),
00298 MKCOLOUR_XXXX(0x85),
00299 MKCOLOUR_XYXY(0x85, 0x86),
00300 MKCOLOUR_XXXX(0x86),
00301 MKCOLOUR_XYXY(0x86, 0x87),
00302 MKCOLOUR_XXXX(0x87),
00303 MKCOLOUR_XXXX(0x87),
00304 };
00305 assert_compile(lengthof(_violet_map_heights) == MAX_TILE_HEIGHT + 1);
00306
00308 struct SmallMapColourScheme {
00309 const uint32 *height_colours;
00310 uint32 default_colour;
00311 };
00312
00314 static const SmallMapColourScheme _heightmap_schemes[] = {
00315 {_green_map_heights, MKCOLOUR_XXXX(0x54)},
00316 {_dark_green_map_heights, MKCOLOUR_XXXX(0x62)},
00317 {_violet_map_heights, MKCOLOUR_XXXX(0x82)},
00318 };
00319
00323 void BuildLandLegend()
00324 {
00325 for (LegendAndColour *lc = _legend_land_contours; lc->legend == STR_TINY_BLACK_HEIGHT; lc++) {
00326 lc->colour = _heightmap_schemes[_settings_client.gui.smallmap_land_colour].height_colours[lc->height];
00327 }
00328 }
00329
00333 void BuildOwnerLegend()
00334 {
00335 _legend_land_owners[1].colour = _heightmap_schemes[_settings_client.gui.smallmap_land_colour].default_colour;
00336
00337 int i = NUM_NO_COMPANY_ENTRIES;
00338 const Company *c;
00339 FOR_ALL_COMPANIES(c) {
00340 _legend_land_owners[i].colour = _colour_gradient[c->colour][5];
00341 _legend_land_owners[i].company = c->index;
00342 _legend_land_owners[i].show_on_map = true;
00343 _legend_land_owners[i].col_break = false;
00344 _legend_land_owners[i].end = false;
00345 _company_to_list_pos[c->index] = i;
00346 i++;
00347 }
00348
00349
00350 _legend_land_owners[i].end = true;
00351
00352
00353 _smallmap_company_count = i;
00354 }
00355
00356 struct AndOr {
00357 uint32 mor;
00358 uint32 mand;
00359 };
00360
00361 static inline uint32 ApplyMask(uint32 colour, const AndOr *mask)
00362 {
00363 return (colour & mask->mand) | mask->mor;
00364 }
00365
00366
00368 static const AndOr _smallmap_contours_andor[] = {
00369 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00370 {MKCOLOUR_0XX0(PC_GREY ), MKCOLOUR_F00F},
00371 {MKCOLOUR_0XX0(PC_BLACK ), MKCOLOUR_F00F},
00372 {MKCOLOUR_0XX0(PC_DARK_RED ), MKCOLOUR_F00F},
00373 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00374 {MKCOLOUR_XXXX(PC_LIGHT_BLUE), MKCOLOUR_0000},
00375 {MKCOLOUR_XXXX(PC_WATER ), MKCOLOUR_0000},
00376 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00377 {MKCOLOUR_XXXX(PC_DARK_RED ), MKCOLOUR_0000},
00378 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00379 {MKCOLOUR_0XX0(PC_DARK_RED ), MKCOLOUR_F00F},
00380 {MKCOLOUR_0XX0(PC_GREY ), MKCOLOUR_F00F},
00381 };
00382
00384 static const AndOr _smallmap_vehicles_andor[] = {
00385 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00386 {MKCOLOUR_0XX0(PC_BLACK ), MKCOLOUR_F00F},
00387 {MKCOLOUR_0XX0(PC_BLACK ), MKCOLOUR_F00F},
00388 {MKCOLOUR_0XX0(PC_DARK_RED ), MKCOLOUR_F00F},
00389 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00390 {MKCOLOUR_0XX0(PC_BLACK ), MKCOLOUR_F00F},
00391 {MKCOLOUR_XXXX(PC_WATER ), MKCOLOUR_0000},
00392 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00393 {MKCOLOUR_XXXX(PC_DARK_RED ), MKCOLOUR_0000},
00394 {MKCOLOUR_0000 , MKCOLOUR_FFFF},
00395 {MKCOLOUR_0XX0(PC_DARK_RED ), MKCOLOUR_F00F},
00396 {MKCOLOUR_0XX0(PC_BLACK ), MKCOLOUR_F00F},
00397 };
00398
00400 static const byte _tiletype_importance[] = {
00401 2,
00402 8,
00403 7,
00404 5,
00405 2,
00406 9,
00407 2,
00408 1,
00409 6,
00410 8,
00411 2,
00412 0,
00413 };
00414
00415
00416 static inline TileType GetEffectiveTileType(TileIndex tile)
00417 {
00418 TileType t = GetTileType(tile);
00419
00420 if (t == MP_TUNNELBRIDGE) {
00421 TransportType tt = GetTunnelBridgeTransportType(tile);
00422
00423 switch (tt) {
00424 case TRANSPORT_RAIL: t = MP_RAILWAY; break;
00425 case TRANSPORT_ROAD: t = MP_ROAD; break;
00426 default: t = MP_WATER; break;
00427 }
00428 }
00429 return t;
00430 }
00431
00438 static inline uint32 GetSmallMapContoursPixels(TileIndex tile, TileType t)
00439 {
00440 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00441 return ApplyMask(cs->height_colours[TileHeight(tile)], &_smallmap_contours_andor[t]);
00442 }
00443
00451 static inline uint32 GetSmallMapVehiclesPixels(TileIndex tile, TileType t)
00452 {
00453 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00454 return ApplyMask(cs->default_colour, &_smallmap_vehicles_andor[t]);
00455 }
00456
00464 static inline uint32 GetSmallMapIndustriesPixels(TileIndex tile, TileType t)
00465 {
00466 if (t == MP_INDUSTRY) {
00467
00468 if (_legend_from_industries[_industry_to_list_pos[Industry::GetByTile(tile)->type]].show_on_map) {
00469 return GetIndustrySpec(Industry::GetByTile(tile)->type)->map_colour * 0x01010101;
00470 } else {
00471
00472 t = (IsTileOnWater(tile) ? MP_WATER : MP_CLEAR);
00473 }
00474 }
00475
00476 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00477 return ApplyMask(_smallmap_show_heightmap ? cs->height_colours[TileHeight(tile)] : cs->default_colour, &_smallmap_vehicles_andor[t]);
00478 }
00479
00487 static inline uint32 GetSmallMapRoutesPixels(TileIndex tile, TileType t)
00488 {
00489 if (t == MP_STATION) {
00490 switch (GetStationType(tile)) {
00491 case STATION_RAIL: return MKCOLOUR_XXXX(PC_VERY_DARK_BROWN);
00492 case STATION_AIRPORT: return MKCOLOUR_XXXX(PC_RED);
00493 case STATION_TRUCK: return MKCOLOUR_XXXX(PC_ORANGE);
00494 case STATION_BUS: return MKCOLOUR_XXXX(PC_YELLOW);
00495 case STATION_DOCK: return MKCOLOUR_XXXX(PC_LIGHT_BLUE);
00496 default: return MKCOLOUR_FFFF;
00497 }
00498 } else if (t == MP_RAILWAY) {
00499 AndOr andor = {
00500 MKCOLOUR_0XX0(GetRailTypeInfo(GetRailType(tile))->map_colour),
00501 _smallmap_contours_andor[t].mand
00502 };
00503
00504 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00505 return ApplyMask(cs->default_colour, &andor);
00506 }
00507
00508
00509 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00510 return ApplyMask(cs->default_colour, &_smallmap_contours_andor[t]);
00511 }
00512
00520 static inline uint32 GetSmallMapLinkStatsPixels(TileIndex tile, TileType t)
00521 {
00522 return _smallmap_show_heightmap ? GetSmallMapContoursPixels(tile, t) : GetSmallMapRoutesPixels(tile, t);
00523 }
00524
00525 static const uint32 _vegetation_clear_bits[] = {
00526 MKCOLOUR_XXXX(PC_GRASS_LAND),
00527 MKCOLOUR_XXXX(PC_ROUGH_LAND),
00528 MKCOLOUR_XXXX(PC_GREY),
00529 MKCOLOUR_XXXX(PC_FIELDS),
00530 MKCOLOUR_XXXX(PC_LIGHT_BLUE),
00531 MKCOLOUR_XXXX(PC_ORANGE),
00532 MKCOLOUR_XXXX(PC_GRASS_LAND),
00533 MKCOLOUR_XXXX(PC_GRASS_LAND),
00534 };
00535
00543 static inline uint32 GetSmallMapVegetationPixels(TileIndex tile, TileType t)
00544 {
00545 switch (t) {
00546 case MP_CLEAR:
00547 return (IsClearGround(tile, CLEAR_GRASS) && GetClearDensity(tile) < 3) ? MKCOLOUR_XXXX(PC_BARE_LAND) : _vegetation_clear_bits[GetClearGround(tile)];
00548
00549 case MP_INDUSTRY:
00550 return IsTileForestIndustry(tile) ? MKCOLOUR_XXXX(PC_GREEN) : MKCOLOUR_XXXX(PC_DARK_RED);
00551
00552 case MP_TREES:
00553 if (GetTreeGround(tile) == TREE_GROUND_SNOW_DESERT || GetTreeGround(tile) == TREE_GROUND_ROUGH_SNOW) {
00554 return (_settings_game.game_creation.landscape == LT_ARCTIC) ? MKCOLOUR_XYYX(PC_LIGHT_BLUE, PC_TREES) : MKCOLOUR_XYYX(PC_ORANGE, PC_TREES);
00555 }
00556 return MKCOLOUR_XYYX(PC_GRASS_LAND, PC_TREES);
00557
00558 default:
00559 return ApplyMask(MKCOLOUR_XXXX(PC_GRASS_LAND), &_smallmap_vehicles_andor[t]);
00560 }
00561 }
00562
00570 static inline uint32 GetSmallMapOwnerPixels(TileIndex tile, TileType t)
00571 {
00572 Owner o;
00573
00574 switch (t) {
00575 case MP_INDUSTRY: return MKCOLOUR_XXXX(PC_DARK_GREY);
00576 case MP_HOUSE: return MKCOLOUR_XXXX(PC_DARK_RED);
00577 default: o = GetTileOwner(tile); break;
00578
00579
00580
00581
00582 }
00583
00584 if ((o < MAX_COMPANIES && !_legend_land_owners[_company_to_list_pos[o]].show_on_map) || o == OWNER_NONE || o == OWNER_WATER) {
00585 if (t == MP_WATER) return MKCOLOUR_XXXX(PC_WATER);
00586 const SmallMapColourScheme *cs = &_heightmap_schemes[_settings_client.gui.smallmap_land_colour];
00587 return _smallmap_show_heightmap ? cs->height_colours[TileHeight(tile)] : cs->default_colour;
00588 } else if (o == OWNER_TOWN) {
00589 return MKCOLOUR_XXXX(PC_DARK_RED);
00590 }
00591
00592 return MKCOLOUR_XXXX(_legend_land_owners[_company_to_list_pos[o]].colour);
00593 }
00594
00596 static const byte _vehicle_type_colours[6] = {
00597 PC_RED, PC_YELLOW, PC_LIGHT_BLUE, PC_WHITE, PC_BLACK, PC_RED
00598 };
00599
00600 FORCEINLINE Point SmallMapWindow::SmallmapRemapCoords(int x, int y) const
00601 {
00602 Point pt;
00603 pt.x = (y - x) * 2;
00604 pt.y = y + x;
00605 return pt;
00606 }
00607
00614 FORCEINLINE Point SmallMapWindow::RemapTile(int tile_x, int tile_y) const
00615 {
00616 int x_offset = tile_x - this->scroll_x / (int)TILE_SIZE;
00617 int y_offset = tile_y - this->scroll_y / (int)TILE_SIZE;
00618
00619 if (this->zoom == 1) return SmallmapRemapCoords(x_offset, y_offset);
00620
00621
00622 if (x_offset < 0) x_offset -= this->zoom - 1;
00623 if (y_offset < 0) y_offset -= this->zoom - 1;
00624
00625 return SmallmapRemapCoords(x_offset / this->zoom, y_offset / this->zoom);
00626 }
00627
00638 FORCEINLINE Point SmallMapWindow::PixelToTile(int px, int py, int *sub, bool add_sub) const
00639 {
00640 if (add_sub) px += this->subscroll;
00641
00642
00643
00644 Point pt = {((py >> 1) - (px >> 2)) * this->zoom, ((py >> 1) + (px >> 2)) * this->zoom};
00645 px &= 3;
00646
00647 if (py & 1) {
00648 if (px < 2) {
00649 pt.x += this->zoom;
00650 px += 2;
00651 } else {
00652 pt.y += this->zoom;
00653 px -= 2;
00654 }
00655 }
00656
00657 *sub = px;
00658 return pt;
00659 }
00660
00670 Point SmallMapWindow::ComputeScroll(int tx, int ty, int x, int y, int *sub)
00671 {
00672 assert(x >= 0 && y >= 0);
00673
00674 int new_sub;
00675 Point tile_xy = PixelToTile(x, y, &new_sub, false);
00676 tx -= tile_xy.x;
00677 ty -= tile_xy.y;
00678
00679 Point scroll;
00680 if (new_sub == 0) {
00681 *sub = 0;
00682 scroll.x = (tx + this->zoom) * TILE_SIZE;
00683 scroll.y = (ty - this->zoom) * TILE_SIZE;
00684 } else {
00685 *sub = 4 - new_sub;
00686 scroll.x = (tx + 2 * this->zoom) * TILE_SIZE;
00687 scroll.y = (ty - 2 * this->zoom) * TILE_SIZE;
00688 }
00689 return scroll;
00690 }
00691
00698 void SmallMapWindow::SetZoomLevel(ZoomLevelChange change, const Point *zoom_pt)
00699 {
00700 static const int zoomlevels[] = {1, 2, 4, 6, 8};
00701 static const int MIN_ZOOM_INDEX = 0;
00702 static const int MAX_ZOOM_INDEX = lengthof(zoomlevels) - 1;
00703
00704 int new_index, cur_index, sub;
00705 Point tile;
00706 switch (change) {
00707 case ZLC_INITIALIZE:
00708 cur_index = - 1;
00709 new_index = MIN_ZOOM_INDEX;
00710 break;
00711
00712 case ZLC_ZOOM_IN:
00713 case ZLC_ZOOM_OUT:
00714 for (cur_index = MIN_ZOOM_INDEX; cur_index <= MAX_ZOOM_INDEX; cur_index++) {
00715 if (this->zoom == zoomlevels[cur_index]) break;
00716 }
00717 assert(cur_index <= MAX_ZOOM_INDEX);
00718
00719 tile = this->PixelToTile(zoom_pt->x, zoom_pt->y, &sub);
00720 new_index = Clamp(cur_index + ((change == ZLC_ZOOM_IN) ? -1 : 1), MIN_ZOOM_INDEX, MAX_ZOOM_INDEX);
00721 break;
00722
00723 default: NOT_REACHED();
00724 }
00725
00726 if (new_index != cur_index) {
00727 this->zoom = zoomlevels[new_index];
00728 if (cur_index >= 0) {
00729 Point new_tile = this->PixelToTile(zoom_pt->x, zoom_pt->y, &sub);
00730 this->SetNewScroll(this->scroll_x + (tile.x - new_tile.x) * TILE_SIZE,
00731 this->scroll_y + (tile.y - new_tile.y) * TILE_SIZE, sub);
00732 } else if (this->map_type == SMT_LINKSTATS) {
00733 this->overlay->RebuildCache();
00734 }
00735 this->SetWidgetDisabledState(SM_WIDGET_ZOOM_IN, this->zoom == zoomlevels[MIN_ZOOM_INDEX]);
00736 this->SetWidgetDisabledState(SM_WIDGET_ZOOM_OUT, this->zoom == zoomlevels[MAX_ZOOM_INDEX]);
00737 this->SetDirty();
00738 }
00739 }
00740
00746 inline uint32 SmallMapWindow::GetTileColours(const TileArea &ta) const
00747 {
00748 int importance = 0;
00749 TileIndex tile = INVALID_TILE;
00750 TileType et = MP_VOID;
00751
00752 TILE_AREA_LOOP(ti, ta) {
00753 TileType ttype = GetEffectiveTileType(ti);
00754 if (_tiletype_importance[ttype] > importance) {
00755 importance = _tiletype_importance[ttype];
00756 tile = ti;
00757 et = ttype;
00758 }
00759 }
00760
00761 switch (this->map_type) {
00762 case SMT_CONTOUR:
00763 return GetSmallMapContoursPixels(tile, et);
00764
00765 case SMT_VEHICLES:
00766 return GetSmallMapVehiclesPixels(tile, et);
00767
00768 case SMT_INDUSTRY:
00769 return GetSmallMapIndustriesPixels(tile, et);
00770
00771 case SMT_LINKSTATS:
00772 return GetSmallMapLinkStatsPixels(tile, et);
00773
00774 case SMT_ROUTES:
00775 return GetSmallMapRoutesPixels(tile, et);
00776
00777 case SMT_VEGETATION:
00778 return GetSmallMapVegetationPixels(tile, et);
00779
00780 case SMT_OWNER:
00781 return GetSmallMapOwnerPixels(tile, et);
00782
00783 default: NOT_REACHED();
00784 }
00785 }
00786
00801 void SmallMapWindow::DrawSmallMapColumn(void *dst, uint xc, uint yc, int pitch, int reps, int start_pos, int end_pos, Blitter *blitter) const
00802 {
00803 void *dst_ptr_abs_end = blitter->MoveTo(_screen.dst_ptr, 0, _screen.height);
00804 uint min_xy = _settings_game.construction.freeform_edges ? 1 : 0;
00805
00806 do {
00807
00808 if (xc >= MapMaxX() || yc >= MapMaxY()) continue;
00809
00810
00811 if (dst < _screen.dst_ptr) continue;
00812 if (dst >= dst_ptr_abs_end) continue;
00813
00814
00815 TileArea ta;
00816 if (min_xy == 1 && (xc == 0 || yc == 0)) {
00817 if (this->zoom == 1) continue;
00818
00819 ta = TileArea(TileXY(max(min_xy, xc), max(min_xy, yc)), this->zoom - (xc == 0), this->zoom - (yc == 0));
00820 } else {
00821 ta = TileArea(TileXY(xc, yc), this->zoom, this->zoom);
00822 }
00823 ta.ClampToMap();
00824
00825 uint32 val = this->GetTileColours(ta);
00826 uint8 *val8 = (uint8 *)&val;
00827 int idx = max(0, -start_pos);
00828 for (int pos = max(0, start_pos); pos < end_pos; pos++) {
00829 blitter->SetPixel(dst, idx, 0, val8[idx]);
00830 idx++;
00831 }
00832
00833 } while (xc += this->zoom, yc += this->zoom, dst = blitter->MoveTo(dst, pitch, 0), --reps != 0);
00834 }
00835
00841 void SmallMapWindow::DrawVehicles(const DrawPixelInfo *dpi, Blitter *blitter) const
00842 {
00843 const Vehicle *v;
00844 FOR_ALL_VEHICLES(v) {
00845 if (v->type == VEH_EFFECT) continue;
00846 if (v->vehstatus & (VS_HIDDEN | VS_UNCLICKABLE)) continue;
00847
00848
00849 Point pt = this->RemapTile(v->x_pos / TILE_SIZE, v->y_pos / TILE_SIZE);
00850
00851 int y = pt.y - dpi->top;
00852 if (!IsInsideMM(y, 0, dpi->height)) continue;
00853
00854 bool skip = false;
00855 int x = pt.x - this->subscroll - 3 - dpi->left;
00856 if (x < 0) {
00857
00858
00859 if (++x != 0) continue;
00860 skip = true;
00861 } else if (x >= dpi->width - 1) {
00862
00863 if (x != dpi->width - 1) continue;
00864 skip = true;
00865 }
00866
00867
00868 byte colour = (this->map_type == SMT_VEHICLES) ? _vehicle_type_colours[v->type] : PC_WHITE;
00869
00870
00871 blitter->SetPixel(dpi->dst_ptr, x, y, colour);
00872 if (!skip) blitter->SetPixel(dpi->dst_ptr, x + 1, y, colour);
00873 }
00874 }
00875
00880 void SmallMapWindow::DrawTowns(const DrawPixelInfo *dpi) const
00881 {
00882 const Town *t;
00883 FOR_ALL_TOWNS(t) {
00884
00885 Point pt = this->RemapTile(TileX(t->xy), TileY(t->xy));
00886 int x = pt.x - this->subscroll - (t->sign.width_small >> 1);
00887 int y = pt.y;
00888
00889
00890 if (x + t->sign.width_small > dpi->left &&
00891 x < dpi->left + dpi->width &&
00892 y + FONT_HEIGHT_SMALL > dpi->top &&
00893 y < dpi->top + dpi->height) {
00894
00895 SetDParam(0, t->index);
00896 DrawString(x, x + t->sign.width_small, y, STR_SMALLMAP_TOWN);
00897 }
00898 }
00899 }
00900
00904 void SmallMapWindow::DrawMapIndicators() const
00905 {
00906
00907 const ViewPort *vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport;
00908
00909 Point tile = InverseRemapCoords(vp->virtual_left, vp->virtual_top);
00910 Point tl = this->RemapTile(tile.x >> 4, tile.y >> 4);
00911 tl.x -= this->subscroll;
00912
00913 tile = InverseRemapCoords(vp->virtual_left + vp->virtual_width, vp->virtual_top + vp->virtual_height);
00914 Point br = this->RemapTile(tile.x >> 4, tile.y >> 4);
00915 br.x -= this->subscroll;
00916
00917 SmallMapWindow::DrawVertMapIndicator(tl.x, tl.y, br.y);
00918 SmallMapWindow::DrawVertMapIndicator(br.x, tl.y, br.y);
00919
00920 SmallMapWindow::DrawHorizMapIndicator(tl.x, br.x, tl.y);
00921 SmallMapWindow::DrawHorizMapIndicator(tl.x, br.x, br.y);
00922 }
00923
00935 void SmallMapWindow::DrawSmallMap(DrawPixelInfo *dpi) const
00936 {
00937 Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter();
00938 DrawPixelInfo *old_dpi;
00939
00940 old_dpi = _cur_dpi;
00941 _cur_dpi = dpi;
00942
00943
00944 GfxFillRect(dpi->left, dpi->top, dpi->left + dpi->width - 1, dpi->top + dpi->height - 1, PC_BLACK);
00945
00946
00947 int dx;
00948 Point tile = this->PixelToTile(dpi->left, dpi->top, &dx);
00949 int tile_x = this->scroll_x / (int)TILE_SIZE + tile.x;
00950 int tile_y = this->scroll_y / (int)TILE_SIZE + tile.y;
00951
00952 void *ptr = blitter->MoveTo(dpi->dst_ptr, -dx - 4, 0);
00953 int x = - dx - 4;
00954 int y = 0;
00955
00956 for (;;) {
00957
00958 if (x >= -3) {
00959 if (x >= dpi->width) break;
00960
00961 int end_pos = min(dpi->width, x + 4);
00962 int reps = (dpi->height - y + 1) / 2;
00963 if (reps > 0) {
00964 this->DrawSmallMapColumn(ptr, tile_x, tile_y, dpi->pitch * 2, reps, x, end_pos, blitter);
00965 }
00966 }
00967
00968 if (y == 0) {
00969 tile_y += this->zoom;
00970 y++;
00971 ptr = blitter->MoveTo(ptr, 0, 1);
00972 } else {
00973 tile_x -= this->zoom;
00974 y--;
00975 ptr = blitter->MoveTo(ptr, 0, -1);
00976 }
00977 ptr = blitter->MoveTo(ptr, 2, 0);
00978 x += 2;
00979 }
00980
00981
00982 if (this->map_type == SMT_CONTOUR || this->map_type == SMT_VEHICLES) this->DrawVehicles(dpi, blitter);
00983
00984
00985 if (this->map_type == SMT_LINKSTATS) this->overlay->Draw(dpi);
00986
00987
00988 if (this->show_towns) this->DrawTowns(dpi);
00989
00990
00991 this->DrawMapIndicators();
00992
00993 _cur_dpi = old_dpi;
00994 }
00995
00999 void SmallMapWindow::SetupWidgetData()
01000 {
01001 StringID legend_tooltip;
01002 StringID enable_all_tooltip;
01003 StringID disable_all_tooltip;
01004 int plane;
01005 switch (this->map_type) {
01006 case SMT_INDUSTRY:
01007 legend_tooltip = STR_SMALLMAP_TOOLTIP_INDUSTRY_SELECTION;
01008 enable_all_tooltip = STR_SMALLMAP_TOOLTIP_ENABLE_ALL_INDUSTRIES;
01009 disable_all_tooltip = STR_SMALLMAP_TOOLTIP_DISABLE_ALL_INDUSTRIES;
01010 plane = 0;
01011 break;
01012
01013 case SMT_OWNER:
01014 legend_tooltip = STR_SMALLMAP_TOOLTIP_COMPANY_SELECTION;
01015 enable_all_tooltip = STR_SMALLMAP_TOOLTIP_ENABLE_ALL_COMPANIES;
01016 disable_all_tooltip = STR_SMALLMAP_TOOLTIP_DISABLE_ALL_COMPANIES;
01017 plane = 0;
01018 break;
01019
01020 case SMT_LINKSTATS:
01021 legend_tooltip = STR_SMALLMAP_TOOLTIP_CARGO_SELECTION;
01022 enable_all_tooltip = STR_SMALLMAP_TOOLTIP_ENABLE_ALL_CARGOS;
01023 disable_all_tooltip = STR_SMALLMAP_TOOLTIP_DISABLE_ALL_CARGOS;
01024 plane = 0;
01025 break;
01026
01027 default:
01028 legend_tooltip = STR_NULL;
01029 enable_all_tooltip = STR_NULL;
01030 disable_all_tooltip = STR_NULL;
01031 plane = 1;
01032 break;
01033 }
01034
01035 this->GetWidget<NWidgetCore>(SM_WIDGET_LEGEND)->SetDataTip(STR_NULL, legend_tooltip);
01036 this->GetWidget<NWidgetCore>(SM_WIDGET_ENABLE_ALL)->SetDataTip(STR_SMALLMAP_ENABLE_ALL, enable_all_tooltip);
01037 this->GetWidget<NWidgetCore>(SM_WIDGET_DISABLE_ALL)->SetDataTip(STR_SMALLMAP_DISABLE_ALL, disable_all_tooltip);
01038 this->GetWidget<NWidgetStacked>(SM_WIDGET_SELECT_BUTTONS)->SetDisplayedPlane(plane);
01039 }
01040
01041 SmallMapWindow::SmallMapWindow(const WindowDesc *desc, int window_number) :
01042 Window(),
01043 refresh(FORCE_REFRESH_PERIOD)
01044 {
01045 this->overlay = new LinkGraphOverlay(this, SM_WIDGET_MAP);
01046 this->InitNested(desc, window_number);
01047 this->LowerWidget(this->map_type + SM_WIDGET_CONTOUR);
01048
01049 BuildLandLegend();
01050 this->SetWidgetLoweredState(SM_WIDGET_SHOW_HEIGHT, _smallmap_show_heightmap);
01051
01052 this->SetWidgetLoweredState(SM_WIDGET_TOGGLETOWNNAME, this->show_towns);
01053
01054 this->SetupWidgetData();
01055
01056 this->SetZoomLevel(ZLC_INITIALIZE, NULL);
01057 this->SmallMapCenterOnCurrentPos();
01058 }
01059
01065 void SmallMapWindow::SetStringParameters(int widget) const
01066 {
01067 switch (widget) {
01068 case SM_WIDGET_CAPTION:
01069 SetDParam(0, STR_SMALLMAP_TYPE_CONTOURS + this->map_type);
01070 break;
01071 }
01072 }
01073
01074 void SmallMapWindow::OnInit()
01075 {
01076 uint min_width = 0;
01077 this->min_number_of_columns = INDUSTRY_MIN_NUMBER_OF_COLUMNS;
01078 this->min_number_of_fixed_rows = lengthof(_linkstat_colours_in_legenda);
01079 for (uint i = 0; i < lengthof(_legend_table); i++) {
01080 uint height = 0;
01081 uint num_columns = 1;
01082 for (const LegendAndColour *tbl = _legend_table[i]; !tbl->end; ++tbl) {
01083 StringID str;
01084 if (i == SMT_INDUSTRY) {
01085 SetDParam(0, tbl->legend);
01086 SetDParam(1, IndustryPool::MAX_SIZE);
01087 str = STR_SMALLMAP_INDUSTRY;
01088 } else if (i == SMT_LINKSTATS) {
01089 SetDParam(0, tbl->legend);
01090 str = STR_SMALLMAP_LINKSTATS;
01091 } else if (i == SMT_OWNER) {
01092 if (tbl->company != INVALID_COMPANY) {
01093 if (!Company::IsValidID(tbl->company)) {
01094
01095 BuildOwnerLegend();
01096 this->OnInit();
01097 return;
01098 }
01099
01100 SetDParam(0, tbl->company);
01101 str = STR_SMALLMAP_COMPANY;
01102 } else {
01103 str = tbl->legend;
01104 }
01105 } else {
01106 if (tbl->col_break) {
01107 this->min_number_of_fixed_rows = max(this->min_number_of_fixed_rows, height);
01108 height = 0;
01109 num_columns++;
01110 }
01111 height++;
01112 str = tbl->legend;
01113 }
01114 min_width = max(GetStringBoundingBox(str).width, min_width);
01115 }
01116 this->min_number_of_fixed_rows = max(this->min_number_of_fixed_rows, height);
01117 this->min_number_of_columns = max(this->min_number_of_columns, num_columns);
01118 }
01119
01120
01121 this->column_width = min_width + LEGEND_BLOB_WIDTH + WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
01122 }
01123
01124 void SmallMapWindow::OnPaint()
01125 {
01126 if (this->map_type == SMT_OWNER) {
01127 for (const LegendAndColour *tbl = _legend_table[this->map_type]; !tbl->end; ++tbl) {
01128 if (tbl->company != INVALID_COMPANY && !Company::IsValidID(tbl->company)) {
01129
01130 BuildOwnerLegend();
01131 this->InvalidateData(1);
01132 break;
01133 }
01134 }
01135 }
01136
01137 this->DrawWidgets();
01138 }
01139
01140 void SmallMapWindow::DrawWidget(const Rect &r, int widget) const
01141 {
01142 switch (widget) {
01143 case SM_WIDGET_MAP: {
01144 DrawPixelInfo new_dpi;
01145 if (!FillDrawPixelInfo(&new_dpi, r.left + 1, r.top + 1, r.right - r.left - 1, r.bottom - r.top - 1)) return;
01146 this->DrawSmallMap(&new_dpi);
01147 break;
01148 }
01149
01150 case SM_WIDGET_LEGEND: {
01151 uint columns = this->GetNumberColumnsLegend(r.right - r.left + 1);
01152 uint number_of_rows = this->GetNumberRowsLegend(columns);
01153 bool rtl = _current_text_dir == TD_RTL;
01154 uint y_org = r.top + WD_FRAMERECT_TOP;
01155 uint x = rtl ? r.right - this->column_width - WD_FRAMERECT_RIGHT : r.left + WD_FRAMERECT_LEFT;
01156 uint y = y_org;
01157 uint i = 0;
01158 uint row_height = FONT_HEIGHT_SMALL;
01159
01160 uint text_left = rtl ? 0 : LEGEND_BLOB_WIDTH + WD_FRAMERECT_LEFT;
01161 uint text_right = this->column_width - 1 - (rtl ? LEGEND_BLOB_WIDTH + WD_FRAMERECT_RIGHT : 0);
01162 uint blob_left = rtl ? this->column_width - 1 - LEGEND_BLOB_WIDTH : 0;
01163 uint blob_right = rtl ? this->column_width - 1 : LEGEND_BLOB_WIDTH;
01164
01165 StringID string = STR_NULL;
01166 switch (this->map_type) {
01167 case SMT_INDUSTRY:
01168 string = STR_SMALLMAP_INDUSTRY;
01169 break;
01170 case SMT_LINKSTATS:
01171 string = STR_SMALLMAP_LINKSTATS;
01172 break;
01173 case SMT_OWNER:
01174 string = STR_SMALLMAP_COMPANY;
01175 break;
01176 default:
01177 break;
01178 }
01179
01180 for (const LegendAndColour *tbl = _legend_table[this->map_type]; !tbl->end; ++tbl) {
01181 if (tbl->col_break || ((this->map_type == SMT_INDUSTRY || this->map_type == SMT_OWNER || this->map_type == SMT_LINKSTATS) && i++ >= number_of_rows)) {
01182
01183
01184 x += rtl ? -(int)this->column_width : this->column_width;
01185 y = y_org;
01186 i = 1;
01187 }
01188
01189 switch (this->map_type) {
01190 case SMT_INDUSTRY:
01191
01192
01193 SetDParam(0, tbl->legend);
01194 SetDParam(1, Industry::GetIndustryTypeCount(tbl->type));
01195
01196 case SMT_LINKSTATS:
01197 SetDParam(0, tbl->legend);
01198
01199 case SMT_OWNER:
01200 if (this->map_type != SMT_OWNER || tbl->company != INVALID_COMPANY) {
01201 if (this->map_type == SMT_OWNER) SetDParam(0, tbl->company);
01202 if (!tbl->show_on_map) {
01203
01204
01205 DrawString(x + text_left, x + text_right, y, string, TC_GREY);
01206 } else {
01207 DrawString(x + text_left, x + text_right, y, string, TC_BLACK);
01208 GfxFillRect(x + blob_left, y + 1, x + blob_right, y + row_height - 1, PC_BLACK);
01209 }
01210 break;
01211 }
01212
01213 default:
01214 if (this->map_type == SMT_CONTOUR) SetDParam(0, tbl->height * TILE_HEIGHT_STEP);
01215
01216 GfxFillRect(x + blob_left, y + 1, x + blob_right, y + row_height - 1, PC_BLACK);
01217 DrawString(x + text_left, x + text_right, y, tbl->legend);
01218 break;
01219 }
01220
01221 GfxFillRect(x + blob_left + 1, y + 2, x + blob_right - 1, y + row_height - 2, tbl->colour);
01222
01223 y += row_height;
01224 }
01225 }
01226 }
01227 }
01228
01237 FORCEINLINE uint SmallMapWindow::GetNumberRowsLegend(uint columns) const
01238 {
01239
01240 uint num_rows_linkstats = CeilDiv(_smallmap_cargo_count, columns - 1);
01241 uint num_rows_others = CeilDiv(max(_smallmap_industry_count,_smallmap_company_count), columns);
01242 return max(this->min_number_of_fixed_rows, max(num_rows_linkstats, num_rows_others));
01243 }
01244
01256 void SmallMapWindow::SelectLegendItem(int click_pos, LegendAndColour *legend, int end_legend_item, int begin_legend_item)
01257 {
01258 if (_ctrl_pressed) {
01259
01260 bool changes = false;
01261 for (int i = begin_legend_item; i != end_legend_item; i++) {
01262 bool new_state = (i == click_pos);
01263 if (legend[i].show_on_map != new_state) {
01264 changes = true;
01265 legend[i].show_on_map = new_state;
01266 }
01267 }
01268 if (!changes) {
01269
01270 for (int i = begin_legend_item; i != end_legend_item; i++) {
01271 legend[i].show_on_map = true;
01272 }
01273 }
01274 } else {
01275 legend[click_pos].show_on_map = !legend[click_pos].show_on_map;
01276 }
01277 this->SetOverlayCargoMask();
01278 }
01279
01283 void SmallMapWindow::SetOverlayCargoMask()
01284 {
01285 if (this->map_type == SMT_LINKSTATS) {
01286 uint32 cargo_mask = 0;
01287 for (int i = 0; i != _smallmap_cargo_count; ++i) {
01288 if (_legend_linkstats[i].show_on_map) SetBit(cargo_mask, _legend_linkstats[i].type);
01289 }
01290 this->overlay->SetCargoMask(cargo_mask);
01291 this->overlay->RebuildCache();
01292 }
01293 }
01294
01299 void SmallMapWindow::SwitchMapType(SmallMapType map_type)
01300 {
01301 this->RaiseWidget(this->map_type + SM_WIDGET_CONTOUR);
01302 this->map_type = map_type;
01303 this->LowerWidget(this->map_type + SM_WIDGET_CONTOUR);
01304
01305 this->SetupWidgetData();
01306
01307 if (map_type == SMT_LINKSTATS) this->overlay->RebuildCache();
01308 this->SetDirty();
01309 }
01310
01311 void SmallMapWindow::OnClick(Point pt, int widget, int click_count)
01312 {
01313
01314 InvalidateWindowClassesData(WC_INDUSTRY_CARGOES, NUM_INDUSTRYTYPES);
01315
01316 switch (widget) {
01317 case SM_WIDGET_MAP: {
01318
01319
01320
01321
01322
01323
01324
01325
01326 _left_button_clicked = false;
01327
01328 const NWidgetBase *wid = this->GetWidget<NWidgetBase>(SM_WIDGET_MAP);
01329 Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
01330 int sub;
01331 pt = this->PixelToTile(pt.x - wid->pos_x, pt.y - wid->pos_y, &sub);
01332 pt = RemapCoords(this->scroll_x + pt.x * TILE_SIZE + this->zoom * (TILE_SIZE - sub * TILE_SIZE / 4),
01333 this->scroll_y + pt.y * TILE_SIZE + sub * this->zoom * TILE_SIZE / 4, 0);
01334
01335 w->viewport->follow_vehicle = INVALID_VEHICLE;
01336 w->viewport->dest_scrollpos_x = pt.x - (w->viewport->virtual_width >> 1);
01337 w->viewport->dest_scrollpos_y = pt.y - (w->viewport->virtual_height >> 1);
01338
01339 this->SetDirty();
01340 break;
01341 }
01342
01343 case SM_WIDGET_ZOOM_IN:
01344 case SM_WIDGET_ZOOM_OUT: {
01345 const NWidgetBase *wid = this->GetWidget<NWidgetBase>(SM_WIDGET_MAP);
01346 Point pt = {wid->current_x / 2, wid->current_y / 2};
01347 this->SetZoomLevel((widget == SM_WIDGET_ZOOM_IN) ? ZLC_ZOOM_IN : ZLC_ZOOM_OUT, &pt);
01348 SndPlayFx(SND_15_BEEP);
01349 break;
01350 }
01351
01352 case SM_WIDGET_CONTOUR:
01353 case SM_WIDGET_VEHICLES:
01354 case SM_WIDGET_INDUSTRIES:
01355 case SM_WIDGET_LINKSTATS:
01356 case SM_WIDGET_ROUTES:
01357 case SM_WIDGET_VEGETATION:
01358 case SM_WIDGET_OWNERS:
01359 this->SwitchMapType((SmallMapType)(widget - SM_WIDGET_CONTOUR));
01360 SndPlayFx(SND_15_BEEP);
01361 break;
01362
01363 case SM_WIDGET_CENTERMAP:
01364 this->SmallMapCenterOnCurrentPos();
01365 this->HandleButtonClick(SM_WIDGET_CENTERMAP);
01366 SndPlayFx(SND_15_BEEP);
01367 break;
01368
01369 case SM_WIDGET_TOGGLETOWNNAME:
01370 this->show_towns = !this->show_towns;
01371 this->SetWidgetLoweredState(SM_WIDGET_TOGGLETOWNNAME, this->show_towns);
01372
01373 this->SetDirty();
01374 SndPlayFx(SND_15_BEEP);
01375 break;
01376
01377 case SM_WIDGET_LEGEND:
01378 if (this->map_type == SMT_INDUSTRY || this->map_type == SMT_LINKSTATS || this->map_type == SMT_OWNER) {
01379
01380 const NWidgetBase *wi = this->GetWidget<NWidgetBase>(SM_WIDGET_LEGEND);
01381 uint line = (pt.y - wi->pos_y - WD_FRAMERECT_TOP) / FONT_HEIGHT_SMALL;
01382 uint columns = this->GetNumberColumnsLegend(wi->current_x);
01383 uint number_of_rows = this->GetNumberRowsLegend(columns);
01384 if (line >= number_of_rows) break;
01385
01386 bool rtl = _current_text_dir == TD_RTL;
01387 int x = pt.x - wi->pos_x;
01388 if (rtl) x = wi->current_x - x;
01389 uint column = (x - WD_FRAMERECT_LEFT) / this->column_width;
01390
01391
01392 int click_pos = (column * number_of_rows) + line;
01393 if (this->map_type == SMT_INDUSTRY) {
01394 if (click_pos < _smallmap_industry_count) {
01395 this->SelectLegendItem(click_pos, _legend_from_industries, _smallmap_industry_count);
01396 }
01397 } else if (this->map_type == SMT_LINKSTATS) {
01398 if (click_pos < _smallmap_cargo_count) {
01399 this->SelectLegendItem(click_pos, _legend_linkstats, _smallmap_cargo_count);
01400 }
01401 } else if (this->map_type == SMT_OWNER) {
01402 if (click_pos < _smallmap_company_count) {
01403 this->SelectLegendItem(click_pos, _legend_land_owners, _smallmap_company_count, NUM_NO_COMPANY_ENTRIES);
01404 }
01405 }
01406 this->SetDirty();
01407 }
01408 break;
01409
01410 case SM_WIDGET_ENABLE_ALL:
01411
01412 case SM_WIDGET_DISABLE_ALL: {
01413 LegendAndColour *tbl = NULL;
01414 switch (this->map_type) {
01415 case SMT_INDUSTRY:
01416 tbl = _legend_from_industries;
01417 break;
01418 case SMT_OWNER:
01419 tbl = &(_legend_land_owners[NUM_NO_COMPANY_ENTRIES]);
01420 break;
01421 case SMT_LINKSTATS:
01422 tbl = _legend_linkstats;
01423 break;
01424 default:
01425 NOT_REACHED();
01426 }
01427 for (;!tbl->end && tbl->legend != STR_LINKGRAPH_LEGEND_UNUSED; ++tbl) {
01428 tbl->show_on_map = (widget == SM_WIDGET_ENABLE_ALL);
01429 }
01430 this->SetOverlayCargoMask();
01431 this->SetDirty();
01432 break;
01433 }
01434
01435 case SM_WIDGET_SHOW_HEIGHT:
01436 _smallmap_show_heightmap = !_smallmap_show_heightmap;
01437 this->SetWidgetLoweredState(SM_WIDGET_SHOW_HEIGHT, _smallmap_show_heightmap);
01438 this->SetDirty();
01439 break;
01440 }
01441 }
01442
01450 void SmallMapWindow::OnInvalidateData(int data, bool gui_scope)
01451 {
01452 if (!gui_scope) return;
01453 switch (data) {
01454 case 1:
01455
01456 this->ReInit();
01457 break;
01458
01459 case 0: {
01460 extern uint64 _displayed_industries;
01461 if (this->map_type != SMT_INDUSTRY) this->SwitchMapType(SMT_INDUSTRY);
01462
01463 for (int i = 0; i != _smallmap_industry_count; i++) {
01464 _legend_from_industries[i].show_on_map = HasBit(_displayed_industries, _legend_from_industries[i].type);
01465 }
01466 break;
01467 }
01468
01469 default: NOT_REACHED();
01470 }
01471 this->SetDirty();
01472 }
01473
01474 bool SmallMapWindow::OnRightClick(Point pt, int widget)
01475 {
01476 if (widget != SM_WIDGET_MAP || _scrolling_viewport) return false;
01477
01478 _scrolling_viewport = true;
01479 return true;
01480 }
01481
01482 void SmallMapWindow::OnMouseWheel(int wheel)
01483 {
01484 if (_settings_client.gui.scrollwheel_scrolling == 0) {
01485 const NWidgetBase *wid = this->GetWidget<NWidgetBase>(SM_WIDGET_MAP);
01486 int cursor_x = _cursor.pos.x - this->left - wid->pos_x;
01487 int cursor_y = _cursor.pos.y - this->top - wid->pos_y;
01488 if (IsInsideMM(cursor_x, 0, wid->current_x) && IsInsideMM(cursor_y, 0, wid->current_y)) {
01489 Point pt = {cursor_x, cursor_y};
01490 this->SetZoomLevel((wheel < 0) ? ZLC_ZOOM_IN : ZLC_ZOOM_OUT, &pt);
01491 }
01492 }
01493 }
01494
01495 void SmallMapWindow::OnTick()
01496 {
01497
01498 if (--this->refresh != 0) return;
01499
01500 if (this->map_type == SMT_LINKSTATS) this->overlay->RebuildCache();
01501 this->refresh = FORCE_REFRESH_PERIOD;
01502 this->SetDirty();
01503 }
01504
01512 void SmallMapWindow::SetNewScroll(int sx, int sy, int sub)
01513 {
01514 const NWidgetBase *wi = this->GetWidget<NWidgetBase>(SM_WIDGET_MAP);
01515 Point hv = InverseRemapCoords(wi->current_x * ZOOM_LVL_BASE * TILE_SIZE / 2, wi->current_y * ZOOM_LVL_BASE * TILE_SIZE / 2);
01516 hv.x *= this->zoom;
01517 hv.y *= this->zoom;
01518
01519 if (sx < -hv.x) {
01520 sx = -hv.x;
01521 sub = 0;
01522 }
01523 if (sx > (int)(MapMaxX() * TILE_SIZE) - hv.x) {
01524 sx = MapMaxX() * TILE_SIZE - hv.x;
01525 sub = 0;
01526 }
01527 if (sy < -hv.y) {
01528 sy = -hv.y;
01529 sub = 0;
01530 }
01531 if (sy > (int)(MapMaxY() * TILE_SIZE) - hv.y) {
01532 sy = MapMaxY() * TILE_SIZE - hv.y;
01533 sub = 0;
01534 }
01535
01536 this->scroll_x = sx;
01537 this->scroll_y = sy;
01538 this->subscroll = sub;
01539 if (this->map_type == SMT_LINKSTATS) this->overlay->RebuildCache();
01540 }
01541
01542 void SmallMapWindow::OnScroll(Point delta)
01543 {
01544 _cursor.fix_at = true;
01545
01546
01547 int sub;
01548 Point pt = this->PixelToTile(delta.x, delta.y, &sub);
01549 this->SetNewScroll(this->scroll_x + pt.x * TILE_SIZE, this->scroll_y + pt.y * TILE_SIZE, sub);
01550
01551 this->SetDirty();
01552 }
01553
01554 void SmallMapWindow::SmallMapCenterOnCurrentPos()
01555 {
01556 const ViewPort *vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport;
01557 Point pt = InverseRemapCoords(vp->virtual_left + vp->virtual_width / 2, vp->virtual_top + vp->virtual_height / 2);
01558
01559 int sub;
01560 const NWidgetBase *wid = this->GetWidget<NWidgetBase>(SM_WIDGET_MAP);
01561 Point sxy = this->ComputeScroll(pt.x / TILE_SIZE, pt.y / TILE_SIZE, max(0, (int)wid->current_x / 2 - 2), wid->current_y / 2, &sub);
01562 this->SetNewScroll(sxy.x, sxy.y, sub);
01563 this->SetDirty();
01564 }
01565
01571 Point SmallMapWindow::GetStationMiddle(const Station *st) const
01572 {
01573 int x = (st->rect.right + st->rect.left + 1) / 2;
01574 int y = (st->rect.bottom + st->rect.top + 1) / 2;
01575 Point ret = this->RemapTile(x, y);
01576
01577
01578
01579
01580 ret.x -= 3 + this->subscroll;
01581 return ret;
01582 }
01583
01584 SmallMapWindow::SmallMapType SmallMapWindow::map_type = SMT_CONTOUR;
01585 bool SmallMapWindow::show_towns = true;
01586
01595 class NWidgetSmallmapDisplay : public NWidgetContainer {
01596 const SmallMapWindow *smallmap_window;
01597 public:
01598 NWidgetSmallmapDisplay() : NWidgetContainer(NWID_VERTICAL)
01599 {
01600 this->smallmap_window = NULL;
01601 }
01602
01603 virtual void SetupSmallestSize(Window *w, bool init_array)
01604 {
01605 NWidgetBase *display = this->head;
01606 NWidgetBase *bar = display->next;
01607
01608 display->SetupSmallestSize(w, init_array);
01609 bar->SetupSmallestSize(w, init_array);
01610
01611 this->smallmap_window = dynamic_cast<SmallMapWindow *>(w);
01612 this->smallest_x = max(display->smallest_x, bar->smallest_x + smallmap_window->GetMinLegendWidth());
01613 this->smallest_y = display->smallest_y + max(bar->smallest_y, smallmap_window->GetLegendHeight(smallmap_window->min_number_of_columns));
01614 this->fill_x = max(display->fill_x, bar->fill_x);
01615 this->fill_y = (display->fill_y == 0 && bar->fill_y == 0) ? 0 : min(display->fill_y, bar->fill_y);
01616 this->resize_x = max(display->resize_x, bar->resize_x);
01617 this->resize_y = min(display->resize_y, bar->resize_y);
01618 }
01619
01620 virtual void AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
01621 {
01622 this->pos_x = x;
01623 this->pos_y = y;
01624 this->current_x = given_width;
01625 this->current_y = given_height;
01626
01627 NWidgetBase *display = this->head;
01628 NWidgetBase *bar = display->next;
01629
01630 if (sizing == ST_SMALLEST) {
01631 this->smallest_x = given_width;
01632 this->smallest_y = given_height;
01633
01634 display->AssignSizePosition(ST_SMALLEST, x, y, display->smallest_x, display->smallest_y, rtl);
01635 bar->AssignSizePosition(ST_SMALLEST, x, y + display->smallest_y, bar->smallest_x, bar->smallest_y, rtl);
01636 }
01637
01638 uint bar_height = max(bar->smallest_y, this->smallmap_window->GetLegendHeight(this->smallmap_window->GetNumberColumnsLegend(given_width - bar->smallest_x)));
01639 uint display_height = given_height - bar_height;
01640 display->AssignSizePosition(ST_RESIZE, x, y, given_width, display_height, rtl);
01641 bar->AssignSizePosition(ST_RESIZE, x, y + display_height, given_width, bar_height, rtl);
01642 }
01643
01644 virtual NWidgetCore *GetWidgetFromPos(int x, int y)
01645 {
01646 if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return NULL;
01647 for (NWidgetBase *child_wid = this->head; child_wid != NULL; child_wid = child_wid->next) {
01648 NWidgetCore *widget = child_wid->GetWidgetFromPos(x, y);
01649 if (widget != NULL) return widget;
01650 }
01651 return NULL;
01652 }
01653
01654 virtual void Draw(const Window *w)
01655 {
01656 for (NWidgetBase *child_wid = this->head; child_wid != NULL; child_wid = child_wid->next) child_wid->Draw(w);
01657 }
01658 };
01659
01661 static const NWidgetPart _nested_smallmap_display[] = {
01662 NWidget(WWT_PANEL, COLOUR_BROWN, SM_WIDGET_MAP_BORDER),
01663 NWidget(WWT_INSET, COLOUR_BROWN, SM_WIDGET_MAP), SetMinimalSize(346, 140), SetResize(1, 1), SetPadding(2, 2, 2, 2), EndContainer(),
01664 EndContainer(),
01665 };
01666
01668 static const NWidgetPart _nested_smallmap_bar[] = {
01669 NWidget(WWT_PANEL, COLOUR_BROWN),
01670 NWidget(NWID_HORIZONTAL),
01671 NWidget(WWT_EMPTY, INVALID_COLOUR, SM_WIDGET_LEGEND), SetResize(1, 1),
01672 NWidget(NWID_VERTICAL),
01673
01674 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
01675 NWidget(WWT_PUSHIMGBTN, COLOUR_BROWN, SM_WIDGET_ZOOM_IN),
01676 SetDataTip(SPR_IMG_ZOOMIN, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_IN), SetFill(1, 1),
01677 NWidget(WWT_PUSHIMGBTN, COLOUR_BROWN, SM_WIDGET_CENTERMAP),
01678 SetDataTip(SPR_IMG_SMALLMAP, STR_SMALLMAP_CENTER), SetFill(1, 1),
01679 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_BLANK),
01680 SetDataTip(SPR_DOT_SMALL, STR_NULL), SetFill(1, 1),
01681 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_CONTOUR),
01682 SetDataTip(SPR_IMG_SHOW_COUNTOURS, STR_SMALLMAP_TOOLTIP_SHOW_LAND_CONTOURS_ON_MAP), SetFill(1, 1),
01683 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_VEHICLES),
01684 SetDataTip(SPR_IMG_SHOW_VEHICLES, STR_SMALLMAP_TOOLTIP_SHOW_VEHICLES_ON_MAP), SetFill(1, 1),
01685 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_INDUSTRIES),
01686 SetDataTip(SPR_IMG_INDUSTRY, STR_SMALLMAP_TOOLTIP_SHOW_INDUSTRIES_ON_MAP), SetFill(1, 1),
01687 EndContainer(),
01688
01689 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
01690 NWidget(WWT_PUSHIMGBTN, COLOUR_BROWN, SM_WIDGET_ZOOM_OUT),
01691 SetDataTip(SPR_IMG_ZOOMOUT, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_OUT), SetFill(1, 1),
01692 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_TOGGLETOWNNAME),
01693 SetDataTip(SPR_IMG_TOWN, STR_SMALLMAP_TOOLTIP_TOGGLE_TOWN_NAMES_ON_OFF), SetFill(1, 1),
01694 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_LINKSTATS),
01695 SetDataTip(SPR_IMG_GRAPHS, STR_SMALLMAP_TOOLTIP_SHOW_LINK_STATS_ON_MAP), SetFill(1, 1),
01696 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_ROUTES),
01697 SetDataTip(SPR_IMG_SHOW_ROUTES, STR_SMALLMAP_TOOLTIP_SHOW_TRANSPORT_ROUTES_ON), SetFill(1, 1),
01698 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_VEGETATION),
01699 SetDataTip(SPR_IMG_PLANTTREES, STR_SMALLMAP_TOOLTIP_SHOW_VEGETATION_ON_MAP), SetFill(1, 1),
01700 NWidget(WWT_IMGBTN, COLOUR_BROWN, SM_WIDGET_OWNERS),
01701 SetDataTip(SPR_IMG_COMPANY_GENERAL, STR_SMALLMAP_TOOLTIP_SHOW_LAND_OWNERS_ON_MAP), SetFill(1, 1),
01702 EndContainer(),
01703 NWidget(NWID_SPACER), SetResize(0, 1),
01704 EndContainer(),
01705 EndContainer(),
01706 EndContainer(),
01707 };
01708
01709 static NWidgetBase *SmallMapDisplay(int *biggest_index)
01710 {
01711 NWidgetContainer *map_display = new NWidgetSmallmapDisplay;
01712
01713 MakeNWidgets(_nested_smallmap_display, lengthof(_nested_smallmap_display), biggest_index, map_display);
01714 MakeNWidgets(_nested_smallmap_bar, lengthof(_nested_smallmap_bar), biggest_index, map_display);
01715 return map_display;
01716 }
01717
01718
01719 static const NWidgetPart _nested_smallmap_widgets[] = {
01720 NWidget(NWID_HORIZONTAL),
01721 NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
01722 NWidget(WWT_CAPTION, COLOUR_BROWN, SM_WIDGET_CAPTION), SetDataTip(STR_SMALLMAP_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
01723 NWidget(WWT_SHADEBOX, COLOUR_BROWN),
01724 NWidget(WWT_STICKYBOX, COLOUR_BROWN),
01725 EndContainer(),
01726 NWidgetFunction(SmallMapDisplay),
01727
01728 NWidget(NWID_HORIZONTAL),
01729 NWidget(WWT_PANEL, COLOUR_BROWN),
01730 NWidget(NWID_HORIZONTAL),
01731 NWidget(NWID_SELECTION, INVALID_COLOUR, SM_WIDGET_SELECT_BUTTONS),
01732 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
01733 NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, SM_WIDGET_ENABLE_ALL), SetDataTip(STR_SMALLMAP_ENABLE_ALL, STR_NULL),
01734 NWidget(WWT_PUSHTXTBTN, COLOUR_BROWN, SM_WIDGET_DISABLE_ALL), SetDataTip(STR_SMALLMAP_DISABLE_ALL, STR_NULL),
01735 NWidget(WWT_TEXTBTN, COLOUR_BROWN, SM_WIDGET_SHOW_HEIGHT), SetDataTip(STR_SMALLMAP_SHOW_HEIGHT, STR_SMALLMAP_TOOLTIP_SHOW_HEIGHT),
01736 EndContainer(),
01737 NWidget(NWID_SPACER), SetFill(1, 1),
01738 EndContainer(),
01739 NWidget(NWID_SPACER), SetFill(1, 0), SetResize(1, 0),
01740 EndContainer(),
01741 EndContainer(),
01742 NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
01743 EndContainer(),
01744 };
01745
01746 static const WindowDesc _smallmap_desc(
01747 WDP_AUTO, 484, 314,
01748 WC_SMALLMAP, WC_NONE,
01749 WDF_UNCLICK_BUTTONS,
01750 _nested_smallmap_widgets, lengthof(_nested_smallmap_widgets)
01751 );
01752
01756 void ShowSmallMap()
01757 {
01758 AllocateWindowDescFront<SmallMapWindow>(&_smallmap_desc, 0);
01759 }
01760
01769 bool ScrollMainWindowTo(int x, int y, int z, bool instant)
01770 {
01771 bool res = ScrollWindowTo(x, y, z, FindWindowById(WC_MAIN_WINDOW, 0), instant);
01772
01773
01774
01775
01776
01777 if (res) return res;
01778
01779 SmallMapWindow *w = dynamic_cast<SmallMapWindow*>(FindWindowById(WC_SMALLMAP, 0));
01780 if (w != NULL) w->SmallMapCenterOnCurrentPos();
01781
01782 return res;
01783 }