src/dock_gui.cpp
author skidd13
Mon, 16 Jun 2008 17:10:55 +0000
changeset 10981 20a58e431c29
parent 10937 6577ed0fbb7f
child 11071 91ac7664ad1e
permissions -rw-r--r--
(svn r13535) -Codechange: Protect GUIList internals
-Fix: VL_FIST_SORT should be set after list rebuild too
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
10429
1b99254f9607 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 10397
diff changeset
     3
/** @file dock_gui.cpp GUI to create amazing water objects. */
6451
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6144
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1632
diff changeset
     6
#include "openttd.h"
8604
8afdd9877afd (svn r11669) -Codechange: refactor tile.h -> tile_type.h and tile_map.h
rubidium
parents: 8603
diff changeset
     7
#include "tile_map.h"
9282
2bb9703aeb39 (svn r12490) -Codechange: rename engine.h to engine_func.h and remove unneeded inclusions of engine.h and/or replace them with engine_type.h.
rubidium
parents: 9069
diff changeset
     8
#include "station_type.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     9
#include "gui.h"
8701
051036216675 (svn r11768) -Codechange: move some terraform related gui stuff from main_gui.cpp to terraform_gui.cpp (and introduce terraform_gui.h). Based on a patch by Roujin.
rubidium
parents: 8653
diff changeset
    10
#include "terraform_gui.h"
8603
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
    11
#include "window_gui.h"
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
    12
#include "station_gui.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8604
diff changeset
    13
