tron@2186: /* $Id$ */ tron@2186: rubidium@9111: /** @file smallmap_gui.cpp GUI that shows a small map of the world with metadata like owner or height. */ belugas@6420: truelight@0: #include "stdafx.h" Darkvater@1891: #include "openttd.h" tron@3234: #include "bridge_map.h" tron@3144: #include "clear_map.h" peter1138@3391: #include "industry_map.h" belugas@7921: #include "industry.h" tron@3338: #include "station_map.h" maedhros@6453: #include "landscape.h" darkvater@152: #include "gui.h" rubidium@8107: #include "window_gui.h" tron@3144: #include "tree_map.h" tron@3180: #include "tunnel_map.h" rubidium@8224: #include "viewport_func.h" rubidium@8224: #include "gfx_func.h" rubidium@8254: #include "player_base.h" truelight@0: #include "town.h" tron@2159: #include "variables.h" truelight@6937: #include "blitter/factory.hpp" smatz@8083: #include "tunnelbridge_map.h" rubidium@8114: #include "strings_func.h" rubidium@8123: #include "zoom_func.h" rubidium@8132: #include "core/endian_func.hpp" rubidium@8144: #include "vehicle_base.h" rubidium@8157: #include "sound_func.h" rubidium@8270: #include "settings_type.h" rubidium@9117: #include "window_func.h" smatz@8083: rubidium@8264: #include "table/strings.h" rubidium@8264: #include "table/sprites.h" truelight@0: truelight@867: static const Widget _smallmap_widgets[] = { belugas@9764: { WWT_CLOSEBOX, RESIZE_NONE, COLOUR_BROWN, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, belugas@9764: { WWT_CAPTION, RESIZE_RIGHT, COLOUR_BROWN, 11, 337, 0, 13, STR_00B0_MAP, STR_018C_WINDOW_TITLE_DRAG_THIS}, belugas@9764: { WWT_STICKYBOX, RESIZE_LR, COLOUR_BROWN, 338, 349, 0, 13, 0x0, STR_STICKY_BUTTON}, belugas@9764: { WWT_PANEL, RESIZE_RB, COLOUR_BROWN, 0, 349, 14, 157, 0x0, STR_NULL}, belugas@9764: { WWT_INSET, RESIZE_RB, COLOUR_BROWN, 2, 347, 16, 155, 0x0, STR_NULL}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 284, 305, 158, 179, SPR_IMG_SHOW_COUNTOURS, STR_0191_SHOW_LAND_CONTOURS_ON_MAP}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 306, 327, 158, 179, SPR_IMG_SHOW_VEHICLES, STR_0192_SHOW_VEHICLES_ON_MAP}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 328, 349, 158, 179, SPR_IMG_INDUSTRY, STR_0193_SHOW_INDUSTRIES_ON_MAP}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 284, 307, 180, 201, SPR_IMG_SHOW_ROUTES, STR_0194_SHOW_TRANSPORT_ROUTES_ON}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 306, 327, 180, 201, SPR_IMG_PLANTTREES, STR_0195_SHOW_VEGETATION_ON_MAP}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 328, 349, 180, 201, SPR_IMG_COMPANY_GENERAL, STR_0196_SHOW_LAND_OWNERS_ON_MAP}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 262, 283, 158, 179, SPR_IMG_SMALLMAP, STR_SMALLMAP_CENTER}, belugas@9764: { WWT_IMGBTN, RESIZE_LRTB, COLOUR_BROWN, 262, 283, 180, 201, SPR_IMG_TOWN, STR_0197_TOGGLE_TOWN_NAMES_ON_OFF}, belugas@9764: { WWT_PANEL, RESIZE_RTB, COLOUR_BROWN, 0, 261, 158, 201, 0x0, STR_NULL}, belugas@9764: { WWT_PANEL, RESIZE_LRTB, COLOUR_BROWN, 262, 349, 202, 202, 0x0, STR_NULL}, belugas@9764: { WWT_PANEL, RESIZE_RTB, COLOUR_BROWN, 0, 337, 202, 213, 0x0, STR_NULL}, belugas@9764: { WWT_TEXTBTN, RESIZE_TB, COLOUR_BROWN, 0, 99, 202, 213, STR_MESSAGES_ENABLE_ALL, STR_NULL}, belugas@9764: { WWT_TEXTBTN, RESIZE_TB, COLOUR_BROWN, 100, 201, 202, 213, STR_MESSAGES_DISABLE_ALL,STR_NULL}, belugas@9764: { WWT_RESIZEBOX, RESIZE_LRTB, COLOUR_BROWN, 338, 349, 202, 213, 0x0, STR_RESIZE_BUTTON}, Darkvater@1918: { WIDGETS_END}, truelight@0: }; truelight@0: belugas@7921: /* number of used industries */ belugas@7921: static int _smallmap_industry_count; belugas@7921: /* number of industries per column*/ belugas@7921: static uint _industries_per_column; truelight@0: belugas@6475: /** Macro for ordinary entry of LegendAndColor */ glx@7933: #define MK(a,b) {a, b, INVALID_INDUSTRYTYPE, true, false, false} belugas@6475: /** Macro for end of list marker in arrays of LegendAndColor */ glx@7933: #define MKEND() {0, STR_NULL, INVALID_INDUSTRYTYPE, true, true, false} belugas@6475: /** Macro for break marker in arrays of LegendAndColor. belugas@6475: * It will have valid data, though */ glx@7933: #define MS(a,b) {a, b, INVALID_INDUSTRYTYPE, true, false, true} truelight@0: belugas@6475: /** Structure for holding relevant data for legends in small map */ belugas@6475: struct LegendAndColour { belugas@6475: uint16 colour; ///< color of the item on the map belugas@6475: StringID legend; ///< string corresponding to the colored item glx@7933: IndustryType type; ///< type of industry belugas@7921: bool show_on_map; ///< for filtering industries, if true is shown on map in color belugas@7921: bool end; ///< this is the end of the list belugas@7921: bool col_break; ///< perform a break and go one collumn further belugas@6475: }; belugas@6475: belugas@6475: /** Legend text giving the colours to look for on the minimap */ belugas@6475: static const LegendAndColour _legend_land_contours[] = { rubidium@4344: MK(0x5A, STR_00F0_100M), rubidium@4344: MK(0x5C, STR_00F1_200M), rubidium@4344: MK(0x5E, STR_00F2_300M), rubidium@4344: MK(0x1F, STR_00F3_400M), rubidium@4344: MK(0x27, STR_00F4_500M), truelight@193: rubidium@4344: MS(0xD7, STR_00EB_ROADS), rubidium@4344: MK(0x0A, STR_00EC_RAILROADS), rubidium@4344: MK(0x98, STR_00ED_STATIONS_AIRPORTS_DOCKS), rubidium@4344: MK(0xB5, STR_00EE_BUILDINGS_INDUSTRIES), rubidium@4344: MK(0x0F, STR_00EF_VEHICLES), truelight@0: MKEND() truelight@0: }; truelight@0: belugas@6475: static const LegendAndColour _legend_vehicles[] = { rubidium@4344: MK(0xB8, STR_00F5_TRAINS), rubidium@4344: MK(0xBF, STR_00F6_ROAD_VEHICLES), rubidium@4344: MK(0x98, STR_00F7_SHIPS), rubidium@4344: MK(0x0F, STR_00F8_AIRCRAFT), rubidium@4344: MS(0xD7, STR_00F9_TRANSPORT_ROUTES), rubidium@4344: MK(0xB5, STR_00EE_BUILDINGS_INDUSTRIES), truelight@0: MKEND() truelight@0: }; truelight@0: belugas@6475: static const LegendAndColour _legend_routes[] = { rubidium@4344: MK(0xD7, STR_00EB_ROADS), rubidium@4344: MK(0x0A, STR_00EC_RAILROADS), rubidium@4344: MK(0xB5, STR_00EE_BUILDINGS_INDUSTRIES), rubidium@4344: MS(0x56, STR_011B_RAILROAD_STATION), truelight@0: rubidium@4344: MK(0xC2, STR_011C_TRUCK_LOADING_BAY), rubidium@4344: MK(0xBF, STR_011D_BUS_STATION), rubidium@4344: MK(0xB8, STR_011E_AIRPORT_HELIPORT), rubidium@4344: MK(0x98, STR_011F_DOCK), truelight@0: MKEND() truelight@0: }; truelight@0: belugas@6475: static const LegendAndColour _legend_vegetation[] = { rubidium@4344: MK(0x52, STR_0120_ROUGH_LAND), rubidium@4344: MK(0x54, STR_0121_GRASS_LAND), rubidium@4344: MK(0x37, STR_0122_BARE_LAND), rubidium@4344: MK(0x25, STR_0123_FIELDS), rubidium@4344: MK(0x57, STR_0124_TREES), rubidium@4344: MK(0xD0, STR_00FC_FOREST), rubidium@4344: MS(0x0A, STR_0125_ROCKS), truelight@0: rubidium@4344: MK(0xC2, STR_012A_DESERT), rubidium@4344: MK(0x98, STR_012B_SNOW), rubidium@4344: MK(0xD7, STR_00F9_TRANSPORT_ROUTES), rubidium@4344: MK(0xB5, STR_00EE_BUILDINGS_INDUSTRIES), truelight@0: MKEND() truelight@0: }; truelight@0: belugas@6475: static const LegendAndColour _legend_land_owners[] = { rubidium@4344: MK(0xCA, STR_0126_WATER), rubidium@4344: MK(0x54, STR_0127_NO_OWNER), rubidium@4344: MK(0xB4, STR_0128_TOWNS), rubidium@4344: MK(0x20, STR_0129_INDUSTRIES), truelight@0: MKEND() truelight@0: }; truelight@0: #undef MK truelight@0: #undef MS truelight@0: #undef MKEND truelight@0: belugas@6533: /** Allow room for all industries, plus a terminator entry belugas@6533: * This is required in order to have the indutry slots all filled up */ belugas@6533: static LegendAndColour _legend_from_industries[NUM_INDUSTRYTYPES+1]; belugas@7921: /* For connecting industry type to position in industries list(small map legend) */ belugas@7921: static uint _industry_to_list_pos[NUM_INDUSTRYTYPES]; truelight@0: belugas@6533: /** belugas@6533: * Fills an array for the industries legends. belugas@6533: */ belugas@6533: void BuildIndustriesLegend() belugas@6533: { belugas@6533: const IndustrySpec *indsp; belugas@6533: uint j = 0; belugas@7921: uint free_slot, diff; belugas@6533: belugas@6533: /* Add each name */ belugas@6533: for (IndustryType i = 0; i < NUM_INDUSTRYTYPES; i++) { belugas@6533: indsp = GetIndustrySpec(i); belugas@6748: if (indsp->enabled) { belugas@6533: _legend_from_industries[j].legend = indsp->name; belugas@6533: _legend_from_industries[j].colour = indsp->map_colour; glx@7933: _legend_from_industries[j].type = i; belugas@7921: _legend_from_industries[j].show_on_map = true; belugas@7921: _legend_from_industries[j].col_break = false; belugas@6533: _legend_from_industries[j].end = false; belugas@7921: belugas@7921: /* Store widget number for this industry type */ belugas@7921: _industry_to_list_pos[i] = j; belugas@6533: j++; belugas@6533: } belugas@6533: } belugas@6533: /* Terminate the list */ belugas@6533: _legend_from_industries[j].end = true; belugas@7921: belugas@7921: /* Store number of enabled industries */ belugas@7921: _smallmap_industry_count = j; belugas@7921: belugas@7921: _industries_per_column = _smallmap_industry_count / 3; belugas@7921: free_slot = _smallmap_industry_count % 3; belugas@7921: belugas@7921: /* recalculate column break for first two columns(i) */ belugas@7921: diff = 0; belugas@7921: for (int i = 1; i <= 2; i++) { belugas@7921: if (free_slot > 0) diff = diff + 1; belugas@7921: _legend_from_industries[i * _industries_per_column + diff].col_break = true; belugas@7921: if (free_slot > 0) free_slot--; belugas@7921: } belugas@7921: belugas@6533: } belugas@6475: belugas@6475: static const LegendAndColour * const _legend_table[] = { truelight@0: _legend_land_contours, truelight@0: _legend_vehicles, belugas@6533: _legend_from_industries, truelight@0: _legend_routes, truelight@0: _legend_vegetation, truelight@0: _legend_land_owners, truelight@0: }; truelight@0: Darkvater@2984: #define MKCOLOR(x) TO_LE32X(x) truelight@0: truelight@7313: /** truelight@7313: * Height encodings; MAX_TILE_HEIGHT + 1 levels, from 0 to MAX_TILE_HEIGHT truelight@7313: */ truelight@7313: static const uint32 _map_height_bits[] = { truelight@0: MKCOLOR(0x5A5A5A5A), truelight@0: MKCOLOR(0x5A5B5A5B), truelight@0: MKCOLOR(0x5B5B5B5B), truelight@0: MKCOLOR(0x5B5C5B5C), truelight@0: MKCOLOR(0x5C5C5C5C), truelight@0: MKCOLOR(0x5C5D5C5D), truelight@0: MKCOLOR(0x5D5D5D5D), truelight@0: MKCOLOR(0x5D5E5D5E), truelight@0: MKCOLOR(0x5E5E5E5E), truelight@0: MKCOLOR(0x5E5F5E5F), truelight@0: MKCOLOR(0x5F5F5F5F), truelight@0: MKCOLOR(0x5F1F5F1F), truelight@0: MKCOLOR(0x1F1F1F1F), truelight@0: MKCOLOR(0x1F271F27), truelight@0: MKCOLOR(0x27272727), truelight@0: MKCOLOR(0x27272727), truelight@0: }; truelight@7313: assert_compile(lengthof(_map_height_bits) == MAX_TILE_HEIGHT + 1); truelight@0: rubidium@6248: struct AndOr { tron@1511: uint32 mor; tron@1511: uint32 mand; rubidium@6248: }; tron@1511: belugas@4171: static inline uint32 ApplyMask(uint32 colour, const AndOr *mask) tron@1511: { tron@1511: return (colour & mask->mand) | mask->mor; tron@1511: } tron@1511: Darkvater@1918: tron@1511: static const AndOr _smallmap_contours_andor[] = { rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x000A0A00), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x98989898), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0xCACACACA), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0xB5B5B5B5), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x000A0A00), MKCOLOR(0xFF0000FF)}, truelight@0: }; truelight@0: tron@1511: static const AndOr _smallmap_vehicles_andor[] = { rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0xCACACACA), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0xB5B5B5B5), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, truelight@0: }; truelight@0: tron@1511: static const AndOr _smallmap_vegetation_andor[] = { rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00575700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0xCACACACA), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0xB5B5B5B5), MKCOLOR(0x00000000)}, rubidium@4344: {MKCOLOR(0x00000000), MKCOLOR(0xFFFFFFFF)}, rubidium@4344: {MKCOLOR(0x00B5B500), MKCOLOR(0xFF0000FF)}, rubidium@4344: {MKCOLOR(0x00D7D700), MKCOLOR(0xFF0000FF)}, truelight@0: }; truelight@0: Darkvater@1918: typedef uint32 GetSmallMapPixels(TileIndex tile); // typedef callthrough function Darkvater@1918: Darkvater@1918: /** Darkvater@1918: * Draws one column of the small map in a certain mode onto the screen buffer. This Darkvater@1918: * function looks exactly the same for all types Darkvater@1918: * Darkvater@1918: * @param dst Pointer to a part of the screen buffer to write to. Darkvater@1918: * @param xc The X coordinate of the first tile in the column. Darkvater@1918: * @param yc The Y coordinate of the first tile in the column Darkvater@1918: * @param pitch Number of pixels to advance in the screen buffer each time a pixel is written. Darkvater@1918: * @param reps Number of lines to draw Darkvater@1918: * @param mask ? Darkvater@1918: * @param proc Pointer to the colour function Darkvater@1918: * @see GetSmallMapPixels(TileIndex) Darkvater@1918: */ truelight@6878: static void DrawSmallMapStuff(void *dst, uint xc, uint yc, int pitch, int reps, uint32 mask, GetSmallMapPixels *proc) Darkvater@1918: { truelight@6937: Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter(); truelight@7489: void *dst_ptr_abs_end = blitter->MoveTo(_screen.dst_ptr, 0, _screen.height); truelight@7489: void *dst_ptr_end = blitter->MoveTo(dst_ptr_abs_end, -4, 0); Darkvater@1918: Darkvater@1918: do { belugas@6420: /* check if the tile (xc,yc) is within the map range */ Darkvater@1919: if (xc < MapMaxX() && yc < MapMaxY()) { belugas@6420: /* check if the dst pointer points to a pixel inside the screen buffer */ truelight@7489: if (dst < _screen.dst_ptr) continue; truelight@7489: if (dst >= dst_ptr_abs_end) continue; truelight@7489: truelight@7489: uint32 val = proc(TileXY(xc, yc)) & mask; truelight@7489: uint8 *val8 = (uint8 *)&val; truelight@7489: truelight@7489: if (dst <= dst_ptr_end) { truelight@7489: blitter->SetPixelIfEmpty(dst, 0, 0, val8[0]); truelight@7489: blitter->SetPixelIfEmpty(dst, 1, 0, val8[1]); truelight@7489: blitter->SetPixelIfEmpty(dst, 2, 0, val8[2]); truelight@7489: blitter->SetPixelIfEmpty(dst, 3, 0, val8[3]); truelight@7489: } else { truelight@7489: /* It happens that there are only 1, 2 or 3 pixels left to fill, so in that special case, write till the end of the video-buffer */ truelight@7489: int i = 0; truelight@7489: do { truelight@7489: blitter->SetPixelIfEmpty(dst, 0, 0, val8[i]); truelight@7489: } while (i++, dst = blitter->MoveTo(dst, 1, 0), dst < dst_ptr_abs_end); truelight@7489: } Darkvater@1918: } belugas@6420: /* switch to next tile in the column */ truelight@6937: } while (xc++, yc++, dst = blitter->MoveTo(dst, pitch, 0), --reps != 0); Darkvater@1918: } Darkvater@1918: tron@1516: tron@1516: static inline TileType GetEffectiveTileType(TileIndex tile) truelight@0: { tron@1516: TileType t = GetTileType(tile); truelight@0: truelight@0: if (t == MP_TUNNELBRIDGE) { smatz@8088: TransportType tt = GetTunnelBridgeTransportType(tile); tron@3180: tron@3180: switch (tt) { tron@3180: case TRANSPORT_RAIL: t = MP_RAILWAY; break; rubidium@7370: case TRANSPORT_ROAD: t = MP_ROAD; break; tron@3180: default: t = MP_WATER; break; truelight@0: } truelight@0: } tron@1516: return t; tron@1516: } tron@1516: Darkvater@1918: /** Darkvater@1918: * Return the color a tile would be displayed with in the small map in mode "Contour". Darkvater@1918: * @param tile The tile of which we would like to get the color. Darkvater@1918: * @return The color of tile in the small map in mode "Contour" Darkvater@1918: */ tron@1516: static inline uint32 GetSmallMapContoursPixels(TileIndex tile) tron@1516: { tron@1516: TileType t = GetEffectiveTileType(tile); truelight@0: tron@1511: return tron@1511: ApplyMask(_map_height_bits[TileHeight(tile)], &_smallmap_contours_andor[t]); truelight@0: } truelight@0: Darkvater@1918: /** Darkvater@1918: * Return the color a tile would be displayed with in the small map in mode "Vehicles". Darkvater@1918: * belugas@6483: * @param tile The tile of which we would like to get the color. Darkvater@1918: * @return The color of tile in the small map in mode "Vehicles" Darkvater@1918: */ tron@1515: static inline uint32 GetSmallMapVehiclesPixels(TileIndex tile) truelight@0: { tron@1516: TileType t = GetEffectiveTileType(tile); truelight@0: tron@1511: return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]); truelight@0: } truelight@0: Darkvater@1918: /** Darkvater@1918: * Return the color a tile would be displayed with in the small map in mode "Industries". Darkvater@1918: * Darkvater@1918: * @param tile The tile of which we would like to get the color. Darkvater@1918: * @return The color of tile in the small map in mode "Industries" Darkvater@1918: */ tron@1515: static inline uint32 GetSmallMapIndustriesPixels(TileIndex tile) truelight@0: { tron@1516: TileType t = GetEffectiveTileType(tile); truelight@0: truelight@0: if (t == MP_INDUSTRY) { belugas@7921: /* If industry is allowed to be seen, use its color on the map */ belugas@7921: if (_legend_from_industries[_industry_to_list_pos[GetIndustryByTile(tile)->type]].show_on_map) { belugas@7921: return GetIndustrySpec(GetIndustryByTile(tile)->type)->map_colour * 0x01010101; belugas@7921: } else { belugas@7921: /* otherwise, return the color of the clear tiles, which will make it disappear */ belugas@7921: return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[MP_CLEAR]); belugas@7921: } truelight@0: } Darkvater@1918: Darkvater@1918: return ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]); truelight@0: } truelight@0: Darkvater@1918: /** Darkvater@1918: * Return the color a tile would be displayed with in the small map in mode "Routes". Darkvater@1918: * belugas@6483: * @param tile The tile of which we would like to get the color. Darkvater@1918: * @return The color of tile in the small map in mode "Routes" Darkvater@1918: */ tron@1515: static inline uint32 GetSmallMapRoutesPixels(TileIndex tile) truelight@0: { tron@1516: TileType t = GetEffectiveTileType(tile); truelight@0: uint32 bits; truelight@0: truelight@0: if (t == MP_STATION) { tron@3338: switch (GetStationType(tile)) { tron@3338: case STATION_RAIL: bits = MKCOLOR(0x56565656); break; tron@3338: case STATION_AIRPORT: bits = MKCOLOR(0xB8B8B8B8); break; tron@3338: case STATION_TRUCK: bits = MKCOLOR(0xC2C2C2C2); break; tron@3338: case STATION_BUS: bits = MKCOLOR(0xBFBFBFBF); break; tron@3338: case STATION_DOCK: bits = MKCOLOR(0x98989898); break; tron@3338: default: bits = MKCOLOR(0xFFFFFFFF); break; tron@3338: } truelight@0: } else { belugas@6420: /* ground color */ tron@1511: bits = ApplyMask(MKCOLOR(0x54545454), &_smallmap_contours_andor[t]); truelight@0: } truelight@0: return bits; truelight@0: } truelight@0: truelight@0: tron@2955: static const uint32 _vegetation_clear_bits[] = { Darkvater@1918: MKCOLOR(0x54545454), ///< full grass Darkvater@1918: MKCOLOR(0x52525252), ///< rough land Darkvater@1918: MKCOLOR(0x0A0A0A0A), ///< rocks Darkvater@1918: MKCOLOR(0x25252525), ///< fields Darkvater@1918: MKCOLOR(0x98989898), ///< snow Darkvater@1918: MKCOLOR(0xC2C2C2C2), ///< desert Darkvater@1918: MKCOLOR(0x54545454), ///< unused Darkvater@1918: MKCOLOR(0x54545454), ///< unused truelight@0: }; truelight@0: tron@1515: static inline uint32 GetSmallMapVegetationPixels(TileIndex tile) truelight@0: { tron@1516: TileType t = GetEffectiveTileType(tile); truelight@0: uint32 bits; truelight@0: tron@1515: switch (t) { tron@1515: case MP_CLEAR: tron@3447: if (IsClearGround(tile, CLEAR_GRASS) && GetClearDensity(tile) < 3) { tron@2955: bits = MKCOLOR(0x37373737); tron@2955: } else { tron@2955: bits = _vegetation_clear_bits[GetClearGround(tile)]; tron@2955: } tron@1515: break; tron@1515: tron@1515: case MP_INDUSTRY: belugas@6757: bits = GetIndustrySpec(GetIndustryByTile(tile)->type)->check_proc == CHECK_FOREST ? MKCOLOR(0xD0D0D0D0) : MKCOLOR(0xB5B5B5B5); tron@1515: break; tron@1515: tron@1515: case MP_TREES: tron@3441: if (GetTreeGround(tile) == TREE_GROUND_SNOW_DESERT) { rubidium@9413: bits = (_settings_game.game_creation.landscape == LT_ARCTIC) ? MKCOLOR(0x98575798) : MKCOLOR(0xC25757C2); tron@2951: } else { tron@1515: bits = MKCOLOR(0x54575754); tron@2951: } tron@1515: break; tron@1515: tron@1515: default: tron@1515: bits = ApplyMask(MKCOLOR(0x54545454), &_smallmap_vehicles_andor[t]); tron@1515: break; truelight@0: } truelight@0: truelight@0: return bits; truelight@0: } truelight@0: truelight@0: Darkvater@4846: static uint32 _owner_colors[OWNER_END + 1]; truelight@0: Darkvater@1918: /** Darkvater@1918: * Return the color a tile would be displayed with in the small map in mode "Owner". Darkvater@1918: * belugas@6483: * @param tile The tile of which we would like to get the color. Darkvater@1918: * @return The color of tile in the small map in mode "Owner" Darkvater@1918: */ tron@1515: static inline uint32 GetSmallMapOwnerPixels(TileIndex tile) truelight@0: { tron@2368: Owner o; truelight@0: tron@2368: switch (GetTileType(tile)) { Darkvater@4846: case MP_INDUSTRY: o = OWNER_END; break; tron@2368: case MP_HOUSE: o = OWNER_TOWN; break; tron@2368: default: o = GetTileOwner(tile); break; frosch@9341: /* FIXME: For MP_ROAD there are multiple owners. frosch@9341: * GetTileOwner returns the rail owner (level crossing) resp. the owner of ROADTYPE_ROAD (normal road), frosch@9341: * even if there are no ROADTYPE_ROAD bits on the tile. frosch@9341: */ truelight@0: } truelight@0: tron@2368: return _owner_colors[o]; truelight@0: } truelight@0: truelight@0: truelight@0: static const uint32 _smallmap_mask_left[3] = { truelight@0: MKCOLOR(0xFF000000), truelight@0: MKCOLOR(0xFFFF0000), truelight@0: MKCOLOR(0xFFFFFF00), truelight@0: }; truelight@0: tron@1515: static const uint32 _smallmap_mask_right[] = { truelight@0: MKCOLOR(0x000000FF), truelight@0: MKCOLOR(0x0000FFFF), truelight@0: MKCOLOR(0x00FFFFFF), truelight@0: }; truelight@0: truelight@0: /* each tile has 4 x pixels and 1 y pixel */ truelight@0: Darkvater@1918: static GetSmallMapPixels *_smallmap_draw_procs[] = { Darkvater@1918: GetSmallMapContoursPixels, Darkvater@1918: GetSmallMapVehiclesPixels, Darkvater@1918: GetSmallMapIndustriesPixels, Darkvater@1918: GetSmallMapRoutesPixels, Darkvater@1918: GetSmallMapVegetationPixels, Darkvater@1918: GetSmallMapOwnerPixels, truelight@0: }; truelight@0: truelight@0: static const byte _vehicle_type_colors[6] = { truelight@0: 184, 191, 152, 15, 215, 184 truelight@0: }; truelight@0: truelight@0: truelight@0: static void DrawVertMapIndicator(int x, int y, int x2, int y2) truelight@0: { tron@2951: GfxFillRect(x, y, x2, y + 3, 69); tron@2951: GfxFillRect(x, y2 - 3, x2, y2, 69); truelight@0: } truelight@0: truelight@0: static void DrawHorizMapIndicator(int x, int y, int x2, int y2) truelight@0: { tron@2951: GfxFillRect(x, y, x + 3, y2, 69); tron@2951: GfxFillRect(x2 - 3, y, x2, y2, 69); truelight@0: } truelight@0: belugas@7919: enum SmallMapWindowWidgets { belugas@7919: SM_WIDGET_MAP = 4, belugas@7919: SM_WIDGET_CONTOUR, belugas@7919: SM_WIDGET_VEHICLES, belugas@7919: SM_WIDGET_INDUSTRIES, belugas@7919: SM_WIDGET_ROUTES, belugas@7919: SM_WIDGET_VEGETATION, belugas@7919: SM_WIDGET_OWNERS, belugas@7919: SM_WIDGET_CENTERMAP, belugas@7919: SM_WIDGET_TOGGLETOWNNAME, belugas@7919: SM_WIDGET_LEGEND, belugas@7921: SM_WIDGET_BUTTONSPANEL, belugas@7921: SM_WIDGET_BOTTOMPANEL, belugas@7921: SM_WIDGET_ENABLEINDUSTRIES, belugas@7921: SM_WIDGET_DISABLEINDUSTRIES, belugas@7921: SM_WIDGET_RESIZEBOX, belugas@7919: }; belugas@7919: glx@9192: class SmallMapWindow : public Window truelight@0: { glx@9192: enum SmallMapType { glx@9192: SMT_CONTOUR, glx@9192: SMT_VEHICLES, glx@9192: SMT_INDUSTRY, glx@9192: SMT_OWNER = 5, glx@9192: }; truelight@193: glx@9192: enum { glx@9192: BASE_NB_PER_COLUMN = 6, glx@9192: }; truelight@0: peter1138@9832: static SmallMapType map_type; peter1138@9832: static bool show_towns; peter1138@9832: glx@9192: int32 scroll_x; glx@9192: int32 scroll_y; glx@9192: int32 subscroll; peter1138@9412: uint8 refresh; truelight@0: glx@9192: public: glx@9192: /** glx@9192: * Draws the small map. glx@9192: * glx@9192: * Basically, the small map is draw column of pixels by column of pixels. The pixels glx@9192: * are drawn directly into the screen buffer. The final map is drawn in multiple passes. glx@9192: * The passes are: glx@9192: *
  1. The colors of tiles in the different modes.
  2. glx@9192: *
  3. Town names (optional)
