src/depot_gui.cpp
author smatz
Tue, 13 May 2008 22:02:14 +0000
changeset 10535 7f2ce934723b
parent 10525 da5bc725cda4
child 10547 fe1e87e92e20
permissions -rw-r--r--
(svn r13079) -Fix: certain compilers give false warning about uninitialized variable
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
     1
/* $Id$ */
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
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: 10411
diff changeset
     3
/** @file depot_gui.cpp The GUI for depots. */
6451
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6369
diff changeset
     4
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
     5
#include "stdafx.h"
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
     6
#include "openttd.h"
4654
71048359c6ac (svn r6530) -Fix r6529: added missing header file (oops)
bjarni
parents: 4653
diff changeset
     7
#include "train.h"
71048359c6ac (svn r6530) -Fix r6529: added missing header file (oops)
bjarni
parents: 4653
diff changeset
     8
#include "roadveh.h"
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
     9
#include "ship.h"
4653
091f530bae28 (svn r6529) -Fix r6513: [depot window] added missing switch in CcCloneVehicle()
bjarni
parents: 4652
diff changeset
    10
#include "aircraft.h"
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    11
#include "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: 8578
diff changeset
    12
#include "textbuf_gui.h"
8720
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8640
diff changeset
    13
#include "viewport_func.h"
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8640
diff changeset
    14
#include "gfx_func.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8610
diff changeset
    15
#include "command_func.h"
10222
b6919c94cc77 (svn r12754) -Codechange: split depot.h into depot_map.h, depot_func.h and depot_base.h and remove quite a lot of unneeded (before this) includes of depot.h.
rubidium
parents: 9324
diff changeset
    16
