src/vehicle_gui.cpp
author rubidium
Tue, 16 Dec 2008 22:02:12 +0000
changeset 10430 3125f2adebc5
parent 10348 c282fa649cbe
permissions -rw-r--r--
(svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
NOTE: it is still possible that a vehicle is marked refittable when there is nothing to refit to, e.g. when only one subcargo is available but that cannot be determined without a vehicle chain.
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
9111
48ce04029fe4 (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: 9060
diff changeset
     3
/** @file vehicle_gui.cpp The base GUI for all vehicles. */
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
     4
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
     5
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1859
diff changeset
     6
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1294
diff changeset
     7
#include "debug.h"
10208
72c00af5c95d (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
rubidium
parents: 10207
diff changeset
     8
#include "company_func.h"
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
     9
#include "gui.h"
8107
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    10
#include "window_gui.h"
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    11
#include "textbuf_gui.h"
8116
8da76dcb3287 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8114
diff changeset
    12
#include "command_func.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    13
#include "variables.h"
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    14
#include "vehicle_gui.h"
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
    15
#include "vehicle_gui_base.h"
8224
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8214
diff changeset
    16
#include "viewport_func.h"
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8214
diff changeset
    17
#include "gfx_func.h"
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
    18
#include "train.h"
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
    19
#include "newgrf_callbacks.h"
2962
f0a49b646c48 (svn r3524) - Split newgrf features from engine.[ch] into newgrf_engine.[ch], and add the new files to project files.
peter1138
parents: 2951
diff changeset
    20
#include "newgrf_engine.h"
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
    21
#include "newgrf_text.h"
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    22
#include "ship.h"
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    23
#include "aircraft.h"
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    24
#include "roadveh.h"
8962
1b263c69799d (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: 8917
diff changeset
    25
#include "depot_base.h"
6091
c8827d9ae04a (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
peter1138
parents: 6056
diff changeset
    26
#include "cargotype.h"
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6638
diff changeset
    27
#include "group.h"
8111
02d19f43eea6 (svn r11672) -Codechange: refactor some stuff out of gui.h.
rubidium
parents: 8107
diff changeset
    28
#include "group_gui.h"
8114
dd6d21dc99c1 (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8111
diff changeset
    29
#include "strings_func.h"
8131
160939e24ed3 (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: 8130
diff changeset
    30
#include "functions.h"
160939e24ed3 (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: 8130
diff changeset
    31
#include "window_func.h"
8144
65cec0877b78 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8140
diff changeset
    32
#include "vehicle_func.h"
8212
cf3fce5c7464 (svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents: 8179
diff changeset
    33
#include "autoreplace_gui.h"
8213
7bdd7593eb9b (svn r11776) -Codechange: more header splittings to reduce the dependencies.
rubidium
parents: 8212
diff changeset
    34
#include "core/alloc_func.hpp"
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
    35
#include "core/mem_func.hpp"
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
    36
#include "core/sort_func.hpp"
8214
971f861d5543 (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
rubidium
parents: 8213
diff changeset
    37
#include "string_func.h"
8270
e7c342f6b14c (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8264
diff changeset
    38
#include "settings_type.h"
8284
ebdc5ba08874 (svn r11848) -Codechange: New class-based drop down list functionality. Lists are now dynamically generated, and can include parameters, or be extended however needed.
peter1138
parents: 8270
diff changeset
    39
#include "widgets/dropdown_func.h"
8784
c2e9d649a9ce (svn r12488) -Codechange: split order.h into order_base.h and order_func.h.
rubidium
parents: 8771
diff changeset
    40
#include "order_func.h"
9117
87f472043e9e (svn r12977) -Codechange: remove quite some redundant (duplicate) function declarations.
rubidium
parents: 9116
diff changeset
    41
#include "timetable.h"
9396
3f70b1b8642c (svn r13307) -Codechange: Separate VehicleList and its two functions so only the 3 users include it, reducing dependencies on misc/smallvec.h
peter1138
parents: 9381
diff changeset
    42
#include "vehiclelist.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    43
8264
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    44
#include "table/sprites.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    45
#include "table/strings.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    46
9182
412cb6c0caf1 (svn r13045) -Codechange: make list_d (now GUIList) more generic and uniform.
rubidium
parents: 9161
diff changeset
    47
Sorting _sorting;
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
    48
9563
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    49
static GUIVehicleList::SortFunction VehicleNumberSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    50
static GUIVehicleList::SortFunction VehicleNameSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    51
static GUIVehicleList::SortFunction VehicleAgeSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    52
static GUIVehicleList::SortFunction VehicleProfitThisYearSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    53
static GUIVehicleList::SortFunction VehicleProfitLastYearSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    54
static GUIVehicleList::SortFunction VehicleCargoSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    55
static GUIVehicleList::SortFunction VehicleReliabilitySorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    56
static GUIVehicleList::SortFunction VehicleMaxSpeedSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    57
static GUIVehicleList::SortFunction VehicleModelSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    58
static GUIVehicleList::SortFunction VehicleValueSorter;
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
    59
static GUIVehicleList::SortFunction VehicleLengthSorter;
10161
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
    60
static GUIVehicleList::SortFunction VehicleTimeToLiveSorter;
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    61
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
    62
GUIVehicleList::SortFunction* const BaseVehicleListWindow::vehicle_sorter_funcs[] = {
505
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    63
	&VehicleNumberSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    64
	&VehicleNameSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    65
	&VehicleAgeSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    66
	&VehicleProfitThisYearSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    67
	&VehicleProfitLastYearSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    68
	&VehicleCargoSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    69
	&VehicleReliabilitySorter,
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    70
	&VehicleMaxSpeedSorter,
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    71
	&VehicleModelSorter,
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    72
	&VehicleValueSorter,
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
    73
	&VehicleLengthSorter,
10161
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
    74
	&VehicleTimeToLiveSorter,
505
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    75
};
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    76
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
    77
const StringID BaseVehicleListWindow::vehicle_sorter_names[] = {
505
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    78
	STR_SORT_BY_NUMBER,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    79
	STR_SORT_BY_DROPDOWN_NAME,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    80
	STR_SORT_BY_AGE,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    81
	STR_SORT_BY_PROFIT_THIS_YEAR,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    82
	STR_SORT_BY_PROFIT_LAST_YEAR,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    83
	STR_SORT_BY_TOTAL_CAPACITY_PER_CARGOTYPE,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    84
	STR_SORT_BY_RELIABILITY,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    85
	STR_SORT_BY_MAX_SPEED,
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    86
	STR_SORT_BY_MODEL,
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    87
	STR_SORT_BY_VALUE,
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
    88
	STR_SORT_BY_LENGTH,
10161
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
    89
	STR_SORT_BY_LIFE_TIME,
505
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    90
	INVALID_STRING_ID
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    91
};
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    92
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
    93
void BaseVehicleListWindow::BuildVehicleList(Owner owner, uint16 index, uint16 window_type)
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    94
{
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
    95
	if (!this->vehicles.NeedRebuild()) return;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    96
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
    97
	DEBUG(misc, 3, "Building vehicle list for company %d at station %d", owner, index);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    98
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
    99
	GenerateVehicleSortList(&this->vehicles, this->vehicle_type, owner, index, window_type);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   100
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   101
	this->vehicles.RebuildDone();
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   102
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   103
8662
2879ef051c0f (svn r12324) -Fix (r6789): vehicles could be sorted in a wrong order when a vehicle name changed - cached name was not invalidated
smatz
parents: 8661
diff changeset
   104
/* cached values for VehicleNameSorter to spare many GetString() calls */
2879ef051c0f (svn r12324) -Fix (r6789): vehicles could be sorted in a wrong order when a vehicle name changed - cached name was not invalidated
smatz
parents: 8661
diff changeset
   105
static const Vehicle *_last_vehicle[2] = { NULL, NULL };
2879ef051c0f (svn r12324) -Fix (r6789): vehicles could be sorted in a wrong order when a vehicle name changed - cached name was not invalidated
smatz
parents: 8661
diff changeset
   106
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   107
void BaseVehicleListWindow::SortVehicleList()
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   108
{
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   109
	if (this->vehicles.Sort()) return;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   110
8662
2879ef051c0f (svn r12324) -Fix (r6789): vehicles could be sorted in a wrong order when a vehicle name changed - cached name was not invalidated
smatz
parents: 8661
diff changeset
   111
	/* invalidate cached values for name sorter - vehicle names could change */
2879ef051c0f (svn r12324) -Fix (r6789): vehicles could be sorted in a wrong order when a vehicle name changed - cached name was not invalidated
smatz
parents: 8661
diff changeset
   112
	_last_vehicle[0] = _last_vehicle[1] = NULL;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   113
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   114
9351
ecf2fdeb2328 (svn r13248) -Codechange: Use VehicleList for depot GUI.
peter1138
parents: 9333
diff changeset
   115
void DepotSortList(VehicleList *list)
4740
953f60fa6d6a (svn r6652) -Feature: [depot window] depot lists are now sorted, so vehicle 1 is always first and so on
bjarni
parents: 4735
diff changeset
   116
{
9351
ecf2fdeb2328 (svn r13248) -Codechange: Use VehicleList for depot GUI.
peter1138
parents: 9333
diff changeset
   117
	if (list->Length() < 2) return;
9563
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
   118
	QSortT(list->Begin(), list->Length(), &VehicleNumberSorter);
4740
953f60fa6d6a (svn r6652) -Feature: [depot window] depot lists are now sorted, so vehicle 1 is always first and so on
bjarni
parents: 4735
diff changeset
   119
}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   120
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
   121
/** draw the vehicle profit button in the vehicle list window. */
2436
7d5df545bd5d (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2375
diff changeset
   122
void DrawVehicleProfitButton(const Vehicle *v, int x, int y)
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   123
{
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   124
	SpriteID pal;
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   125
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
   126
	/* draw profit-based colored icons */
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   127
	if (v->age <= 365 * 2) {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   128
		pal = PALETTE_TO_GREY;
8614
4c67a883c4c4 (svn r12197) -Fix [FS#1788](r12134): show correct last year profit when the train had negative income
smatz
parents: 8556
diff changeset
   129
	} else if (v->GetDisplayProfitLastYear() < 0) {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   130
		pal = PALETTE_TO_RED;
8614
4c67a883c4c4 (svn r12197) -Fix [FS#1788](r12134): show correct last year profit when the train had negative income
smatz
parents: 8556
diff changeset
   131
	} else if (v->GetDisplayProfitLastYear() < 10000) {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   132
		pal = PALETTE_TO_YELLOW;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   133
	} else {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   134
		pal = PALETTE_TO_GREEN;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   135
	}
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   136
	DrawSprite(SPR_BLOT, pal, x, y);
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   137
}
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   138
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
   139
struct RefitOption {
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   140
	CargoID cargo;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   141
	byte subtype;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   142
	uint16 value;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   143
	EngineID engine;
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
   144
};
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   145
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
   146
struct RefitList {
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   147
	uint num_lines;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   148
	RefitOption *items;
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
   149
};
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   150
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   151
static RefitList *BuildRefitList(const Vehicle *v)
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   152
{
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   153
	uint max_lines = 256;
5609
dc6a58930ba4 (svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
KUDr
parents: 5587
diff changeset
   154
	RefitOption *refit = CallocT<RefitOption>(max_lines);
dc6a58930ba4 (svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
KUDr
parents: 5587
diff changeset
   155
	RefitList *list = CallocT<RefitList>(1);
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   156
	Vehicle *u = (Vehicle*)v;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   157
	uint num_lines = 0;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   158
	uint i;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   159
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   160
	do {
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   161
		uint32 cmask = EngInfo(u->engine_type)->refit_mask;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   162
		byte callbackmask = EngInfo(u->engine_type)->callbackmask;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   163
4933
0ae35137aeca (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   164
		/* Skip this engine if it has no capacity */
0ae35137aeca (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   165
		if (u->cargo_cap == 0) continue;
0ae35137aeca (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   166
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   167
		/* Loop through all cargos in the refit mask */
6350
04b19f551aec (svn r9388) -Codechange: variable scope and type, and standardify all CargoID loops.
peter1138
parents: 6259
diff changeset
   168
		for (CargoID cid = 0; cid < NUM_CARGO && num_lines < max_lines; cid++) {
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   169
			/* Skip cargo type if it's not listed */
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7846
diff changeset
   170
			if (!HasBit(cmask, cid)) continue;
4776
c798a32e8bc7 (svn r6690) - Fix (r6602): Translate global to per-climate cargo ids before... doing anything with them. (Thanks to MeusH for pointing this out...)
peter1138
parents: 4775
diff changeset
   171
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   172
			/* Check the vehicle's callback mask for cargo suffixes */
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7846
diff changeset
   173
			if (HasBit(callbackmask, CBM_VEHICLE_CARGO_SUFFIX)) {
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   174
				/* Make a note of the original cargo type. It has to be
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   175
				 * changed to test the cargo & subtype... */
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   176
				CargoID temp_cargo = u->cargo_type;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   177
				byte temp_subtype  = u->cargo_subtype;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   178
				byte refit_cyc;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   179
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   180
				u->cargo_type = cid;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   181
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   182
				for (refit_cyc = 0; refit_cyc < 16 && num_lines < max_lines; refit_cyc++) {
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   183
					bool duplicate = false;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   184
					uint16 callback;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   185
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   186
					u->cargo_subtype = refit_cyc;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   187
					callback = GetVehicleCallback(CBID_VEHICLE_CARGO_SUFFIX, 0, 0, u->engine_type, u);
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   188
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   189
					if (callback == 0xFF) callback = CALLBACK_FAILED;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   190
					if (refit_cyc != 0 && callback == CALLBACK_FAILED) break;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   191
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   192
					/* Check if this cargo and subtype combination are listed */
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   193
					for (i = 0; i < num_lines && !duplicate; i++) {
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   194
						if (refit[i].cargo == cid && refit[i].value == callback) duplicate = true;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   195
					}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   196
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   197
					if (duplicate) continue;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   198
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   199
					refit[num_lines].cargo   = cid;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   200
					refit[num_lines].subtype = refit_cyc;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   201
					refit[num_lines].value   = callback;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   202
					refit[num_lines].engine  = u->engine_type;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   203
					num_lines++;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   204
				}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   205
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   206
				/* Reset the vehicle's cargo type */
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   207
				u->cargo_type    = temp_cargo;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   208
				u->cargo_subtype = temp_subtype;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   209
			} else {
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   210
				/* No cargo suffix callback -- use no subtype */
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   211
				bool duplicate = false;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   212
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   213
				for (i = 0; i < num_lines && !duplicate; i++) {
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   214
					if (refit[i].cargo == cid && refit[i].value == CALLBACK_FAILED) duplicate = true;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   215
				}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   216
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   217
				if (!duplicate) {
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   218
					refit[num_lines].cargo   = cid;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   219
					refit[num_lines].subtype = 0;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   220
					refit[num_lines].value   = CALLBACK_FAILED;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   221
					refit[num_lines].engine  = INVALID_ENGINE;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   222
					num_lines++;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   223
				}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   224
			}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   225
		}
9584
f8ca7f663cb8 (svn r13622) -Fix [FS#2109]: only the front of a RV would be considered when determining to what cargos a vehicle can be refitted instead of all cargos.
rubidium
parents: 9569
diff changeset
   226
	} while ((v->type == VEH_TRAIN || v->type == VEH_ROAD) && (u = u->Next()) != NULL && num_lines < max_lines);
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   227
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   228
	list->num_lines = num_lines;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   229
	list->items = refit;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   230
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   231
	return list;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   232
}
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   233
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   234
/** Draw the list of available refit options for a consist.
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   235
 * Draw the list and highlight the selected refit option (if any)
6484
79156627e1ba (svn r9665) -Documentation: Doxygen corrections,errors, corrections of corrections...
belugas
parents: 6423
diff changeset
   236
 * @param *list first vehicle in consist to get the refit-options of
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   237
 * @param sel selected refit cargo-type in the window
6484
79156627e1ba (svn r9665) -Documentation: Doxygen corrections,errors, corrections of corrections...
belugas
parents: 6423
diff changeset
   238
 * @param pos position of the selected item in caller widow
79156627e1ba (svn r9665) -Documentation: Doxygen corrections,errors, corrections of corrections...
belugas
parents: 6423
diff changeset
   239
 * @param rows number of rows(capacity) in caller window
79156627e1ba (svn r9665) -Documentation: Doxygen corrections,errors, corrections of corrections...
belugas
parents: 6423
diff changeset
   240
 * @param delta step height in caller window
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   241
 * @return the refit option that is hightlighted, NULL if none
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   242
 */
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   243
static RefitOption *DrawVehicleRefitWindow(const RefitList *list, int sel, uint pos, uint rows, uint delta)
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   244
{
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   245
	RefitOption *refit = list->items;
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   246
	RefitOption *selected = NULL;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   247
	uint num_lines = list->num_lines;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   248
	uint y = 31;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   249
	uint i;
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   250
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   251
	/* Draw the list, and find the selected cargo (by its position in list) */
4697
67032d30eab0 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   252
	for (i = 0; i < num_lines; i++) {
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7798
diff changeset
   253
		TextColour colour = TC_BLACK;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   254
		if (sel == 0) {
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   255
			selected = &refit[i];
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7798
diff changeset
   256
			colour = TC_WHITE;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   257
		}
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   258
4697
67032d30eab0 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   259
		if (i >= pos && i < pos + rows) {
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   260
			/* Draw the cargo name */
6091
c8827d9ae04a (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
peter1138
parents: 6056
diff changeset
   261
			int last_x = DrawString(2, y, GetCargo(refit[i].cargo)->name, colour);
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   262
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   263
			/* If the callback succeeded, draw the cargo suffix */
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   264
			if (refit[i].value != CALLBACK_FAILED) {
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   265
				DrawString(last_x + 1, y, GetGRFStringID(GetEngineGRFID(refit[i].engine), 0xD000 + refit[i].value), colour);
3025
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   266
			}
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   267
			y += delta;
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   268
		}
3025
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   269
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   270
		sel--;
3025
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   271
	}
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   272
4695
3a5bf7ff066b (svn r6602) - Feature: we now support NewGRF livery refits, as used by DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
peter1138
parents: 4694
diff changeset
   273
	return selected;
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   274
}
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   275
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   276
struct RefitWindow : public Window {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   277
	int sel;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   278
	RefitOption *cargo;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   279
	RefitList *list;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   280
	uint length;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   281
	VehicleOrderID order;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   282
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   283
	RefitWindow(const WindowDesc *desc, const Vehicle *v, VehicleOrderID order) : Window(desc, v->index)
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   284
	{
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   285
		this->caption_color = v->owner;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   286
		this->vscroll.cap = 8;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   287
		this->resize.step_height = 14;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   288
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   289
		this->order = order;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   290
		this->sel  = -1;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   291
		this->list = BuildRefitList(v);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   292
		if (v->type == VEH_TRAIN) this->length = CountVehiclesInChain(v);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   293
		SetVScrollCount(this, this->list->num_lines);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   294
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   295
		switch (v->type) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   296
			case VEH_TRAIN:
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   297
				this->widget[3].tooltips = STR_RAIL_SELECT_TYPE_OF_CARGO_FOR;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   298
				this->widget[6].data     = STR_RAIL_REFIT_VEHICLE;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   299
				this->widget[6].tooltips = STR_RAIL_REFIT_TO_CARRY_HIGHLIGHTED;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   300
				break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   301
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   302
			case VEH_ROAD:
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   303
				this->widget[3].tooltips = STR_ROAD_SELECT_TYPE_OF_CARGO_FOR;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   304
				this->widget[6].data     = STR_REFIT_ROAD_VEHICLE;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   305
				this->widget[6].tooltips = STR_REFIT_ROAD_VEHICLE_TO_CARRY_HIGHLIGHTED;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   306
				break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   307
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   308
			case VEH_SHIP:
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   309
				this->widget[3].tooltips = STR_983D_SELECT_TYPE_OF_CARGO_FOR;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   310
				this->widget[6].data     = STR_983C_REFIT_SHIP;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   311
				this->widget[6].tooltips = STR_983E_REFIT_SHIP_TO_CARRY_HIGHLIGHTED;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   312
				break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   313
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   314
			case VEH_AIRCRAFT:
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   315
				this->widget[3].tooltips = STR_A03E_SELECT_TYPE_OF_CARGO_FOR;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   316
				this->widget[6].data     = STR_A03D_REFIT_AIRCRAFT;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   317
				this->widget[6].tooltips = STR_A03F_REFIT_AIRCRAFT_TO_CARRY;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   318
				break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   319
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   320
			default: NOT_REACHED();
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   321
		}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   322
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   323
		this->FindWindowPlacementAndResize(desc);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   324
	}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   325
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   326
	~RefitWindow()
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   327
	{
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   328
		free(this->list->items);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   329
		free(this->list);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   330
	}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   331
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   332
	virtual void OnPaint()
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   333
	{
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   334
		Vehicle *v = GetVehicle(this->window_number);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   335
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   336
		if (v->type == VEH_TRAIN) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   337
			uint length = CountVehiclesInChain(v);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   338
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   339
			if (length != this->length) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   340
				/* Consist length has changed, so rebuild the refit list */
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   341
				free(this->list->items);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   342
				free(this->list);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   343
				this->list = BuildRefitList(v);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   344
				this->length = length;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   345
			}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   346
		}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   347
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   348
		SetVScrollCount(this, this->list->num_lines);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   349
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   350
		SetDParam(0, v->index);
9273
35e0224ea8f1 (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
rubidium
parents: 9262
diff changeset
   351
		this->DrawWidgets();
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   352
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   353
		this->cargo = DrawVehicleRefitWindow(this->list, this->sel, this->vscroll.pos, this->vscroll.cap, this->resize.step_height);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   354
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   355
		if (this->cargo != NULL) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   356
			CommandCost cost;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   357
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   358
			cost = DoCommand(v->tile, v->index, this->cargo->cargo | this->cargo->subtype << 8,
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   359
							 DC_QUERY_COST, GetCmdRefitVeh(v->type));
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   360
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   361
			if (CmdSucceeded(cost)) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   362
				SetDParam(0, this->cargo->cargo);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   363
				SetDParam(1, _returned_refit_capacity);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   364
				SetDParam(2, cost.GetCost());
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   365
				DrawString(2, this->widget[5].top + 1, STR_9840_NEW_CAPACITY_COST_OF_REFIT, TC_FROMSTRING);
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   366
			}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   367
		}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   368
	}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   369
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   370
	virtual void OnClick(Point pt, int widget)
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   371
	{
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   372
		switch (widget) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   373
			case 3: { // listbox
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   374
				int y = pt.y - this->widget[3].top;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   375
				if (y >= 0) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   376
					this->sel = (y / (int)this->resize.step_height) + this->vscroll.pos;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   377
					this->SetDirty();
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   378
				}
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   379
				break;
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   380
			}
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   381
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   382
			case 6: // refit button
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   383
				if (this->cargo != NULL) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   384
					const Vehicle *v = GetVehicle(this->window_number);
6056
56f51abb3b91 (svn r8786) -Cleanup: replaced a switch-case to get the right refit command for a certain vehicle type. We have a function to do that
bjarni
parents: 5955
diff changeset
   385
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   386
					if (this->order == INVALID_VEH_ORDER_ID) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   387
						int command = 0;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   388
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   389
						switch (v->type) {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   390
							default: NOT_REACHED();
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   391
							case VEH_TRAIN:    command = CMD_REFIT_RAIL_VEHICLE | CMD_MSG(STR_RAIL_CAN_T_REFIT_VEHICLE);  break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   392
							case VEH_ROAD:     command = CMD_REFIT_ROAD_VEH     | CMD_MSG(STR_REFIT_ROAD_VEHICLE_CAN_T);  break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   393
							case VEH_SHIP:     command = CMD_REFIT_SHIP         | CMD_MSG(STR_9841_CAN_T_REFIT_SHIP);     break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   394
							case VEH_AIRCRAFT: command = CMD_REFIT_AIRCRAFT     | CMD_MSG(STR_A042_CAN_T_REFIT_AIRCRAFT); break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   395
						}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   396
						if (DoCommandP(v->tile, v->index, this->cargo->cargo | this->cargo->subtype << 8, NULL, command)) delete this;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   397
					} else {
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   398
						if (DoCommandP(v->tile, v->index, this->cargo->cargo | this->cargo->subtype << 8 | this->order << 16, NULL, CMD_ORDER_REFIT)) delete this;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   399
					}
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   400
				}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   401
				break;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   402
		}
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   403
	}
4712
4335ad42e163 (svn r6624) -Feature: added ability to add refit commands to vehicle orders (can only be done in goto depot orders)
bjarni
parents: 4709
diff changeset
   404
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   405
	virtual void OnResize(Point new_size, Point delta)
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   406
	{
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   407
		this->vscroll.cap += delta.y / (int)this->resize.step_height;
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   408
		this->widget[3].data = (this->vscroll.cap << 8) + 1;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   409
	}
9262
872df32598e6 (svn r13128) -Codechange: Make a class of the refit window
peter1138
parents: 9254
diff changeset
   410
};
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   411
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   412
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   413
static const Widget _vehicle_refit_widgets[] = {
9778
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   414
	{   WWT_CLOSEBOX,   RESIZE_NONE,  COLOUR_GREY,     0,    10,     0,    13, STR_00C5,                            STR_018B_CLOSE_WINDOW},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   415
	{    WWT_CAPTION,   RESIZE_NONE,  COLOUR_GREY,    11,   239,     0,    13, STR_983B_REFIT,                      STR_018C_WINDOW_TITLE_DRAG_THIS},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   416
	{    WWT_TEXTBTN,   RESIZE_NONE,  COLOUR_GREY,     0,   239,    14,    27, STR_983F_SELECT_CARGO_TYPE_TO_CARRY, STR_983D_SELECT_TYPE_OF_CARGO_FOR},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   417
	{     WWT_MATRIX, RESIZE_BOTTOM,  COLOUR_GREY,     0,   227,    28,   139, 0x801,                               STR_EMPTY},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   418
	{  WWT_SCROLLBAR, RESIZE_BOTTOM,  COLOUR_GREY,   228,   239,    28,   139, 0x0,                                 STR_0190_SCROLL_BAR_SCROLLS_LIST},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   419
	{      WWT_PANEL,     RESIZE_TB,  COLOUR_GREY,     0,   239,   140,   161, 0x0,                                 STR_NULL},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   420
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,     0,   227,   162,   173, 0x0,                                 STR_NULL},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   421
	{  WWT_RESIZEBOX,     RESIZE_TB,  COLOUR_GREY,   228,   239,   162,   173, 0x0,                                 STR_RESIZE_BUTTON},
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   422
	{   WIDGETS_END},
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   423
};
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   424
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   425
static const WindowDesc _vehicle_refit_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7072
diff changeset
   426
	WDP_AUTO, WDP_AUTO, 240, 174, 240, 174,
6491
00dc414c909d (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6484
diff changeset
   427
	WC_VEHICLE_REFIT, WC_VEHICLE_VIEW,
4694
c917a3ad0dd2 (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   428
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   429
	_vehicle_refit_widgets,
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   430
};
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   431
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   432
/** Show the refit window for a vehicle
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   433
* @param *v The vehicle to show the refit window for
6491
00dc414c909d (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6484
diff changeset
   434
* @param order of the vehicle ( ? )
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   435
*/
10184
bf4e3ff4cf16 (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
smatz
parents: 10161
diff changeset
   436
void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order, Window *parent)
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   437
{
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   438
	DeleteWindowById(WC_VEHICLE_REFIT, v->index);
10184
bf4e3ff4cf16 (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
smatz
parents: 10161
diff changeset
   439
	RefitWindow *w = new RefitWindow(&_vehicle_refit_desc, v, order);
bf4e3ff4cf16 (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
smatz
parents: 10161
diff changeset
   440
	w->parent = parent;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   441
}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   442
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
   443
/** Display additional text from NewGRF in the purchase information window */
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   444
uint ShowAdditionalText(int x, int y, uint w, EngineID engine)
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   445
{
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   446
	uint16 callback = GetVehicleCallback(CBID_VEHICLE_ADDITIONAL_TEXT, 0, 0, engine, NULL);
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   447
	if (callback == CALLBACK_FAILED) return 0;
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   448
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
   449
	/* STR_02BD is used to start the string with {BLACK} */
4928
ff53f78c5a87 (svn r6908) - Codechange: Modify DrawStringMultiLine() to return the number of pixel lines used, and use it for drawing NewGRF additional text (mart3p)
peter1138
parents: 4912
diff changeset
   450
	SetDParam(0, GetGRFStringID(GetEngineGRFID(engine), 0xD000 + callback));
9908
a2cd9bc6a38b (svn r14058) -Fix [FS#2224]: NewGRF callback 23 didn't use the NewGRF compatible text stack (minime)
rubidium
parents: 9862
diff changeset
   451
	PrepareTextRefStackUsage(0);
a2cd9bc6a38b (svn r14058) -Fix [FS#2224]: NewGRF callback 23 didn't use the NewGRF compatible text stack (minime)
rubidium
parents: 9862
diff changeset
   452
	uint result = DrawStringMultiLine(x, y, STR_02BD, w);
a2cd9bc6a38b (svn r14058) -Fix [FS#2224]: NewGRF callback 23 didn't use the NewGRF compatible text stack (minime)
rubidium
parents: 9862
diff changeset
   453
	StopTextRefStackUsage();
a2cd9bc6a38b (svn r14058) -Fix [FS#2224]: NewGRF callback 23 didn't use the NewGRF compatible text stack (minime)
rubidium
parents: 9862
diff changeset
   454
	return result;
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   455
}
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   456
6423
8e10e79e0fd1 (svn r9559) -Documentation: doxygen and comment changes: 'U' and 'V' now. Almost done. Yeah. I know, I've already said that...
belugas
parents: 6350
diff changeset
   457
/** Display list of cargo types of the engine, for the purchase information window */
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   458
uint ShowRefitOptionsList(int x, int y, uint w, EngineID engine)
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   459
{
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   460
	/* List of cargo types of this engine */
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   461
	uint32 cmask = EngInfo(engine)->refit_mask;
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   462
	/* List of cargo types available in this climate */
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   463
	uint32 lmask = _cargo_mask;
9648
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   464
	char string[512];
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   465
	char *b = string;
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   466
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   467
	/* Draw nothing if the engine is not refittable */
7832
60035eb28f08 (svn r11382) -Codechange: renamed COUNTBITS to CountBits, as it is no longer a macro (skidd13)
truelight
parents: 7824
diff changeset
   468
	if (CountBits(cmask) <= 1) return 0;
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   469
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   470
	b = InlineString(b, STR_PURCHASE_INFO_REFITTABLE_TO);
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   471
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   472
	if (cmask == lmask) {
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   473
		/* Engine can be refitted to all types in this climate */
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   474
		b = InlineString(b, STR_PURCHASE_INFO_ALL_TYPES);
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   475
	} else {
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   476
		/* Check if we are able to refit to more cargo types and unable to. If
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   477
		 * so, invert the cargo types to list those that we can't refit to. */
7832
60035eb28f08 (svn r11382) -Codechange: renamed COUNTBITS to CountBits, as it is no longer a macro (skidd13)
truelight
parents: 7824
diff changeset
   478
		if (CountBits(cmask ^ lmask) < CountBits(cmask)) {
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   479
			cmask ^= lmask;
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   480
			b = InlineString(b, STR_PURCHASE_INFO_ALL_BUT);
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   481
		}
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   482
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   483
		bool first = true;
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   484
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   485
		/* Add each cargo type to the list */
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   486
		for (CargoID cid = 0; cid < NUM_CARGO; cid++) {
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7846
diff changeset
   487
			if (!HasBit(cmask, cid)) continue;
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   488
9648
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   489
			if (b >= lastof(string) - (2 + 2 * 4)) break; // ", " and two calls to Utf8Encode()
8041
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 7997
diff changeset
   490
9648
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   491
			if (!first) b = strecpy(b, ", ", lastof(string));
6113
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   492
			first = false;
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   493
a10ede03ac58 (svn r8849) -Codechange: Replace hardcoded global/climate cargo mapping tables with dynamically generated data. Change associated code to use new functions.
peter1138
parents: 6091
diff changeset
   494
			b = InlineString(b, GetCargo(cid)->name);
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   495
		}
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   496
	}
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   497
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   498
	/* Terminate and display the completed string */
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   499
	*b = '\0';
8041
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 7997
diff changeset
   500
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 7997
diff changeset
   501
	/* Make sure we detect any buffer overflow */
9648
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   502
	assert(b < endof(string));
8041
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 7997
diff changeset
   503
9653
85061f9927b0 (svn r13720) -Fix (r13715): string wasn't correctly passed to draw function.
rubidium
parents: 9652
diff changeset
   504
	SetDParamStr(0, string);
9648
c79160082c0f (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
rubidium
parents: 9585
diff changeset
   505
	return DrawStringMultiLine(x, y, STR_JUST_RAW_STRING, w);
4932
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   506
}
4bf213d0ed53 (svn r6912) - Feature: Show a list of cargo types that a vehicle is refittable to in the purchase information window. (mart3p)
peter1138
parents: 4931
diff changeset
   507
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   508
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   509
/** Sort vehicles by their number */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   510
static int CDECL VehicleNumberSorter(const Vehicle* const *a, const Vehicle* const *b)
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   511
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   512
	return (*a)->unitnumber - (*b)->unitnumber;
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   513
}
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   514
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   515
/** Sort vehicles by their name */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   516
static int CDECL VehicleNameSorter(const Vehicle* const *a, const Vehicle* const *b)
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   517
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   518
	static char last_name[2][64];
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   519
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   520
	if (*a != _last_vehicle[0]) {
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   521
		_last_vehicle[0] = *a;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   522
		SetDParam(0, (*a)->index);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   523
		GetString(last_name[0], STR_VEHICLE_NAME, lastof(last_name[0]));
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   524
	}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   525
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   526
	if (*b != _last_vehicle[1]) {
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   527
		_last_vehicle[1] = *b;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   528
		SetDParam(0, (*b)->index);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   529
		GetString(last_name[1], STR_VEHICLE_NAME, lastof(last_name[1]));
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   530
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   531
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   532
	int r = strcmp(last_name[0], last_name[1]);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   533
	return (r != 0) ? r : VehicleNumberSorter(a, b);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   534
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   535
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   536
/** Sort vehicles by their age */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   537
static int CDECL VehicleAgeSorter(const Vehicle* const *a, const Vehicle* const *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   538
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   539
	int r = (*a)->age - (*b)->age;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   540
	return (r != 0) ? r : VehicleNumberSorter(a, b);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   541
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   542
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   543
/** Sort vehicles by this year profit */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   544
static int CDECL VehicleProfitThisYearSorter(const Vehicle* const *a, const Vehicle* const *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   545
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   546
	int r = ClampToI32((*a)->GetDisplayProfitThisYear() - (*b)->GetDisplayProfitThisYear());
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   547
	return (r != 0) ? r : VehicleNumberSorter(a, b);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   548
}
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   549
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   550
/** Sort vehicles by last year profit */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   551
static int CDECL VehicleProfitLastYearSorter(const Vehicle* const *a, const Vehicle* const *b)
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   552
{
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   553
	int r = ClampToI32((*a)->GetDisplayProfitLastYear() - (*b)->GetDisplayProfitLastYear());
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   554
	return (r != 0) ? r : VehicleNumberSorter(a, b);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   555
}
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   556
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   557
/** Sort vehicles by their cargo */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   558
static int CDECL VehicleCargoSorter(const Vehicle* const *a, const Vehicle* const *b)
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   559
{
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   560
	const Vehicle *v;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   561
	AcceptedCargo diff;
9569
7697ab949b12 (svn r13593) -Fix [FS#2095](r13524): sorting by cargo capacity was broken
smatz
parents: 9563
diff changeset
   562
	memset(diff, 0, sizeof(diff));
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   563
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   564
	/* Append the cargo of the connected weagons */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   565
	for (v = *a; v != NULL; v = v->Next()) diff[v->cargo_type] += v->cargo_cap;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   566
	for (v = *b; v != NULL; v = v->Next()) diff[v->cargo_type] -= v->cargo_cap;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   567
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   568
	int r = 0;
6350
04b19f551aec (svn r9388) -Codechange: variable scope and type, and standardify all CargoID loops.
peter1138
parents: 6259
diff changeset
   569
	for (CargoID i = 0; i < NUM_CARGO; i++) {
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   570
		r = diff[i];
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   571
		if (r != 0) break;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   572
	}
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
   573
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   574
	return (r != 0) ? r : VehicleNumberSorter(a, b);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   575
}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   576
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   577
/** Sort vehicles by their reliability */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   578
static int CDECL VehicleReliabilitySorter(const Vehicle* const *a, const Vehicle* const *b)
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   579
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   580
	int r = (*a)->reliability - (*b)->reliability;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   581
	return (r != 0) ? r : VehicleNumberSorter(a, b);
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   582
}
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   583
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   584
/** Sort vehicles by their max speed */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   585
static int CDECL VehicleMaxSpeedSorter(const Vehicle* const *a, const Vehicle* const *b)
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   586
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   587
	int r = 0;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   588
	if ((*a)->type == VEH_TRAIN && (*b)->type == VEH_TRAIN) {
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   589
		r = (*a)->u.rail.cached_max_speed - (*b)->u.rail.cached_max_speed;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   590
	} else {
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   591
		r = (*a)->max_speed - (*b)->max_speed;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   592
	}
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   593
	return (r != 0) ? r : VehicleNumberSorter(a, b);
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   594
}
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   595
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   596
/** Sort vehicles by model */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   597
static int CDECL VehicleModelSorter(const Vehicle* const *a, const Vehicle* const *b)
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   598
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   599
	int r = (*a)->engine_type - (*b)->engine_type;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   600
	return (r != 0) ? r : VehicleNumberSorter(a, b);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   601
}
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   602
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   603
/** Sort vehciles by their value */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   604
static int CDECL VehicleValueSorter(const Vehicle* const *a, const Vehicle* const *b)
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   605
{
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   606
	const Vehicle *u;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   607
	Money diff = 0;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   608
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   609
	for (u = *a; u != NULL; u = u->Next()) diff += u->value;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   610
	for (u = *b; u != NULL; u = u->Next()) diff -= u->value;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   611
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   612
	int r = ClampToI32(diff);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   613
	return (r != 0) ? r : VehicleNumberSorter(a, b);
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   614
}
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   615
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   616
/** Sort vehicles by their length */
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   617
static int CDECL VehicleLengthSorter(const Vehicle* const *a, const Vehicle* const *b)
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   618
{
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   619
	int r = 0;
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   620
	switch ((*a)->type) {
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   621
		case VEH_TRAIN:
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   622
			r = (*a)->u.rail.cached_total_length - (*b)->u.rail.cached_total_length;
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   623
			break;
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   624
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   625
		case VEH_ROAD: {
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   626
			const Vehicle *u;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   627
			for (u = *a; u != NULL; u = u->Next()) r += u->u.road.cached_veh_length;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   628
			for (u = *b; u != NULL; u = u->Next()) r -= u->u.road.cached_veh_length;
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   629
		} break;
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   630
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   631
		default: NOT_REACHED();
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   632
	}
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   633
	return (r != 0) ? r : VehicleNumberSorter(a, b);
8974
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   634
}
4d93998b3c1d (svn r12766) -Add: sorting by road vehicle/train length. Based on a patch by Sir Bob.
rubidium
parents: 8969
diff changeset
   635
10161
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   636
/** Sort vehicles by the time they can still live */
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   637
static int CDECL VehicleTimeToLiveSorter(const Vehicle* const *a, const Vehicle* const *b)
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   638
{
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   639
	int r = ClampToI32(((*a)->max_age - (*a)->age) - ((*b)->max_age - (*b)->age));
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   640
	return (r != 0) ? r : VehicleNumberSorter(a, b);
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   641
}
1343bc8e2c57 (svn r14352) -Feature: Allow sorting vehicles by remaining life time.
belugas
parents: 10151
diff changeset
   642
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6148
diff changeset
   643
void InitializeGUI()
1246
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
   644
{
9528
b4e46d96ee04 (svn r13524) -Codechange: use the typesafe QSort for vehicle sortings
skidd13
parents: 9413
diff changeset
   645
	MemSetT(&_sorting, 0);
1246
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
   646
}
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
   647
9861
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   648
/**
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   649
 * Assign a vehicle window a new vehicle
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   650
 * @param window_class WindowClass to search for
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   651
 * @param from_index the old vehicle ID
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   652
 * @param to_index the new vehicle ID
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   653
 */
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   654
static inline void ChangeVehicleWindow(WindowClass window_class, VehicleID from_index, VehicleID to_index)
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   655
{
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   656
	Window *w = FindWindowById(window_class, from_index);
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   657
	if (w != NULL) {
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   658
		w->window_number = to_index;
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   659
		if (w->viewport != NULL) w->viewport->follow_vehicle = to_index;
10184
bf4e3ff4cf16 (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
smatz
parents: 10161
diff changeset
   660
		if (to_index != INVALID_VEHICLE) InvalidateThisWindowData(w, 0);
9861
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   661
	}
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   662
}
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   663
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   664
/**
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   665
 * Report a change in vehicle IDs (due to autoreplace) to affected vehicle windows.
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   666
 * @param from_index the old vehicle ID
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   667
 * @param to_index the new vehicle ID
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   668
 */
9060
f0f4674fe194 (svn r12912) -Codechange: overloaded ChangeVehicleViewWindow() so each argument can be either a Vehicle pointer or a VehicleID
bjarni
parents: 8994
diff changeset
   669
void ChangeVehicleViewWindow(VehicleID from_index, VehicleID to_index)
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
   670
{
9861
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   671
	ChangeVehicleWindow(WC_VEHICLE_VIEW,      from_index, to_index);
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   672
	ChangeVehicleWindow(WC_VEHICLE_ORDERS,    from_index, to_index);
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   673
	ChangeVehicleWindow(WC_VEHICLE_REFIT,     from_index, to_index);
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   674
	ChangeVehicleWindow(WC_VEHICLE_DETAILS,   from_index, to_index);
10bbfd0947e8 (svn r14006) -Codechange: Deduplicate some code.
frosch
parents: 9808
diff changeset
   675
	ChangeVehicleWindow(WC_VEHICLE_TIMETABLE, from_index, to_index);
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
   676
}
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
   677
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
   678
enum VehicleListWindowWidgets {
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   679
	VLW_WIDGET_CLOSEBOX = 0,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   680
	VLW_WIDGET_CAPTION,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   681
	VLW_WIDGET_STICKY,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   682
	VLW_WIDGET_SORT_ORDER,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   683
	VLW_WIDGET_SORT_BY_PULLDOWN,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   684
	VLW_WIDGET_EMPTY_TOP_RIGHT,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   685
	VLW_WIDGET_LIST,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   686
	VLW_WIDGET_SCROLLBAR,
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   687
	VLW_WIDGET_OTHER_COMPANY_FILLER,
5846
b4a666d80c88 (svn r8420) -Codechange (r7418): Rename the 'New <vehtype>' button of the global vehicle lists to 'Available <vehtype>' as it is a view-only list, not one from which you can purchase (rolling) stock.
Darkvater
parents: 5809
diff changeset
   688
	VLW_WIDGET_AVAILABLE_VEHICLES,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   689
	VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4673
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
   690
	VLW_WIDGET_STOP_ALL,
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
   691
	VLW_WIDGET_START_ALL,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   692
	VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   693
	VLW_WIDGET_RESIZE,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   694
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   695
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   696
static const Widget _vehicle_list_widgets[] = {
9778
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   697
	{   WWT_CLOSEBOX,   RESIZE_NONE,  COLOUR_GREY,     0,    10,     0,    13, STR_00C5,             STR_018B_CLOSE_WINDOW},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   698
	{    WWT_CAPTION,  RESIZE_RIGHT,  COLOUR_GREY,    11,   247,     0,    13, 0x0,                  STR_018C_WINDOW_TITLE_DRAG_THIS},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   699
	{  WWT_STICKYBOX,     RESIZE_LR,  COLOUR_GREY,   248,   259,     0,    13, 0x0,                  STR_STICKY_BUTTON},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   700
	{ WWT_PUSHTXTBTN,   RESIZE_NONE,  COLOUR_GREY,     0,    80,    14,    25, STR_SORT_BY,          STR_SORT_ORDER_TIP},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   701
	{   WWT_DROPDOWN,   RESIZE_NONE,  COLOUR_GREY,    81,   247,    14,    25, 0x0,                  STR_SORT_CRITERIA_TIP},
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
   702
	{      WWT_PANEL,  RESIZE_RIGHT,  COLOUR_GREY,   248,   259,    14,    25, 0x0,                  STR_NULL},
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   703
	{     WWT_MATRIX,     RESIZE_RB,  COLOUR_GREY,     0,   247,    26,   181, 0x0,                  STR_NULL},
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   704
	{  WWT_SCROLLBAR,    RESIZE_LRB,  COLOUR_GREY,   248,   259,    26,   181, 0x0,                  STR_0190_SCROLL_BAR_SCROLLS_LIST},
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   705
	/* Widget to be shown for other companies hiding the following 6 widgets */
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   706
	{      WWT_PANEL,    RESIZE_RTB,  COLOUR_GREY,     0,   247,   182,   193, 0x0,                  STR_NULL},
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   707
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   708
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,     0,   105,   182,   193, 0x0,                  STR_AVAILABLE_ENGINES_TIP},
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   709
	{   WWT_DROPDOWN,     RESIZE_TB,  COLOUR_GREY,   106,   223,   182,   193, STR_MANAGE_LIST,      STR_MANAGE_LIST_TIP},
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   710
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   711
	{ WWT_PUSHIMGBTN,     RESIZE_TB,  COLOUR_GREY,   224,   235,   182,   193, SPR_FLAG_VEH_STOPPED, STR_MASS_STOP_LIST_TIP},
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   712
	{ WWT_PUSHIMGBTN,     RESIZE_TB,  COLOUR_GREY,   236,   247,   182,   193, SPR_FLAG_VEH_RUNNING, STR_MASS_START_LIST_TIP},
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   713
	{      WWT_PANEL,    RESIZE_RTB,  COLOUR_GREY,   248,   247,   182,   193, 0x0,                  STR_NULL},
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   714
	{  WWT_RESIZEBOX,   RESIZE_LRTB,  COLOUR_GREY,   248,   259,   182,   193, 0x0,                  STR_RESIZE_BUTTON},
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   715
	{   WIDGETS_END},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   716
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
   717
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   718
static void DrawSmallOrderList(const Vehicle *v, int x, int y)
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   719
{
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   720
	const Order *order;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   721
	int sel, i = 0;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   722
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   723
	sel = v->cur_order_index;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   724
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   725
	FOR_VEHICLE_ORDERS(v, order) {
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7798
diff changeset
   726
		if (sel == 0) DrawString(x - 6, y, STR_SMALL_RIGHT_ARROW, TC_BLACK);
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   727
		sel--;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   728
8836
f6f1ea3d7e93 (svn r12584) -Codechange: do not access the order type directly.
rubidium
parents: 8786
diff changeset
   729
		if (order->IsType(OT_GOTO_STATION)) {
8840
332412c2e9c1 (svn r12588) -Codechange: do not access the destination of an order directly.
rubidium
parents: 8836
diff changeset
   730
			if (v->type == VEH_SHIP && GetStation(order->GetDestination())->IsBuoy()) continue;
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   731
8840
332412c2e9c1 (svn r12588) -Codechange: do not access the destination of an order directly.
rubidium
parents: 8836
diff changeset
   732
			SetDParam(0, order->GetDestination());
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7798
diff changeset
   733
			DrawString(x, y, STR_A036, TC_FROMSTRING);
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   735
			y += 6;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   736
			if (++i == 4) break;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   737
		}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   738
	}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   739
}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
   740
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   741
static void DrawVehicleImage(const Vehicle *v, int x, int y, VehicleID selection, int count, int skip)
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   742
{
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   743
	switch (v->type) {
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   744
		case VEH_TRAIN:    DrawTrainImage(v, x, y, selection, count, skip); break;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   745
		case VEH_ROAD:     DrawRoadVehImage(v, x, y, selection, count);     break;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   746
		case VEH_SHIP:     DrawShipImage(v, x, y, selection);               break;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   747
		case VEH_AIRCRAFT: DrawAircraftImage(v, x, y, selection);           break;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   748
		default: NOT_REACHED();
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   749
	}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   750
}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   751
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   752
/**
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   753
 * Draw all the vehicle list items.
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   754
 * @param x the position from where to draw the items.
10143
38ea4e64508a (svn r14329) -Fix (r14306): selections in the group GUI weren't shown anymore.
rubidium
parents: 10122
diff changeset
   755
 * @param selected_vehicle the vehicle that is to be selected
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   756
 */
10143
38ea4e64508a (svn r14329) -Fix (r14306): selections in the group GUI weren't shown anymore.
rubidium
parents: 10122
diff changeset
   757
void BaseVehicleListWindow::DrawVehicleListItems(int x, VehicleID selected_vehicle)
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   758
{
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   759
	int y = PLY_WND_PRC__OFFSET_TOP_WIDGET;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   760
	uint max = min(this->vscroll.pos + this->vscroll.cap, this->vehicles.Length());
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   761
	for (uint i = this->vscroll.pos; i < max; ++i) {
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   762
		const Vehicle *v = this->vehicles[i];
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   763
		StringID str;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   764
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   765
		SetDParam(0, v->GetDisplayProfitThisYear());
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   766
		SetDParam(1, v->GetDisplayProfitLastYear());
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   767
10143
38ea4e64508a (svn r14329) -Fix (r14306): selections in the group GUI weren't shown anymore.
rubidium
parents: 10122
diff changeset
   768
		DrawVehicleImage(v, x + 19, y + 6, selected_vehicle, this->widget[VLW_WIDGET_LIST].right - this->widget[VLW_WIDGET_LIST].left - 20, 0);
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   769
		DrawString(x + 19, y + this->resize.step_height - 8, STR_0198_PROFIT_THIS_YEAR_LAST_YEAR, TC_FROMSTRING);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   770
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   771
		if (v->name != NULL) {
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   772
			/* The vehicle got a name so we will print it */
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   773
			SetDParam(0, v->index);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   774
			DrawString(x + 19, y, STR_01AB, TC_FROMSTRING);
10348
c282fa649cbe (svn r14599) -Fix (r14598)[FS#2417]: Show again group-membership in the vehicle-lists. (Based on patch by PhilSophus)
frosch
parents: 10285
diff changeset
   775
		} else if (v->group_id != DEFAULT_GROUP) {
c282fa649cbe (svn r14599) -Fix (r14598)[FS#2417]: Show again group-membership in the vehicle-lists. (Based on patch by PhilSophus)
frosch
parents: 10285
diff changeset
   776
			/* The vehicle has no name, but is member of a group, so print group name */
c282fa649cbe (svn r14599) -Fix (r14598)[FS#2417]: Show again group-membership in the vehicle-lists. (Based on patch by PhilSophus)
frosch
parents: 10285
diff changeset
   777
			SetDParam(0, v->group_id);
c282fa649cbe (svn r14599) -Fix (r14598)[FS#2417]: Show again group-membership in the vehicle-lists. (Based on patch by PhilSophus)
frosch
parents: 10285
diff changeset
   778
			DrawString(x + 19, y, STR_GROUP_TINY_NAME, TC_BLACK);
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   779
		}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   780
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   781
		if (this->resize.step_height == PLY_WND_PRC__SIZE_OF_ROW_BIG) DrawSmallOrderList(v, x + 138, y);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   782
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   783
		if (v->IsInDepot()) {
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   784
			str = STR_021F;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   785
		} else {
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   786
			str = (v->age > v->max_age - 366) ? STR_00E3 : STR_00E2;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   787
		}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   788
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   789
		SetDParam(0, v->unitnumber);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   790
		DrawString(x, y + 2, str, TC_FROMSTRING);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   791
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   792
		DrawVehicleProfitButton(v, x, y + 13);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   793
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   794
		y += this->resize.step_height;
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   795
	}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   796
}
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   797
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   798
/**
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   799
 * Window for the (old) vehicle listing.
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   800
 *
4449
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
   801
 * bitmask for w->window_number
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   802
 * 0-7 CompanyID (owner)
4449
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
   803
 * 8-10 window type (use flags in vehicle_gui.h)
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
   804
 * 11-15 vehicle type (using VEH_, but can be compressed to fewer bytes if needed)
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
   805
 * 16-31 StationID or OrderID depending on window type (bit 8-10)
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   806
 */
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   807
struct VehicleListWindow : public BaseVehicleListWindow {
4673
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
   808
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   809
	VehicleListWindow(const WindowDesc *desc, WindowNumber window_number) : BaseVehicleListWindow(desc, window_number)
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   810
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   811
		uint16 window_type = this->window_number & VLW_MASK;
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   812
		CompanyID company = (CompanyID)GB(this->window_number, 0, 8);
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   813
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   814
		this->vehicle_type = (VehicleType)GB(this->window_number, 11, 5);
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   815
		this->caption_color = company;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
   816
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   817
		/* Hide the widgets that we will not use in this window
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   818
		* Some windows contains actions only fit for the owner */
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   819
		if (company == _local_company) {
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   820
			this->HideWidget(VLW_WIDGET_OTHER_COMPANY_FILLER);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   821
			this->SetWidgetDisabledState(VLW_WIDGET_AVAILABLE_VEHICLES, window_type != VLW_STANDARD);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   822
		} else {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   823
			this->SetWidgetsHiddenState(true,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   824
				VLW_WIDGET_AVAILABLE_VEHICLES,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   825
				VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   826
				VLW_WIDGET_STOP_ALL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   827
				VLW_WIDGET_START_ALL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   828
				VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   829
				WIDGET_LIST_END);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   830
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   831
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   832
		/* Set up the window widgets */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   833
		switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   834
			case VEH_TRAIN:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   835
				this->widget[VLW_WIDGET_LIST].tooltips          = STR_883D_TRAINS_CLICK_ON_TRAIN_FOR;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   836
				this->widget[VLW_WIDGET_AVAILABLE_VEHICLES].data = STR_AVAILABLE_TRAINS;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   837
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   838
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   839
			case VEH_ROAD:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   840
				this->widget[VLW_WIDGET_LIST].tooltips          = STR_901A_ROAD_VEHICLES_CLICK_ON;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   841
				this->widget[VLW_WIDGET_AVAILABLE_VEHICLES].data = STR_AVAILABLE_ROAD_VEHICLES;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   842
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   843
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   844
			case VEH_SHIP:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   845
				this->widget[VLW_WIDGET_LIST].tooltips          = STR_9823_SHIPS_CLICK_ON_SHIP_FOR;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   846
				this->widget[VLW_WIDGET_AVAILABLE_VEHICLES].data = STR_AVAILABLE_SHIPS;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   847
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   848
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   849
			case VEH_AIRCRAFT:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   850
				this->widget[VLW_WIDGET_LIST].tooltips          = STR_A01F_AIRCRAFT_CLICK_ON_AIRCRAFT;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   851
				this->widget[VLW_WIDGET_AVAILABLE_VEHICLES].data = STR_AVAILABLE_AIRCRAFT;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   852
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   853
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   854
			default: NOT_REACHED();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   855
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   856
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   857
		switch (window_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   858
			case VLW_SHARED_ORDERS:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   859
				this->widget[VLW_WIDGET_CAPTION].data  = STR_VEH_WITH_SHARED_ORDERS_LIST;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   860
				break;
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   861
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   862
			case VLW_STANDARD: /* Company Name - standard widget setup */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   863
				switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   864
					case VEH_TRAIN:    this->widget[VLW_WIDGET_CAPTION].data = STR_881B_TRAINS;        break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   865
					case VEH_ROAD:     this->widget[VLW_WIDGET_CAPTION].data = STR_9001_ROAD_VEHICLES; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   866
					case VEH_SHIP:     this->widget[VLW_WIDGET_CAPTION].data = STR_9805_SHIPS;         break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   867
					case VEH_AIRCRAFT: this->widget[VLW_WIDGET_CAPTION].data = STR_A009_AIRCRAFT;      break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   868
					default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   869
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   870
				break;
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   871
9963
9823664dd4af (svn r14118) -Fix(r14104): typos creeping like bugs
belugas
parents: 9949
diff changeset
   872
			case VLW_WAYPOINT_LIST:
9993
56936d41c036 (svn r14150) -Add: Add the count of trains using the current waypoint in the vehicle list window's caption
belugas
parents: 9978
diff changeset
   873
				this->widget[VLW_WIDGET_CAPTION].data = STR_WAYPOINT_VIEWPORT_LIST;
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   874
				break;
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   875
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   876
			case VLW_STATION_LIST: /* Station Name */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   877
				switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   878
					case VEH_TRAIN:    this->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_TRAINS;        break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   879
					case VEH_ROAD:     this->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_ROAD_VEHICLES; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   880
					case VEH_SHIP:     this->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_SHIPS;         break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   881
					case VEH_AIRCRAFT: this->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_AIRCRAFT;      break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   882
					default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   883
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   884
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   885
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   886
			case VLW_DEPOT_LIST:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   887
				switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   888
					case VEH_TRAIN:    this->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_TRAIN_DEPOT;    break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   889
					case VEH_ROAD:     this->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_ROADVEH_DEPOT;  break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   890
					case VEH_SHIP:     this->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_SHIP_DEPOT;     break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   891
					case VEH_AIRCRAFT: this->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_AIRCRAFT_DEPOT; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   892
					default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   893
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   894
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   895
			default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   896
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   897
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   898
		switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   899
			case VEH_TRAIN:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   900
				this->resize.step_width = 1;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   901
				/* Fallthrough */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   902
			case VEH_ROAD:
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
   903
				this->vscroll.cap = 6;
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   904
				this->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_SMALL;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   905
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   906
			case VEH_SHIP:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   907
			case VEH_AIRCRAFT:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   908
				this->vscroll.cap = 4;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   909
				this->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_BIG;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   910
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   911
			default: NOT_REACHED();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   912
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   913
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   914
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   915
		this->widget[VLW_WIDGET_LIST].data = (this->vscroll.cap << 8) + 1;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   916
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   917
		/* Set up sorting. Make the window-specific _sorting variable
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   918
			* point to the correct global _sorting struct so we are freed
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   919
			* from having conditionals during window operation */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   920
		switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   921
			case VEH_TRAIN:    this->sorting = &_sorting.train; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   922
			case VEH_ROAD:     this->sorting = &_sorting.roadveh; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   923
			case VEH_SHIP:     this->sorting = &_sorting.ship; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   924
			case VEH_AIRCRAFT: this->sorting = &_sorting.aircraft; break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   925
			default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   926
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   927
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
   928
		this->vehicles.SetListing(*this->sorting);
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
   929
		this->vehicles.ForceRebuild();
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
   930
		this->vehicles.NeedResort();
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   931
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   932
		this->FindWindowPlacementAndResize(desc);
10118
6b418b016a89 (svn r14302) -Codechange: simplify and make the vehicle list and group windows behave the same w.r.t. getting wider (by default) for trains than the other vehicles.
rubidium
parents: 10117
diff changeset
   933
		if (this->vehicle_type == VEH_TRAIN) ResizeWindow(this, 65, 0);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   934
	}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   935
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   936
	~VehicleListWindow()
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   937
	{
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
   938
		*this->sorting = this->vehicles.GetListing();
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   939
	}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   940
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   941
	virtual void OnPaint()
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   942
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   943
		int x = 2;
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
   944
		const Owner owner = (Owner)this->caption_color;
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   945
		const uint16 window_type = this->window_number & VLW_MASK;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   946
		const uint16 index = GB(this->window_number, 16, 16);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   947
10122
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   948
		this->BuildVehicleList(owner, index, window_type);
c524226103f1 (svn r14306) -Codechange: unify the code to draw the vehicle list.
rubidium
parents: 10118
diff changeset
   949
		this->SortVehicleList();
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
   950
		SetVScrollCount(this, this->vehicles.Length());
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   951
9976
b844c247532d (svn r14133) -Fix [FS#2249]: close the 'manage vehicles' dropdown once the number of vehicles in the list reaches 0.
rubidium
parents: 9963
diff changeset
   952
		if (this->vehicles.Length() == 0) HideDropDownMenu(this);
b844c247532d (svn r14133) -Fix [FS#2249]: close the 'manage vehicles' dropdown once the number of vehicles in the list reaches 0.
rubidium
parents: 9963
diff changeset
   953
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   954
		/* draw the widgets */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   955
		switch (window_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   956
			case VLW_SHARED_ORDERS: /* Shared Orders */
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
   957
				if (this->vehicles.Length() == 0) {
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   958
					/* We can't open this window without vehicles using this order
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   959
					* and we should close the window when deleting the order      */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   960
					NOT_REACHED();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   961
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   962
				SetDParam(0, this->vscroll.count);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   963
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   964
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   965
			case VLW_STANDARD: /* Company Name */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   966
				SetDParam(0, owner);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   967
				SetDParam(1, this->vscroll.count);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   968
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   969
9963
9823664dd4af (svn r14118) -Fix(r14104): typos creeping like bugs
belugas
parents: 9949
diff changeset
   970
			case VLW_WAYPOINT_LIST:
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   971
				SetDParam(0, index);
9993
56936d41c036 (svn r14150) -Add: Add the count of trains using the current waypoint in the vehicle list window's caption
belugas
parents: 9978
diff changeset
   972
				SetDParam(1, this->vscroll.count);
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   973
				break;
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
   974
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   975
			case VLW_STATION_LIST: /* Station Name */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   976
				SetDParam(0, index);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   977
				SetDParam(1, this->vscroll.count);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   978
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   979
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   980
			case VLW_DEPOT_LIST:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   981
				switch (this->vehicle_type) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   982
					case VEH_TRAIN:    SetDParam(0, STR_8800_TRAIN_DEPOT);        break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   983
					case VEH_ROAD:     SetDParam(0, STR_9003_ROAD_VEHICLE_DEPOT); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   984
					case VEH_SHIP:     SetDParam(0, STR_9803_SHIP_DEPOT);         break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   985
					case VEH_AIRCRAFT: SetDParam(0, STR_A002_AIRCRAFT_HANGAR);    break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   986
					default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   987
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   988
				if (this->vehicle_type == VEH_AIRCRAFT) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   989
					SetDParam(1, index); // Airport name
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   990
				} else {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   991
					SetDParam(1, GetDepot(index)->town_index);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   992
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   993
				SetDParam(2, this->vscroll.count);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   994
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   995
			default: NOT_REACHED(); break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   996
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   997
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
   998
		this->SetWidgetsDisabledState(this->vehicles.Length() == 0,
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
   999
			VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1000
			VLW_WIDGET_STOP_ALL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1001
			VLW_WIDGET_START_ALL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1002
			WIDGET_LIST_END);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1003
9273
35e0224ea8f1 (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
rubidium
parents: 9262
diff changeset
  1004
		this->DrawWidgets();
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1005
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1006
		/* draw sorting criteria string */
9563
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
  1007
		DrawString(85, 15, this->vehicle_sorter_names[this->vehicles.SortType()], TC_BLACK);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1008
		/* draw arrow pointing up/down for ascending/descending sorting */
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1009
		this->DrawSortButtonState(VLW_WIDGET_SORT_ORDER, this->vehicles.IsDescSortOrder() ? SBS_DOWN : SBS_UP);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1010
10143
38ea4e64508a (svn r14329) -Fix (r14306): selections in the group GUI weren't shown anymore.
rubidium
parents: 10122
diff changeset
  1011
		this->DrawVehicleListItems(x,  INVALID_VEHICLE);
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1012
	}
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1013
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1014
	virtual void OnClick(Point pt, int widget)
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1015
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1016
		switch (widget) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1017
			case VLW_WIDGET_SORT_ORDER: /* Flip sorting method ascending/descending */
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1018
				this->vehicles.ToggleSortOrder();
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1019
				this->SetDirty();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1020
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1021
			case VLW_WIDGET_SORT_BY_PULLDOWN:/* Select sorting criteria dropdown menu */
9563
c75bee824deb (svn r13587) -Codechange: make some globals members of VehicleListBase since they are used as such
skidd13
parents: 9530
diff changeset
  1022
				ShowDropDownMenu(this, this->vehicle_sorter_names, this->vehicles.SortType(), VLW_WIDGET_SORT_BY_PULLDOWN, 0, (this->vehicle_type == VEH_TRAIN || this->vehicle_type == VEH_ROAD) ? 0 : (1 << 10));
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1023
				return;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1024
			case VLW_WIDGET_LIST: { /* Matrix to show vehicles */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1025
				uint32 id_v = (pt.y - PLY_WND_PRC__OFFSET_TOP_WIDGET) / this->resize.step_height;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1026
				const Vehicle *v;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1027
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1028
				if (id_v >= this->vscroll.cap) return; // click out of bounds
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1029
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1030
				id_v += this->vscroll.pos;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1031
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
  1032
				if (id_v >= this->vehicles.Length()) return; // click out of list bound
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1033
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
  1034
				v = this->vehicles[id_v];
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1035
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1036
				ShowVehicleViewWindow(v);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1037
			} break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1038
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1039
			case VLW_WIDGET_AVAILABLE_VEHICLES:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1040
				ShowBuildVehicleWindow(0, this->vehicle_type);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1041
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1042
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1043
			case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN: {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1044
				static StringID action_str[] = {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1045
					STR_REPLACE_VEHICLES,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1046
					STR_SEND_FOR_SERVICING,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1047
					STR_NULL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1048
					INVALID_STRING_ID
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1049
				};
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1050
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1051
				static const StringID depot_name[] = {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1052
					STR_SEND_TRAIN_TO_DEPOT,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1053
					STR_SEND_ROAD_VEHICLE_TO_DEPOT,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1054
					STR_SEND_SHIP_TO_DEPOT,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1055
					STR_SEND_AIRCRAFT_TO_HANGAR
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1056
				};
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1057
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1058
				/* XXX - Substite string since the dropdown cannot handle dynamic strings */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1059
				action_str[2] = depot_name[this->vehicle_type];
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1060
				ShowDropDownMenu(this, action_str, 0, VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN, 0, (this->window_number & VLW_MASK) == VLW_STANDARD ? 0 : 1);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1061
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1062
			}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1063
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1064
			case VLW_WIDGET_STOP_ALL:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1065
			case VLW_WIDGET_START_ALL:
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1066
				DoCommandP(0, GB(this->window_number, 16, 16), (this->window_number & VLW_MASK) | (1 << 6) | (widget == VLW_WIDGET_START_ALL ? (1 << 5) : 0) | this->vehicle_type, NULL, CMD_MASS_START_STOP);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1067
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1068
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1069
	}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1070
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1071
	virtual void OnDropdownSelect(int widget, int index)
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1072
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1073
		switch (widget) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1074
			case VLW_WIDGET_SORT_BY_PULLDOWN:
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1075
				this->vehicles.SetSortType(index);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1076
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1077
			case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN:
9365
95e9cbc0257e (svn r13266) -Codechange: Use SmallVector in GUIList
peter1138
parents: 9354
diff changeset
  1078
				assert(this->vehicles.Length() != 0);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1079
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1080
				switch (index) {
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1081
					case 0: /* Replace window */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1082
						ShowReplaceGroupVehicleWindow(DEFAULT_GROUP, this->vehicle_type);
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1083
						break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1084
					case 1: /* Send for servicing */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1085
						DoCommandP(0, GB(this->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1086
							(this->window_number & VLW_MASK) | DEPOT_MASS_SEND | DEPOT_SERVICE,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1087
							NULL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1088
							GetCmdSendToDepot(this->vehicle_type));
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1089
						break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1090
					case 2: /* Send to Depots */
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1091
						DoCommandP(0, GB(this->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1092
							(this->window_number & VLW_MASK) | DEPOT_MASS_SEND,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1093
							NULL,
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1094
							GetCmdSendToDepot(this->vehicle_type));
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1095
						break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1096
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1097
					default: NOT_REACHED();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1098
				}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1099
				break;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1100
			default: NOT_REACHED();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1101
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1102
		this->SetDirty();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1103
	}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1104
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1105
	virtual void OnTick()
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1106
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1107
		if (_pause_game != 0) return;
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1108
		if (this->vehicles.NeedResort()) {
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1109
			StationID station = ((this->window_number & VLW_MASK) == VLW_STATION_LIST) ? GB(this->window_number, 16, 16) : INVALID_STATION;
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1110
			Owner owner = (Owner)this->caption_color;
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1111
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1112
			DEBUG(misc, 3, "Periodic resort %d list company %d at station %d", this->vehicle_type, owner, station);
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1113
			this->SetDirty();
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1114
		}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1115
	}
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1116
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1117
	virtual void OnResize(Point new_size, Point delta)
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1118
	{
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1119
		this->vscroll.cap += delta.y / (int)this->resize.step_height;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1120
		this->widget[VLW_WIDGET_LIST].data = (this->vscroll.cap << 8) + 1;
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1121
	}
9297
1cb8d7bbdc8a (svn r13165) -Codechange: replace some RebuildXXXList/ResortXXXList+InvalidateWindowXXX with InvalidateWindowXXXData.
rubidium
parents: 9274
diff changeset
  1122
1cb8d7bbdc8a (svn r13165) -Codechange: replace some RebuildXXXList/ResortXXXList+InvalidateWindowXXX with InvalidateWindowXXXData.
rubidium
parents: 9274
diff changeset
  1123
	virtual void OnInvalidateData(int data)
1cb8d7bbdc8a (svn r13165) -Codechange: replace some RebuildXXXList/ResortXXXList+InvalidateWindowXXX with InvalidateWindowXXXData.
rubidium
parents: 9274
diff changeset
  1124
	{
9942
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1125
		if (HasBit(data, 15) && (this->window_number & VLW_MASK) == VLW_SHARED_ORDERS) {
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1126
			SB(this->window_number, 16, 16, GB(data, 16, 16));
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1127
			this->vehicles.ForceRebuild();
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1128
			return;
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1129
		}
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1130
9530
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1131
		if (data == 0) {
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1132
			this->vehicles.ForceRebuild();
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1133
		} else {
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1134
			this->vehicles.ForceResort();
fba2561f33f1 (svn r13534) -Codechange: Replace the main part of VehiclesListBase sorting with GUIList function calls
skidd13
parents: 9528
diff changeset
  1135
		}
9297
1cb8d7bbdc8a (svn r13165) -Codechange: replace some RebuildXXXList/ResortXXXList+InvalidateWindowXXX with InvalidateWindowXXXData.
rubidium
parents: 9274
diff changeset
  1136
	}
9183
6e749ab7d680 (svn r13046) -Codechange: make classes of the VehicleListWindow and the VehicleGroupWindow.
rubidium
parents: 9182
diff changeset
  1137
};
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1138
10118
6b418b016a89 (svn r14302) -Codechange: simplify and make the vehicle list and group windows behave the same w.r.t. getting wider (by default) for trains than the other vehicles.
rubidium
parents: 10117
diff changeset
  1139
static WindowDesc _vehicle_list_desc = {
10117
dd9f49319539 (svn r14301) -Codechange: give the vehicle list and group list the same relative size and the same absolute height for the vehicle list items.
rubidium
parents: 9993
diff changeset
  1140
	WDP_AUTO, WDP_AUTO, 260, 194, 260, 246,
10118
6b418b016a89 (svn r14302) -Codechange: simplify and make the vehicle list and group windows behave the same w.r.t. getting wider (by default) for trains than the other vehicles.
rubidium
parents: 10117
diff changeset
  1141
	WC_INVALID, WC_NONE,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1142
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1143
	_vehicle_list_widgets,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1144
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1145
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1146
static void ShowVehicleListWindowLocal(CompanyID company, uint16 VLW_flag, VehicleType vehicle_type, uint16 unique_number)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1147
{
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1148
	if (!IsValidCompanyID(company)) return;
5005
f5086bd3945a (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1149
10118
6b418b016a89 (svn r14302) -Codechange: simplify and make the vehicle list and group windows behave the same w.r.t. getting wider (by default) for trains than the other vehicles.
rubidium
parents: 10117
diff changeset
  1150
	_vehicle_list_desc.cls = GetWindowClassForVehicleType(vehicle_type);
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1151
	WindowNumber num = (unique_number << 16) | (vehicle_type << 11) | VLW_flag | company;
10118
6b418b016a89 (svn r14302) -Codechange: simplify and make the vehicle list and group windows behave the same w.r.t. getting wider (by default) for trains than the other vehicles.
rubidium
parents: 10117
diff changeset
  1152
	AllocateWindowDescFront<VehicleListWindow>(&_vehicle_list_desc, num);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1153
}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1154
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1155
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1156
{
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1157
	/* If _settings_client.gui.advanced_vehicle_list > 1, display the Advanced list
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1158
	 * if _settings_client.gui.advanced_vehicle_list == 1, display Advanced list only for local company
7547
93b6e6de2898 (svn r11067) -Codechange: also make it possible to use the advanced vehicle list for other players. Patch by SmatZ.
rubidium
parents: 7540
diff changeset
  1159
	 * if _ctrl_pressed, do the opposite action (Advanced list x Normal list)
93b6e6de2898 (svn r11067) -Codechange: also make it possible to use the advanced vehicle list for other players. Patch by SmatZ.
rubidium
parents: 7540
diff changeset
  1160
	 */
93b6e6de2898 (svn r11067) -Codechange: also make it possible to use the advanced vehicle list for other players. Patch by SmatZ.
rubidium
parents: 7540
diff changeset
  1161
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1162
	if ((_settings_client.gui.advanced_vehicle_list > (uint)(company != _local_company)) != _ctrl_pressed) {
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1163
		ShowCompanyGroup(company, vehicle_type);
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6638
diff changeset
  1164
	} else {
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1165
		ShowVehicleListWindowLocal(company, VLW_STANDARD, vehicle_type, 0);
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6638
diff changeset
  1166
	}
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1167
}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1168
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
  1169
void ShowVehicleListWindow(const Waypoint *wp)
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
  1170
{
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
  1171
	if (wp == NULL) return;
9978
4c10b20eaf54 (svn r14135) -Codechange: Add owner to waypoints. Previously, it was guessed from rail underneath it.
belugas
parents: 9976
diff changeset
  1172
	ShowVehicleListWindowLocal(wp->owner, VLW_WAYPOINT_LIST, VEH_TRAIN, wp->index);
9949
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
  1173
}
392998225bdd (svn r14104) -Feature: Add a window for waypoints, allowing to view all the trains having the selected waypoint in their orders.
belugas
parents: 9942
diff changeset
  1174
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1175
void ShowVehicleListWindow(const Vehicle *v)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1176
{
9942
c3677fa5563f (svn r14097) -Fix [FS#2085]: one couldn't get a list of vehicles sharing an order when the number of orders was 0; you could see that the vehicles had a shared order though.
rubidium
parents: 9921
diff changeset
  1177
	ShowVehicleListWindowLocal(v->owner, VLW_SHARED_ORDERS, v->type, v->FirstShared()->index);
4669
c66d137bdca1 (svn r6565) - Fix (r6562): Missing newline at EOF caused a compiler warning
peter1138
parents: 4668
diff changeset
  1178
}
4681
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1179
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1180
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, StationID station)
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1181
{
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1182
	ShowVehicleListWindowLocal(company, VLW_STATION_LIST, vehicle_type, station);
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1183
}
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1184
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1185
void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, TileIndex depot_tile)
4681
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1186
{
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1187
	uint16 depot_airport_index;
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1188
6259
471b91a4b1d8 (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6248
diff changeset
  1189
	if (vehicle_type == VEH_AIRCRAFT) {
4681
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1190
		depot_airport_index = GetStationIndex(depot_tile);
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1191
	} else {
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1192
		Depot *depot = GetDepotByTile(depot_tile);
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1193
		if (depot == NULL) return; // no depot to show
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1194
		depot_airport_index = depot->index;
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1195
	}
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1196
	ShowVehicleListWindowLocal(company, VLW_DEPOT_LIST, vehicle_type, depot_airport_index);
4681
bc077405e9a8 (svn r6586) -Feature: [depot window] added a vehicle list window with all vehicles having a certain depot in their orders
bjarni
parents: 4678
diff changeset
  1197
}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1198
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1199
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1200
/* Unified vehicle GUI - Vehicle Details Window */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1201
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1202
/** Constants of vehicle details widget indices */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1203
enum VehicleDetailsWindowWidgets {
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1204
	VLD_WIDGET_CLOSEBOX = 0,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1205
	VLD_WIDGET_CAPTION,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1206
	VLD_WIDGET_RENAME_VEHICLE,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1207
	VLD_WIDGET_TOP_DETAILS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1208
	VLD_WIDGET_INCREASE_SERVICING_INTERVAL,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1209
	VLD_WIDGET_DECREASE_SERVICING_INTERVAL,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1210
	VLD_WIDGET_BOTTOM_RIGHT,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1211
	VLD_WIDGET_MIDDLE_DETAILS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1212
	VLD_WIDGET_SCROLLBAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1213
	VLD_WIDGET_DETAILS_CARGO_CARRIED,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1214
	VLD_WIDGET_DETAILS_TRAIN_VEHICLES,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1215
	VLD_WIDGET_DETAILS_CAPACITY_OF_EACH,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1216
	VLD_WIDGET_DETAILS_TOTAL_CARGO,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1217
	VLD_WIDGET_RESIZE,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1218
};
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1219
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1220
/** Vehicle details widgets. */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1221
static const Widget _vehicle_details_widgets[] = {
9778
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1222
	{   WWT_CLOSEBOX,   RESIZE_NONE,  COLOUR_GREY,   0,  10,   0,  13, STR_00C5,             STR_018B_CLOSE_WINDOW},                  // VLD_WIDGET_CLOSEBOX
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1223
	{    WWT_CAPTION,  RESIZE_RIGHT,  COLOUR_GREY,  11, 364,   0,  13, 0x0,                  STR_018C_WINDOW_TITLE_DRAG_THIS},        // VLD_WIDGET_CAPTION
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1224
	{ WWT_PUSHTXTBTN,     RESIZE_LR,  COLOUR_GREY, 365, 404,   0,  13, STR_01AA_NAME,        STR_NULL /* filled in later */},         // VLD_WIDGET_RENAME_VEHICLE
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1225
	{      WWT_PANEL,  RESIZE_RIGHT,  COLOUR_GREY,   0, 404,  14,  55, 0x0,                  STR_NULL},                               // VLD_WIDGET_TOP_DETAILS
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1226
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,   0,  10, 101, 106, STR_0188,             STR_884D_INCREASE_SERVICING_INTERVAL},   // VLD_WIDGET_INCREASE_SERVICING_INTERVAL
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1227
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,   0,  10, 107, 112, STR_0189,             STR_884E_DECREASE_SERVICING_INTERVAL},   // VLD_WIDGET_DECREASE_SERVICING_INTERVAL
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1228
	{      WWT_PANEL,    RESIZE_RTB,  COLOUR_GREY,  11, 404, 101, 112, 0x0,                  STR_NULL},                               // VLD_WIDGET_BOTTOM_RIGHT
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1229
	{     WWT_MATRIX,     RESIZE_RB,  COLOUR_GREY,   0, 392,  56, 100, 0x701,                STR_NULL},                               // VLD_WIDGET_MIDDLE_DETAILS
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1230
	{  WWT_SCROLLBAR,    RESIZE_LRB,  COLOUR_GREY, 393, 404,  56, 100, 0x0,                  STR_0190_SCROLL_BAR_SCROLLS_LIST},       // VLD_WIDGET_SCROLLBAR
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1231
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,   0,  95, 113, 124, STR_013C_CARGO,       STR_884F_SHOW_DETAILS_OF_CARGO_CARRIED}, // VLD_WIDGET_DETAILS_CARGO_CARRIED
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1232
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY,  96, 194, 113, 124, STR_013D_INFORMATION, STR_8850_SHOW_DETAILS_OF_TRAIN_VEHICLES},// VLD_WIDGET_DETAILS_TRAIN_VEHICLES
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1233
	{ WWT_PUSHTXTBTN,     RESIZE_TB,  COLOUR_GREY, 195, 293, 113, 124, STR_013E_CAPACITIES,  STR_8851_SHOW_CAPACITIES_OF_EACH},       // VLD_WIDGET_DETAILS_CAPACITY_OF_EACH
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1234
	{ WWT_PUSHTXTBTN,    RESIZE_RTB,  COLOUR_GREY, 294, 392, 113, 124, STR_TOTAL_CARGO,      STR_SHOW_TOTAL_CARGO},                   // VLD_WIDGET_DETAILS_TOTAL_CARGO
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1235
	{  WWT_RESIZEBOX,   RESIZE_LRTB,  COLOUR_GREY, 393, 404, 113, 124, 0x0,                  STR_RESIZE_BUTTON},                      // VLD_RESIZE
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1236
	{   WIDGETS_END},
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1237
};
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1238
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1239
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1240
/** Command indices for the _vehicle_command_translation_table. */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1241
enum VehicleStringTranslation {
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1242
	VST_VEHICLE_AGE_RUNNING_COST_YR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1243
	VST_VEHICLE_MAX_SPEED,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1244
	VST_VEHICLE_PROFIT_THIS_YEAR_LAST_YEAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1245
	VST_VEHICLE_RELIABILITY_BREAKDOWNS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1246
};
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1247
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1248
/** Command codes for the shared buttons indexed by VehicleCommandTranslation and vehicle type. */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1249
static const StringID _vehicle_translation_table[][4] = {
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1250
	{ // VST_VEHICLE_AGE_RUNNING_COST_YR
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1251
		STR_885D_AGE_RUNNING_COST_YR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1252
		STR_900D_AGE_RUNNING_COST_YR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1253
		STR_9812_AGE_RUNNING_COST_YR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1254
		STR_A00D_AGE_RUNNING_COST_YR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1255
	},
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1256
	{ // VST_VEHICLE_MAX_SPEED
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1257
		STR_NULL,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1258
		STR_900E_MAX_SPEED,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1259
		STR_9813_MAX_SPEED,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1260
		STR_A00E_MAX_SPEED,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1261
	},
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1262
	{ // VST_VEHICLE_PROFIT_THIS_YEAR_LAST_YEAR
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1263
		STR_885F_PROFIT_THIS_YEAR_LAST_YEAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1264
		STR_900F_PROFIT_THIS_YEAR_LAST_YEAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1265
		STR_9814_PROFIT_THIS_YEAR_LAST_YEAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1266
		STR_A00F_PROFIT_THIS_YEAR_LAST_YEAR,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1267
	},
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1268
	{ // VST_VEHICLE_RELIABILITY_BREAKDOWNS
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1269
		STR_8860_RELIABILITY_BREAKDOWNS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1270
		STR_9010_RELIABILITY_BREAKDOWNS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1271
		STR_9815_RELIABILITY_BREAKDOWNS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1272
		STR_A010_RELIABILITY_BREAKDOWNS,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1273
	},
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1274
};
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1275
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1276
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1277
extern int GetTrainDetailsWndVScroll(VehicleID veh_id, byte det_tab);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1278
extern void DrawTrainDetails(const Vehicle *v, int x, int y, int vscroll_pos, uint16 vscroll_cap, byte det_tab);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1279
extern void DrawRoadVehDetails(const Vehicle *v, int x, int y);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1280
extern void DrawShipDetails(const Vehicle *v, int x, int y);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1281
extern void DrawAircraftDetails(const Vehicle *v, int x, int y);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1282
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1283
struct VehicleDetailsWindow : Window {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1284
	int tab;
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1285
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1286
	/** Initialize a newly created vehicle details window */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1287
	VehicleDetailsWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1288
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1289
		const Vehicle *v = GetVehicle(this->window_number);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1290
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1291
		switch (v->type) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1292
			case VEH_TRAIN:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1293
				ResizeWindow(this, 0, 39);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1294
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1295
				this->vscroll.cap = 6;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1296
				this->height += 12;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1297
				this->resize.step_height = 14;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1298
				this->resize.height = this->height - 14 * 2; // Minimum of 4 wagons in the display
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1299
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1300
				this->widget[VLD_WIDGET_RENAME_VEHICLE].tooltips = STR_8867_NAME_TRAIN;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1301
				this->widget[VLD_WIDGET_CAPTION].data = STR_8802_DETAILS;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1302
				break;
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1303
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1304
			case VEH_ROAD: {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1305
				this->widget[VLD_WIDGET_CAPTION].data = STR_900C_DETAILS;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1306
				this->widget[VLD_WIDGET_RENAME_VEHICLE].tooltips = STR_902E_NAME_ROAD_VEHICLE;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1307
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1308
				if (!RoadVehHasArticPart(v)) break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1309
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1310
				/* Draw the text under the vehicle instead of next to it, minus the
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1311
				 * height already allocated for the cargo of the first vehicle. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1312
				uint height_extension = 15 - 11;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1313
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1314
				/* Add space for the cargo amount for each part. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1315
				for (const Vehicle *u = v; u != NULL; u = u->Next()) {
9585
0165043bb758 (svn r13623) -Codechange: only show the 'load' of articulated RV parts that have a capacity instead of showing 'empty' parts when a vehicle is completely full.
rubidium
parents: 9584
diff changeset
  1316
					if (u->cargo_cap != 0) height_extension += 11;
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1317
				}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1318
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1319
				ResizeWindow(this, 0, height_extension);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1320
			} break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1321
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1322
			case VEH_SHIP:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1323
				this->widget[VLD_WIDGET_RENAME_VEHICLE].tooltips = STR_982F_NAME_SHIP;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1324
				this->widget[VLD_WIDGET_CAPTION].data = STR_9811_DETAILS;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1325
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1326
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1327
			case VEH_AIRCRAFT:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1328
				ResizeWindow(this, 0, 11);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1329
				this->widget[VLD_WIDGET_RENAME_VEHICLE].tooltips = STR_A032_NAME_AIRCRAFT;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1330
				this->widget[VLD_WIDGET_CAPTION].data = STR_A00C_DETAILS;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1331
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1332
			default: NOT_REACHED();
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1333
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1334
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1335
		if (v->type != VEH_TRAIN) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1336
			this->vscroll.cap = 1;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1337
			this->widget[VLD_WIDGET_MIDDLE_DETAILS].right += 12;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1338
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1339
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1340
		this->widget[VLD_WIDGET_MIDDLE_DETAILS].data = (this->vscroll.cap << 8) + 1;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1341
		this->caption_color = v->owner;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1342
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1343
		this->tab = 0;
9333
2da01b3b71d8 (svn r13225) -Fix (r13041): Missing calls to FindWindowPlacementAndResize() from lots
peter1138
parents: 9317
diff changeset
  1344
2da01b3b71d8 (svn r13225) -Fix (r13041): Missing calls to FindWindowPlacementAndResize() from lots
peter1138
parents: 9317
diff changeset
  1345
		this->FindWindowPlacementAndResize(desc);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1346
	}
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1347
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1348
	/** Checks whether service interval is enabled for the vehicle. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1349
	static bool IsVehicleServiceIntervalEnabled(const VehicleType vehicle_type)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1350
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1351
		switch (vehicle_type) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1352
			default: NOT_REACHED();
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1353
			case VEH_TRAIN:    return _settings_game.vehicle.servint_trains   != 0; break;
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1354
			case VEH_ROAD:     return _settings_game.vehicle.servint_roadveh  != 0; break;
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1355
			case VEH_SHIP:     return _settings_game.vehicle.servint_ships    != 0; break;
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1356
			case VEH_AIRCRAFT: return _settings_game.vehicle.servint_aircraft != 0; break;
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1357
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1358
		return false; // kill a compiler warning
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1359
	}
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1360
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1361
	/**
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1362
	 * Draw the details for the given vehicle at the position (x, y) of the Details windows
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1363
	 *
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1364
	 * @param v current vehicle
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1365
	 * @param x The x coordinate
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1366
	 * @param y The y coordinate
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1367
	 * @param vscroll_pos (train only)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1368
	 * @param vscroll_cap (train only)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1369
	 * @param det_tab (train only)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1370
	 */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1371
	static void DrawVehicleDetails(const Vehicle *v, int x, int y, int vscroll_pos, uint vscroll_cap, byte det_tab)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1372
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1373
		switch (v->type) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1374
			case VEH_TRAIN:    DrawTrainDetails(v, x, y, vscroll_pos, vscroll_cap, det_tab);  break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1375
			case VEH_ROAD:     DrawRoadVehDetails(v, x, y);  break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1376
			case VEH_SHIP:     DrawShipDetails(v, x, y);     break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1377
			case VEH_AIRCRAFT: DrawAircraftDetails(v, x, y); break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1378
			default: NOT_REACHED();
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1379
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1380
	}
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1381
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1382
	/** Repaint vehicle details window. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1383
	virtual void OnPaint()
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1384
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1385
		const Vehicle *v = GetVehicle(this->window_number);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1386
		byte det_tab = this->tab;
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1387
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1388
		this->SetWidgetDisabledState(VLD_WIDGET_RENAME_VEHICLE, v->owner != _local_company);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1389
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1390
		if (v->type == VEH_TRAIN) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1391
			this->DisableWidget(det_tab + VLD_WIDGET_DETAILS_CARGO_CARRIED);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1392
			SetVScrollCount(this, GetTrainDetailsWndVScroll(v->index, det_tab));
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1393
		}
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1394
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1395
		this->SetWidgetsHiddenState(v->type != VEH_TRAIN,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1396
			VLD_WIDGET_SCROLLBAR,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1397
			VLD_WIDGET_DETAILS_CARGO_CARRIED,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1398
			VLD_WIDGET_DETAILS_TRAIN_VEHICLES,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1399
			VLD_WIDGET_DETAILS_CAPACITY_OF_EACH,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1400
			VLD_WIDGET_DETAILS_TOTAL_CARGO,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1401
			VLD_WIDGET_RESIZE,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1402
			WIDGET_LIST_END);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1403
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1404
		/* Disable service-scroller when interval is set to disabled */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1405
		this->SetWidgetsDisabledState(!IsVehicleServiceIntervalEnabled(v->type),
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1406
			VLD_WIDGET_INCREASE_SERVICING_INTERVAL,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1407
			VLD_WIDGET_DECREASE_SERVICING_INTERVAL,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1408
			WIDGET_LIST_END);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1409
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1410
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1411
		SetDParam(0, v->index);
9273
35e0224ea8f1 (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
rubidium
parents: 9262
diff changeset
  1412
		this->DrawWidgets();
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1413
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1414
		/* Draw running cost */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1415
		SetDParam(1, v->age / 366);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1416
		SetDParam(0, (v->age + 365 < v->max_age) ? STR_AGE : STR_AGE_RED);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1417
		SetDParam(2, v->max_age / 366);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1418
		SetDParam(3, v->GetDisplayRunningCost());
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1419
		DrawString(2, 15, _vehicle_translation_table[VST_VEHICLE_AGE_RUNNING_COST_YR][v->type], TC_FROMSTRING);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1420
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1421
		/* Draw max speed */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1422
		switch (v->type) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1423
			case VEH_TRAIN:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1424
				SetDParam(2, v->GetDisplayMaxSpeed());
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1425
				SetDParam(1, v->u.rail.cached_power);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1426
				SetDParam(0, v->u.rail.cached_weight);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1427
				SetDParam(3, v->u.rail.cached_max_te / 1000);
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1428
				DrawString(2, 25, (_settings_game.vehicle.realistic_acceleration && v->u.rail.railtype != RAILTYPE_MAGLEV) ?
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1429
					STR_VEHICLE_INFO_WEIGHT_POWER_MAX_SPEED_MAX_TE :
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1430
					STR_VEHICLE_INFO_WEIGHT_POWER_MAX_SPEED, TC_FROMSTRING);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1431
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1432
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1433
			case VEH_ROAD:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1434
			case VEH_SHIP:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1435
			case VEH_AIRCRAFT:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1436
				SetDParam(0, v->GetDisplayMaxSpeed());
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1437
				DrawString(2, 25, _vehicle_translation_table[VST_VEHICLE_MAX_SPEED][v->type], TC_FROMSTRING);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1438
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1439
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1440
			default: NOT_REACHED();
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1441
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1442
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1443
		/* Draw profit */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1444
		SetDParam(0, v->GetDisplayProfitThisYear());
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1445
		SetDParam(1, v->GetDisplayProfitLastYear());
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1446
		DrawString(2, 35, _vehicle_translation_table[VST_VEHICLE_PROFIT_THIS_YEAR_LAST_YEAR][v->type], TC_FROMSTRING);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1447
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1448
		/* Draw breakdown & reliability */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1449
		SetDParam(0, v->reliability * 100 >> 16);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1450
		SetDParam(1, v->breakdowns_since_last_service);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1451
		DrawString(2, 45, _vehicle_translation_table[VST_VEHICLE_RELIABILITY_BREAKDOWNS][v->type], TC_FROMSTRING);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1452
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1453
		/* Draw service interval text */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1454
		SetDParam(0, v->service_interval);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1455
		SetDParam(1, v->date_of_last_service);
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1456
		DrawString(13, this->height - (v->type != VEH_TRAIN ? 11 : 23), _settings_game.vehicle.servint_ispercent ? STR_SERVICING_INTERVAL_PERCENT : STR_883C_SERVICING_INTERVAL_DAYS, TC_FROMSTRING);
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1457
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1458
		switch (v->type) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1459
			case VEH_TRAIN:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1460
				DrawVehicleDetails(v, 2, 57, this->vscroll.pos, this->vscroll.cap, det_tab);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1461
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1462
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1463
			case VEH_ROAD:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1464
			case VEH_SHIP:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1465
			case VEH_AIRCRAFT:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1466
				DrawVehicleImage(v, 3, 57, INVALID_VEHICLE, 0, 0);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1467
				DrawVehicleDetails(v, 75, 57, this->vscroll.pos, this->vscroll.cap, det_tab);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1468
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1469
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1470
			default: NOT_REACHED();
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1471
		}
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1472
	}
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1473
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1474
	virtual void OnClick(Point pt, int widget)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1475
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1476
		/** Message strings for renaming vehicles indexed by vehicle type. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1477
		static const StringID _name_vehicle_title[] = {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1478
			STR_8865_NAME_TRAIN,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1479
			STR_902C_NAME_ROAD_VEHICLE,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1480
			STR_9831_NAME_SHIP,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1481
			STR_A030_NAME_AIRCRAFT
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1482
		};
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1483
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1484
		switch (widget) {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1485
			case VLD_WIDGET_RENAME_VEHICLE: {// rename
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1486
				const Vehicle *v = GetVehicle(this->window_number);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1487
				SetDParam(0, v->index);
10148
ad8e8a65f6a2 (svn r14334) -Feature: ability to reset name to default/automatic value (for vehicles, engines, towns, groups, stations, waypoints, managers and companies)
smatz
parents: 10145
diff changeset
  1488
				ShowQueryString(STR_VEHICLE_NAME, _name_vehicle_title[v->type], MAX_LENGTH_VEHICLE_NAME_BYTES, MAX_LENGTH_VEHICLE_NAME_PIXELS, this, CS_ALPHANUMERAL, QSF_ENABLE_DEFAULT);
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1489
			} break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1490
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1491
			case VLD_WIDGET_INCREASE_SERVICING_INTERVAL:   // increase int
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1492
			case VLD_WIDGET_DECREASE_SERVICING_INTERVAL: { // decrease int
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1493
				int mod = _ctrl_pressed ? 5 : 10;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1494
				const Vehicle *v = GetVehicle(this->window_number);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1495
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1496
				mod = (widget == VLD_WIDGET_DECREASE_SERVICING_INTERVAL) ? -mod : mod;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1497
				mod = GetServiceIntervalClamped(mod + v->service_interval);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1498
				if (mod == v->service_interval) return;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1499
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1500
				DoCommandP(v->tile, v->index, mod, NULL, CMD_CHANGE_SERVICE_INT | CMD_MSG(STR_018A_CAN_T_CHANGE_SERVICING));
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1501
			} break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1502
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1503
			case VLD_WIDGET_DETAILS_CARGO_CARRIED:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1504
			case VLD_WIDGET_DETAILS_TRAIN_VEHICLES:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1505
			case VLD_WIDGET_DETAILS_CAPACITY_OF_EACH:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1506
			case VLD_WIDGET_DETAILS_TOTAL_CARGO:
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1507
				this->SetWidgetsDisabledState(false,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1508
					VLD_WIDGET_DETAILS_CARGO_CARRIED,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1509
					VLD_WIDGET_DETAILS_TRAIN_VEHICLES,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1510
					VLD_WIDGET_DETAILS_CAPACITY_OF_EACH,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1511
					VLD_WIDGET_DETAILS_TOTAL_CARGO,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1512
					widget,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1513
					WIDGET_LIST_END);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1514
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1515
				this->tab = widget - VLD_WIDGET_DETAILS_CARGO_CARRIED;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1516
				this->SetDirty();
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1517
				break;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1518
		}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1519
	}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1520
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1521
	virtual void OnQueryTextFinished(char *str)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1522
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1523
		/** Message strings for error while renaming indexed by vehicle type. */
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1524
		static const StringID _name_vehicle_error[] = {
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1525
			STR_8866_CAN_T_NAME_TRAIN,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1526
			STR_902D_CAN_T_NAME_ROAD_VEHICLE,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1527
			STR_9832_CAN_T_NAME_SHIP,
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1528
			STR_A031_CAN_T_NAME_AIRCRAFT
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1529
		};
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1530
10148
ad8e8a65f6a2 (svn r14334) -Feature: ability to reset name to default/automatic value (for vehicles, engines, towns, groups, stations, waypoints, managers and companies)
smatz
parents: 10145
diff changeset
  1531
		if (str == NULL) return;
ad8e8a65f6a2 (svn r14334) -Feature: ability to reset name to default/automatic value (for vehicles, engines, towns, groups, stations, waypoints, managers and companies)
smatz
parents: 10145
diff changeset
  1532
ad8e8a65f6a2 (svn r14334) -Feature: ability to reset name to default/automatic value (for vehicles, engines, towns, groups, stations, waypoints, managers and companies)
smatz
parents: 10145
diff changeset
  1533
		_cmd_text = str;
10151
0dd6c35bf0cc (svn r14337) -Codechange: use CmdRename* and CMD_RENAME_* for vehicle, president and company renaming commands, too
smatz
parents: 10148
diff changeset
  1534
		DoCommandP(0, this->window_number, 0, NULL, CMD_RENAME_VEHICLE | CMD_MSG(_name_vehicle_error[GetVehicle(this->window_number)->type]));
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1535
	}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1536
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1537
	virtual void OnResize(Point new_size, Point delta)
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1538
	{
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1539
		if (delta.x != 0) ResizeButtons(this, VLD_WIDGET_DETAILS_CARGO_CARRIED, VLD_WIDGET_DETAILS_TOTAL_CARGO);
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1540
		if (delta.y == 0) return;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1541
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1542
		this->vscroll.cap += delta.y / 14;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1543
		this->widget[VLD_WIDGET_MIDDLE_DETAILS].data = (this->vscroll.cap << 8) + 1;
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1544
	}
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1545
};
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1546
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1547
/** Vehicle details window descriptor. */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1548
static const WindowDesc _vehicle_details_desc = {
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1549
	WDP_AUTO, WDP_AUTO, 405, 113, 405, 113,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1550
	WC_VEHICLE_DETAILS, WC_VEHICLE_VIEW,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1551
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1552
	_vehicle_details_widgets,
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1553
};
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1554
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1555
/** Shows the vehicle details window of the given vehicle. */
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1556
static void ShowVehicleDetailsWindow(const Vehicle *v)
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1557
{
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1558
	DeleteWindowById(WC_VEHICLE_ORDERS, v->index);
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1559
	DeleteWindowById(WC_VEHICLE_DETAILS, v->index);
9254
ab7fd9576ea2 (svn r13120) -Codechange: make a class of the VehicleDetailsWindow.
rubidium
parents: 9203
diff changeset
  1560
	AllocateWindowDescFront<VehicleDetailsWindow>(&_vehicle_details_desc, v->index);
7530
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1561
}
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1562
bfeada535347 (svn r11049) -Codechange: unify a large part of the vehicle details window. Based on a patch by nycom.
rubidium
parents: 7516
diff changeset
  1563
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1564
/* Unified vehicle GUI - Vehicle View Window */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1565
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1566
/** Vehicle view widgets. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1567
static const Widget _vehicle_view_widgets[] = {
9778
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1568
	{   WWT_CLOSEBOX,  RESIZE_NONE,  COLOUR_GREY,   0,  10,   0,  13, STR_00C5,                 STR_018B_CLOSE_WINDOW },           // VVW_WIDGET_CLOSEBOX
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1569
	{    WWT_CAPTION, RESIZE_RIGHT,  COLOUR_GREY,  11, 237,   0,  13, 0x0 /* filled later */,   STR_018C_WINDOW_TITLE_DRAG_THIS }, // VVW_WIDGET_CAPTION
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1570
	{  WWT_STICKYBOX,    RESIZE_LR,  COLOUR_GREY, 238, 249,   0,  13, 0x0,                      STR_STICKY_BUTTON },               // VVW_WIDGET_STICKY
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1571
	{      WWT_PANEL,    RESIZE_RB,  COLOUR_GREY,   0, 231,  14, 103, 0x0,                      STR_NULL },                        // VVW_WIDGET_PANEL
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1572
	{      WWT_INSET,    RESIZE_RB,  COLOUR_GREY,   2, 229,  16, 101, 0x0,                      STR_NULL },                        // VVW_WIDGET_VIEWPORT
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1573
	{    WWT_PUSHBTN,   RESIZE_RTB,  COLOUR_GREY,   0, 237, 104, 115, 0x0,                      0x0 /* filled later */ },          // VVW_WIDGET_START_STOP_VEH
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1574
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  14,  31, SPR_CENTRE_VIEW_VEHICLE,  0x0 /* filled later */ },          // VVW_WIDGET_CENTER_MAIN_VIEH
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1575
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  32,  49, 0x0 /* filled later */,   0x0 /* filled later */ },          // VVW_WIDGET_GOTO_DEPOT
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1576
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  50,  67, SPR_REFIT_VEHICLE,        0x0 /* filled later */ },          // VVW_WIDGET_REFIT_VEH
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1577
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  68,  85, SPR_SHOW_ORDERS,          0x0 /* filled later */ },          // VVW_WIDGET_SHOW_ORDERS
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1578
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  86, 103, SPR_SHOW_VEHICLE_DETAILS, 0x0 /* filled later */ },          // VVW_WIDGET_SHOW_DETAILS
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1579
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  32,  49, 0x0 /* filled later */,   0x0 /* filled later */ },          // VVW_WIDGET_CLONE_VEH
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1580
	{      WWT_PANEL,   RESIZE_LRB,  COLOUR_GREY, 232, 249, 104, 103, 0x0,                      STR_NULL },                        // VVW_WIDGET_EMPTY_BOTTOM_RIGHT
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1581
	{  WWT_RESIZEBOX,  RESIZE_LRTB,  COLOUR_GREY, 238, 249, 104, 115, 0x0,                      STR_NULL },                        // VVW_WIDGET_RESIZE
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1582
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  50,  67, SPR_FORCE_VEHICLE_TURN,   STR_9020_FORCE_VEHICLE_TO_TURN_AROUND }, // VVW_WIDGET_TURN_AROUND
c5dd94ed7c16 (svn r13919) -Codechange: Replace numbers with Colours enum on osk(forgot 2 assignations), statusbar, subsidy, terraform, timetable, toolbar, town, tree and vehicle guis.
belugas
parents: 9653
diff changeset
  1583
	{ WWT_PUSHIMGBTN,    RESIZE_LR,  COLOUR_GREY, 232, 249,  50,  67, SPR_IGNORE_SIGNALS,       STR_884A_FORCE_TRAIN_TO_PROCEED },       // VVW_WIDGET_FORCE_PROCEED
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1584
{   WIDGETS_END},
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1585
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1586
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1587
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1588
/** Vehicle view window descriptor for all vehicles but trains. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1589
static const WindowDesc _vehicle_view_desc = {
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1590
	WDP_AUTO, WDP_AUTO, 250, 116, 250, 116,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1591
	WC_VEHICLE_VIEW, WC_NONE,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1592
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1593
	_vehicle_view_widgets,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1594
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1595
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1596
/** Vehicle view window descriptor for trains. Only minimum_height and
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1597
 *  default_height are different for train view.
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1598
 */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1599
static const WindowDesc _train_view_desc = {
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1600
	WDP_AUTO, WDP_AUTO, 250, 134, 250, 134,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1601
	WC_VEHICLE_VIEW, WC_NONE,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1602
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1603
	_vehicle_view_widgets,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1604
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1605
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1606
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1607
/* Just to make sure, nobody has changed the vehicle type constants, as we are
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1608
	 using them for array indexing in a number of places here. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1609
assert_compile(VEH_TRAIN == 0);
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1610
assert_compile(VEH_ROAD == 1);
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1611
assert_compile(VEH_SHIP == 2);
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1612
assert_compile(VEH_AIRCRAFT == 3);
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1613
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1614
/** Zoom levels for vehicle views indexed by vehicle type. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1615
static const ZoomLevel _vehicle_view_zoom_levels[] = {
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1616
	ZOOM_LVL_TRAIN,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1617
	ZOOM_LVL_ROADVEH,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1618
	ZOOM_LVL_SHIP,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1619
	ZOOM_LVL_AIRCRAFT,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1620
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1621
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1622
/* Constants for geometry of vehicle view viewport */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1623
static const int VV_VIEWPORT_X = 3;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1624
static const int VV_VIEWPORT_Y = 17;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1625
static const int VV_INITIAL_VIEWPORT_WIDTH = 226;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1626
static const int VV_INITIAL_VIEWPORT_HEIGHT = 84;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1627
static const int VV_INITIAL_VIEWPORT_HEIGHT_TRAIN = 102;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1628
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1629
/** Command indices for the _vehicle_command_translation_table. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1630
enum VehicleCommandTranslation {
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1631
	VCT_CMD_START_STOP = 0,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1632
	VCT_CMD_GOTO_DEPOT,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1633
	VCT_CMD_CLONE_VEH,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1634
	VCT_CMD_TURN_AROUND,
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1635
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1636
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1637
/** Command codes for the shared buttons indexed by VehicleCommandTranslation and vehicle type. */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1638
static const uint32 _vehicle_command_translation_table[][4] = {
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1639
	{ // VCT_CMD_START_STOP
9921
4dfac3c48507 (svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
frosch
parents: 9913
diff changeset
  1640
		CMD_START_STOP_VEHICLE | CMD_MSG(STR_883B_CAN_T_STOP_START_TRAIN),
4dfac3c48507 (svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
frosch
parents: 9913
diff changeset
  1641
		CMD_START_STOP_VEHICLE | CMD_MSG(STR_9015_CAN_T_STOP_START_ROAD_VEHICLE),
4dfac3c48507 (svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
frosch
parents: 9913
diff changeset
  1642
		CMD_START_STOP_VEHICLE | CMD_MSG(STR_9818_CAN_T_STOP_START_SHIP),
4dfac3c48507 (svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
frosch
parents: 9913
diff changeset
  1643
		CMD_START_STOP_VEHICLE | CMD_MSG(STR_A016_CAN_T_STOP_START_AIRCRAFT)
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1644
	},
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1645
	{ // VCT_CMD_GOTO_DEPOT
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1646
		/* TrainGotoDepot has a nice randomizer in the pathfinder, which causes desyncs... */
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1647
		CMD_SEND_TRAIN_TO_DEPOT | CMD_NO_TEST_IF_IN_NETWORK | CMD_MSG(STR_8830_CAN_T_SEND_TRAIN_TO_DEPOT),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1648
		CMD_SEND_ROADVEH_TO_DEPOT | CMD_MSG(STR_9018_CAN_T_SEND_VEHICLE_TO_DEPOT),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1649
		CMD_SEND_SHIP_TO_DEPOT | CMD_MSG(STR_9819_CAN_T_SEND_SHIP_TO_DEPOT),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1650
		CMD_SEND_AIRCRAFT_TO_HANGAR | CMD_MSG(STR_A012_CAN_T_SEND_AIRCRAFT_TO)
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1651
	},
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1652
	{ // VCT_CMD_CLONE_VEH
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1653
		CMD_CLONE_VEHICLE | CMD_MSG(STR_882B_CAN_T_BUILD_RAILROAD_VEHICLE),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1654
		CMD_CLONE_VEHICLE | CMD_MSG(STR_9009_CAN_T_BUILD_ROAD_VEHICLE),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1655
		CMD_CLONE_VEHICLE | CMD_MSG(STR_980D_CAN_T_BUILD_SHIP),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1656
		CMD_CLONE_VEHICLE | CMD_MSG(STR_A008_CAN_T_BUILD_AIRCRAFT)
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1657
	},
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1658
	{ // VCT_CMD_TURN_AROUND
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1659
		CMD_REVERSE_TRAIN_DIRECTION | CMD_MSG(STR_8869_CAN_T_REVERSE_DIRECTION),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1660
		CMD_TURN_ROADVEH | CMD_MSG(STR_9033_CAN_T_MAKE_VEHICLE_TURN),
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1661
		0xffffffff, // invalid for ships
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1662
		0xffffffff  // invalid for aircrafts
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1663
	},
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1664
};
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1665
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1666
/** Checks whether the vehicle may be refitted at the moment.*/
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1667
static bool IsVehicleRefitable(const Vehicle *v)
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1668
{
10430
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1669
	if (!v->IsStoppedInDepot()) return false;
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1670
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1671
	do {
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1672
		/* Skip this vehicle if it has no capacity */
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1673
		if (v->cargo_cap == 0) continue;
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1674
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1675
		if (IsEngineRefittable(v->engine_type)) return true;
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1676
	} while ((v->type == VEH_TRAIN || v->type == VEH_ROAD) && (v = v->Next()) != NULL);
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1677
3125f2adebc5 (svn r14683) -Change: only say a engine/vehicle is refittable when it can be refitted to at least two cargo type or when it has subcargos.
rubidium
parents: 10348
diff changeset
  1678
	return false;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1679
}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1680
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1681
struct VehicleViewWindow : Window {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1682
	VehicleViewWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1683
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1684
		const Vehicle *v = GetVehicle(this->window_number);
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1685
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1686
		this->caption_color = v->owner;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1687
		InitializeWindowViewport(this, VV_VIEWPORT_X, VV_VIEWPORT_Y, VV_INITIAL_VIEWPORT_WIDTH,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1688
												 (v->type == VEH_TRAIN) ? VV_INITIAL_VIEWPORT_HEIGHT_TRAIN : VV_INITIAL_VIEWPORT_HEIGHT,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1689
												 this->window_number | (1 << 31), _vehicle_view_zoom_levels[v->type]);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1690
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1691
		/*
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1692
		 * fill in data and tooltip codes for the widgets and
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1693
		 * move some of the buttons for trains
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1694
		 */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1695
		switch (v->type) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1696
			case VEH_TRAIN:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1697
				this->widget[VVW_WIDGET_CAPTION].data = STR_882E;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1698
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1699
				this->widget[VVW_WIDGET_START_STOP_VEH].tooltips = STR_8846_CURRENT_TRAIN_ACTION_CLICK;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1700
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1701
				this->widget[VVW_WIDGET_CENTER_MAIN_VIEH].tooltips = STR_8848_CENTER_MAIN_VIEW_ON_TRAIN;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1702
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1703
				this->widget[VVW_WIDGET_GOTO_DEPOT].data = SPR_SEND_TRAIN_TODEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1704
				this->widget[VVW_WIDGET_GOTO_DEPOT].tooltips = STR_8849_SEND_TRAIN_TO_DEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1705
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1706
				this->widget[VVW_WIDGET_REFIT_VEH].tooltips = STR_RAIL_REFIT_VEHICLE_TO_CARRY;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1707
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1708
				this->widget[VVW_WIDGET_SHOW_ORDERS].tooltips = STR_8847_SHOW_TRAIN_S_ORDERS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1709
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1710
				this->widget[VVW_WIDGET_SHOW_DETAILS].tooltips = STR_884C_SHOW_TRAIN_DETAILS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1711
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1712
				this->widget[VVW_WIDGET_CLONE_VEH].data = SPR_CLONE_TRAIN;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1713
				this->widget[VVW_WIDGET_CLONE_VEH].tooltips = STR_CLONE_TRAIN_INFO;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1714
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1715
				this->widget[VVW_WIDGET_TURN_AROUND].tooltips = STR_884B_REVERSE_DIRECTION_OF_TRAIN;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1716
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1717
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1718
				/* due to more buttons we must modify the layout a bit for trains */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1719
				this->widget[VVW_WIDGET_PANEL].bottom = 121;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1720
				this->widget[VVW_WIDGET_VIEWPORT].bottom = 119;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1721
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1722
				this->widget[VVW_WIDGET_START_STOP_VEH].top = 122;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1723
				this->widget[VVW_WIDGET_START_STOP_VEH].bottom = 133;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1724
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1725
				this->widget[VVW_WIDGET_REFIT_VEH].top = 68;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1726
				this->widget[VVW_WIDGET_REFIT_VEH].bottom = 85;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1727
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1728
				this->widget[VVW_WIDGET_SHOW_ORDERS].top = 86;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1729
				this->widget[VVW_WIDGET_SHOW_ORDERS].bottom = 103;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1730
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1731
				this->widget[VVW_WIDGET_SHOW_DETAILS].top = 104;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1732
				this->widget[VVW_WIDGET_SHOW_DETAILS].bottom = 121;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1733
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1734
				this->widget[VVW_WIDGET_EMPTY_BOTTOM_RIGHT].top = 122;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1735
				this->widget[VVW_WIDGET_EMPTY_BOTTOM_RIGHT].bottom = 121;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1736
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1737
				this->widget[VVW_WIDGET_RESIZE].top = 122;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1738
				this->widget[VVW_WIDGET_RESIZE].bottom = 133;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1739
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1740
				this->widget[VVW_WIDGET_TURN_AROUND].top = 68;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1741
				this->widget[VVW_WIDGET_TURN_AROUND].bottom = 85;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1742
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1743
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1744
			case VEH_ROAD:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1745
				this->widget[VVW_WIDGET_CAPTION].data = STR_9002;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1746
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1747
				this->widget[VVW_WIDGET_START_STOP_VEH].tooltips = STR_901C_CURRENT_VEHICLE_ACTION;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1748
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1749
				this->widget[VVW_WIDGET_CENTER_MAIN_VIEH].tooltips = STR_901E_CENTER_MAIN_VIEW_ON_VEHICLE;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1750
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1751
				this->widget[VVW_WIDGET_GOTO_DEPOT].data = SPR_SEND_ROADVEH_TODEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1752
				this->widget[VVW_WIDGET_GOTO_DEPOT].tooltips = STR_901F_SEND_VEHICLE_TO_DEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1753
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1754
				this->widget[VVW_WIDGET_REFIT_VEH].tooltips = STR_REFIT_ROAD_VEHICLE_TO_CARRY;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1755
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1756
				this->widget[VVW_WIDGET_SHOW_ORDERS].tooltips = STR_901D_SHOW_VEHICLE_S_ORDERS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1757
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1758
				this->widget[VVW_WIDGET_SHOW_DETAILS].tooltips = STR_9021_SHOW_ROAD_VEHICLE_DETAILS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1759
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1760
				this->widget[VVW_WIDGET_CLONE_VEH].data = SPR_CLONE_ROADVEH;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1761
				this->widget[VVW_WIDGET_CLONE_VEH].tooltips = STR_CLONE_ROAD_VEHICLE_INFO;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1762
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1763
				this->SetWidgetHiddenState(VVW_WIDGET_FORCE_PROCEED, true);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1764
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1765
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1766
			case VEH_SHIP:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1767
				this->widget[VVW_WIDGET_CAPTION].data = STR_980F;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1768
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1769
				this->widget[VVW_WIDGET_START_STOP_VEH].tooltips = STR_9827_CURRENT_SHIP_ACTION_CLICK;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1770
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1771
				this->widget[VVW_WIDGET_CENTER_MAIN_VIEH].tooltips = STR_9829_CENTER_MAIN_VIEW_ON_SHIP;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1772
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1773
				this->widget[VVW_WIDGET_GOTO_DEPOT].data = SPR_SEND_SHIP_TODEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1774
				this->widget[VVW_WIDGET_GOTO_DEPOT].tooltips = STR_982A_SEND_SHIP_TO_DEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1775
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1776
				this->widget[VVW_WIDGET_REFIT_VEH].tooltips = STR_983A_REFIT_CARGO_SHIP_TO_CARRY;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1777
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1778
				this->widget[VVW_WIDGET_SHOW_ORDERS].tooltips = STR_9828_SHOW_SHIP_S_ORDERS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1779
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1780
				this->widget[VVW_WIDGET_SHOW_DETAILS].tooltips = STR_982B_SHOW_SHIP_DETAILS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1781
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1782
				this->widget[VVW_WIDGET_CLONE_VEH].data = SPR_CLONE_SHIP;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1783
				this->widget[VVW_WIDGET_CLONE_VEH].tooltips = STR_CLONE_SHIP_INFO;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1784
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1785
				this->SetWidgetsHiddenState(true,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1786
																		VVW_WIDGET_TURN_AROUND,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1787
																		VVW_WIDGET_FORCE_PROCEED,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1788
																		WIDGET_LIST_END);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1789
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1790
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1791
			case VEH_AIRCRAFT:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1792
				this->widget[VVW_WIDGET_CAPTION].data = STR_A00A;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1793
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1794
				this->widget[VVW_WIDGET_START_STOP_VEH].tooltips = STR_A027_CURRENT_AIRCRAFT_ACTION;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1795
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1796
				this->widget[VVW_WIDGET_CENTER_MAIN_VIEH].tooltips = STR_A029_CENTER_MAIN_VIEW_ON_AIRCRAFT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1797
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1798
				this->widget[VVW_WIDGET_GOTO_DEPOT].data = SPR_SEND_AIRCRAFT_TODEPOT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1799
				this->widget[VVW_WIDGET_GOTO_DEPOT].tooltips = STR_A02A_SEND_AIRCRAFT_TO_HANGAR;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1800
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1801
				this->widget[VVW_WIDGET_REFIT_VEH].tooltips = STR_A03B_REFIT_AIRCRAFT_TO_CARRY;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1802
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1803
				this->widget[VVW_WIDGET_SHOW_ORDERS].tooltips = STR_A028_SHOW_AIRCRAFT_S_ORDERS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1804
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1805
				this->widget[VVW_WIDGET_SHOW_DETAILS].tooltips = STR_A02B_SHOW_AIRCRAFT_DETAILS;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1806
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1807
				this->widget[VVW_WIDGET_CLONE_VEH].data = SPR_CLONE_AIRCRAFT;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1808
				this->widget[VVW_WIDGET_CLONE_VEH].tooltips = STR_CLONE_AIRCRAFT_INFO;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1809
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1810
				this->SetWidgetsHiddenState(true,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1811
																		VVW_WIDGET_TURN_AROUND,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1812
																		VVW_WIDGET_FORCE_PROCEED,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1813
																		WIDGET_LIST_END);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1814
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1815
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1816
				default: NOT_REACHED();
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1817
		}
9333
2da01b3b71d8 (svn r13225) -Fix (r13041): Missing calls to FindWindowPlacementAndResize() from lots
peter1138
parents: 9317
diff changeset
  1818
2da01b3b71d8 (svn r13225) -Fix (r13041): Missing calls to FindWindowPlacementAndResize() from lots
peter1138
parents: 9317
diff changeset
  1819
		this->FindWindowPlacementAndResize(desc);
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1820
	}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1821
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1822
	~VehicleViewWindow()
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1823
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1824
		DeleteWindowById(WC_VEHICLE_ORDERS, this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1825
		DeleteWindowById(WC_VEHICLE_REFIT, this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1826
		DeleteWindowById(WC_VEHICLE_DETAILS, this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1827
		DeleteWindowById(WC_VEHICLE_TIMETABLE, this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1828
	}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1829
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1830
	virtual void OnPaint()
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1831
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1832
		/** Message strings for heading to depot indexed by vehicle type. */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1833
		static const StringID _heading_for_depot_strings[] = {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1834
			STR_HEADING_FOR_TRAIN_DEPOT,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1835
			STR_HEADING_FOR_ROAD_DEPOT,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1836
			STR_HEADING_FOR_SHIP_DEPOT,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1837
			STR_HEADING_FOR_HANGAR,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1838
		};
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1839
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1840
		/** Message strings for heading to depot and servicing indexed by vehicle type. */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1841
		static const StringID _heading_for_depot_service_strings[] = {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1842
			STR_HEADING_FOR_TRAIN_DEPOT_SERVICE,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1843
			STR_HEADING_FOR_ROAD_DEPOT_SERVICE,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1844
			STR_HEADING_FOR_SHIP_DEPOT_SERVICE,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1845
			STR_HEADING_FOR_HANGAR_SERVICE,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1846
		};
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1847
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1848
		const Vehicle *v = GetVehicle(this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1849
		StringID str;
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1850
		bool is_localcompany = v->owner == _local_company;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1851
		bool refitable_and_stopped_in_depot = IsVehicleRefitable(v);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1852
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1853
		this->SetWidgetDisabledState(VVW_WIDGET_GOTO_DEPOT, !is_localcompany);
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1854
		this->SetWidgetDisabledState(VVW_WIDGET_REFIT_VEH,
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1855
																!refitable_and_stopped_in_depot || !is_localcompany);
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1856
		this->SetWidgetDisabledState(VVW_WIDGET_CLONE_VEH, !is_localcompany);
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1857
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1858
		if (v->type == VEH_TRAIN) {
10207
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1859
			this->SetWidgetDisabledState(VVW_WIDGET_FORCE_PROCEED, !is_localcompany);
c291a21b304e (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
rubidium
parents: 10184
diff changeset
  1860
			this->SetWidgetDisabledState(VVW_WIDGET_TURN_AROUND, !is_localcompany);
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1861
		}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1862
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1863
		/* draw widgets & caption */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1864
		SetDParam(0, v->index);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1865
		this->DrawWidgets();
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1866
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1867
		if (v->vehstatus & VS_CRASHED) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1868
			str = STR_8863_CRASHED;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1869
		} else if (v->type != VEH_AIRCRAFT && v->breakdown_ctr == 1) { // check for aircraft necessary?
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1870
			str = STR_885C_BROKEN_DOWN;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1871
		} else if (v->vehstatus & VS_STOPPED) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1872
			if (v->type == VEH_TRAIN) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1873
				if (v->cur_speed == 0) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1874
					if (v->u.rail.cached_power == 0) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1875
						str = STR_TRAIN_NO_POWER;
7759
eb8f1b5b2883 (svn r11304) -Feature: Control-Clicking the Center Main View button on the vehicle window allows the main viewport to follow the chosen vehicle.(stevenh)
belugas
parents: 7642
diff changeset
  1876
					} else {
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1877
						str = STR_8861_STOPPED;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1878
					}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1879
				} else {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1880
					SetDParam(0, v->GetDisplaySpeed());
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1881
					str = STR_TRAIN_STOPPING + _settings_client.gui.vehicle_speed;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1882
				}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1883
			} else { // no train
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1884
				str = STR_8861_STOPPED;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1885
			}
9808
a914bcdca6fb (svn r13950) -Add [YAPP]: Trains can now also be in a 'stuck' state when waiting on a path reservation. (michi_cc)
rubidium
parents: 9778
diff changeset
  1886
		} else if (v->type == VEH_TRAIN && HasBit(v->u.rail.flags, VRF_TRAIN_STUCK)) {
a914bcdca6fb (svn r13950) -Add [YAPP]: Trains can now also be in a 'stuck' state when waiting on a path reservation. (michi_cc)
rubidium
parents: 9778
diff changeset
  1887
			str = STR_TRAIN_STUCK;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1888
		} else { // vehicle is in a "normal" state, show current order
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1889
			switch (v->current_order.GetType()) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1890
				case OT_GOTO_STATION: {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1891
					SetDParam(0, v->current_order.GetDestination());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1892
					SetDParam(1, v->GetDisplaySpeed());
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1893
					str = STR_HEADING_FOR_STATION + _settings_client.gui.vehicle_speed;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1894
				} break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1895
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1896
				case OT_GOTO_DEPOT: {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1897
					if (v->type == VEH_AIRCRAFT) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1898
						/* Aircrafts always go to a station, even if you say depot */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1899
						SetDParam(0, v->current_order.GetDestination());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1900
						SetDParam(1, v->GetDisplaySpeed());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1901
					} else {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1902
						Depot *depot = GetDepot(v->current_order.GetDestination());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1903
						SetDParam(0, depot->town_index);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1904
						SetDParam(1, v->GetDisplaySpeed());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1905
					}
10285
82fa43e7b8f3 (svn r14524) -Add: stop-in-depot as part of orders (PhilSophus)
rubidium
parents: 10208
diff changeset
  1906
					if (v->current_order.GetDepotActionType() & ODATFB_HALT) {
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1907
						str = _heading_for_depot_strings[v->type] + _settings_client.gui.vehicle_speed;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1908
					} else {
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1909
						str = _heading_for_depot_service_strings[v->type] + _settings_client.gui.vehicle_speed;
7759
eb8f1b5b2883 (svn r11304) -Feature: Control-Clicking the Center Main View button on the vehicle window allows the main viewport to follow the chosen vehicle.(stevenh)
belugas
parents: 7642
diff changeset
  1910
					}
eb8f1b5b2883 (svn r11304) -Feature: Control-Clicking the Center Main View button on the vehicle window allows the main viewport to follow the chosen vehicle.(stevenh)
belugas
parents: 7642
diff changeset
  1911
				} break;
eb8f1b5b2883 (svn r11304) -Feature: Control-Clicking the Center Main View button on the vehicle window allows the main viewport to follow the chosen vehicle.(stevenh)
belugas
parents: 7642
diff changeset
  1912
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1913
				case OT_LOADING:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1914
					str = STR_882F_LOADING_UNLOADING;
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1915
					break;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1916
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1917
				case OT_GOTO_WAYPOINT: {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1918
					assert(v->type == VEH_TRAIN);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1919
					SetDParam(0, v->current_order.GetDestination());
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1920
					str = STR_HEADING_FOR_WAYPOINT + _settings_client.gui.vehicle_speed;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1921
					SetDParam(1, v->GetDisplaySpeed());
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1922
					break;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1923
				}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1924
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1925
				case OT_LEAVESTATION:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1926
					if (v->type != VEH_AIRCRAFT) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1927
						str = STR_LEAVING;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1928
						break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1929
					}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1930
					/* fall-through if aircraft. Does this even happen? */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1931
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1932
				default:
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1933
					if (v->num_orders == 0) {
9413
7042a8ec3fa8 (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
rubidium
parents: 9396
diff changeset
  1934
						str = STR_NO_ORDERS + _settings_client.gui.vehicle_speed;
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1935
						SetDParam(0, v->GetDisplaySpeed());
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1936
					} else {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1937
						str = STR_EMPTY;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1938
					}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1939
					break;
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1940
			}
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1941
		}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1942
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1943
		/* draw the flag plus orders */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1944
		DrawSprite(v->vehstatus & VS_STOPPED ? SPR_FLAG_VEH_STOPPED : SPR_FLAG_VEH_RUNNING, PAL_NONE, 2, this->widget[VVW_WIDGET_START_STOP_VEH].top + 1);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1945
		DrawStringCenteredTruncated(this->widget[VVW_WIDGET_START_STOP_VEH].left + 8, this->widget[VVW_WIDGET_START_STOP_VEH].right, this->widget[VVW_WIDGET_START_STOP_VEH].top + 1, str, TC_FROMSTRING);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1946
		this->DrawViewport();
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1947
	}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1948
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1949
	virtual void OnClick(Point pt, int widget)
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1950
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1951
		const Vehicle *v = GetVehicle(this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1952
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1953
		switch (widget) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1954
			case VVW_WIDGET_START_STOP_VEH: // start stop
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1955
				DoCommandP(v->tile, v->index, 0, NULL,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1956
										_vehicle_command_translation_table[VCT_CMD_START_STOP][v->type]);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1957
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1958
			case VVW_WIDGET_CENTER_MAIN_VIEH: {/* center main view */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1959
				const Window *mainwindow = FindWindowById(WC_MAIN_WINDOW, 0);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1960
				/* code to allow the main window to 'follow' the vehicle if the ctrl key is pressed */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1961
				if (_ctrl_pressed && mainwindow->viewport->zoom == ZOOM_LVL_NORMAL) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1962
					mainwindow->viewport->follow_vehicle = v->index;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1963
				} else {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1964
					ScrollMainWindowTo(v->x_pos, v->y_pos);
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  1965
				}
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1966
			} break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1967
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1968
			case VVW_WIDGET_GOTO_DEPOT: // goto hangar
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1969
				DoCommandP(v->tile, v->index, _ctrl_pressed ? DEPOT_SERVICE : 0, NULL,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1970
					_vehicle_command_translation_table[VCT_CMD_GOTO_DEPOT][v->type]);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1971
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1972
			case VVW_WIDGET_REFIT_VEH: // refit
10184
bf4e3ff4cf16 (svn r14395) -Fix [FS#2285]: crashes and GUI desyncs when order is deleted/modified while the timetable window is open
smatz
parents: 10161
diff changeset
  1973
				ShowVehicleRefitWindow(v, INVALID_VEH_ORDER_ID, this);
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1974
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1975
			case VVW_WIDGET_SHOW_ORDERS: // show orders
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1976
				if (_ctrl_pressed) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1977
					ShowTimetableWindow(v);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1978
				} else {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1979
					ShowOrdersWindow(v);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1980
				}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1981
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1982
			case VVW_WIDGET_SHOW_DETAILS: // show details
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1983
				ShowVehicleDetailsWindow(v);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1984
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1985
			case VVW_WIDGET_CLONE_VEH: // clone vehicle
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1986
				DoCommandP(v->tile, v->index, _ctrl_pressed ? 1 : 0, CcCloneVehicle,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1987
										_vehicle_command_translation_table[VCT_CMD_CLONE_VEH][v->type]);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1988
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1989
			case VVW_WIDGET_TURN_AROUND: // turn around
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1990
				assert(v->type == VEH_TRAIN || v->type == VEH_ROAD);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1991
				DoCommandP(v->tile, v->index, 0, NULL,
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1992
										_vehicle_command_translation_table[VCT_CMD_TURN_AROUND][v->type]);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1993
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1994
			case VVW_WIDGET_FORCE_PROCEED: // force proceed
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1995
				assert(v->type == VEH_TRAIN);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1996
				DoCommandP(v->tile, v->index, 0, NULL, CMD_FORCE_TRAIN_PROCEED | CMD_MSG(STR_8862_CAN_T_MAKE_TRAIN_PASS_SIGNAL));
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1997
				break;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1998
		}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  1999
	}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2000
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2001
	virtual void OnResize(Point new_size, Point delta)
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2002
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2003
		this->viewport->width          += delta.x;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2004
		this->viewport->height         += delta.y;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2005
		this->viewport->virtual_width  += delta.x;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2006
		this->viewport->virtual_height += delta.y;
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2007
	}
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2008
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2009
	virtual void OnTick()
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2010
	{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2011
		const Vehicle *v = GetVehicle(this->window_number);
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2012
		bool veh_stopped = v->IsStoppedInDepot();
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2013
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2014
		/* Widget VVW_WIDGET_GOTO_DEPOT must be hidden if the vehicle is already
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2015
		 * stopped in depot.
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2016
		 * Widget VVW_WIDGET_CLONE_VEH should then be shown, since cloning is
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2017
		 * allowed only while in depot and stopped.
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2018
		 * This sytem allows to have two buttons, on top of each other.
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2019
		 * The same system applies to widget VVW_WIDGET_REFIT_VEH and VVW_WIDGET_TURN_AROUND.*/
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2020
		if (veh_stopped != this->IsWidgetHidden(VVW_WIDGET_GOTO_DEPOT) || veh_stopped == this->IsWidgetHidden(VVW_WIDGET_CLONE_VEH)) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2021
			this->SetWidgetHiddenState( VVW_WIDGET_GOTO_DEPOT, veh_stopped);  // send to depot
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2022
			this->SetWidgetHiddenState(VVW_WIDGET_CLONE_VEH, !veh_stopped); // clone
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2023
			if (v->type == VEH_ROAD || v->type == VEH_TRAIN) {
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2024
				this->SetWidgetHiddenState( VVW_WIDGET_REFIT_VEH, !veh_stopped); // refit
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2025
				this->SetWidgetHiddenState(VVW_WIDGET_TURN_AROUND, veh_stopped);  // force turn around
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  2026
			}
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2027
			this->SetDirty();
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2028
		}
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  2029
	}
9315
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2030
};
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2031
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2032
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2033
/** Shows the vehicle view window of the given vehicle. */
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2034
void ShowVehicleViewWindow(const Vehicle *v)
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2035
{
e29cc81afbc6 (svn r13183) -Codechange: make a window class of the VehicleViewWindow.
rubidium
parents: 9297
diff changeset
  2036
	AllocateWindowDescFront<VehicleViewWindow>((v->type == VEH_TRAIN) ? &_train_view_desc : &_vehicle_view_desc, v->index);
7486
bf6a94009823 (svn r10997) -Codechange: unify the vehicle view window. Patch by PhilSophus.
rubidium
parents: 7341
diff changeset
  2037
}
8144
65cec0877b78 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8140
diff changeset
  2038
9274
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2039
void StopGlobalFollowVehicle(const Vehicle *v)
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2040
{
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2041
	Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2042
	if (w != NULL && w->viewport->follow_vehicle == v->index) {
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2043
		ScrollMainWindowTo(v->x_pos, v->y_pos, true); // lock the main view on the vehicle's last position
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2044
		w->viewport->follow_vehicle = INVALID_VEHICLE;
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2045
	}
42b67e65f1c2 (svn r13140) -Codechange: move the gui-list-sorting out of window_gui.h so window_gui.h only needs to be included in *_gui.cpp.
rubidium
parents: 9273
diff changeset
  2046
}