glx@9192: * glx@9192: * @param dpi pointer to pixel to write onto glx@9192: * @param w pointer to Window struct glx@9192: * @param type type of map requested (vegetation, owners, routes, etc) glx@9192: * @param show_towns true if the town names should be displayed, false if not. glx@9192: */ peter1138@9832: void DrawSmallMap(DrawPixelInfo *dpi) glx@9192: { glx@9192: Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter(); glx@9192: DrawPixelInfo *old_dpi; glx@9192: int dx,dy, x, y, x2, y2; glx@9192: void *ptr; glx@9192: int tile_x; glx@9192: int tile_y; glx@9192: ViewPort *vp; truelight@0: glx@9192: old_dpi = _cur_dpi; glx@9192: _cur_dpi = dpi; tron@1515: glx@9192: /* clear it */ glx@9192: GfxFillRect(dpi->left, dpi->top, dpi->left + dpi->width - 1, dpi->top + dpi->height - 1, 0); glx@9192: glx@9192: /* setup owner table */ peter1138@9832: if (this->map_type == SMT_OWNER) { glx@9192: const Player *p; glx@9192: glx@9192: /* fill with some special colors */ glx@9192: _owner_colors[OWNER_TOWN] = MKCOLOR(0xB4B4B4B4); glx@9192: _owner_colors[OWNER_NONE] = MKCOLOR(0x54545454); glx@9192: _owner_colors[OWNER_WATER] = MKCOLOR(0xCACACACA); glx@9192: _owner_colors[OWNER_END] = MKCOLOR(0x20202020); /* industry */ glx@9192: glx@9192: /* now fill with the player colors */ glx@9192: FOR_ALL_PLAYERS(p) { rubidium@9659: _owner_colors[p->index] = rubidium@9659: _colour_gradient[p->player_color][5] * 0x01010101; glx@9192: } truelight@0: } truelight@0: glx@9192: tile_x = this->scroll_x / TILE_SIZE; glx@9192: tile_y = this->scroll_y / TILE_SIZE; truelight@0: glx@9192: dx = dpi->left + this->subscroll; glx@9192: tile_x -= dx / 4; glx@9192: tile_y += dx / 4; glx@9192: dx &= 3; glx@9192: glx@9192: dy = dpi->top; glx@9192: tile_x += dy / 2; glx@9192: tile_y += dy / 2; glx@9192: glx@9192: if (dy & 1) { glx@9192: tile_x++; glx@9192: dx += 2; glx@9192: if (dx > 3) { glx@9192: dx -= 4; glx@9192: tile_x--; glx@9192: tile_y++; glx@9192: } truelight@0: } truelight@0: glx@9192: ptr = blitter->MoveTo(dpi->dst_ptr, -dx - 4, 0); glx@9192: x = - dx - 4; glx@9192: y = 0; truelight@0: glx@9192: for (;;) { glx@9192: uint32 mask = 0xFFFFFFFF; glx@9192: int reps; glx@9192: int t; truelight@0: glx@9192: /* distance from left edge */ glx@9192: if (x < 0) { glx@9192: if (x < -3) goto skip_column; glx@9192: /* mask to use at the left edge */ glx@9192: mask = _smallmap_mask_left[x + 3]; glx@9192: } glx@9192: glx@9192: /* distance from right edge */ glx@9192: t = dpi->width - x; glx@9192: if (t < 4) { glx@9192: if (t <= 0) break; /* exit loop */ glx@9192: /* mask to use at the right edge */ glx@9192: mask &= _smallmap_mask_right[t - 1]; glx@9192: } glx@9192: glx@9192: /* number of lines */ glx@9192: reps = (dpi->height - y + 1) / 2; glx@9192: if (reps > 0) { peter1138@9832: DrawSmallMapStuff(ptr, tile_x, tile_y, dpi->pitch * 2, reps, mask, _smallmap_draw_procs[this->map_type]); glx@9192: } glx@9192: glx@9192: skip_column: glx@9192: if (y == 0) { glx@9192: tile_y++; glx@9192: y++; glx@9192: ptr = blitter->MoveTo(ptr, 0, 1); glx@9192: } else { glx@9192: tile_x--; glx@9192: y--; glx@9192: ptr = blitter->MoveTo(ptr, 0, -1); glx@9192: } glx@9192: ptr = blitter->MoveTo(ptr, 2, 0); glx@9192: x += 2; glx@9192: } glx@9192: glx@9192: /* draw vehicles? */ peter1138@9832: if (this->map_type == SMT_CONTOUR || this->map_type == SMT_VEHICLES) { glx@9192: Vehicle *v; glx@9192: bool skip; glx@9192: byte color; glx@9192: glx@9192: FOR_ALL_VEHICLES(v) { glx@9192: if (v->type != VEH_EFFECT && glx@9192: (v->vehstatus & (VS_HIDDEN | VS_UNCLICKABLE)) == 0) { glx@9192: /* Remap into flat coordinates. */ glx@9192: Point pt = RemapCoords( glx@9192: v->x_pos / TILE_SIZE - this->scroll_x / TILE_SIZE, // divide each one separately because (a-b)/c != a/c-b/c in integer world glx@9192: v->y_pos / TILE_SIZE - this->scroll_y / TILE_SIZE, // dtto glx@9192: 0); glx@9192: x = pt.x; glx@9192: y = pt.y; glx@9192: glx@9192: /* Check if y is out of bounds? */ glx@9192: y -= dpi->top; glx@9192: if (!IsInsideMM(y, 0, dpi->height)) continue; glx@9192: glx@9192: /* Default is to draw both pixels. */ glx@9192: skip = false; glx@9192: glx@9192: /* Offset X coordinate */ glx@9192: x -= this->subscroll + 3 + dpi->left; glx@9192: glx@9192: if (x < 0) { glx@9192: /* if x+1 is 0, that means we're on the very left edge, glx@9192: * and should thus only draw a single pixel */ glx@9192: if (++x != 0) continue; glx@9192: skip = true; glx@9192: } else if (x >= dpi->width - 1) { glx@9192: /* Check if we're at the very right edge, and if so draw only a single pixel */ glx@9192: if (x != dpi->width - 1) continue; glx@9192: skip = true; glx@9192: } glx@9192: glx@9192: /* Calculate pointer to pixel and the color */ peter1138@9832: color = (this->map_type == SMT_VEHICLES) ? _vehicle_type_colors[v->type] : 0xF; glx@9192: glx@9192: /* And draw either one or two pixels depending on clipping */ glx@9192: blitter->SetPixel(dpi->dst_ptr, x, y, color); glx@9192: if (!skip) blitter->SetPixel(dpi->dst_ptr, x + 1, y, color); glx@9192: } glx@9192: } glx@9192: } glx@9192: peter1138@9832: if (this->show_towns) { glx@9192: const Town *t; glx@9192: glx@9192: FOR_ALL_TOWNS(t) { glx@9192: /* Remap the town coordinate */ truelight@0: Point pt = RemapCoords( glx@9192: (int)(TileX(t->xy) * TILE_SIZE - this->scroll_x) / TILE_SIZE, glx@9192: (int)(TileY(t->xy) * TILE_SIZE - this->scroll_y) / TILE_SIZE, truelight@0: 0); glx@9192: x = pt.x - this->subscroll + 3 - (t->sign.width_2 >> 1); truelight@0: y = pt.y; truelight@0: glx@9192: /* Check if the town sign is within bounds */ glx@9192: if (x + t->sign.width_2 > dpi->left && glx@9192: x < dpi->left + dpi->width && glx@9192: y + 6 > dpi->top && glx@9192: y < dpi->top + dpi->height) { glx@9192: /* And draw it. */ glx@9192: SetDParam(0, t->index); glx@9192: DrawString(x, y, STR_2056, TC_WHITE); truelight@0: } truelight@0: } truelight@0: } glx@9192: glx@9192: /* Draw map indicators */ glx@9192: { glx@9192: Point pt; glx@9192: glx@9192: /* Find main viewport. */ glx@9192: vp = FindWindowById(WC_MAIN_WINDOW,0)->viewport; glx@9192: glx@9192: pt = RemapCoords(this->scroll_x, this->scroll_y, 0); glx@9192: glx@9192: x = vp->virtual_left - pt.x; glx@9192: y = vp->virtual_top - pt.y; glx@9192: x2 = (x + vp->virtual_width) / TILE_SIZE; glx@9192: y2 = (y + vp->virtual_height) / TILE_SIZE; glx@9192: x /= TILE_SIZE; glx@9192: y /= TILE_SIZE; glx@9192: glx@9192: x -= this->subscroll; glx@9192: x2 -= this->subscroll; glx@9192: glx@9192: DrawVertMapIndicator(x, y, x, y2); glx@9192: DrawVertMapIndicator(x2, y, x2, y2); glx@9192: glx@9192: DrawHorizMapIndicator(x, y, x2, y); glx@9192: DrawHorizMapIndicator(x, y2, x2, y2); glx@9192: } glx@9192: _cur_dpi = old_dpi; truelight@0: } truelight@0: glx@9192: void SmallMapCenterOnCurrentPos() glx@9192: { glx@9192: int x, y; glx@9192: ViewPort *vp; glx@9192: vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport; tron@1515: glx@9192: x = ((vp->virtual_width - (this->widget[SM_WIDGET_MAP].right - this->widget[SM_WIDGET_MAP].left) * TILE_SIZE) / 2 + vp->virtual_left) / 4; glx@9192: y = ((vp->virtual_height - (this->widget[SM_WIDGET_MAP].bottom - this->widget[SM_WIDGET_MAP].top ) * TILE_SIZE) / 2 + vp->virtual_top ) / 2 - TILE_SIZE * 2; glx@9192: this->scroll_x = (y - x) & ~0xF; glx@9192: this->scroll_y = (x + y) & ~0xF; glx@9192: this->SetDirty(); glx@9192: } truelight@193: rubidium@9203: SmallMapWindow(const WindowDesc *desc, int window_number) : Window(desc, window_number) glx@9192: { glx@9192: /* Resize the window to fit industries list */ glx@9192: if (_industries_per_column > BASE_NB_PER_COLUMN) { glx@9192: uint diff = ((_industries_per_column - BASE_NB_PER_COLUMN) * BASE_NB_PER_COLUMN) + 1; glx@9192: glx@9192: this->height = this->height + diff; glx@9192: glx@9192: Widget *wi = &this->widget[SM_WIDGET_LEGEND]; // label panel glx@9192: wi->bottom = wi->bottom + diff; glx@9192: glx@9192: wi = &this->widget[SM_WIDGET_BUTTONSPANEL]; // filler panel under smallmap buttons glx@9192: wi->bottom = wi->bottom + diff - 1; glx@9192: glx@9192: /* Change widget position glx@9192: * - footer panel glx@9192: * - enable all industry glx@9192: * - disable all industry glx@9192: * - resize window button glx@9192: */ glx@9192: for (uint i = SM_WIDGET_BOTTOMPANEL; i <= SM_WIDGET_RESIZEBOX; i++) { glx@9192: wi = &this->widget[i]; glx@9192: wi->top = wi->top + diff; glx@9192: wi->bottom = wi->bottom + diff; truelight@0: } truelight@0: } glx@9192: peter1138@9832: this->LowerWidget(this->map_type + SM_WIDGET_CONTOUR); peter1138@9832: this->SetWidgetLoweredState(SM_WIDGET_TOGGLETOWNNAME, this->show_towns); glx@9192: glx@9192: this->SmallMapCenterOnCurrentPos(); glx@9192: this->FindWindowPlacementAndResize(desc); glx@9192: } glx@9192: glx@9192: virtual void OnPaint() glx@9192: { glx@9192: const LegendAndColour *tbl; glx@9192: int x, y, y_org; glx@9192: uint diff; glx@9192: DrawPixelInfo new_dpi; glx@9192: glx@9192: /* Hide Enable all/Disable all buttons if is not industry type small map*/ peter1138@9832: this->SetWidgetHiddenState(SM_WIDGET_ENABLEINDUSTRIES, this->map_type != SMT_INDUSTRY); peter1138@9832: this->SetWidgetHiddenState(SM_WIDGET_DISABLEINDUSTRIES, this->map_type != SMT_INDUSTRY); glx@9192: glx@9192: /* draw the window */ peter1138@9832: SetDParam(0, STR_00E5_CONTOURS + this->map_type); rubidium@9273: this->DrawWidgets(); glx@9192: peter1138@9832: tbl = _legend_table[this->map_type]; glx@9192: glx@9192: /* difference in window size */ glx@9192: diff = (_industries_per_column > BASE_NB_PER_COLUMN) ? ((_industries_per_column - BASE_NB_PER_COLUMN) * BASE_NB_PER_COLUMN) + 1 : 0; glx@9192: glx@9192: x = 4; glx@9192: y_org = this->height - 44 - 11 - diff; glx@9192: y = y_org; glx@9192: glx@9192: for (;;) { peter1138@9832: if (this->map_type == SMT_INDUSTRY) { glx@9192: /* Industry name must be formated, since it's not in tiny font in the specs. glx@9192: * So, draw with a parameter and use the STR_SMALLMAP_INDUSTRY string, which is tiny font.*/ glx@9192: SetDParam(0, tbl->legend); glx@9192: assert(tbl->type < NUM_INDUSTRYTYPES); glx@9192: SetDParam(1, _industry_counts[tbl->type]); glx@9192: if (!tbl->show_on_map) { glx@9192: /* Simply draw the string, not the black border of the legend color. glx@9192: * This will enforce the idea of the disabled item */ glx@9192: DrawString(x + 11, y, STR_SMALLMAP_INDUSTRY, TC_GREY); glx@9192: } else { glx@9192: DrawString(x + 11, y, STR_SMALLMAP_INDUSTRY, TC_BLACK); glx@9192: GfxFillRect(x, y + 1, x + 8, y + 5, 0); // outer border of the legend color glx@9192: } glx@9192: } else { glx@9192: /* Anything that is not an industry is using normal process */ glx@9192: GfxFillRect(x, y + 1, x + 8, y + 5, 0); glx@9192: DrawString(x + 11, y, tbl->legend, TC_FROMSTRING); glx@9192: } glx@9192: GfxFillRect(x + 1, y + 2, x + 7, y + 4, tbl->colour); // legend color glx@9192: glx@9192: tbl += 1; glx@9192: y += 6; glx@9192: glx@9192: if (tbl->end) { // end of the list glx@9192: break; glx@9192: } else if (tbl->col_break) { glx@9192: /* break asked, continue at top, 123 pixels (one "row") to the right */ glx@9192: x += 123; glx@9192: y = y_org; glx@9192: } glx@9192: } glx@9192: glx@9192: if (!FillDrawPixelInfo(&new_dpi, 3, 17, this->width - 28 + 22, this->height - 64 - 11 - diff)) return; glx@9192: peter1138@9832: this->DrawSmallMap(&new_dpi); glx@9192: } glx@9192: glx@9192: virtual void OnClick(Point pt, int widget) glx@9192: { glx@9192: switch (widget) { glx@9192: case SM_WIDGET_MAP: { // Map window glx@9192: /* glx@9192: * XXX: scrolling with the left mouse button is done by subsequently glx@9192: * clicking with the left mouse button; clicking once centers the glx@9192: * large map at the selected point. So by unclicking the left mouse glx@9192: * button here, it gets reclicked during the next inputloop, which glx@9192: * would make it look like the mouse is being dragged, while it is glx@9192: * actually being (virtually) clicked every inputloop. glx@9192: */ glx@9192: _left_button_clicked = false; glx@9192: glx@9192: Point pt = RemapCoords(this->scroll_x, this->scroll_y, 0); glx@9192: Window *w = FindWindowById(WC_MAIN_WINDOW, 0); glx@9192: w->viewport->dest_scrollpos_x = pt.x + ((_cursor.pos.x - this->left + 2) << 4) - (w->viewport->virtual_width >> 1); glx@9192: w->viewport->dest_scrollpos_y = pt.y + ((_cursor.pos.y - this->top - 16) << 4) - (w->viewport->virtual_height >> 1); glx@9192: glx@9192: this->SetDirty(); glx@9192: } break; glx@9192: glx@9192: case SM_WIDGET_CONTOUR: // Show land contours glx@9192: case SM_WIDGET_VEHICLES: // Show vehicles glx@9192: case SM_WIDGET_INDUSTRIES: // Show industries glx@9192: case SM_WIDGET_ROUTES: // Show transport routes glx@9192: case SM_WIDGET_VEGETATION: // Show vegetation glx@9192: case SM_WIDGET_OWNERS: // Show land owners peter1138@9832: this->RaiseWidget(this->map_type + SM_WIDGET_CONTOUR); peter1138@9832: this->map_type = (SmallMapType)(widget - SM_WIDGET_CONTOUR); peter1138@9832: this->LowerWidget(this->map_type + SM_WIDGET_CONTOUR); glx@9192: glx@9192: this->SetDirty(); glx@9192: SndPlayFx(SND_15_BEEP); glx@9192: break; glx@9192: glx@9192: case SM_WIDGET_CENTERMAP: // Center the smallmap again glx@9192: this->SmallMapCenterOnCurrentPos(); glx@9192: glx@9192: this->SetDirty(); glx@9192: SndPlayFx(SND_15_BEEP); glx@9192: break; glx@9192: glx@9192: case SM_WIDGET_TOGGLETOWNNAME: // Toggle town names peter1138@9832: this->show_towns = !this->show_towns; peter1138@9832: this->SetWidgetLoweredState(SM_WIDGET_TOGGLETOWNNAME, this->show_towns); glx@9192: glx@9192: this->SetDirty(); glx@9192: SndPlayFx(SND_15_BEEP); glx@9192: break; glx@9192: glx@9192: case SM_WIDGET_LEGEND: // Legend glx@9192: /* if industry type small map*/ peter1138@9832: if (this->map_type == SMT_INDUSTRY) { glx@9192: /* if click on industries label, find right industry type and enable/disable it */ glx@9192: Widget *wi = &this->widget[SM_WIDGET_LEGEND]; // label panel glx@9192: uint column = (pt.x - 4) / 123; glx@9192: uint line = (pt.y - wi->top - 2) / 6; glx@9192: uint free = _smallmap_industry_count % 3; glx@9192: glx@9192: if (column <= 3) { glx@9192: /* check if click is on industry label*/ glx@9192: uint industry_pos = 0; glx@9192: for (uint i = 0; i <= column; i++) { glx@9192: uint diff = (free > 0) ? 1 : 0; glx@9192: uint max_column_lines = _industries_per_column + diff; glx@9192: glx@9192: if (i < column) industry_pos = industry_pos + _industries_per_column + diff; glx@9192: glx@9192: if (i == column && line <= max_column_lines - 1) { glx@9192: industry_pos = industry_pos + line; glx@9192: _legend_from_industries[industry_pos].show_on_map = !_legend_from_industries[industry_pos].show_on_map; glx@9192: } glx@9192: if( free > 0) free--; glx@9192: } glx@9192: } glx@9192: /* Raise the two buttons "all", as we have done a specific choice */ glx@9192: this->RaiseWidget(SM_WIDGET_ENABLEINDUSTRIES); glx@9192: this->RaiseWidget(SM_WIDGET_DISABLEINDUSTRIES); glx@9192: this->SetDirty(); glx@9192: } glx@9192: break; glx@9192: glx@9192: case SM_WIDGET_ENABLEINDUSTRIES: // Enable all industries glx@9192: for (int i = 0; i != _smallmap_industry_count; i++) { glx@9192: _legend_from_industries[i].show_on_map = true; glx@9192: } glx@9192: /* toggle appeareance indicating the choice */ glx@9192: this->LowerWidget(SM_WIDGET_ENABLEINDUSTRIES); glx@9192: this->RaiseWidget(SM_WIDGET_DISABLEINDUSTRIES); glx@9192: this->SetDirty(); glx@9192: break; glx@9192: glx@9192: case SM_WIDGET_DISABLEINDUSTRIES: // disable all industries glx@9192: for (int i = 0; i != _smallmap_industry_count; i++) { glx@9192: _legend_from_industries[i].show_on_map = false; glx@9192: } glx@9192: /* toggle appeareance indicating the choice */ glx@9192: this->RaiseWidget(SM_WIDGET_ENABLEINDUSTRIES); glx@9192: this->LowerWidget(SM_WIDGET_DISABLEINDUSTRIES); glx@9192: this->SetDirty(); glx@9192: break; glx@9192: } truelight@193: } truelight@0: glx@9192: virtual void OnRightClick(Point pt, int widget) truelight@0: { glx@9192: if (widget == SM_WIDGET_MAP) { glx@9192: if (_scrolling_viewport) return; glx@9192: _scrolling_viewport = true; glx@9192: _cursor.delta.x = 0; glx@9192: _cursor.delta.y = 0; glx@9192: } truelight@0: } belugas@4435: glx@9192: virtual void OnTick() glx@9192: { glx@9192: /* update the window every now and then */ peter1138@9412: if ((++this->refresh & 0x1F) == 0) this->SetDirty(); glx@9192: } truelight@0: glx@9192: virtual void OnScroll(Point delta) glx@9192: { glx@9192: _cursor.fix_at = true; truelight@4335: glx@9192: int x = this->scroll_x; glx@9192: int y = this->scroll_y; truelight@4335: glx@9192: int sub = this->subscroll + delta.x; glx@9192: glx@9192: x -= (sub >> 2) << 4; glx@9192: y += (sub >> 2) << 4; glx@9192: sub &= 3; glx@9192: glx@9192: x += (delta.y >> 1) << 4; glx@9192: y += (delta.y >> 1) << 4; glx@9192: glx@9192: if (delta.y & 1) { glx@9192: x += TILE_SIZE; glx@9192: sub += 2; glx@9192: if (sub > 3) { glx@9192: sub -= 4; glx@9192: x -= TILE_SIZE; glx@9192: y += TILE_SIZE; truelight@4335: } glx@9192: } truelight@4335: glx@9192: int hx = (this->widget[SM_WIDGET_MAP].right - this->widget[SM_WIDGET_MAP].left) / 2; glx@9192: int hy = (this->widget[SM_WIDGET_MAP].bottom - this->widget[SM_WIDGET_MAP].top ) / 2; glx@9192: int hvx = hx * -4 + hy * 8; glx@9192: int hvy = hx * 4 + hy * 8; glx@9192: if (x < -hvx) { glx@9192: x = -hvx; glx@9192: sub = 0; glx@9192: } glx@9192: if (x > (int)MapMaxX() * TILE_SIZE - hvx) { glx@9192: x = MapMaxX() * TILE_SIZE - hvx; glx@9192: sub = 0; glx@9192: } glx@9192: if (y < -hvy) { glx@9192: y = -hvy; glx@9192: sub = 0; glx@9192: } glx@9192: if (y > (int)MapMaxY() * TILE_SIZE - hvy) { glx@9192: y = MapMaxY() * TILE_SIZE - hvy; glx@9192: sub = 0; glx@9192: } truelight@4335: glx@9192: this->scroll_x = x; glx@9192: this->scroll_y = y; glx@9192: this->subscroll = sub; glx@9192: glx@9192: this->SetDirty(); truelight@0: } glx@9192: }; truelight@0: peter1138@9832: SmallMapWindow::SmallMapType SmallMapWindow::map_type = SMT_CONTOUR; peter1138@9832: bool SmallMapWindow::show_towns = true; peter1138@9832: truelight@867: static const WindowDesc _smallmap_desc = { rubidium@7345: WDP_AUTO, WDP_AUTO, 350, 214, 446, 314, rubidium@5893: WC_SMALLMAP, WC_NONE, truelight@867: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE, truelight@867: _smallmap_widgets, truelight@0: }; truelight@0: rubidium@6247: void ShowSmallMap() truelight@0: { glx@9192: AllocateWindowDescFront(&_smallmap_desc, 0); truelight@0: } truelight@0: darkvater@152: /* Extra ViewPort Window Stuff */ truelight@867: static const Widget _extra_view_port_widgets[] = { belugas@9764: { WWT_CLOSEBOX, RESIZE_NONE, COLOUR_GREY, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, belugas@9764: { WWT_CAPTION, RESIZE_RIGHT, COLOUR_GREY, 11, 287, 0, 13, STR_EXTRA_VIEW_PORT_TITLE, STR_018C_WINDOW_TITLE_DRAG_THIS}, belugas@9764: { WWT_STICKYBOX, RESIZE_LR, COLOUR_GREY, 288, 299, 0, 13, 0x0, STR_STICKY_BUTTON}, belugas@9764: { WWT_PANEL, RESIZE_RB, COLOUR_GREY, 0, 299, 14, 33, 0x0, STR_NULL}, belugas@9764: { WWT_INSET, RESIZE_RB, COLOUR_GREY, 2, 297, 16, 31, 0x0, STR_NULL}, belugas@9764: { WWT_PUSHIMGBTN, RESIZE_TB, COLOUR_GREY, 0, 21, 34, 55, SPR_IMG_ZOOMIN, STR_017F_ZOOM_THE_VIEW_IN}, belugas@9764: { WWT_PUSHIMGBTN, RESIZE_TB, COLOUR_GREY, 22, 43, 34, 55, SPR_IMG_ZOOMOUT, STR_0180_ZOOM_THE_VIEW_OUT}, belugas@9764: { WWT_PUSHTXTBTN, RESIZE_TB, COLOUR_GREY, 44, 171, 34, 55, STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW, STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW_TT}, belugas@9764: { WWT_PUSHTXTBTN, RESIZE_TB, COLOUR_GREY, 172, 298, 34, 55, STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN, STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN_TT}, belugas@9764: { WWT_PANEL, RESIZE_RTB, COLOUR_GREY, 299, 299, 34, 55, 0x0, STR_NULL}, belugas@9764: { WWT_PANEL, RESIZE_RTB, COLOUR_GREY, 0, 287, 56, 67, 0x0, STR_NULL}, belugas@9764: { WWT_RESIZEBOX, RESIZE_LRTB, COLOUR_GREY, 288, 299, 56, 67, 0x0, STR_RESIZE_BUTTON}, darkvater@176: { WIDGETS_END}, darkvater@152: }; darkvater@152: glx@9193: class ExtraViewportWindow : public Window darkvater@152: { glx@9193: enum ExtraViewportWindowWidgets { glx@9193: EVW_CLOSE, glx@9193: EVW_CAPTION, glx@9193: EVW_STICKY, glx@9193: EVW_BACKGROUND, glx@9193: EVW_VIEWPORT, glx@9193: EVW_ZOOMIN, glx@9193: EVW_ZOOMOUT, glx@9193: EVW_MAIN_TO_VIEW, glx@9193: EVW_VIEW_TO_MAIN, glx@9193: EVW_SPACER1, glx@9193: EVW_SPACER2, glx@9193: EVW_RESIZE, glx@9193: }; tron@4000: glx@9193: public: rubidium@9203: ExtraViewportWindow(const WindowDesc *desc, int window_number, TileIndex tile) : Window(desc, window_number) glx@9193: { glx@9193: /* New viewport start at (zero,zero) */ glx@9193: InitializeWindowViewport(this, 3, 17, this->widget[EVW_VIEWPORT].right - this->widget[EVW_VIEWPORT].left - 1, this->widget[EVW_VIEWPORT].bottom - this->widget[EVW_VIEWPORT].top - 1, 0, ZOOM_LVL_VIEWPORT); truelight@4335: glx@9193: this->DisableWidget(EVW_ZOOMIN); glx@9193: this->FindWindowPlacementAndResize(desc); truelight@4335: glx@9193: Point pt; glx@9193: if (tile == INVALID_TILE) { glx@9193: /* the main window with the main view */ glx@9193: const Window *w = FindWindowById(WC_MAIN_WINDOW, 0); truelight@4337: glx@9193: /* center on same place as main window (zoom is maximum, no adjustment needed) */ glx@9193: pt.x = w->viewport->scrollpos_x + w->viewport->virtual_height / 2; glx@9193: pt.y = w->viewport->scrollpos_y + w->viewport->virtual_height / 2; glx@9193: } else { glx@9193: pt = RemapCoords(TileX(tile) * TILE_SIZE + TILE_SIZE / 2, TileY(tile) * TILE_SIZE + TILE_SIZE / 2, TileHeight(tile)); glx@9193: } Darkvater@5045: glx@9193: this->viewport->scrollpos_x = pt.x - ((this->widget[EVW_VIEWPORT].right - this->widget[EVW_VIEWPORT].left) - 1) / 2; glx@9193: this->viewport->scrollpos_y = pt.y - ((this->widget[EVW_VIEWPORT].bottom - this->widget[EVW_VIEWPORT].top) - 1) / 2; glx@9193: this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x; glx@9193: this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y; glx@9193: darkvater@152: } glx@9193: glx@9193: virtual void OnPaint() glx@9193: { glx@9193: /* set the number in the title bar */ glx@9193: SetDParam(0, this->window_number + 1); glx@9193: rubidium@9273: this->DrawWidgets(); rubidium@9273: this->DrawViewport(); glx@9193: } glx@9193: glx@9193: virtual void OnClick(Point pt, int widget) glx@9193: { glx@9193: switch (widget) { glx@9193: case EVW_ZOOMIN: DoZoomInOutWindow(ZOOM_IN, this); break; glx@9193: case EVW_ZOOMOUT: DoZoomInOutWindow(ZOOM_OUT, this); break; glx@9193: glx@9193: case EVW_MAIN_TO_VIEW: { // location button (move main view to same spot as this view) 'Paste Location' glx@9193: Window *w = FindWindowById(WC_MAIN_WINDOW, 0); glx@9193: int x = this->viewport->scrollpos_x; // Where is the main looking at glx@9193: int y = this->viewport->scrollpos_y; glx@9193: glx@9193: /* set this view to same location. Based on the center, adjusting for zoom */ glx@9193: w->viewport->dest_scrollpos_x = x - (w->viewport->virtual_width - this->viewport->virtual_width) / 2; glx@9193: w->viewport->dest_scrollpos_y = y - (w->viewport->virtual_height - this->viewport->virtual_height) / 2; glx@9193: } break; glx@9193: glx@9193: case EVW_VIEW_TO_MAIN: { // inverse location button (move this view to same spot as main view) 'Copy Location' glx@9193: const Window *w = FindWindowById(WC_MAIN_WINDOW, 0); glx@9193: int x = w->viewport->scrollpos_x; glx@9193: int y = w->viewport->scrollpos_y; glx@9193: glx@9193: this->viewport->dest_scrollpos_x = x + (w->viewport->virtual_width - this->viewport->virtual_width) / 2; glx@9193: this->viewport->dest_scrollpos_y = y + (w->viewport->virtual_height - this->viewport->virtual_height) / 2; glx@9193: } break; glx@9193: } glx@9193: } glx@9193: glx@9193: virtual void OnResize(Point new_size, Point delta) glx@9193: { glx@9193: this->viewport->width += delta.x; glx@9193: this->viewport->height += delta.y; glx@9193: this->viewport->virtual_width += delta.x; glx@9193: this->viewport->virtual_height += delta.y; glx@9193: } glx@9193: glx@9193: virtual void OnScroll(Point delta) glx@9193: { glx@9193: ViewPort *vp = IsPtInWindowViewport(this, _cursor.pos.x, _cursor.pos.y); glx@9193: glx@9193: if (vp == NULL) { glx@9193: _cursor.fix_at = false; glx@9193: _scrolling_viewport = false; glx@9193: } glx@9193: glx@9193: this->viewport->scrollpos_x += ScaleByZoom(delta.x, vp->zoom); glx@9193: this->viewport->scrollpos_y += ScaleByZoom(delta.y, vp->zoom); glx@9193: this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x; glx@9193: this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y; glx@9193: } glx@9193: glx@9193: virtual void OnMouseWheel(int wheel) glx@9193: { glx@9193: ZoomInOrOutToCursorWindow(wheel < 0, this); glx@9193: } glx@9193: glx@9193: virtual void OnInvalidateData(int data = 0) glx@9193: { glx@9193: /* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */ glx@9193: HandleZoomMessage(this, this->viewport, EVW_ZOOMIN, EVW_ZOOMOUT); glx@9193: } glx@9193: }; darkvater@152: darkvater@152: static const WindowDesc _extra_view_port_desc = { rubidium@7369: WDP_AUTO, WDP_AUTO, 300, 68, 300, 268, rubidium@5893: WC_EXTRA_VIEW_PORT, WC_NONE, truelight@867: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE, darkvater@152: _extra_view_port_widgets, darkvater@152: }; darkvater@152: peter1138@9094: void ShowExtraViewPortWindow(TileIndex tile) darkvater@152: { darkvater@152: int i = 0; truelight@193: belugas@6420: /* find next free window number for extra viewport */ tron@2989: while (FindWindowById(WC_EXTRA_VIEW_PORT, i) != NULL) i++; darkvater@152: rubidium@9203: new ExtraViewportWindow(&_extra_view_port_desc, i, tile); darkvater@152: } glx@9192: glx@9192: bool ScrollMainWindowTo(int x, int y, bool instant) glx@9192: { glx@9192: bool res = ScrollWindowTo(x, y, FindWindowById(WC_MAIN_WINDOW, 0), instant); glx@9192: glx@9192: /* If a user scrolls to a tile (via what way what so ever) and already is on glx@9192: * that tile (e.g.: pressed twice), move the smallmap to that location, glx@9192: * so you directly see where you are on the smallmap. */ glx@9192: glx@9192: if (res) return res; glx@9192: glx@9192: SmallMapWindow *w = dynamic_cast(FindWindowById(WC_SMALLMAP, 0)); glx@9192: if (w != NULL) w->SmallMapCenterOnCurrentPos(); glx@9192: glx@9192: return res; glx@9192: }