#include "depot_base.h"
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    17
#include "vehicle_gui.h"
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    18
#include "station_map.h"
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    19
#include "newgrf_engine.h"
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    20
#include "spritecache.h"
8610
17cc343a23dd (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8603
diff changeset
    21
#include "strings_func.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
    22
#include "window_func.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8627
diff changeset
    23
#include "vehicle_func.h"
8750
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8733
diff changeset
    24
#include "player_func.h"
9280
9c03416d26b1 (svn r12488) -Codechange: split order.h into order_base.h and order_func.h.
rubidium
parents: 9081
diff changeset
    25
#include "order_func.h"
10222
b6919c94cc77 (svn r12754) -Codechange: split depot.h into depot_map.h, depot_func.h and depot_base.h and remove quite a lot of unneeded (before this) includes of depot.h.
rubidium
parents: 9324
diff changeset
    26
#include "depot_base.h"
10445
2dd7d9d0a957 (svn r12987) -Codechange: split viewport and tile selection.
rubidium
parents: 10434
diff changeset
    27
#include "tilehighlight_func.h"
4649
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    28
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    29
#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
    30
#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
    31
4649
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    32
/*
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    33
 * Since all depot window sizes aren't the same, we need to modify sizes a little.
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    34
 * It's done with the following arrays of widget indexes. Each of them tells if a widget side should be moved and in what direction.
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    35
 * How long they should be moved and for what window types are controlled in ShowDepotWindow()
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    36
 */
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    37
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    38
/* Names of the widgets. Keep them in the same order as in the widget array */
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
    39
enum DepotWindowWidgets {
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    40
	DEPOT_WIDGET_CLOSEBOX = 0,
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    41
	DEPOT_WIDGET_CAPTION,
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    42
	DEPOT_WIDGET_STICKY,
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    43
	DEPOT_WIDGET_SELL,
4659
2f99f35d5813 (svn r6542) -Feature: [depot window] added a "sell all vehicles in depot" button
bjarni
parents: 4654
diff changeset
    44
	DEPOT_WIDGET_SELL_CHAIN,
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    45
	DEPOT_WIDGET_SELL_ALL,
4699
1f2d7bc70d0c (svn r6609) - Move the mass stop/start buttons of the depot window to the bottom row, to match all other vehicle list windows, and make it look a bit neater, (Suggested by skidd13)
peter1138
parents: 4690
diff changeset
    46
	DEPOT_WIDGET_AUTOREPLACE,
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    47
	DEPOT_WIDGET_MATRIX,
6451
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6369
diff changeset
    48
	DEPOT_WIDGET_V_SCROLL, ///< Vertical scrollbar
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6369
diff changeset
    49
	DEPOT_WIDGET_H_SCROLL, ///< Horizontal scrollbar
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    50
	DEPOT_WIDGET_BUILD,
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    51
	DEPOT_WIDGET_CLONE,
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    52
	DEPOT_WIDGET_LOCATION,
4681
7d7a89b32dd0 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4670
diff changeset
    53
	DEPOT_WIDGET_VEHICLE_LIST,
4699
1f2d7bc70d0c (svn r6609) - Move the mass stop/start buttons of the depot window to the bottom row, to match all other vehicle list windows, and make it look a bit neater, (Suggested by skidd13)
peter1138
parents: 4690
diff changeset
    54
	DEPOT_WIDGET_STOP_ALL,
1f2d7bc70d0c (svn r6609) - Move the mass stop/start buttons of the depot window to the bottom row, to match all other vehicle list windows, and make it look a bit neater, (Suggested by skidd13)
peter1138
parents: 4690
diff changeset
    55
	DEPOT_WIDGET_START_ALL,
4646
c6f774de4f6f (svn r6522) -Feature: [depot window] the buttons are now "scaled" resized
bjarni
parents: 4644
diff changeset
    56
	DEPOT_WIDGET_RESIZE,
4649
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    57
};
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    58
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    59
/* Widget array for all depot windows.
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    60
 * If a widget is needed in some windows only (like train specific), add it for all windows
4702
5179f9adc5b3 (svn r6612) -Codechange: Use accessors for hidden_state.
belugas
parents: 4699
diff changeset
    61
 * and use HideWindowWidget in ShowDepotWindow() to remove it in the windows where it should not be
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    62
 * Keep the widget numbers in sync with the enum or really bad stuff will happen!!! */
4649
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    63
eced6da682cb (svn r6525) -Codechange r6513: altered how to control how to move widgets around in the window. Hopefully it's a bit easier to understand now
bjarni
parents: 4646
diff changeset
    64
/* When adding widgets, place them as you would place them for the ship depot and define how you want it to move in widget_moves[]
4650
1a39612a6291 (svn r6526) -Codechange: [depot window] the train only widgets are now resized depending on the size of other widgets
bjarni
parents: 4649
diff changeset
    65
 * If you want a widget for one window only, set it to be hidden in ShowDepotWindow() for the windows where you don't want it
1a39612a6291 (svn r6526) -Codechange: [depot window] the train only widgets are now resized depending on the size of other widgets
bjarni
parents: 4649
diff changeset
    66
 * NOTE: the train only widgets are moved/resized in ShowDepotWindow() so they follow certain other widgets if they are moved to ensure that they stick together.
1a39612a6291 (svn r6526) -Codechange: [depot window] the train only widgets are now resized depending on the size of other widgets
bjarni
parents: 4649
diff changeset
    67
 *    Changing the size of those here will not have an effect at all. It should be done in ShowDepotWindow()
1a39612a6291 (svn r6526) -Codechange: [depot window] the train only widgets are now resized depending on the size of other widgets
bjarni
parents: 4649
diff changeset
    68
 */
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    69
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    70
/*
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    71
 * Some of the widgets are placed outside the window (negative coordinates).
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    72
 * The reason is that they are placed relatively to the matrix and the matrix is just one pixel (in 0, 14).
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    73
 * The matrix and the rest of the window will be resized when the size of the boxes is set and then all the widgets will be inside the window.
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    74
 */
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    75
static const Widget _depot_widgets[] = {
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    76
	{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,            STR_018B_CLOSE_WINDOW},            // DEPOT_WIDGET_CLOSEBOX
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    77
	{    WWT_CAPTION,  RESIZE_RIGHT,    14,    11,    23,     0,    13, 0x0,                 STR_018C_WINDOW_TITLE_DRAG_THIS},  // DEPOT_WIDGET_CAPTION
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    78
	{  WWT_STICKYBOX,     RESIZE_LR,    14,    24,    35,     0,    13, 0x0,                 STR_STICKY_BUTTON},                // DEPOT_WIDGET_STICKY
4640
cabffc571e55 (svn r6515) -Feature: added "start all" and "stop all" buttons to the depot windows
bjarni
parents: 4638
diff changeset
    79
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4935
diff changeset
    80
	/* Widgets are set up run-time */
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    81
	{     WWT_IMGBTN,    RESIZE_LRB,    14,     1,    23,    14,   -32, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_SELL
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    82
	{     WWT_IMGBTN,   RESIZE_LRTB,    14,     1,    23,   -55,   -32, SPR_SELL_CHAIN_TRAIN,STR_DRAG_WHOLE_TRAIN_TO_SELL_TIP}, // DEPOT_WIDGET_SELL_CHAIN, trains only
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    83
	{ WWT_PUSHIMGBTN,   RESIZE_LRTB,    14,     1,    23,   -31,    -9, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_SELL_ALL
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    84
	{ WWT_PUSHIMGBTN,   RESIZE_LRTB,    14,     1,    23,    -8,    14, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_AUTOREPLACE
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    85
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    86
	{     WWT_MATRIX,     RESIZE_RB,    14,     0,     0,    14,    14, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_MATRIX
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    87
	{  WWT_SCROLLBAR,    RESIZE_LRB,    14,    24,    35,    14,    14, 0x0,                 STR_0190_SCROLL_BAR_SCROLLS_LIST}, // DEPOT_WIDGET_V_SCROLL
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    88
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    89
	{ WWT_HSCROLLBAR,    RESIZE_RTB,    14,     0,     0,     3,    14, 0x0,                 STR_HSCROLL_BAR_SCROLLS_LIST},     // DEPOT_WIDGET_H_SCROLL, trains only
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    90
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    91
	/* The buttons in the bottom of the window. left and right is not important as they are later resized to be equal in size
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
    92
	 * This calculation is based on right in DEPOT_WIDGET_LOCATION and it presumes left of DEPOT_WIDGET_BUILD is 0            */
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    93
	{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,     0,    15,    26, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_BUILD
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    94
	{    WWT_TEXTBTN,     RESIZE_TB,    14,     0,     0,    15,    26, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_CLONE
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    95
	{ WWT_PUSHTXTBTN,    RESIZE_RTB,    14,     0,   -12,    15,    26, STR_00E4_LOCATION,   STR_NULL},                         // DEPOT_WIDGET_LOCATION
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    96
	{ WWT_PUSHTXTBTN,   RESIZE_LRTB,    14,   -11,     0,    15,    26, 0x0,                 STR_NULL},                         // DEPOT_WIDGET_VEHICLE_LIST
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    97
	{ WWT_PUSHIMGBTN,   RESIZE_LRTB,    14,     1,    11,    15,    26, SPR_FLAG_VEH_STOPPED,STR_NULL},                         // DEPOT_WIDGET_STOP_ALL
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    98
	{ WWT_PUSHIMGBTN,   RESIZE_LRTB,    14,    12,    23,    15,    26, SPR_FLAG_VEH_RUNNING,STR_NULL},                         // DEPOT_WIDGET_START_ALL
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
    99
	{  WWT_RESIZEBOX,   RESIZE_LRTB,    14,    24,    35,    15,    26, 0x0,                 STR_RESIZE_BUTTON},                // DEPOT_WIDGET_RESIZE
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   100
	{   WIDGETS_END},
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   101
};
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   102
10508
c5f6299d2f54 (svn r13051) -Codechange: depot_d belongs in depot_gui.cpp.
rubidium
parents: 10462
diff changeset
   103
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   104
static const WindowDesc _train_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   105
	WDP_AUTO, WDP_AUTO, 36, 27, 36, 27,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6075
diff changeset
   106
	WC_VEHICLE_DEPOT, WC_NONE,
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   107
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   108
	_depot_widgets,
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   109
	NULL
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   110
};
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   111
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   112
static const WindowDesc _road_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   113
	WDP_AUTO, WDP_AUTO, 36, 27, 36, 27,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6075
diff changeset
   114
	WC_VEHICLE_DEPOT, WC_NONE,
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   115
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   116
	_depot_widgets,
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   117
	NULL
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   118
};
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   119
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   120
static const WindowDesc _ship_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   121
	WDP_AUTO, WDP_AUTO, 36, 27, 36, 27,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6075
diff changeset
   122
	WC_VEHICLE_DEPOT, WC_NONE,
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   123
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   124
	_depot_widgets,
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   125
	NULL
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   126
};
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   127
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   128
static const WindowDesc _aircraft_depot_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   129
	WDP_AUTO, WDP_AUTO, 36, 27, 36, 27,
6144
5a0ffbf27ced (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 6075
diff changeset
   130
	WC_VEHICLE_DEPOT, WC_NONE,
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   131
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   132
	_depot_widgets,
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   133
	NULL
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   134
};
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   135
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   136
extern int WagonLengthToPixels(int len);
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   137
extern void DepotSortList(Vehicle **v, uint16 length);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   138
7974
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   139
/**
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   140
 * This is the Callback method after the cloning attempt of a vehicle
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   141
 * @param success indicates completion (or not) of the operation
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   142
 * @param tile unused
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   143
 * @param p1 unused
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   144
 * @param p2 unused
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   145
 */
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   146
void CcCloneVehicle(bool success, TileIndex tile, uint32 p1, uint32 p2)
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   147
{
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   148
	if (!success) return;
7974
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   149
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   150
	Vehicle *v = GetVehicle(_new_vehicle_id);
6fcdebd75c19 (svn r10985) -Codechange: unify/remove duplicate CcClone(Aircraft|RoadVeh|Ship|Train) in favour of CcCloneVehicle.
rubidium
parents: 7837
diff changeset
   151
7982
539e32cc37ce (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7975
diff changeset
   152
	ShowVehicleViewWindow(v);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   153
}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   154
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   155
static void TrainDepotMoveVehicle(Vehicle *wagon, VehicleID sel, Vehicle *head)
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   156
{
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   157
	Vehicle *v;
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   158
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   159
	v = GetVehicle(sel);
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   160
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   161
	if (v == wagon) return;
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   162
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   163
	if (wagon == NULL) {
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   164
		if (head != NULL) wagon = GetLastVehicleInChain(head);
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   165
	} else  {
7993
76b0eb3e19c9 (svn r11011) -Fix [FS#1129]: GetFirstVehicleInChain did change the game state while being marked const.
rubidium
parents: 7988
diff changeset
   166
		wagon = wagon->Previous();
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   167
		if (wagon == NULL) return;
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   168
	}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   169
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   170
	if (wagon == v) return;
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   171
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   172
	DoCommandP(v->tile, v->index + ((wagon == NULL ? INVALID_VEHICLE : wagon->index) << 16), _ctrl_pressed ? 1 : 0, NULL, CMD_MOVE_RAIL_VEHICLE | CMD_MSG(STR_8837_CAN_T_MOVE_VEHICLE));
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   173
}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   174
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   175
/* Array to hold the block sizes
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   176
 * First part is the vehicle type, while the last is 0 = x, 1 = y */
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   177
uint _block_sizes[4][2];
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   178
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   179
/* Array to hold the default resize capacities
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   180
* First part is the vehicle type, while the last is 0 = x, 1 = y */
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   181
const uint _resize_cap[][2] = {
6897
dcee0e80200b (svn r9531) -Fix (r8661) [FS#692]: The scroll settings were wrong for trains as only a part
maedhros
parents: 6585
diff changeset
   182
/* VEH_TRAIN */    {6, 10 * 29},
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   183
/* VEH_ROAD */     {5, 5},
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   184
/* VEH_SHIP */     {3, 3},
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   185
/* VEH_AIRCRAFT */ {3, 4},
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   186
};
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   187
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   188
static void ResizeDefaultWindowSizeForTrains()
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   189
{
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   190
	_block_sizes[VEH_TRAIN][0] = 1;
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   191
	_block_sizes[VEH_TRAIN][1] = GetVehicleListHeight(VEH_TRAIN);
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   192
}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   193
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   194
static void ResizeDefaultWindowSizeForRoadVehicles()
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   195
{
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   196
	_block_sizes[VEH_ROAD][0] = 56;
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   197
	_block_sizes[VEH_ROAD][1] = GetVehicleListHeight(VEH_ROAD);
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   198
}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   199
7134
c5a90dd41166 (svn r9869) -Codechange: replace some bytes with VehicleType, i.e. more type strictness.
rubidium
parents: 7117
diff changeset
   200
static void ResizeDefaultWindowSize(VehicleType type)
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   201
{
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   202
	uint max_width  = 0;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   203
	uint max_height = 0;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   204
10382
d1d4452acbfc (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 10376
diff changeset
   205
	const Engine *e;
d1d4452acbfc (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 10376
diff changeset
   206
	FOR_ALL_ENGINES_OF_TYPE(e, type) {
d1d4452acbfc (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 10376
diff changeset
   207
		EngineID eid = e->index;
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   208
		uint x, y;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   209
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   210
		switch (type) {
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   211
			default: NOT_REACHED();
10376
a1207076a5c7 (svn r12917) -Codechange: standardise variable names called with FOR_ALL_ENGINEIDS_OF_TYPE
peter1138
parents: 10229
diff changeset
   212
			case VEH_SHIP:     GetShipSpriteSize(    eid, x, y); break;
a1207076a5c7 (svn r12917) -Codechange: standardise variable names called with FOR_ALL_ENGINEIDS_OF_TYPE
peter1138
parents: 10229
diff changeset
   213
			case VEH_AIRCRAFT: GetAircraftSpriteSize(eid, x, y); break;
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   214
		}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   215
		if (x > max_width)  max_width  = x;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   216
		if (y > max_height) max_height = y;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   217
	}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   218
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   219
	switch (type) {
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   220
		default: NOT_REACHED();
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   221
		case VEH_SHIP:
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   222
			_block_sizes[VEH_SHIP][0] = max(90U, max_width + 20); // we need 20 pixels from the right edge to the sprite
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   223
			break;
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   224
		case VEH_AIRCRAFT:
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   225
			_block_sizes[VEH_AIRCRAFT][0] = max(74U, max_width);
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   226
			break;
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   227
	}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   228
	_block_sizes[type][1] = max(GetVehicleListHeight(type), max_height);
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   229
}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   230
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   231
/* Set the size of the blocks in the window so we can be sure that they are big enough for the vehicle sprites in the current game
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   232
 * We will only need to call this once for each game */
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   233
void InitDepotWindowBlockSizes()
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   234
{
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   235
	ResizeDefaultWindowSizeForTrains();
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   236
	ResizeDefaultWindowSizeForRoadVehicles();
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   237
	ResizeDefaultWindowSize(VEH_SHIP);
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   238
	ResizeDefaultWindowSize(VEH_AIRCRAFT);
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   239
}
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   240
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   241
static void DepotSellAllConfirmationCallback(Window *w, bool confirmed);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   242
const Sprite *GetAircraftSprite(EngineID engine);
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   243
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   244
struct DepotWindow : Window {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   245
	VehicleID sel;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   246
	VehicleType type;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   247
	bool generate_list;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   248
	uint16 engine_list_length;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   249
	uint16 wagon_list_length;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   250
	uint16 engine_count;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   251
	uint16 wagon_count;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   252
	Vehicle **vehicle_list;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   253
	Vehicle **wagon_list;
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   254
10525
da5bc725cda4 (svn r13069) -Codechange: it is no longer needed to pass a void *data pointer with the WE_CREATE message because nothing uses it anymore.
rubidium
parents: 10523
diff changeset
   255
	DepotWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   256
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   257
		this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   258
		this->vehicle_list  = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   259
		this->wagon_list    = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   260
		this->engine_count  = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   261
		this->wagon_count   = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   262
		this->generate_list = true;
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6206
diff changeset
   263
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   264
		this->FindWindowPlacementAndResize(desc);
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   265
	}
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   266
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   267
	~DepotWindow()
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   268
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   269
		DeleteWindowById(WC_BUILD_VEHICLE, this->window_number);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   270
		free((void*)this->vehicle_list);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   271
		free((void*)this->wagon_list);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   272
	}
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   273
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   274
	/** Draw a vehicle in the depot window in the box with the top left corner at x,y
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   275
	* @param *w Window to draw in
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   276
	* @param *v Vehicle to draw
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   277
	* @param x Left side of the box to draw in
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   278
	* @param y Top of the box to draw in
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   279
	*/
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   280
	void DrawVehicleInDepot(Window *w, const Vehicle *v, int x, int y)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   281
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   282
		byte diff_x = 0, diff_y = 0;
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   283
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   284
		int sprite_y = y + this->resize.step_height - GetVehicleListHeight(v->type);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   285
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   286
		switch (v->type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   287
			case VEH_TRAIN:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   288
				DrawTrainImage(v, x + 21, sprite_y, this->sel, this->hscroll.cap + 4, this->hscroll.pos);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   289
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   290
				/* Number of wagons relative to a standard length wagon (rounded up) */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   291
				SetDParam(0, (v->u.rail.cached_total_length + 7) / 8);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   292
				DrawStringRightAligned(this->widget[DEPOT_WIDGET_MATRIX].right - 1, y + 4, STR_TINY_BLACK, TC_FROMSTRING); // Draw the counter
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   293
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   294
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   295
			case VEH_ROAD:     DrawRoadVehImage( v, x + 24, sprite_y, this->sel, 1); break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   296
			case VEH_SHIP:     DrawShipImage(    v, x + 19, sprite_y - 1, this->sel); break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   297
			case VEH_AIRCRAFT: {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   298
				const Sprite *spr = GetSprite(v->GetImage(DIR_W));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   299
				DrawAircraftImage(v, x + 12,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   300
									y + max(spr->height + spr->y_offs - 14, 0), // tall sprites needs an y offset
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   301
									this->sel);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   302
			} break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   303
			default: NOT_REACHED();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   304
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   305
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   306
		if (this->resize.step_height == 14) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   307
			/* VEH_TRAIN and VEH_ROAD, which are low */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   308
			diff_x = 15;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   309
		} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   310
			/* VEH_SHIP and VEH_AIRCRAFT, which are tall */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   311
			diff_y = 12;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   312
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   313
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   314
		DrawSprite((v->vehstatus & VS_STOPPED) ? SPR_FLAG_VEH_STOPPED : SPR_FLAG_VEH_RUNNING, PAL_NONE, x + diff_x, y + diff_y);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   315
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   316
		SetDParam(0, v->unitnumber);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   317
		DrawString(x, y + 2, (uint16)(v->max_age - 366) >= v->age ? STR_00E2 : STR_00E3, TC_FROMSTRING);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   318
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   319
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   320
	void DrawDepotWindow(Window *w)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   321
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   322
		Vehicle **vl = this->vehicle_list;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   323
		TileIndex tile = this->window_number;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   324
		int x, y, i, maxval;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   325
		uint16 hnum;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   326
		uint16 num = this->engine_count;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   327
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   328
		/* Set the row and number of boxes in each row based on the number of boxes drawn in the matrix */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   329
		uint16 rows_in_display   = this->widget[DEPOT_WIDGET_MATRIX].data >> 8;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   330
		uint16 boxes_in_each_row = this->widget[DEPOT_WIDGET_MATRIX].data & 0xFF;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   331
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   332
		/* setup disabled buttons */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   333
		this->SetWidgetsDisabledState(!IsTileOwner(tile, _local_player),
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   334
			DEPOT_WIDGET_STOP_ALL,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   335
			DEPOT_WIDGET_START_ALL,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   336
			DEPOT_WIDGET_SELL,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   337
			DEPOT_WIDGET_SELL_CHAIN,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   338
			DEPOT_WIDGET_SELL_ALL,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   339
			DEPOT_WIDGET_BUILD,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   340
			DEPOT_WIDGET_CLONE,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   341
			DEPOT_WIDGET_AUTOREPLACE,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   342
			WIDGET_LIST_END);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   343
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   344
		/* determine amount of items for scroller */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   345
		if (this->type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   346
			hnum = 8;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   347
			for (num = 0; num < this->engine_count; num++) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   348
				const Vehicle *v = vl[num];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   349
				hnum = max(hnum, v->u.rail.cached_total_length);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   350
			}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   351
			/* Always have 1 empty row, so people can change the setting of the train */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   352
			SetVScrollCount(w, this->engine_count + this->wagon_count + 1);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   353
			SetHScrollCount(w, WagonLengthToPixels(hnum));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   354
		} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   355
			SetVScrollCount(w, (num + this->hscroll.cap - 1) / this->hscroll.cap);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   356
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   357
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   358
		/* locate the depot struct */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   359
		if (this->type == VEH_AIRCRAFT) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   360
			SetDParam(0, GetStationIndex(tile)); // Airport name
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   361
		} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   362
			Depot *depot = GetDepotByTile(tile);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   363
			assert(depot != NULL);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   364
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   365
			SetDParam(0, depot->town_index);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   366
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   367
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   368
		DrawWindowWidgets(w);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   369
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   370
		num = this->vscroll.pos * boxes_in_each_row;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   371
		maxval = min(this->engine_count, num + (rows_in_display * boxes_in_each_row));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   372
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   373
		for (x = 2, y = 15; num < maxval; y += this->resize.step_height, x = 2) { // Draw the rows
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   374
			byte i;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   375
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   376
			for (i = 0; i < boxes_in_each_row && num < maxval; i++, num++, x += this->resize.step_width) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   377
				/* Draw all vehicles in the current row */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   378
				const Vehicle *v = vl[num];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   379
				DrawVehicleInDepot(w, v, x, y);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   380
			}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   381
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   382
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   383
		maxval = min(this->engine_count + this->wagon_count, (this->vscroll.pos * boxes_in_each_row) + (rows_in_display * boxes_in_each_row));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   384
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   385
		/* draw the train wagons, that do not have an engine in front */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   386
		for (; num < maxval; num++, y += 14) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   387
			const Vehicle *v = this->wagon_list[num - this->engine_count];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   388
			const Vehicle *u;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   389
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   390
			DrawTrainImage(v, x + 50, y, this->sel, this->hscroll.cap - 29, 0);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   391
			DrawString(x, y + 2, STR_8816, TC_FROMSTRING);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   392
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   393
			/*Draw the train counter */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   394
			i = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   395
			u = v;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   396
			do i++; while ((u = u->Next()) != NULL); // Determine length of train
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   397
			SetDParam(0, i);                      // Set the counter
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   398
			DrawStringRightAligned(this->widget[DEPOT_WIDGET_MATRIX].right - 1, y + 4, STR_TINY_BLACK, TC_FROMSTRING); // Draw the counter
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   399
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   400
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   401
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   402
	struct GetDepotVehiclePtData {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   403
		Vehicle *head;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   404
		Vehicle *wagon;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   405
	};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   406
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   407
	enum DepotGUIAction {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   408
		MODE_ERROR,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   409
		MODE_DRAG_VEHICLE,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   410
		MODE_SHOW_VEHICLE,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   411
		MODE_START_STOP,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   412
	};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   413
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   414
	DepotGUIAction GetVehicleFromDepotWndPt(int x, int y, Vehicle **veh, GetDepotVehiclePtData *d) const
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   415
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   416
		Vehicle **vl = this->vehicle_list;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   417
		uint xt, row, xm = 0, ym = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   418
		int pos, skip = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   419
		uint16 boxes_in_each_row = this->widget[DEPOT_WIDGET_MATRIX].data & 0xFF;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   420
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   421
		if (this->type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   422
			xt = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   423
			x -= 23;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   424
		} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   425
			xt = x / this->resize.step_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   426
			xm = x % this->resize.step_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   427
			if (xt >= this->hscroll.cap) return MODE_ERROR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   428
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   429
			ym = (y - 14) % this->resize.step_height;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   430
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   431
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   432
		row = (y - 14) / this->resize.step_height;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   433
		if (row >= this->vscroll.cap) return MODE_ERROR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   434
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   435
		pos = ((row + this->vscroll.pos) * boxes_in_each_row) + xt;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   436
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   437
		if (this->engine_count + this->wagon_count <= pos) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   438
			if (this->type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   439
				d->head  = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   440
				d->wagon = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   441
				return MODE_DRAG_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   442
			} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   443
				return MODE_ERROR; // empty block, so no vehicle is selected
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   444
			}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   445
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   446
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   447
		if (this->engine_count > pos) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   448
			*veh = vl[pos];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   449
			skip = this->hscroll.pos;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   450
		} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   451
			vl = this->wagon_list;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   452
			pos -= this->engine_count;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   453
			*veh = vl[pos];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   454
			/* free wagons don't have an initial loco. */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   455
			x -= _traininfo_vehicle_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   456
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   457
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   458
		switch (this->type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   459
			case VEH_TRAIN: {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   460
				Vehicle *v = *veh;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   461
				d->head = d->wagon = v;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   462
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   463
				/* either pressed the flag or the number, but only when it's a loco */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   464
				if (x < 0 && IsFrontEngine(v)) return (x >= -10) ? MODE_START_STOP : MODE_SHOW_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   465
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   466
				skip = (skip * 8) / _traininfo_vehicle_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   467
				x = (x * 8) / _traininfo_vehicle_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   468
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   469
				/* Skip vehicles that are scrolled off the list */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   470
				x += skip;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   471
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   472
				/* find the vehicle in this row that was clicked */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   473
				while (v != NULL && (x -= v->u.rail.cached_veh_length) >= 0) v = v->Next();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   474
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   475
				/* if an articulated part was selected, find its parent */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   476
				while (v != NULL && IsArticulatedPart(v)) v = v->Previous();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   477
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   478
				d->wagon = v;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   479
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   480
				return MODE_DRAG_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   481
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   482
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   483
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   484
			case VEH_ROAD:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   485
				if (xm >= 24) return MODE_DRAG_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   486
				if (xm <= 16) return MODE_SHOW_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   487
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   488
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   489
			case VEH_SHIP:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   490
				if (xm >= 19) return MODE_DRAG_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   491
				if (ym <= 10) return MODE_SHOW_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   492
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   493
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   494
			case VEH_AIRCRAFT:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   495
				if (xm >= 12) return MODE_DRAG_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   496
				if (ym <= 12) return MODE_SHOW_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   497
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   498
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   499
			default: NOT_REACHED();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   500
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   501
		return MODE_START_STOP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   502
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   503
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   504
	void DepotClick(int x, int y)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   505
	{
10535
7f2ce934723b (svn r13079) -Fix: certain compilers give false warning about uninitialized variable
smatz
parents: 10525
diff changeset
   506
		GetDepotVehiclePtData gdvp = { NULL, NULL };
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   507
		Vehicle *v = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   508
		DepotGUIAction mode = this->GetVehicleFromDepotWndPt(x, y, &v, &gdvp);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   509
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   510
		/* share / copy orders */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   511
		if (_thd.place_mode != VHM_NONE && mode != MODE_ERROR) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   512
			_place_clicked_vehicle = (this->type == VEH_TRAIN ? gdvp.head : v);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   513
			return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   514
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   515
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   516
		if (this->type == VEH_TRAIN) v = gdvp.wagon;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   517
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   518
		switch (mode) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   519
			case MODE_ERROR: // invalid
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   520
				return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   521
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   522
			case MODE_DRAG_VEHICLE: { // start dragging of vehicle
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   523
				VehicleID sel = this->sel;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   524
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   525
				if (this->type == VEH_TRAIN && sel != INVALID_VEHICLE) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   526
					this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   527
					TrainDepotMoveVehicle(v, sel, gdvp.head);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   528
				} else if (v != NULL) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   529
					int image = v->GetImage(DIR_W);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   530
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   531
					this->sel = v->index;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   532
					this->SetDirty();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   533
					SetObjectToPlaceWnd(image, GetVehiclePalette(v), VHM_DRAG, this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   534
					_cursor.vehchain = _ctrl_pressed;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   535
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   536
			} break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   537
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   538
			case MODE_SHOW_VEHICLE: // show info window
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   539
				ShowVehicleViewWindow(v);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   540
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   541
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   542
			case MODE_START_STOP: { // click start/stop flag
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   543
				uint command;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   544
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   545
				switch (this->type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   546
					case VEH_TRAIN:    command = CMD_START_STOP_TRAIN | CMD_MSG(STR_883B_CAN_T_STOP_START_TRAIN);          break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   547
					case VEH_ROAD:     command = CMD_START_STOP_ROADVEH | CMD_MSG(STR_9015_CAN_T_STOP_START_ROAD_VEHICLE); break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   548
					case VEH_SHIP:     command = CMD_START_STOP_SHIP | CMD_MSG(STR_9818_CAN_T_STOP_START_SHIP);            break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   549
					case VEH_AIRCRAFT: command = CMD_START_STOP_AIRCRAFT | CMD_MSG(STR_A016_CAN_T_STOP_START_AIRCRAFT);    break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   550
					default: NOT_REACHED(); command = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   551
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   552
				DoCommandP(v->tile, v->index, 0, NULL, command);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   553
			} break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   554
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   555
			default: NOT_REACHED();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   556
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   557
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   558
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   559
	/**
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   560
	* Clones a vehicle
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   561
	* @param *v is the original vehicle to clone
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   562
	* @param *w is the window of the depot where the clone is build
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   563
	*/
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   564
	void HandleCloneVehClick(const Vehicle *v, const Window *w)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   565
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   566
		uint error_str;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   567
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   568
		if (v == NULL) return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   569
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   570
		if (!v->IsPrimaryVehicle()) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   571
			v = v->First();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   572
			/* Do nothing when clicking on a train in depot with no loc attached */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   573
			if (v->type == VEH_TRAIN && !IsFrontEngine(v)) return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   574
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   575
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   576
		switch (v->type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   577
			case VEH_TRAIN:    error_str = CMD_MSG(STR_882B_CAN_T_BUILD_RAILROAD_VEHICLE); break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   578
			case VEH_ROAD:     error_str = CMD_MSG(STR_9009_CAN_T_BUILD_ROAD_VEHICLE);     break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   579
			case VEH_SHIP:     error_str = CMD_MSG(STR_980D_CAN_T_BUILD_SHIP);             break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   580
			case VEH_AIRCRAFT: error_str = CMD_MSG(STR_A008_CAN_T_BUILD_AIRCRAFT);         break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   581
			default: return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   582
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   583
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   584
		DoCommandP(this->window_number, v->index, _ctrl_pressed ? 1 : 0, CcCloneVehicle, CMD_CLONE_VEHICLE | error_str);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   585
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   586
		ResetObjectToPlace();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   587
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   588
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   589
	void ResizeDepotButtons(Window *w)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   590
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   591
		ResizeButtons(w, DEPOT_WIDGET_BUILD, DEPOT_WIDGET_LOCATION);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   592
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   593
		if (this->type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   594
			/* Divide the size of DEPOT_WIDGET_SELL into two equally big buttons so DEPOT_WIDGET_SELL and DEPOT_WIDGET_SELL_CHAIN will get the same size.
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   595
			* This way it will stay the same even if DEPOT_WIDGET_SELL_CHAIN is resized for some reason                                                  */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   596
			this->widget[DEPOT_WIDGET_SELL_CHAIN].top    = ((this->widget[DEPOT_WIDGET_SELL_CHAIN].bottom - this->widget[DEPOT_WIDGET_SELL].top) / 2) + this->widget[DEPOT_WIDGET_SELL].top;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   597
			this->widget[DEPOT_WIDGET_SELL].bottom     = this->widget[DEPOT_WIDGET_SELL_CHAIN].top - 1;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   598
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   599
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   600
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   601
	/* Function to set up vehicle specific sprites and strings
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   602
	 * Only use this if it's the same widget, that's used for more than one vehicle type and it needs different text/sprites
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   603
	 * Vehicle specific text/sprites, that's in a widget, that's only shown for one vehicle type (like sell whole train) is set in the widget array
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   604
	 */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   605
	void SetupStringsForDepotWindow(VehicleType type)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   606
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   607
		switch (type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   608
			default: NOT_REACHED();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   609
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   610
			case VEH_TRAIN:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   611
				this->widget[DEPOT_WIDGET_CAPTION].data      = STR_8800_TRAIN_DEPOT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   612
				this->widget[DEPOT_WIDGET_STOP_ALL].tooltips = STR_MASS_STOP_DEPOT_TRAIN_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   613
				this->widget[DEPOT_WIDGET_START_ALL].tooltips= STR_MASS_START_DEPOT_TRAIN_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   614
				this->widget[DEPOT_WIDGET_SELL].tooltips     = STR_8841_DRAG_TRAIN_VEHICLE_TO_HERE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   615
				this->widget[DEPOT_WIDGET_SELL_ALL].tooltips = STR_DEPOT_SELL_ALL_BUTTON_TRAIN_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   616
				this->widget[DEPOT_WIDGET_MATRIX].tooltips   = STR_883F_TRAINS_CLICK_ON_TRAIN_FOR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   617
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   618
				this->widget[DEPOT_WIDGET_BUILD].data        = STR_8815_NEW_VEHICLES;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   619
				this->widget[DEPOT_WIDGET_BUILD].tooltips    = STR_8840_BUILD_NEW_TRAIN_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   620
				this->widget[DEPOT_WIDGET_CLONE].data        = STR_CLONE_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   621
				this->widget[DEPOT_WIDGET_CLONE].tooltips    = STR_CLONE_TRAIN_DEPOT_INFO;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   622
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   623
				this->widget[DEPOT_WIDGET_LOCATION].tooltips = STR_8842_CENTER_MAIN_VIEW_ON_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   624
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].data = STR_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   625
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].tooltips = STR_DEPOT_VEHICLE_ORDER_LIST_TRAIN_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   626
				this->widget[DEPOT_WIDGET_AUTOREPLACE].tooltips = STR_DEPOT_AUTOREPLACE_TRAIN_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   627
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   628
				/* Sprites */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   629
				this->widget[DEPOT_WIDGET_SELL].data        = SPR_SELL_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   630
				this->widget[DEPOT_WIDGET_SELL_ALL].data    = SPR_SELL_ALL_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   631
				this->widget[DEPOT_WIDGET_AUTOREPLACE].data = SPR_REPLACE_TRAIN;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   632
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   633
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   634
			case VEH_ROAD:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   635
				this->widget[DEPOT_WIDGET_CAPTION].data      = STR_9003_ROAD_VEHICLE_DEPOT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   636
				this->widget[DEPOT_WIDGET_STOP_ALL].tooltips = STR_MASS_STOP_DEPOT_ROADVEH_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   637
				this->widget[DEPOT_WIDGET_START_ALL].tooltips= STR_MASS_START_DEPOT_ROADVEH_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   638
				this->widget[DEPOT_WIDGET_SELL].tooltips     = STR_9024_DRAG_ROAD_VEHICLE_TO_HERE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   639
				this->widget[DEPOT_WIDGET_SELL_ALL].tooltips = STR_DEPOT_SELL_ALL_BUTTON_ROADVEH_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   640
				this->widget[DEPOT_WIDGET_MATRIX].tooltips   = STR_9022_VEHICLES_CLICK_ON_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   641
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   642
				this->widget[DEPOT_WIDGET_BUILD].data        = STR_9004_NEW_VEHICLES;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   643
				this->widget[DEPOT_WIDGET_BUILD].tooltips    = STR_9023_BUILD_NEW_ROAD_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   644
				this->widget[DEPOT_WIDGET_CLONE].data        = STR_CLONE_ROAD_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   645
				this->widget[DEPOT_WIDGET_CLONE].tooltips    = STR_CLONE_ROAD_VEHICLE_DEPOT_INFO;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   646
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   647
				this->widget[DEPOT_WIDGET_LOCATION].tooltips = STR_9025_CENTER_MAIN_VIEW_ON_ROAD;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   648
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].data = STR_LORRY;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   649
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].tooltips = STR_DEPOT_VEHICLE_ORDER_LIST_ROADVEH_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   650
				this->widget[DEPOT_WIDGET_AUTOREPLACE].tooltips = STR_DEPOT_AUTOREPLACE_ROADVEH_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   651
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   652
				/* Sprites */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   653
				this->widget[DEPOT_WIDGET_SELL].data        = SPR_SELL_ROADVEH;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   654
				this->widget[DEPOT_WIDGET_SELL_ALL].data    = SPR_SELL_ALL_ROADVEH;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   655
				this->widget[DEPOT_WIDGET_AUTOREPLACE].data = SPR_REPLACE_ROADVEH;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   656
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   657
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   658
			case VEH_SHIP:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   659
				this->widget[DEPOT_WIDGET_CAPTION].data      = STR_9803_SHIP_DEPOT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   660
				this->widget[DEPOT_WIDGET_STOP_ALL].tooltips = STR_MASS_STOP_DEPOT_SHIP_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   661
				this->widget[DEPOT_WIDGET_START_ALL].tooltips= STR_MASS_START_DEPOT_SHIP_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   662
				this->widget[DEPOT_WIDGET_SELL].tooltips     = STR_9821_DRAG_SHIP_TO_HERE_TO_SELL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   663
				this->widget[DEPOT_WIDGET_SELL_ALL].tooltips = STR_DEPOT_SELL_ALL_BUTTON_SHIP_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   664
				this->widget[DEPOT_WIDGET_MATRIX].tooltips   = STR_981F_SHIPS_CLICK_ON_SHIP_FOR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   665
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   666
				this->widget[DEPOT_WIDGET_BUILD].data        = STR_9804_NEW_SHIPS;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   667
				this->widget[DEPOT_WIDGET_BUILD].tooltips    = STR_9820_BUILD_NEW_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   668
				this->widget[DEPOT_WIDGET_CLONE].data        = STR_CLONE_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   669
				this->widget[DEPOT_WIDGET_CLONE].tooltips    = STR_CLONE_SHIP_DEPOT_INFO;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   670
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   671
				this->widget[DEPOT_WIDGET_LOCATION].tooltips = STR_9822_CENTER_MAIN_VIEW_ON_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   672
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].data = STR_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   673
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].tooltips = STR_DEPOT_VEHICLE_ORDER_LIST_SHIP_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   674
				this->widget[DEPOT_WIDGET_AUTOREPLACE].tooltips = STR_DEPOT_AUTOREPLACE_SHIP_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   675
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   676
				/* Sprites */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   677
				this->widget[DEPOT_WIDGET_SELL].data        = SPR_SELL_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   678
				this->widget[DEPOT_WIDGET_SELL_ALL].data    = SPR_SELL_ALL_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   679
				this->widget[DEPOT_WIDGET_AUTOREPLACE].data = SPR_REPLACE_SHIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   680
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   681
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   682
			case VEH_AIRCRAFT:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   683
				this->widget[DEPOT_WIDGET_CAPTION].data      = STR_A002_AIRCRAFT_HANGAR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   684
				this->widget[DEPOT_WIDGET_STOP_ALL].tooltips = STR_MASS_STOP_HANGAR_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   685
				this->widget[DEPOT_WIDGET_START_ALL].tooltips= STR_MASS_START_HANGAR_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   686
				this->widget[DEPOT_WIDGET_SELL].tooltips     = STR_A023_DRAG_AIRCRAFT_TO_HERE_TO;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   687
				this->widget[DEPOT_WIDGET_SELL_ALL].tooltips = STR_DEPOT_SELL_ALL_BUTTON_AIRCRAFT_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   688
				this->widget[DEPOT_WIDGET_MATRIX].tooltips   = STR_A021_AIRCRAFT_CLICK_ON_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   689
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   690
				this->widget[DEPOT_WIDGET_BUILD].data        = STR_A003_NEW_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   691
				this->widget[DEPOT_WIDGET_BUILD].tooltips    = STR_A022_BUILD_NEW_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   692
				this->widget[DEPOT_WIDGET_CLONE].data        = STR_CLONE_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   693
				this->widget[DEPOT_WIDGET_CLONE].tooltips    = STR_CLONE_AIRCRAFT_INFO_HANGAR_WINDOW;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   694
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   695
				this->widget[DEPOT_WIDGET_LOCATION].tooltips = STR_A024_CENTER_MAIN_VIEW_ON_HANGAR;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   696
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].data = STR_PLANE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   697
				this->widget[DEPOT_WIDGET_VEHICLE_LIST].tooltips = STR_DEPOT_VEHICLE_ORDER_LIST_AIRCRAFT_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   698
				this->widget[DEPOT_WIDGET_AUTOREPLACE].tooltips = STR_DEPOT_AUTOREPLACE_AIRCRAFT_TIP;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   699
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   700
				/* Sprites */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   701
				this->widget[DEPOT_WIDGET_SELL].data        = SPR_SELL_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   702
				this->widget[DEPOT_WIDGET_SELL_ALL].data    = SPR_SELL_ALL_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   703
				this->widget[DEPOT_WIDGET_AUTOREPLACE].data = SPR_REPLACE_AIRCRAFT;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   704
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   705
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   706
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   707
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   708
	void CreateDepotListWindow(VehicleType type)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   709
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   710
		this->type = type;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   711
		_backup_orders_tile = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   712
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   713
		assert(IsPlayerBuildableVehicleType(type)); // ensure that we make the call with a valid type
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   714
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   715
		/* Resize the window according to the vehicle type */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   716
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   717
		/* Set the number of blocks in each direction */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   718
		this->vscroll.cap = _resize_cap[type][0];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   719
		this->hscroll.cap = _resize_cap[type][1];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   720
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   721
		/* Set the block size */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   722
		this->resize.step_width  = _block_sizes[type][0];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   723
		this->resize.step_height = _block_sizes[type][1];
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   724
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   725
		/* Enlarge the window to fit with the selected number of blocks of the selected size */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   726
		ResizeWindow(this,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   727
					_block_sizes[type][0] * this->hscroll.cap,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   728
					_block_sizes[type][1] * this->vscroll.cap);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   729
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   730
		if (type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   731
			/* Make space for the horizontal scrollbar vertically, and the unit
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   732
			 * number, flag, and length counter horizontally. */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   733
			ResizeWindow(this, 36, 12);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   734
			/* substract the newly added space from the matrix since it was meant for the scrollbar */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   735
			this->widget[DEPOT_WIDGET_MATRIX].bottom -= 12;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   736
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   737
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   738
		/* Set the minimum window size to the current window size */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   739
		this->resize.width  = this->width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   740
		this->resize.height = this->height;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   741
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   742
		this->SetupStringsForDepotWindow(type);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   743
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   744
		this->widget[DEPOT_WIDGET_MATRIX].data =
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   745
			(this->vscroll.cap * 0x100) // number of rows to draw on the background
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   746
			+ (type == VEH_TRAIN ? 1 : this->hscroll.cap); // number of boxes in each row. Trains always have just one
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   747
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   748
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   749
		this->SetWidgetsHiddenState(type != VEH_TRAIN,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   750
			DEPOT_WIDGET_H_SCROLL,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   751
			DEPOT_WIDGET_SELL_CHAIN,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   752
			WIDGET_LIST_END);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   753
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   754
		ResizeDepotButtons(this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   755
	}
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   756
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   757
	virtual void OnInvalidateData(int data)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   758
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   759
		this->generate_list = true;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   760
	}
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   761
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   762
	virtual void OnPaint()
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   763
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   764
		if (this->generate_list) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   765
			/* Generate the vehicle list
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   766
			 * It's ok to use the wagon pointers for non-trains as they will be ignored */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   767
			BuildDepotVehicleList(this->type, this->window_number,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   768
				&this->vehicle_list, &this->engine_list_length, &this->engine_count,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   769
				&this->wagon_list,   &this->wagon_list_length,  &this->wagon_count);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   770
			this->generate_list = false;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   771
			DepotSortList(this->vehicle_list, this->engine_count);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   772
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   773
		DrawDepotWindow(this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   774
	}
4935
aa0721b7ae79 (svn r6922) -Feature: Add proper cloning sprites and cursors, different for each vehicle. Big thanks
Darkvater
parents: 4800
diff changeset
   775
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   776
	virtual void OnClick(Point pt, int widget)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   777
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   778
		switch (widget) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   779
			case DEPOT_WIDGET_MATRIX: // List
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   780
				this->DepotClick(pt.x, pt.y);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   781
				break;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   782
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   783
			case DEPOT_WIDGET_BUILD: // Build vehicle
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   784
				ResetObjectToPlace();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   785
				ShowBuildVehicleWindow(this->window_number, this->type);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   786
				break;
4640
cabffc571e55 (svn r6515) -Feature: added "start all" and "stop all" buttons to the depot windows
bjarni
parents: 4638
diff changeset
   787
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   788
			case DEPOT_WIDGET_CLONE: // Clone button
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   789
				this->InvalidateWidget(DEPOT_WIDGET_CLONE);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   790
				this->ToggleWidgetLoweredState(DEPOT_WIDGET_CLONE);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   791
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   792
				if (this->IsWidgetLowered(DEPOT_WIDGET_CLONE)) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   793
					static const CursorID clone_icons[] = {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   794
						SPR_CURSOR_CLONE_TRAIN, SPR_CURSOR_CLONE_ROADVEH,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   795
						SPR_CURSOR_CLONE_SHIP, SPR_CURSOR_CLONE_AIRPLANE
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   796
					};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   797
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   798
					_place_clicked_vehicle = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   799
					SetObjectToPlaceWnd(clone_icons[this->type], PAL_NONE, VHM_RECT, this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   800
				} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   801
					ResetObjectToPlace();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   802
				}
4640
cabffc571e55 (svn r6515) -Feature: added "start all" and "stop all" buttons to the depot windows
bjarni
parents: 4638
diff changeset
   803
					break;
cabffc571e55 (svn r6515) -Feature: added "start all" and "stop all" buttons to the depot windows
bjarni
parents: 4638
diff changeset
   804
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   805
			case DEPOT_WIDGET_LOCATION:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   806
				if (_ctrl_pressed) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   807
					ShowExtraViewPortWindow(this->window_number);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   808
				} else {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   809
					ScrollMainWindowToTile(this->window_number);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   810
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   811
				break;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   812
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   813
			case DEPOT_WIDGET_STOP_ALL:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   814
			case DEPOT_WIDGET_START_ALL:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   815
				DoCommandP(this->window_number, 0, this->type | (widget == DEPOT_WIDGET_START_ALL ? (1 << 5) : 0), NULL, CMD_MASS_START_STOP);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   816
				break;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   817
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   818
			case DEPOT_WIDGET_SELL_ALL:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   819
				/* Only open the confimation window if there are anything to sell */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   820
				if (this->engine_count != 0 || this->wagon_count != 0) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   821
					static const StringID confirm_captions[] = {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   822
						STR_8800_TRAIN_DEPOT,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   823
						STR_9003_ROAD_VEHICLE_DEPOT,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   824
						STR_9803_SHIP_DEPOT,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   825
						STR_A002_AIRCRAFT_HANGAR
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   826
					};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   827
					TileIndex tile = this->window_number;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   828
					byte vehtype = this->type;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   829
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   830
					SetDParam(0, (vehtype == VEH_AIRCRAFT) ? GetStationIndex(tile) : GetDepotByTile(tile)->town_index);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   831
					ShowQuery(
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   832
						confirm_captions[vehtype],
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   833
						STR_DEPOT_SELL_CONFIRMATION_TEXT,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   834
						this,
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   835
						DepotSellAllConfirmationCallback
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   836
					);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   837
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   838
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   839
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   840
			case DEPOT_WIDGET_VEHICLE_LIST:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   841
				ShowVehicleListWindow(GetTileOwner(this->window_number), this->type, (TileIndex)this->window_number);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   842
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   843
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   844
			case DEPOT_WIDGET_AUTOREPLACE:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   845
				DoCommandP(this->window_number, this->type, 0, NULL, CMD_DEPOT_MASS_AUTOREPLACE);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   846
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   847
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   848
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   849
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   850
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   851
	virtual void OnPlaceObject(Point pt, TileIndex tile)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   852
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   853
		const Vehicle *v = CheckMouseOverVehicle();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   854
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   855
		if (v != NULL) HandleCloneVehClick(v, this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   856
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   857
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   858
	virtual void OnPlaceObjectAbort()
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   859
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   860
		/* abort clone */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   861
		this->RaiseWidget(DEPOT_WIDGET_CLONE);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   862
		this->InvalidateWidget(DEPOT_WIDGET_CLONE);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   863
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   864
		/* abort drag & drop */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   865
		this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   866
		this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   867
	};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   868
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   869
	/* check if a vehicle in a depot was clicked.. */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   870
	virtual void OnMouseLoop()
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   871
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   872
		const Vehicle *v = _place_clicked_vehicle;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   873
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   874
		/* since OTTD checks all open depot windows, we will make sure that it triggers the one with a clicked clone button */
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   875
		if (v != NULL && this->IsWidgetLowered(DEPOT_WIDGET_CLONE)) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   876
			_place_clicked_vehicle = NULL;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   877
			HandleCloneVehClick(v, this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   878
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   879
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   880
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   881
	virtual void OnDragDrop(Point pt, int widget)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   882
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   883
		switch (widget) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   884
			case DEPOT_WIDGET_MATRIX: {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   885
				Vehicle *v;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   886
				VehicleID sel = this->sel;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   887
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   888
				this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   889
				this->SetDirty();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   890
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   891
				if (this->type == VEH_TRAIN) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   892
					GetDepotVehiclePtData gdvp;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   893
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   894
					if (this->GetVehicleFromDepotWndPt(pt.x, pt.y, &v, &gdvp) == MODE_DRAG_VEHICLE &&
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   895
						sel != INVALID_VEHICLE) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   896
						if (gdvp.wagon != NULL && gdvp.wagon->index == sel && _ctrl_pressed) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   897
							DoCommandP(GetVehicle(sel)->tile, GetVehicle(sel)->index, true, NULL, CMD_REVERSE_TRAIN_DIRECTION | CMD_MSG(STR_9033_CAN_T_MAKE_VEHICLE_TURN));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   898
						} else if (gdvp.wagon == NULL || gdvp.wagon->index != sel) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   899
							TrainDepotMoveVehicle(gdvp.wagon, sel, gdvp.head);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   900
						} else if (gdvp.head != NULL && IsFrontEngine(gdvp.head)) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   901
							ShowVehicleViewWindow(gdvp.head);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   902
						}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   903
					}
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   904
				} else if (this->GetVehicleFromDepotWndPt(pt.x, pt.y, &v, NULL) == MODE_DRAG_VEHICLE &&
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   905
					v != NULL &&
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   906
					sel == v->index) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   907
					ShowVehicleViewWindow(v);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   908
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   909
			} break;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   910
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   911
			case DEPOT_WIDGET_SELL: case DEPOT_WIDGET_SELL_CHAIN:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   912
				if (!this->IsWidgetDisabled(DEPOT_WIDGET_SELL) &&
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   913
					this->sel != INVALID_VEHICLE) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   914
					Vehicle *v;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   915
					uint command;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   916
					int sell_cmd;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   917
					bool is_engine;