#include "command_func.h"
8766
c86cfa3a7580 (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8760
diff changeset
    14
#include "settings_type.h"
8444
9317090e9c8c (svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents: 8385
diff changeset
    15
#include "water.h"
8627
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    16
#include "window_func.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8635
diff changeset
    17
#include "vehicle_func.h"
8653
a83f7a536919 (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium
parents: 8640
diff changeset
    18
#include "sound_func.h"
8720
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8701
diff changeset
    19
#include "viewport_func.h"
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8701
diff changeset
    20
#include "gfx_func.h"
8750
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8733
diff changeset
    21
#include "player_func.h"
8909
fa15e9afad2f (svn r11983) -Codechange: Add some helper functions for slopes and use them.
frosch
parents: 8766
diff changeset
    22
#include "slope_func.h"
10445
2dd7d9d0a957 (svn r12987) -Codechange: split viewport and tile selection.
rubidium
parents: 10441
diff changeset
    23
#include "tilehighlight_func.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    24
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    25
#include "table/sprites.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    26
#include "table/strings.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    27
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
    28
static void ShowBuildDockStationPicker(Window *parent);
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
    29
static void ShowBuildDocksDepotPicker(Window *parent);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
3157
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2952
diff changeset
    31
static Axis _ship_depot_direction;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    33
void CcBuildDocks(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    35
	if (success) {
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 507
diff changeset
    36
		SndPlayTileFx(SND_02_SPLAT, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    37
		ResetObjectToPlace();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    38
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    39
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    40
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    41
void CcBuildCanal(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
{
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 507
diff changeset
    43
	if (success) SndPlayTileFx(SND_02_SPLAT, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    45
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    47
static void PlaceDocks_Dock(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    48
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7837
diff changeset
    49
	DoCommandP(tile, _ctrl_pressed, 0, CcBuildDocks, CMD_BUILD_DOCK | CMD_MSG(STR_9802_CAN_T_BUILD_DOCK_HERE));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    50
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    51
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    52
static void PlaceDocks_Depot(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    53
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7837
diff changeset
    54
	DoCommandP(tile, _ship_depot_direction, 0, CcBuildDocks, CMD_BUILD_SHIP_DEPOT | CMD_MSG(STR_3802_CAN_T_BUILD_SHIP_DEPOT));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    55
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    57
static void PlaceDocks_Buoy(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    58
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7837
diff changeset
    59
	DoCommandP(tile, 0, 0, CcBuildDocks, CMD_BUILD_BUOY | CMD_MSG(STR_9835_CAN_T_POSITION_BUOY_HERE));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    61
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    62
static void PlaceDocks_BuildCanal(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    63
{
7166
3937d5ea59df (svn r9901) -Codechange: Decide what to do with selected land areas based on the specific variable, not how it was highlighted.
maedhros
parents: 7165
diff changeset
    64
	VpStartPlaceSizing(tile, VPM_X_OR_Y, DDSP_CREATE_WATER);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    66
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1914
diff changeset
    67
static void PlaceDocks_BuildLock(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
{
8017
8c46e61c510f (svn r11040) -Fix [FS#1179]: removing CMD_AUTO from some commands could remotely trigger an assertion.
rubidium
parents: 7837
diff changeset
    69
	DoCommandP(tile, 0, 0, CcBuildDocks, CMD_BUILD_LOCK | CMD_MSG(STR_CANT_BUILD_LOCKS));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    70
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    71
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
    72
static void PlaceDocks_Aqueduct(TileIndex tile)
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
    73
{
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
    74
	VpStartPlaceSizing(tile, VPM_X_OR_Y, DDSP_BUILD_BRIDGE);
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
    75
}
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
    76
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
    77
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    78
/** Enum referring to the widgets of the build dock toolbar */
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    79
enum DockToolbarWidgets {
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    80
	DTW_BEGIN = 0,                 ///< Start of toolbar widgets
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    81
	DTW_CLOSEBOX = DTW_BEGIN,      ///< Close window button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    82
	DTW_CAPTION,                   ///< Window caption
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    83
	DTW_STICKY,                    ///< Sticky window button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    84
	DTW_BUTTONS_BEGIN,             ///< Begin of clickable buttons (except seperating panel)
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    85
	DTW_CANAL = DTW_BUTTONS_BEGIN, ///< Build canal button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    86
	DTW_LOCK,                      ///< Build lock button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    87
	DTW_SEPERATOR,                 ///< Seperating panel between lock and demolish
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    88
	DTW_DEMOLISH,                  ///< Demolish aka dynamite button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    89
	DTW_DEPOT,                     ///< Build depot button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    90
	DTW_STATION,                   ///< Build station button
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    91
	DTW_BUOY,                      ///< Build buoy button
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
    92
	DTW_BUILD_AQUEDUCT,            ///< Build aqueduct button
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
    93
	DTW_END,                       ///< End of toolbar widgets
5147
db717cde801d (svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
tron
parents: 5072
diff changeset
    94
};
db717cde801d (svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
tron
parents: 5072
diff changeset
    95
db717cde801d (svn r7239) Enumerate the widgets in the airport, dock, rail and road toolbars
tron
parents: 5072
diff changeset
    96
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
    97
static void BuildDocksClick_Canal(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    98
{
8385
aedd7656cfd1 (svn r11440) -Codechange: replace magic numbers with enumified WindowHighlightMode constants. Patch by SmatZ.
rubidium
parents: 8017
diff changeset
    99
	HandlePlacePushButton(w, DTW_CANAL, SPR_CURSOR_CANAL, VHM_RECT, PlaceDocks_BuildCanal);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   100
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   102
static void BuildDocksClick_Lock(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   103
{
8385
aedd7656cfd1 (svn r11440) -Codechange: replace magic numbers with enumified WindowHighlightMode constants. Patch by SmatZ.
rubidium
parents: 8017
diff changeset
   104
	HandlePlacePushButton(w, DTW_LOCK, SPR_CURSOR_LOCK, VHM_RECT, PlaceDocks_BuildLock);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   105
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   106
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   107
static void BuildDocksClick_Demolish(Window *w)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   108
{
10441
09655ce4bfa3 (svn r12983) -Codechange [FS#1987] : Unification of all dynamite tools calls to only one. Thanks to Roujin
belugas
parents: 10434
diff changeset
   109
	HandlePlacePushButton(w, DTW_DEMOLISH, ANIMCURSOR_DEMOLISH, VHM_RECT, PlaceProc_DemolishArea);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   110
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   111
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   112
static void BuildDocksClick_Depot(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   113
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7325
diff changeset
   114
	if (!CanBuildVehicleInfrastructure(VEH_SHIP)) return;
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   115
	if (HandlePlacePushButton(w, DTW_DEPOT, SPR_CURSOR_SHIP_DEPOT, VHM_RECT, PlaceDocks_Depot)) ShowBuildDocksDepotPicker(w);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   116
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   117
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   118
static void BuildDocksClick_Dock(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   119
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7325
diff changeset
   120
	if (!CanBuildVehicleInfrastructure(VEH_SHIP)) return;
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   121
	if (HandlePlacePushButton(w, DTW_STATION, SPR_CURSOR_DOCK, VHM_SPECIAL, PlaceDocks_Dock)) ShowBuildDockStationPicker(w);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   122
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   123
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   124
static void BuildDocksClick_Buoy(Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   125
{
7582
9f23c01ae23d (svn r10353) -Fix/Feature [FS#669]: disallow (in the GUI) the building of infrastructure you do not have available vehicles for. This means that the airport building button is disabled till you can actually build aircraft. The game itself will not disallow you to build the infrastructure and this "new" behaviour can be overriden with a patch setting.
rubidium
parents: 7325
diff changeset
   126
	if (!CanBuildVehicleInfrastructure(VEH_SHIP)) return;
8385
aedd7656cfd1 (svn r11440) -Codechange: replace magic numbers with enumified WindowHighlightMode constants. Patch by SmatZ.
rubidium
parents: 8017
diff changeset
   127
	HandlePlacePushButton(w, DTW_BUOY, SPR_CURSOR_BOUY, VHM_RECT, PlaceDocks_Buoy);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   128
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   129
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
   130
static void BuildDocksClick_Aqueduct(Window *w)
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   131
{
10937
6577ed0fbb7f (svn r13490) -Add: a seperate icon for aqueducts
skidd13
parents: 10928
diff changeset
   132
	HandlePlacePushButton(w, DTW_BUILD_AQUEDUCT, SPR_CURSOR_AQUEDUCT, VHM_RECT, PlaceDocks_Aqueduct);
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   133
}
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   134
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   136
typedef void OnButtonClick(Window *w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   137
static OnButtonClick * const _build_docks_button_proc[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   138
	BuildDocksClick_Canal,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   139
	BuildDocksClick_Lock,
2548
97ada3bd2702 (svn r3077) static, const, bracing, indentation, 0 -> '\0'/NULL, typos in comments, excess empty lines, minor other changes
tron
parents: 2186
diff changeset
   140
	NULL,
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   141
	BuildDocksClick_Demolish,
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   142
	BuildDocksClick_Depot,
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   143
	BuildDocksClick_Dock,
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   144
	BuildDocksClick_Buoy,
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
   145
	BuildDocksClick_Aqueduct
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   148
struct BuildDocksToolbarWindow : Window {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   149
	BuildDocksToolbarWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   150
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   151
		this->FindWindowPlacementAndResize(desc);
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   152
		if (_settings_client.gui.link_terraform_toolbar) ShowTerraformToolbar(this);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   155
	~BuildDocksToolbarWindow()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   156
	{
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   157
		if (_settings_client.gui.link_terraform_toolbar) DeleteWindowById(WC_SCEN_LAND_GEN, 0);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   158
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   159
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   160
	virtual void OnPaint()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   161
	{
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   162
		this->SetWidgetsDisabledState(!CanBuildVehicleInfrastructure(VEH_SHIP), DTW_DEPOT, DTW_STATION, DTW_BUOY, WIDGET_LIST_END);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   163
		this->DrawWidgets();
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   164
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   165
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   166
	virtual void OnClick(Point pt, int widget)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   167
	{
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   168
		if (widget >= DTW_BUTTONS_BEGIN && widget != DTW_SEPERATOR) _build_docks_button_proc[widget - DTW_BUTTONS_BEGIN](this);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   169
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   170
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   171
	virtual EventState OnKeyPress(uint16 key, uint16 keycode)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   172
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   173
		switch (keycode) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   174
			case '1': BuildDocksClick_Canal(this); break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   175
			case '2': BuildDocksClick_Lock(this); break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   176
			case '3': BuildDocksClick_Demolish(this); break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   177
			case '4': BuildDocksClick_Depot(this); break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   178
			case '5': BuildDocksClick_Dock(this); break;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   179
			case '6': BuildDocksClick_Buoy(this); break;
10928
e88d40758667 (svn r13481) -Codechange: add 'B' keyboard shortcut to build aqueduct (planetmaker)
smatz
parents: 10926
diff changeset
   180
			case 'B':
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
   181
			case '7': BuildDocksClick_Aqueduct(this); break;
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   182
			default:  return ES_NOT_HANDLED;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   183
		}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   184
		return ES_HANDLED;
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   185
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   186
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   187
	virtual void OnPlaceObject(Point pt, TileIndex tile)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   188
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   189
		_place_proc(tile);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   190
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   191
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   192
	virtual void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   193
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   194
		VpSelectTilesWithMethod(pt.x, pt.y, select_method);
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   195
	}
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   196
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   197
	virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   198
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   199
		if (pt.x != -1) {
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   200
			switch (select_proc) {
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   201
				case DDSP_BUILD_BRIDGE:
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   202
					ResetObjectToPlace();
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   203
					extern void CcBuildBridge(bool success, TileIndex tile, uint32 p1, uint32 p2);
10926
e46c48440dbc (svn r13479) -Codechange: don't use word 'bridge' for aqueducts that often
smatz
parents: 10913
diff changeset
   204
					DoCommandP(end_tile, start_tile, TRANSPORT_WATER << 15, CcBuildBridge, CMD_BUILD_BRIDGE | CMD_MSG(STR_CAN_T_BUILD_AQUEDUCT_HERE));
10913
af60a6eda0a0 (svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
rubidium
parents: 10775
diff changeset
   205
7166
3937d5ea59df (svn r9901) -Codechange: Decide what to do with selected land areas based on the specific variable, not how it was highlighted.
maedhros
parents: 7165
diff changeset
   206
				case DDSP_DEMOLISH_AREA:
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   207
					GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 6987
diff changeset
   208
					break;
7166
3937d5ea59df (svn r9901) -Codechange: Decide what to do with selected land areas based on the specific variable, not how it was highlighted.
maedhros
parents: 7165
diff changeset
   209
				case DDSP_CREATE_WATER:
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   210
					DoCommandP(end_tile, start_tile, 0, CcBuildCanal, CMD_BUILD_CANAL | CMD_MSG(STR_CANT_BUILD_CANALS));
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 6987
diff changeset
   211
					break;
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   212
7165
37eb253f3c06 (svn r9900) -Codechange: Separate the variables for how to highlight a land area and what to do with it afterwards.
maedhros
parents: 6987
diff changeset
   213
				default: break;
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2548
diff changeset
   214
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   215
		}
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   216
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   217
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   218
	virtual void OnPlaceObjectAbort()
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   219
	{
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   220
		this->RaiseButtons();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
10560
0cf0a95ebaf9 (svn r13104) -Codechange: make ResetObjectToPlace safe to be called recursively via the OnPlaceObjectAbort callback and use this knowledge to simplify closing some windows.
rubidium
parents: 10481
diff changeset
   222
		delete FindWindowById(WC_BUILD_STATION, 0);
0cf0a95ebaf9 (svn r13104) -Codechange: make ResetObjectToPlace safe to be called recursively via the OnPlaceObjectAbort callback and use this knowledge to simplify closing some windows.
rubidium
parents: 10481
diff changeset
   223
		delete FindWindowById(WC_BUILD_DEPOT, 0);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   224
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   225
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   226
	virtual void OnPlacePresize(Point pt, TileIndex tile_from)
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   227
	{
8909
fa15e9afad2f (svn r11983) -Codechange: Add some helper functions for slopes and use them.
frosch
parents: 8766
diff changeset
   228
		DiagDirection dir = GetInclinedSlopeDirection(GetTileSlope(tile_from, NULL));
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   229
		TileIndex tile_to = (dir != INVALID_DIAGDIR ? TileAddByDiagDir(tile_from, ReverseDiagDir(dir)) : tile_from);
8909
fa15e9afad2f (svn r11983) -Codechange: Add some helper functions for slopes and use them.
frosch
parents: 8766
diff changeset
   230
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
		VpSetPresizeRange(tile_from, tile_to);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
	}
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   233
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   234
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   235
static const Widget _build_docks_toolb_widgets[] = {
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   236
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                   STR_018B_CLOSE_WINDOW},                   // DTW_CLOSEBOX
10937
6577ed0fbb7f (svn r13490) -Add: a seperate icon for aqueducts
skidd13
parents: 10928
diff changeset
   237
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   145,     0,    13, STR_9801_DOCK_CONSTRUCTION, STR_018C_WINDOW_TITLE_DRAG_THIS},         // DTW_CAPTION
6577ed0fbb7f (svn r13490) -Add: a seperate icon for aqueducts
skidd13
parents: 10928
diff changeset
   238
{  WWT_STICKYBOX,   RESIZE_NONE,     7,   146,   157,     0,    13, 0x0,                        STR_STICKY_BUTTON},                       // DTW_STICKY
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   239
{     WWT_IMGBTN,   RESIZE_NONE,     7,     0,    21,    14,    35, SPR_IMG_BUILD_CANAL,        STR_BUILD_CANALS_TIP},                    // DTW_CANAL
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   240
{     WWT_IMGBTN,   RESIZE_NONE,     7,    22,    43,    14,    35, SPR_IMG_BUILD_LOCK,         STR_BUILD_LOCKS_TIP},                     // DTW_LOCK
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   241
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   242
{      WWT_PANEL,   RESIZE_NONE,     7,    44,    47,    14,    35, 0x0,                        STR_NULL},                                // DTW_SEPERATOR
606
0e507bb0f63a (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 568
diff changeset
   243
10671
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   244
{     WWT_IMGBTN,   RESIZE_NONE,     7,    48,    69,    14,    35, SPR_IMG_DYNAMITE,           STR_018D_DEMOLISH_BUILDINGS_ETC},         // DTW_DEMOLISH
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   245
{     WWT_IMGBTN,   RESIZE_NONE,     7,    70,    91,    14,    35, SPR_IMG_SHIP_DEPOT,         STR_981E_BUILD_SHIP_DEPOT_FOR_BUILDING},  // DTW_DEPOT
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   246
{     WWT_IMGBTN,   RESIZE_NONE,     7,    92,   113,    14,    35, SPR_IMG_SHIP_DOCK,          STR_981D_BUILD_SHIP_DOCK},                // DTW_STATION
dec6e7c78066 (svn r13215) -Codechange [FS#2029]: enumify and comment Build Dock widgets (Roujin)
smatz
parents: 10641
diff changeset
   247
{     WWT_IMGBTN,   RESIZE_NONE,     7,   114,   135,    14,    35, SPR_IMG_BOUY,               STR_9834_POSITION_BUOY_WHICH_CAN},        // DTW_BUOY
10937
6577ed0fbb7f (svn r13490) -Add: a seperate icon for aqueducts
skidd13
parents: 10928
diff changeset
   248
{     WWT_IMGBTN,   RESIZE_NONE,     7,   136,   157,    14,    35, SPR_IMG_AQUEDUCT,           STR_BUILD_AQUEDUCT},                      // DTW_BUILD_AQUEDUCT
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 0
diff changeset
   249
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   251
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
static const WindowDesc _build_docks_toolbar_desc = {
10937
6577ed0fbb7f (svn r13490) -Add: a seperate icon for aqueducts
skidd13
parents: 10928
diff changeset
   253
	WDP_ALIGN_TBR, 22, 158, 36, 158, 36,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6111
diff changeset
   254
	WC_BUILD_TOOLBAR, WC_NONE,
756
d1f1dc31b6f4 (svn r1212) -Feature: sticky windows all build-toolbars
darkvater
parents: 750
diff changeset
   255
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
	_build_docks_toolb_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6451
diff changeset
   259
void ShowBuildDocksToolbar()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
{
5005
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4994
diff changeset
   261
	if (!IsValidPlayer(_current_player)) return;
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4994
diff changeset
   262
10397
84e97769583b (svn r12939) -Codechange: do not use the window proc to determine whether a toolbar is a rail toolbar, but use the window number.
rubidium
parents: 9342
diff changeset
   263
	DeleteWindowByClass(WC_BUILD_TOOLBAR);
10627
641632e80093 (svn r13171) -Codechange: make a class of the Build[Air|Rail|Road|Dock]ToolbarWindows.
rubidium
parents: 10616
diff changeset
   264
	AllocateWindowDescFront<BuildDocksToolbarWindow>(&_build_docks_toolbar_desc, TRANSPORT_WATER);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   265
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   267
struct BuildDocksStationWindow : public PickerWindowBase {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   268
private:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   269
	enum BuildDockStationWidgets {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   270
		BDSW_CLOSE,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   271
		BDSW_CAPTION,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   272
		BDSW_BACKGROUND,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   273
		BDSW_LT_OFF,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   274
		BDSW_LT_ON,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   275
		BDSW_INFO,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   276
	};
4719
413b21513ef7 (svn r6631) -Codechange: Use accessors for click_state.
belugas
parents: 4634
diff changeset
   277
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   278
public:
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   279
	BuildDocksStationWindow(const WindowDesc *desc, Window *parent) : PickerWindowBase(desc, parent)
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   280
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   281
		this->LowerWidget(_station_show_coverage + BDSW_LT_OFF);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   282
		this->FindWindowPlacementAndResize(desc);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   283
	}
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   284
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   285
	virtual void OnPaint()
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   286
	{
10775
7061477bfbcf (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 10703
diff changeset
   287
		int rad = (_settings_game.station.modified_catchment) ? CA_DOCK : CA_UNMODIFIED;
713
5b0be616ee1e (svn r1165) Fix: [ 1085255 ] Docks now have a button to display the catchment area
dominik
parents: 679
diff changeset
   288
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   289
		this->DrawWidgets();
2631
13daba67f217 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2619
diff changeset
   290
7325
e49df6ba88e7 (svn r10068) -Fix [FS#835]: coverage area highlight was still show when it was turned off for docks.
rubidium
parents: 7170
diff changeset
   291
		if (_station_show_coverage) {
e49df6ba88e7 (svn r10068) -Fix [FS#835]: coverage area highlight was still show when it was turned off for docks.
rubidium
parents: 7170
diff changeset
   292
			SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
e49df6ba88e7 (svn r10068) -Fix [FS#835]: coverage area highlight was still show when it was turned off for docks.
rubidium
parents: 7170
diff changeset
   293
		} else {
e49df6ba88e7 (svn r10068) -Fix [FS#835]: coverage area highlight was still show when it was turned off for docks.
rubidium
parents: 7170
diff changeset
   294
			SetTileSelectSize(1, 1);
e49df6ba88e7 (svn r10068) -Fix [FS#835]: coverage area highlight was still show when it was turned off for docks.
rubidium
parents: 7170
diff changeset
   295
		}
713
5b0be616ee1e (svn r1165) Fix: [ 1085255 ] Docks now have a button to display the catchment area
dominik
parents: 679
diff changeset
   296
9342
ca61cbfca47a (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 9282
diff changeset
   297
		int text_end = DrawStationCoverageAreaText(4, 50, SCT_ALL, rad, false);
ca61cbfca47a (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 9282
diff changeset
   298
		text_end = DrawStationCoverageAreaText(4, text_end + 4, SCT_ALL, rad, true) + 4;
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   299
		if (text_end != this->widget[BDSW_BACKGROUND].bottom) {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   300
			this->SetDirty();
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   301
			ResizeWindowForWidget(this, 2, 0, text_end - this->widget[BDSW_BACKGROUND].bottom);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   302
			this->SetDirty();
8919
b627c71f9cc3 (svn r11993) -Fix: Resize station/roadstop/dock/airport construction windows if cargo acceptance list is too long.
peter1138
parents: 8909
diff changeset
   303
		}
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   304
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   305
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   306
	virtual void OnClick(Point pt, int widget)
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   307
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   308
		switch (widget) {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   309
			case BDSW_LT_OFF:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   310
			case BDSW_LT_ON:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   311
				this->RaiseWidget(_station_show_coverage + BDSW_LT_OFF);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   312
				_station_show_coverage = (widget != BDSW_LT_OFF);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   313
				this->LowerWidget(_station_show_coverage + BDSW_LT_OFF);
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   314
				SndPlayFx(SND_15_BEEP);
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   315
				this->SetDirty();
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   316
				break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   317
		}
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   318
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   320
	virtual void OnTick()
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   321
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   322
		CheckRedrawStationCoverage(this);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   323
	}
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   324
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   326
static const Widget _build_dock_station_widgets[] = {
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   327
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                         STR_018B_CLOSE_WINDOW},             // BDSW_CLOSE
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   328
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   147,     0,    13, STR_3068_DOCK,                    STR_018C_WINDOW_TITLE_DRAG_THIS},   // BDSW_CAPTION
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   329
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   147,    14,    74, 0x0,                              STR_NULL},                          // BDSW_BACKGROUND
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   330
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    14,    73,    30,    40, STR_02DB_OFF,                     STR_3065_DON_T_HIGHLIGHT_COVERAGE}, // BDSW_LT_OFF
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   331
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    74,   133,    30,    40, STR_02DA_ON,                      STR_3064_HIGHLIGHT_COVERAGE_AREA},  // BDSW_LT_ON
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   332
{      WWT_LABEL,   RESIZE_NONE,     7,     0,   147,    17,    30, STR_3066_COVERAGE_AREA_HIGHLIGHT, STR_NULL},                          // BDSW_INFO
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 0
diff changeset
   333
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   334
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   335
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
static const WindowDesc _build_dock_station_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7737
diff changeset
   337
	WDP_AUTO, WDP_AUTO, 148, 75, 148, 75,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   338
	WC_BUILD_STATION, WC_BUILD_TOOLBAR,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   339
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   340
	_build_dock_station_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   341
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   342
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   343
static void ShowBuildDockStationPicker(Window *parent)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   344
{
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   345
	new BuildDocksStationWindow(&_build_dock_station_desc, parent);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   346
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   347
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   348
struct BuildDocksDepotWindow : public PickerWindowBase {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   349
private:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   350
	enum BuildDockDepotWidgets {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   351
		BDDW_CLOSE,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   352
		BDDW_CAPTION,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   353
		BDDW_BACKGROUND,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   354
		BDDW_X,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   355
		BDDW_Y,
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   356
	};
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   357
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   358
	static void UpdateDocksDirection()
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   359
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   360
		if (_ship_depot_direction != AXIS_X) {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   361
			SetTileSelectSize(1, 2);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   362
		} else {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   363
			SetTileSelectSize(2, 1);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   364
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   365
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   366
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   367
public:
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   368
	BuildDocksDepotWindow(const WindowDesc *desc, Window *parent) : PickerWindowBase(desc, parent)
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   369
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   370
		this->LowerWidget(_ship_depot_direction + BDDW_X);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   371
		UpdateDocksDirection();
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   372
		this->FindWindowPlacementAndResize(desc);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   373
	}
4719
413b21513ef7 (svn r6631) -Codechange: Use accessors for click_state.
belugas
parents: 4634
diff changeset
   374
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   375
	virtual void OnPaint()
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   376
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   377
		this->DrawWidgets();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   378
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   379
		DrawShipDepotSprite(67, 35, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
		DrawShipDepotSprite(35, 51, 1);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   381
		DrawShipDepotSprite(135, 35, 2);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   382
		DrawShipDepotSprite(167, 51, 3);
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   383
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   384
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   385
	virtual void OnClick(Point pt, int widget)
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   386
	{
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   387
		switch (widget) {
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   388
			case BDDW_X:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   389
			case BDDW_Y:
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   390
				this->RaiseWidget(_ship_depot_direction + BDDW_X);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   391
				_ship_depot_direction = (widget == BDDW_X ? AXIS_X : AXIS_Y);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   392
				this->LowerWidget(_ship_depot_direction + BDDW_X);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   393
				SndPlayFx(SND_15_BEEP);
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   394
				UpdateDocksDirection();
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   395
				this->SetDirty();
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   396
				break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   397
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   398
	}
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   399
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   400
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   401
static const Widget _build_docks_depot_widgets[] = {
10601
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   402
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                        STR_018B_CLOSE_WINDOW},                  // BDDW_CLOSE
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   403
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   203,     0,    13, STR_3800_SHIP_DEPOT_ORIENTATION, STR_018C_WINDOW_TITLE_DRAG_THIS},        // BDDW_CAPTION
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   404
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   203,    14,    85, 0x0,                             STR_NULL},                               // BDDW_BACKGROUND
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   405
{      WWT_PANEL,   RESIZE_NONE,    14,     3,   100,    17,    82, 0x0,                             STR_3803_SELECT_SHIP_DEPOT_ORIENTATION}, // BDDW_X
c843d0e06015 (svn r13145) -Codechange: make classes of the BuildDocks[Depot|Station]Window.
glx
parents: 10595
diff changeset
   406
{      WWT_PANEL,   RESIZE_NONE,    14,   103,   200,    17,    82, 0x0,                             STR_3803_SELECT_SHIP_DEPOT_ORIENTATION}, // BDDW_Y
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 0
diff changeset
   407
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   408
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   409
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   410
static const WindowDesc _build_docks_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7737
diff changeset
   411
	WDP_AUTO, WDP_AUTO, 204, 86, 204, 86,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   412
	WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   413
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   414
	_build_docks_depot_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   415
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   416
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   417
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   418
static void ShowBuildDocksDepotPicker(Window *parent)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   419
{
10686
8e02259158f3 (svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.
frosch
parents: 10671
diff changeset
   420
	new BuildDocksDepotWindow(&_build_docks_depot_desc, parent);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   423
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6451
diff changeset
   424
void InitializeDockGui()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   425
{
3157
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2952
diff changeset
   426
	_ship_depot_direction = AXIS_X;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   427
}