9324
bf9cc84b889d (svn r12576) -Feature(tte) [FS#337]: highlight vehicle chain when dragging in the group and depot GUI if appropriate
smatz
parents: 9280
diff changeset
   918
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   919
					if (this->IsWidgetDisabled(widget)) return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   920
					if (this->sel == INVALID_VEHICLE) return;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   921
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   922
					this->HandleButtonClick(widget);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   923
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   924
					v = GetVehicle(this->sel);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   925
					this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   926
					this->SetDirty();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   927
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   928
					sell_cmd = (v->type == VEH_TRAIN && (widget == DEPOT_WIDGET_SELL_CHAIN || _ctrl_pressed)) ? 1 : 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   929
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   930
					is_engine = (!(v->type == VEH_TRAIN && !IsFrontEngine(v)));
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   931
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   932
					if (is_engine) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   933
						_backup_orders_tile = v->tile;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   934
						BackupVehicleOrders(v);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   935
					}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   936
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   937
					switch (v->type) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   938
						case VEH_TRAIN:    command = CMD_SELL_RAIL_WAGON | CMD_MSG(STR_8839_CAN_T_SELL_RAILROAD_VEHICLE); break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   939
						case VEH_ROAD:     command = CMD_SELL_ROAD_VEH | CMD_MSG(STR_9014_CAN_T_SELL_ROAD_VEHICLE);       break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   940
						case VEH_SHIP:     command = CMD_SELL_SHIP | CMD_MSG(STR_980C_CAN_T_SELL_SHIP);                   break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   941
						case VEH_AIRCRAFT: command = CMD_SELL_AIRCRAFT | CMD_MSG(STR_A01C_CAN_T_SELL_AIRCRAFT);           break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   942
						default: NOT_REACHED(); command = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   943
					}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   944
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   945
					if (!DoCommandP(v->tile, v->index, sell_cmd, NULL, command) && is_engine) _backup_orders_tile = 0;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   946
				}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   947
				break;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   948
			default:
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   949
				this->sel = INVALID_VEHICLE;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   950
				this->SetDirty();
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   951
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   952
		_cursor.vehchain = false;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   953
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   954
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   955
	virtual void OnResize(Point new_size, Point delta)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   956
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   957
		this->vscroll.cap += delta.y / (int)this->resize.step_height;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   958
		this->hscroll.cap += delta.x / (int)this->resize.step_width;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   959
		this->widget[DEPOT_WIDGET_MATRIX].data = (this->vscroll.cap << 8) + (this->type == VEH_TRAIN ? 1 : this->hscroll.cap);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   960
		ResizeDepotButtons(this);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   961
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   962
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   963
	virtual bool OnCTRLStateChange()
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   964
	{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   965
		if (this->sel != INVALID_VEHICLE) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   966
			_cursor.vehchain = _ctrl_pressed;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   967
			this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   968
		}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   969
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   970
		return true;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   971
	}
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   972
};
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   973
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   974
static void DepotSellAllConfirmationCallback(Window *win, bool confirmed)
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   975
{
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   976
	if (confirmed) {
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   977
		DepotWindow *w = (DepotWindow*)win;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   978
		TileIndex tile = w->window_number;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   979
		byte vehtype = w->type;
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   980
		DoCommandP(tile, vehtype, 0, NULL, CMD_DEPOT_SELL_ALL_VEHICLES);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   981
	}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   982
}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   983
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   984
/** Opens a depot window
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   985
 * @param tile The tile where the depot/hangar is located
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   986
 * @param type The type of vehicles in the depot
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   987
 */
7134
c5a90dd41166 (svn r9869) -Codechange: replace some bytes with VehicleType, i.e. more type strictness.
rubidium
parents: 7117
diff changeset
   988
void ShowDepotWindow(TileIndex tile, VehicleType type)
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   989
{
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   990
	DepotWindow *w;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   991
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
   992
	switch (type) {
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5265
diff changeset
   993
		default: NOT_REACHED();
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   994
		case VEH_TRAIN:
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   995
			w = AllocateWindowDescFront<DepotWindow>(&_train_depot_desc, tile); break;
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   996
		case VEH_ROAD:
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   997
			w = AllocateWindowDescFront<DepotWindow>(&_road_depot_desc, tile); break;
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
   998
		case VEH_SHIP:
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
   999
			w = AllocateWindowDescFront<DepotWindow>(&_ship_depot_desc, tile); break;
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
  1000
		case VEH_AIRCRAFT:
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1001
			w = AllocateWindowDescFront<DepotWindow>(&_aircraft_depot_desc, tile); break;
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
  1002
	}
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
  1003
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1004
	w->caption_color = GetTileOwner(tile);
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1005
	w->CreateDepotListWindow(type);
4638
8abe4f10b94b (svn r6513) -Codechange: unified the code to draw depot windows
bjarni
parents:
diff changeset
  1006
}
5255
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1007
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1008
/** Removes the highlight of a vehicle in a depot window
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1009
 * @param *v Vehicle to remove all highlights from
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1010
 */
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1011
void DeleteDepotHighlightOfVehicle(const Vehicle *v)
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1012
{
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1013
	DepotWindow *w;
5255
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1014
5260
6d1a560dd028 (svn r7390) -Codechange r7386: only loop though the windows to find a depot window to unhighlight a vehicle in if there is a vehicle on the mouse pointer
bjarni
parents: 5256
diff changeset
  1015
	/* If we haven't got any vehicles on the mouse pointer, we haven't got any highlighted in any depots either
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1016
	 * If that is the case, we can skip looping though the windows and save time
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1017
	 */
5260
6d1a560dd028 (svn r7390) -Codechange r7386: only loop though the windows to find a depot window to unhighlight a vehicle in if there is a vehicle on the mouse pointer
bjarni
parents: 5256
diff changeset
  1018
	if (_special_mouse_mode != WSM_DRAGDROP) return;
6d1a560dd028 (svn r7390) -Codechange r7386: only loop though the windows to find a depot window to unhighlight a vehicle in if there is a vehicle on the mouse pointer
bjarni
parents: 5256
diff changeset
  1019
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1020
	w = dynamic_cast<DepotWindow*>(FindWindowById(WC_VEHICLE_DEPOT, v->tile));
5265
a15469628808 (svn r7403) -Codechange (r7386, r7385): Use available functions to find a window instead of doing
Darkvater
parents: 5260
diff changeset
  1021
	if (w != NULL) {
10523
07a6e2dc807a (svn r13067) -Codechange: make a class of the DepotWindow.
rubidium
parents: 10508
diff changeset
  1022
		w->sel = INVALID_VEHICLE;
5265
a15469628808 (svn r7403) -Codechange (r7386, r7385): Use available functions to find a window instead of doing
Darkvater
parents: 5260
diff changeset
  1023
		ResetObjectToPlace();
5255
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1024
	}
b8445fda3fe2 (svn r7385) -Fix: FS#418 Deleting Train in depot with autoreplace failes
bjarni
parents: 5125
diff changeset
  1025
}