src/vehicle_gui.cpp
author bjarni
Tue, 23 Jan 2007 13:10:43 +0000
changeset 5808 c34443483ed3
parent 5801 f321c8669b14
child 5809 f6bb84b5d6fc
permissions -rw-r--r--
(svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
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
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
     3
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1859
diff changeset
     4
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1294
diff changeset
     5
#include "debug.h"
2163
b17b313113a0 (svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents: 2159
diff changeset
     6
#include "functions.h"
2154
f86c59e73a16 (svn r2664) Remove depedency on player.h from variables.h
tron
parents: 1926
diff changeset
     7
#include "player.h"
2466
1aa260b43faa (svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
tron
parents: 2462
diff changeset
     8
#include "station.h"
1309
4403a69da4f8 (svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents: 1299
diff changeset
     9
#include "strings.h"
1363
775a7ee52369 (svn r1867) Include tables/sprites.h only in files which need it
tron
parents: 1309
diff changeset
    10
#include "table/sprites.h"
507
04b5403aaf6b (svn r815) Include strings.h only in the files which need it.
tron
parents: 505
diff changeset
    11
#include "table/strings.h"
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
    12
#include "vehicle.h"
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    13
#include "window.h"
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    14
#include "engine.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    15
#include "gui.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    16
#include "command.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    17
#include "gfx.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    18
#include "variables.h"
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    19
#include "vehicle_gui.h"
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
    20
#include "viewport.h"
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
    21
#include "train.h"
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
    22
#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
    23
#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
    24
#include "newgrf_text.h"
4261
28670f743746 (svn r5887) -Cleanup: move date related functions, defines and variables to date.[ch]
rubidium
parents: 4243
diff changeset
    25
#include "date.h"
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    26
#include "ship.h"
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    27
#include "aircraft.h"
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    28
#include "roadveh.h"
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    29
#include "depot.h"
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
    30
#include "helpers.hpp"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    31
4542
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    32
typedef struct Sorting {
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    33
	Listing aircraft;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    34
	Listing roadveh;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    35
	Listing ship;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    36
	Listing train;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    37
} Sorting;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    38
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    39
static Sorting _sorting;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    40
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    41
typedef struct vehiclelist_d {
4678
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
    42
	const Vehicle** sort_list;  // List of vehicles (sorted)
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
    43
	Listing *_sorting;          // pointer to the appropiate subcategory of _sorting
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
    44
	uint16 length_of_sort_list; // Keeps track of how many vehicle pointers sort list got space for
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
    45
	byte vehicle_type;          // The vehicle type that is sorted
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
    46
	list_d l;                   // General list struct
4542
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    47
} vehiclelist_d;
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    48
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(vehiclelist_d));
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    49
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    50
static bool   _internal_sort_order;     // descending/ascending
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
    51
5808
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    52
static RailType _railtype_selected_in_replace_gui;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    53
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    54
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    55
typedef int CDECL VehicleSortListingTypeFunction(const void*, const void*);
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    56
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    57
static VehicleSortListingTypeFunction VehicleNumberSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    58
static VehicleSortListingTypeFunction VehicleNameSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    59
static VehicleSortListingTypeFunction VehicleAgeSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    60
static VehicleSortListingTypeFunction VehicleProfitThisYearSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    61
static VehicleSortListingTypeFunction VehicleProfitLastYearSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    62
static VehicleSortListingTypeFunction VehicleCargoSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    63
static VehicleSortListingTypeFunction VehicleReliabilitySorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    64
static VehicleSortListingTypeFunction VehicleMaxSpeedSorter;
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    65
static VehicleSortListingTypeFunction VehicleModelSorter;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    66
static VehicleSortListingTypeFunction VehicleValueSorter;
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    67
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    68
static VehicleSortListingTypeFunction* const _vehicle_sorter[] = {
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
    69
	&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
    70
	&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
    71
	&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
    72
	&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
    73
	&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
    74
	&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
    75
	&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
    76
	&VehicleMaxSpeedSorter,
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    77
	&VehicleModelSorter,
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    78
	&VehicleValueSorter,
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
    79
};
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
4485
567db6062af9 (svn r6270) Remove the "unsorted" vehicle sorter, because it's plain useless
tron
parents: 4484
diff changeset
    81
static const StringID _vehicle_sort_listing[] = {
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
    82
	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
    83
	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
    84
	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
    85
	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
    86
	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
    87
	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
    88
	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
    89
	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
    90
	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
    91
	STR_SORT_BY_VALUE,
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
    92
	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
    93
};
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
    94
5808
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    95
static const StringID _rail_types_list[] = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    96
	STR_RAIL_VEHICLES,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    97
	STR_ELRAIL_VEHICLES,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    98
	STR_MONORAIL_VEHICLES,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
    99
	STR_MAGLEV_VEHICLES,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   100
	INVALID_STRING_ID
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   101
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   102
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   103
void RebuildVehicleLists(void)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   104
{
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   105
	Window* const *wz;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   106
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   107
	FOR_ALL_WINDOWS(wz) {
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   108
		Window *w = *wz;
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   109
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   110
		switch (w->window_class) {
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   111
			case WC_TRAINS_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   112
			case WC_ROADVEH_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   113
			case WC_SHIPS_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   114
			case WC_AIRCRAFT_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   115
				WP(w, vehiclelist_d).l.flags |= VL_REBUILD;
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   116
				SetWindowDirty(w);
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   117
				break;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   118
		}
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   119
	}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   120
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   121
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   122
void ResortVehicleLists(void)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   123
{
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   124
	Window* const *wz;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   125
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   126
	FOR_ALL_WINDOWS(wz) {
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   127
		Window *w = *wz;
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   128
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   129
		switch (w->window_class) {
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   130
			case WC_TRAINS_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   131
			case WC_ROADVEH_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   132
			case WC_SHIPS_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   133
			case WC_AIRCRAFT_LIST:
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   134
				WP(w, vehiclelist_d).l.flags |= VL_RESORT;
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   135
				SetWindowDirty(w);
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   136
				break;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   137
		}
5124
2ca62776430e (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   138
	}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   139
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   140
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
   141
static void BuildVehicleList(vehiclelist_d* vl, PlayerID owner, uint16 index, uint16 window_type)
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   142
{
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   143
	if (!(vl->l.flags & VL_REBUILD)) return;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   144
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
   145
	DEBUG(misc, 3, "Building vehicle list for player %d at station %d", owner, index);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   146
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
   147
	vl->l.list_length = GenerateVehicleSortList(&vl->sort_list, &vl->length_of_sort_list, vl->vehicle_type, owner, index, window_type);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   148
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   149
	vl->l.flags &= ~VL_REBUILD;
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   150
	vl->l.flags |= VL_RESORT;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   151
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   152
4460
f5457e687b3e (svn r6243) -Codechange: made SortVehicleList() static as well since that one is not used in any other files either (Thanks Tron for pointing this out)
bjarni
parents: 4459
diff changeset
   153
static void SortVehicleList(vehiclelist_d *vl)
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   154
{
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   155
	if (!(vl->l.flags & VL_RESORT)) return;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   156
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
   157
	_internal_sort_order = (vl->l.flags & VL_DESC) != 0;
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   158
	qsort((void*)vl->sort_list, vl->l.list_length, sizeof(vl->sort_list[0]),
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   159
		_vehicle_sorter[vl->l.sort_type]);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   160
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   161
	vl->l.resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
   162
	vl->l.flags &= ~VL_RESORT;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   163
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   164
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
   165
void DepotSortList(Vehicle **v, uint16 length)
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
   166
{
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
   167
	_internal_sort_order = 0;
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
   168
	qsort((void*)v, length, sizeof(v[0]), _vehicle_sorter[0]);
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
   169
}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   170
5808
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   171
/* General Vehicle GUI based procedures that are independent of vehicle types */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   172
void InitializeVehiclesGuiList(void)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   173
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   174
	_railtype_selected_in_replace_gui = RAILTYPE_RAIL;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   175
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   176
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
   177
// 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
   178
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
   179
{
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   180
	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
   181
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
   182
	// draw profit-based colored icons
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   183
	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
   184
		pal = PALETTE_TO_GREY;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   185
	} else if (v->profit_last_year < 0) {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   186
		pal = PALETTE_TO_RED;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   187
	} else if (v->profit_last_year < 10000) {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   188
		pal = PALETTE_TO_YELLOW;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   189
	} else {
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   190
		pal = PALETTE_TO_GREEN;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   191
	}
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   192
	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
   193
}
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
   194
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
typedef struct RefitOption {
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
	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
   197
	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
   198
	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
   199
	EngineID 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
   200
} RefitOption;
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
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
typedef struct RefitList {
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
	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
   204
	RefitOption *items;
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
} RefitList;
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
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
   207
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
   208
{
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
	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
   210
	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
   211
	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
   212
	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
   213
	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
   214
	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
   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
	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
   217
		CargoID cid;
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
   218
		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
   219
		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
   220
4933
0ae35137aeca (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   221
		/* 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
   222
		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
   223
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
   224
		/* Loop through all cargos in the 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
   225
		for (cid = 0; cmask != 0 && num_lines < max_lines; cmask >>= 1, cid++) {
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
   226
			CargoID lcid;
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
   227
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
   228
			/* Skip cargo type if it's not 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
   229
			if (!HASBIT(cmask, 0)) 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
   230
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
   231
			lcid = _local_cargo_id_ctype[cid];
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
   232
			if (lcid == CT_INVALID) continue;
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
   233
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
   234
			/* Check the vehicle's callback mask for cargo suffixes */
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
   235
			if (HASBIT(callbackmask, CBM_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
   236
				/* 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
   237
				 * 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
   238
				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
   239
				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
   240
				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
   241
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
   242
				u->cargo_type = lcid;
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
   243
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
   244
				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
   245
					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
   246
					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
   247
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
					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
   249
					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
   250
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
					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
   252
					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
   253
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
					/* 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
   255
					for (i = 0; i < num_lines && !duplicate; i++) {
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
   256
						if (refit[i].cargo == lcid && 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
   257
					}
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
   258
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
   259
					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
   260
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
   261
					refit[num_lines].cargo   = lcid;
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
					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
   263
					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
   264
					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
   265
					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
   266
				}
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
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
				/* 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
   269
				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
   270
				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
   271
			} 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
   272
				/* 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
   273
				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
   274
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
   275
				for (i = 0; i < num_lines && !duplicate; i++) {
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
   276
					if (refit[i].cargo == lcid && 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
   277
				}
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
   278
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
   279
				if (!duplicate) {
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
   280
					refit[num_lines].cargo   = lcid;
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
   281
					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
   282
					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
   283
					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
   284
					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
   285
				}
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
   286
			}
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
   287
		}
4933
0ae35137aeca (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   288
	} while (v->type == VEH_Train && (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
   289
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
   290
	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
   291
	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
   292
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
   293
	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
   294
}
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
   295
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
   296
/** 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
   297
 * Draw the list and highlight the selected refit option (if any)
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
   298
 * @param *v 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
   299
 * @param sel selected refit cargo-type in the 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
   300
 * @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
   301
 */
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
   302
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
   303
{
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
   304
	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
   305
	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
   306
	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
   307
	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
   308
	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
   309
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
   310
	/* 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
   311
	for (i = 0; i < num_lines; i++) {
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
   312
		byte colour = 16;
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
   313
		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
   314
			selected = &refit[i];
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
   315
			colour = 12;
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
   316
		}
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
   317
4697
67032d30eab0 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   318
		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
   319
			/* Draw the cargo name */
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
   320
			int last_x = DrawString(2, y, _cargoc.names_s[refit[i].cargo], 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
   321
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
   322
			/* 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
   323
			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
   324
				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
   325
			}
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
   326
			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
   327
		}
3025
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   328
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
   329
		sel--;
3025
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   330
	}
9e60c370415c (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   331
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
   332
	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
   333
}
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
   334
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   335
static void VehicleRefitWndProc(Window *w, WindowEvent *e)
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   336
{
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   337
	switch (e->event) {
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   338
		case WE_PAINT: {
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
   339
			Vehicle *v = GetVehicle(w->window_number);
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
   340
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
   341
			if (v->type == VEH_Train) {
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
   342
				uint length = CountVehiclesInChain(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
   343
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
   344
				if (length != WP(w, refit_d).length) {
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
   345
					/* Consist length has changed, so rebuild the refit 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
   346
					free(WP(w, refit_d).list->items);
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
   347
					free(WP(w, refit_d).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
   348
					WP(w, refit_d).list = BuildRefitList(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
   349
					WP(w, refit_d).length = length;
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
   350
				}
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
   351
			}
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   352
4698
b787a418296f (svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...
peter1138
parents: 4697
diff changeset
   353
			SetVScrollCount(w, WP(w, refit_d).list->num_lines);
b787a418296f (svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...
peter1138
parents: 4697
diff changeset
   354
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   355
			SetDParam(0, v->string_id);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   356
			SetDParam(1, v->unitnumber);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   357
			DrawWindowWidgets(w);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   358
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
   359
			WP(w,refit_d).cargo = DrawVehicleRefitWindow(WP(w, refit_d).list, WP(w, refit_d).sel, w->vscroll.pos, w->vscroll.cap, w->resize.step_height);
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   360
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
   361
			if (WP(w,refit_d).cargo != NULL) {
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   362
				int32 cost = 0;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   363
				switch (GetVehicle(w->window_number)->type) {
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   364
					case VEH_Train:    cost = CMD_REFIT_RAIL_VEHICLE; break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   365
					case VEH_Road:     cost = CMD_REFIT_ROAD_VEH;     break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   366
					case VEH_Ship:     cost = CMD_REFIT_SHIP;         break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   367
					case VEH_Aircraft: cost = CMD_REFIT_AIRCRAFT;     break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   368
				}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   369
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
   370
				cost = DoCommand(v->tile, v->index, WP(w,refit_d).cargo->cargo | WP(w,refit_d).cargo->subtype << 8, DC_QUERY_COST, cost);
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   371
				if (!CmdFailed(cost)) {
4896
f86350aaaaa5 (svn r6855) - Codechange: When displaying a "quantity of cargo" string, use the {CARGO} command and supply the cargo type and quantity, instead of manually looking up the cargo type's string.
peter1138
parents: 4863
diff changeset
   372
					SetDParam(0, WP(w,refit_d).cargo->cargo);
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   373
					SetDParam(1, _returned_refit_capacity);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   374
					SetDParam(2, cost);
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
   375
					DrawString(2, w->widget[5].top + 1, STR_9840_NEW_CAPACITY_COST_OF_REFIT, 0);
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   376
				}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   377
			}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   378
		}	break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   379
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   380
		case WE_CLICK:
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   381
			switch (e->we.click.widget) {
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
   382
				case 3: { // listbox
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
   383
					int y = e->we.click.pt.y - w->widget[3].top;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   384
					if (y >= 0) {
4697
67032d30eab0 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   385
						WP(w,refit_d).sel = (y / (int)w->resize.step_height) + w->vscroll.pos;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   386
						SetWindowDirty(w);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   387
					}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   388
				} 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
   389
				case 6: // refit button
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
   390
					if (WP(w,refit_d).cargo != NULL) {
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   391
						const Vehicle *v = GetVehicle(w->window_number);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   392
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
   393
						if (WP(w, refit_d).order == INVALID_VEH_ORDER_ID) {
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
   394
							int command = 0;
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
   395
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
   396
							switch (v->type) {
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
   397
								case VEH_Train:    command = CMD_REFIT_RAIL_VEHICLE | CMD_MSG(STR_RAIL_CAN_T_REFIT_VEHICLE);  break;
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
   398
								case VEH_Road:     command = CMD_REFIT_ROAD_VEH     | CMD_MSG(STR_REFIT_ROAD_VEHICLE_CAN_T);  break;
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
   399
								case VEH_Ship:     command = CMD_REFIT_SHIP         | CMD_MSG(STR_9841_CAN_T_REFIT_SHIP);     break;
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
   400
								case VEH_Aircraft: command = CMD_REFIT_AIRCRAFT     | CMD_MSG(STR_A042_CAN_T_REFIT_AIRCRAFT); break;
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
   401
							}
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
   402
							if (DoCommandP(v->tile, v->index, WP(w,refit_d).cargo->cargo | WP(w,refit_d).cargo->subtype << 8, NULL, command)) DeleteWindow(w);
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
   403
						} else {
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
							if (DoCommandP(v->tile, v->index, WP(w,refit_d).cargo->cargo | WP(w,refit_d).cargo->subtype << 8 | WP(w, refit_d).order << 16, NULL, CMD_ORDER_REFIT)) DeleteWindow(w);
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   405
						}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   406
					}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   407
					break;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   408
			}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   409
			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
   410
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
   411
		case WE_RESIZE:
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
   412
			w->vscroll.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
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
   413
			w->widget[3].data = (w->vscroll.cap << 8) + 1;
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
   414
			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
   415
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
   416
		case WE_DESTROY:
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
   417
			free(WP(w, refit_d).list->items);
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
   418
			free(WP(w, refit_d).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
   419
			break;
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   420
	}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   421
}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   422
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
static const Widget _vehicle_refit_widgets[] = {
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   425
	{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                            STR_018B_CLOSE_WINDOW},
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   426
	{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   239,     0,    13, STR_983B_REFIT,                      STR_018C_WINDOW_TITLE_DRAG_THIS},
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
   427
	{    WWT_TEXTBTN,   RESIZE_NONE,    14,     0,   239,    14,    27, STR_983F_SELECT_CARGO_TYPE_TO_CARRY, STR_983D_SELECT_TYPE_OF_CARGO_FOR},
4775
1fb972035324 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   428
	{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   227,    28,   139, 0x801,                               STR_EMPTY},
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
   429
	{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   228,   239,    28,   139, 0x0,                                 STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
   430
	{      WWT_PANEL,     RESIZE_TB,    14,     0,   239,   140,   161, 0x0,                                 STR_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
   431
	{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   227,   162,   173, 0x0,                                 STR_NULL},
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
   432
	{  WWT_RESIZEBOX,     RESIZE_TB,    14,   228,   239,   162,   173, 0x0,                                 STR_RESIZE_BUTTON},
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   433
	{   WIDGETS_END},
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   434
};
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   435
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   436
static const WindowDesc _vehicle_refit_desc = {
5070
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   437
	WDP_AUTO, WDP_AUTO, 240, 174,
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   438
	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
   439
	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
   440
	_vehicle_refit_widgets,
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   441
	VehicleRefitWndProc,
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   442
};
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   443
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   444
/** Show the refit window for a vehicle
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   445
* @param *v The vehicle to show the refit window for
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   446
*/
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
   447
void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order)
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   448
{
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   449
	Window *w;
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   450
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   451
	DeleteWindowById(WC_VEHICLE_REFIT, v->index);
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   452
5071
e28106dfcb6f (svn r7129) -Codechange: Get rid of a global variable that only sets a window's number.
Darkvater
parents: 5070
diff changeset
   453
	w = AllocateWindowDescFront(&_vehicle_refit_desc, v->index);
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
   454
	WP(w, refit_d).order = order;
4704
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   455
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   456
	if (w != NULL) {
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   457
		w->caption_color = v->owner;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   458
		w->vscroll.cap = 8;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   459
		w->resize.step_height = 14;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   460
		WP(w, refit_d).sel  = -1;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   461
		WP(w, refit_d).list = BuildRefitList(v);
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   462
		if (v->type == VEH_Train) WP(w, refit_d).length = CountVehiclesInChain(v);
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   463
		SetVScrollCount(w, WP(w, refit_d).list->num_lines);
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   464
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   465
		switch (v->type) {
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   466
			case VEH_Train:
4775
1fb972035324 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   467
				w->widget[3].tooltips = STR_RAIL_SELECT_TYPE_OF_CARGO_FOR;
4704
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   468
				w->widget[6].data     = STR_RAIL_REFIT_VEHICLE;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   469
				w->widget[6].tooltips = STR_RAIL_REFIT_TO_CARRY_HIGHLIGHTED;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   470
				break;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   471
			case VEH_Road:
4775
1fb972035324 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   472
				w->widget[3].tooltips = STR_ROAD_SELECT_TYPE_OF_CARGO_FOR;
4704
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   473
				w->widget[6].data     = STR_REFIT_ROAD_VEHICLE;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   474
				w->widget[6].tooltips = STR_REFIT_ROAD_VEHICLE_TO_CARRY_HIGHLIGHTED;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   475
				break;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   476
			case VEH_Ship:
4775
1fb972035324 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   477
				w->widget[3].tooltips = STR_983D_SELECT_TYPE_OF_CARGO_FOR;
4704
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   478
				w->widget[6].data     = STR_983C_REFIT_SHIP;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   479
				w->widget[6].tooltips = STR_983E_REFIT_SHIP_TO_CARRY_HIGHLIGHTED;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   480
				break;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   481
			case VEH_Aircraft:
4775
1fb972035324 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   482
				w->widget[3].tooltips = STR_A03E_SELECT_TYPE_OF_CARGO_FOR;
4704
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   483
				w->widget[6].data     = STR_A03D_REFIT_AIRCRAFT;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   484
				w->widget[6].tooltips = STR_A03F_REFIT_AIRCRAFT_TO_CARRY;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   485
				break;
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   486
			default: NOT_REACHED();
557cdcda0c47 (svn r6614) -Fix: added check to see if a newly opened refit window is different from NULL before assigning data to it
bjarni
parents: 4702
diff changeset
   487
		}
4642
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   488
	}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   489
}
e27b0f7e89e9 (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   490
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   491
/* 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
   492
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
   493
{
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   494
	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
   495
	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
   496
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
   497
	// STR_02BD is used to start the string with {BLACK}
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
   498
	SetDParam(0, GetGRFStringID(GetEngineGRFID(engine), 0xD000 + callback));
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
   499
	return DrawStringMultiLine(x, y, STR_02BD, w);
3650
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   500
}
4dd8517bdcf6 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   501
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
   502
/* Count the number of bits that are set in a 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
   503
static uint CountBits(uint32 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
   504
{
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
   505
	uint c = 0;
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
	for (; mask != 0; mask >>= 1) if (HASBIT(mask, 0)) c++;
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
	return c;
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
   508
}
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
   509
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
   510
/* Display list of cargo types of the engine, for the purchase information window */
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
   511
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
   512
{
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
   513
	/* 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
   514
	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
   515
	/* List of cargo types available 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
   516
	uint32 lmask = _landscape_global_cargo_mask[_opt.landscape];
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
   517
	char *b = _userstring;
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
   518
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
   519
	/* Draw nothing if the engine is not refittable */
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
   520
	if (CountBits(cmask) <= 1) return 0;
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
   521
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
   522
	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
   523
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
   524
	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
   525
		/* 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
   526
		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
   527
	} 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
   528
		CargoID cid;
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
   529
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
   530
		/* 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
   531
		 * so, invert the cargo types to list those that we can't refit 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
   532
		if (CountBits(cmask ^ lmask) < CountBits(cmask)) {
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
   533
			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
   534
			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
   535
		}
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
   536
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
   537
		/* Add each cargo type to the list */
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
   538
		for (cid = 0; cmask != 0; cmask >>= 1, cid++) {
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
   539
			if (!HASBIT(cmask, 0)) continue;
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
   540
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
   541
			b = InlineString(b, _cargoc.names_s[_local_cargo_id_ctype[cid]]);
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
   542
			if (cmask > 1) b = strecpy(b, ", ", lastof(_userstring));
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
   543
		}
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
   544
	}
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
   545
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
   546
	/* 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
   547
	*b = '\0';
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
   548
	return DrawStringMultiLine(x, y, STR_SPEC_USERSTRING, w);
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
   549
}
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
   550
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   551
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   552
// if the sorting criteria had the same value, sort vehicle by unitnumber
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   553
#define VEHICLEUNITNUMBERSORTER(r, a, b) {if (r == 0) {r = a->unitnumber - b->unitnumber;}}
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   554
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   555
static int CDECL VehicleNumberSorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   556
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   557
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   558
	const Vehicle* vb = *(const Vehicle**)b;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   559
	int r = va->unitnumber - vb->unitnumber;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   560
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   561
	return (_internal_sort_order & 1) ? -r : r;
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
   562
}
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
   563
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   564
static int CDECL VehicleNameSorter(const void *a, const void *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
   565
{
4863
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   566
	static const Vehicle *last_vehicle[2] = { NULL, NULL };
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   567
	static char           last_name[2][64] = { "", "" };
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   568
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   569
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   570
	const Vehicle* vb = *(const Vehicle**)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
   571
	int r;
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
   572
4863
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   573
	if (va != last_vehicle[0]) {
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   574
		last_vehicle[0] = va;
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   575
		if (IsCustomName(va->string_id)) {
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   576
			GetString(last_name[0], va->string_id, lastof(last_name[0]));
4863
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   577
		} else {
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   578
			last_name[0][0] = '\0';
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
   579
		}
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
   580
	}
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
   581
4863
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   582
	if (vb != last_vehicle[1]) {
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   583
		last_vehicle[1] = vb;
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   584
		if (IsCustomName(vb->string_id)) {
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   585
			GetString(last_name[1], vb->string_id, lastof(last_name[1]));
4863
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   586
		} else {
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   587
			last_name[1][0] = '\0';
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   588
		}
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   589
	}
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   590
c178519a8627 (svn r6789) - Codechange: Tidy up VehicleNameSorter() to use no global vars, and match the style of EngineNameSorter(). This also removes a bug where _internal_name_sorter_id was never set properly for anything other than trains.
peter1138
parents: 4835
diff changeset
   591
	r = strcmp(last_name[0], last_name[1]); // sort by name
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   592
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   593
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   594
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   595
	return (_internal_sort_order & 1) ? -r : r;
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
   596
}
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
   597
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   598
static int CDECL VehicleAgeSorter(const void *a, const void *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
   599
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   600
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   601
	const Vehicle* vb = *(const Vehicle**)b;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   602
	int r = va->age - vb->age;
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
   603
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   604
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   605
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   606
	return (_internal_sort_order & 1) ? -r : r;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   607
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   608
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   609
static int CDECL VehicleProfitThisYearSorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   610
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   611
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   612
	const Vehicle* vb = *(const Vehicle**)b;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   613
	int r = va->profit_this_year - vb->profit_this_year;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   614
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   615
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   616
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   617
	return (_internal_sort_order & 1) ? -r : r;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   618
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   619
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   620
static int CDECL VehicleProfitLastYearSorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   621
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   622
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   623
	const Vehicle* vb = *(const Vehicle**)b;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   624
	int r = va->profit_last_year - vb->profit_last_year;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   625
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   626
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   627
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   628
	return (_internal_sort_order & 1) ? -r : r;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   629
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   630
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   631
static int CDECL VehicleCargoSorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   632
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   633
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   634
	const Vehicle* vb = *(const Vehicle**)b;
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   635
	const Vehicle* v;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   636
	AcceptedCargo cargoa;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   637
	AcceptedCargo cargob;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   638
	int r = 0;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   639
	int i;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   640
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   641
	memset(cargoa, 0, sizeof(cargoa));
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   642
	memset(cargob, 0, sizeof(cargob));
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   643
	for (v = va; v != NULL; v = v->next) cargoa[v->cargo_type] += v->cargo_cap;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   644
	for (v = vb; v != NULL; v = v->next) cargob[v->cargo_type] += v->cargo_cap;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   645
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   646
	for (i = 0; i < NUM_CARGO; i++) {
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   647
		r = cargoa[i] - cargob[i];
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   648
		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
   649
	}
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
   650
594
1b51f81b4a77 (svn r1016) Make the cargo sorter not consider the number of wagons of a particular cargo type but the sum of their capacity.
tron
parents: 588
diff changeset
   651
	VEHICLEUNITNUMBERSORTER(r, va, vb);
1b51f81b4a77 (svn r1016) Make the cargo sorter not consider the number of wagons of a particular cargo type but the sum of their capacity.
tron
parents: 588
diff changeset
   652
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   653
	return (_internal_sort_order & 1) ? -r : r;
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
   654
}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   655
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   656
static int CDECL VehicleReliabilitySorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   657
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   658
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   659
	const Vehicle* vb = *(const Vehicle**)b;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   660
	int r = va->reliability - vb->reliability;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   661
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   662
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   663
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   664
	return (_internal_sort_order & 1) ? -r : r;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   665
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   666
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   667
static int CDECL VehicleMaxSpeedSorter(const void *a, const void *b)
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   668
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   669
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   670
	const Vehicle* vb = *(const Vehicle**)b;
1179
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   671
	int max_speed_a = 0xFFFF, max_speed_b = 0xFFFF;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   672
	int r;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   673
	const Vehicle *ua = va, *ub = vb;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   674
1191
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   675
	if (va->type == VEH_Train && vb->type == VEH_Train) {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   676
		do {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   677
			if (RailVehInfo(ua->engine_type)->max_speed != 0)
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   678
				max_speed_a = min(max_speed_a, RailVehInfo(ua->engine_type)->max_speed);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   679
		} while ((ua = ua->next) != NULL);
1179
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   680
1191
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   681
		do {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   682
			if (RailVehInfo(ub->engine_type)->max_speed != 0)
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   683
				max_speed_b = min(max_speed_b, RailVehInfo(ub->engine_type)->max_speed);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   684
		} while ((ub = ub->next) != NULL);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   685
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   686
		r = max_speed_a - max_speed_b;
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   687
	} else {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   688
		r = va->max_speed - vb->max_speed;
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   689
	}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   690
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   691
	VEHICLEUNITNUMBERSORTER(r, va, vb);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   692
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   693
	return (_internal_sort_order & 1) ? -r : r;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   694
}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   695
2965
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   696
static int CDECL VehicleModelSorter(const void *a, const void *b)
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   697
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   698
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   699
	const Vehicle* vb = *(const Vehicle**)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
   700
	int r = va->engine_type - vb->engine_type;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   701
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   702
	VEHICLEUNITNUMBERSORTER(r, va, vb);
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   703
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   704
	return (_internal_sort_order & 1) ? -r : r;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   705
}
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   706
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   707
static int CDECL VehicleValueSorter(const void *a, const void *b)
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   708
{
4266
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   709
	const Vehicle* va = *(const Vehicle**)a;
0de669884154 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   710
	const Vehicle* vb = *(const Vehicle**)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
   711
	const Vehicle *u;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   712
	int valuea = 0, valueb = 0;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   713
	int r;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   714
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   715
	for (u = va; u != NULL; u = u->next) valuea += u->value;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   716
	for (u = vb; u != NULL; u = u->next) valueb += u->value;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   717
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   718
	r = valuea - valueb;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   719
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   720
	VEHICLEUNITNUMBERSORTER(r, va, vb);
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   721
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   722
	return (_internal_sort_order & 1) ? -r : r;
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   723
}
3eb140bd49a3 (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   724
5808
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   725
// this define is to match engine.c, but engine.c keeps it to itself
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   726
// ENGINE_AVAILABLE is used in ReplaceVehicleWndProc
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   727
#define ENGINE_AVAILABLE ((e->flags & 1 && HASBIT(info->climates, _opt.landscape)) || HASBIT(e->player_avail, _local_player))
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   728
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   729
/*  if show_outdated is selected, it do not sort psudo engines properly but it draws all engines
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   730
 * if used compined with show_cars set to false, it will work as intended. Replace window do it like that
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   731
 *  this was a big hack even before show_outdated was added. Stupid newgrf :p
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   732
 */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   733
static void train_engine_drawing_loop(int *x, int *y, int *pos, int *sel, EngineID *selected_id, RailType railtype,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   734
	uint8 lines_drawn, bool is_engine, bool show_cars, bool show_outdated, bool show_compatible)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   735
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   736
	EngineID j;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   737
	byte colour;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   738
	const Player *p = GetPlayer(_local_player);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   739
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   740
	for (j = 0; j < NUM_TRAIN_ENGINES; j++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   741
		EngineID i = GetRailVehAtPosition(j);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   742
		const Engine *e = GetEngine(i);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   743
		const RailVehicleInfo *rvi = RailVehInfo(i);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   744
		const EngineInfo *info = EngInfo(i);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   745
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   746
		if (!EngineHasReplacementForPlayer(p, i) && p->num_engines[i] == 0 && show_outdated) continue;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   747
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   748
		if ((rvi->power == 0 && !show_cars) || (rvi->power != 0 && show_cars))  // show wagons or engines (works since wagons do not have power)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   749
			continue;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   750
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   751
		if (*sel == 0) *selected_id = j;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   752
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   753
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   754
		colour = *sel == 0 ? 0xC : 0x10;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   755
		if (!(ENGINE_AVAILABLE && show_outdated && RailVehInfo(i)->power && IsCompatibleRail(e->railtype, railtype))) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   756
			if ((!IsCompatibleRail(e->railtype, railtype) && show_compatible)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   757
				|| (e->railtype != railtype && !show_compatible)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   758
				|| !(rvi->flags & RVI_WAGON) != is_engine ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   759
				!HASBIT(e->player_avail, _local_player))
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   760
				continue;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   761
#if 0
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   762
		} else {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   763
			// TODO find a nice red colour for vehicles being replaced
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   764
			if ( _autoreplace_array[i] != i )
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   765
				colour = *sel == 0 ? 0x44 : 0x45;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   766
#endif
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   767
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   768
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   769
		if (IS_INT_INSIDE(--*pos, -lines_drawn, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   770
			DrawString(*x + 59, *y + 2, GetCustomEngineName(i),
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   771
				colour);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   772
			// show_outdated is true only for left side, which is where we show old replacements
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   773
			DrawTrainEngine(*x + 29, *y + 6, i, (p->num_engines[i] == 0 && show_outdated) ?
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   774
				PALETTE_CRASH : GetEnginePalette(i, _local_player));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   775
			if ( show_outdated ) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   776
				SetDParam(0, p->num_engines[i]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   777
				DrawStringRightAligned(213, *y+5, STR_TINY_BLACK, 0);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   778
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   779
			*y += 14;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   780
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   781
		--*sel;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   782
	}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   783
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   784
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   785
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   786
static void SetupScrollStuffForReplaceWindow(Window *w)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   787
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   788
	EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   789
	const Player* p = GetPlayer(_local_player);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   790
	uint sel[2];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   791
	uint count = 0;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   792
	uint count2 = 0;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   793
	EngineID i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   794
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   795
	sel[0] = WP(w,replaceveh_d).sel_index[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   796
	sel[1] = WP(w,replaceveh_d).sel_index[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   797
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   798
	switch (WP(w,replaceveh_d).vehicletype) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   799
		case VEH_Train: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   800
			RailType railtype = _railtype_selected_in_replace_gui;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   801
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   802
			w->widget[13].color = _player_colors[_local_player]; // sets the colour of that art thing
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   803
			w->widget[16].color = _player_colors[_local_player]; // sets the colour of that art thing
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   804
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   805
			for (i = 0; i < NUM_TRAIN_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   806
				EngineID eid = GetRailVehAtPosition(i);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   807
				const Engine* e = GetEngine(eid);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   808
				const EngineInfo* info = EngInfo(eid);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   809
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   810
				// left window contains compatible engines while right window only contains engines of the selected type
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   811
				if (ENGINE_AVAILABLE &&
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   812
						(RailVehInfo(eid)->power != 0) == (WP(w, replaceveh_d).wagon_btnstate != 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   813
					if (IsCompatibleRail(e->railtype, railtype) && (p->num_engines[eid] > 0 || EngineHasReplacementForPlayer(p, eid))) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   814
						if (sel[0] == count) selected_id[0] = eid;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   815
						count++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   816
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   817
					if (e->railtype == railtype && HASBIT(e->player_avail, _local_player)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   818
						if (sel[1] == count2) selected_id[1] = eid;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   819
						count2++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   820
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   821
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   822
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   823
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   824
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   825
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   826
		case VEH_Road: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   827
			for (i = ROAD_ENGINES_INDEX; i < ROAD_ENGINES_INDEX + NUM_ROAD_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   828
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   829
					if (sel[0] == count) selected_id[0] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   830
					count++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   831
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   832
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   833
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   834
			if (selected_id[0] != INVALID_ENGINE) { // only draw right array if we have anything in the left one
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   835
				CargoID cargo = RoadVehInfo(selected_id[0])->cargo_type;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   836
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   837
				for (i = ROAD_ENGINES_INDEX; i < ROAD_ENGINES_INDEX + NUM_ROAD_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   838
					if (cargo == RoadVehInfo(i)->cargo_type &&
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   839
							HASBIT(GetEngine(i)->player_avail, _local_player)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   840
						if (sel[1] == count2) selected_id[1] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   841
						count2++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   842
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   843
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   844
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   845
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   846
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   847
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   848
		case VEH_Ship: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   849
			for (i = SHIP_ENGINES_INDEX; i < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   850
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   851
					if (sel[0] == count) selected_id[0] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   852
					count++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   853
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   854
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   855
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   856
			if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   857
				const ShipVehicleInfo* svi = ShipVehInfo(selected_id[0]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   858
				CargoID cargo = svi->cargo_type;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   859
				bool refittable = svi->refittable;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   860
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   861
				for (i = SHIP_ENGINES_INDEX; i < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   862
					if (HASBIT(GetEngine(i)->player_avail, _local_player) && (
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   863
								ShipVehInfo(i)->cargo_type == cargo ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   864
								ShipVehInfo(i)->refittable && refittable
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   865
							)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   866
						if (sel[1] == count2) selected_id[1] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   867
						count2++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   868
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   869
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   870
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   871
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   872
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   873
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   874
		case VEH_Aircraft: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   875
			for (i = AIRCRAFT_ENGINES_INDEX; i < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   876
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   877
					if (sel[0] == count) selected_id[0] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   878
					count++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   879
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   880
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   881
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   882
			if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   883
				byte subtype = AircraftVehInfo(selected_id[0])->subtype;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   884
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   885
				for (i = AIRCRAFT_ENGINES_INDEX; i < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   886
					if (HASBIT(GetEngine(i)->player_avail, _local_player) &&
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   887
							(subtype & AIR_CTOL) == (AircraftVehInfo(i)->subtype & AIR_CTOL)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   888
						if (sel[1] == count2) selected_id[1] = i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   889
						count2++;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   890
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   891
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   892
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   893
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   894
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   895
	}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   896
	// sets up the number of items in each list
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   897
	SetVScrollCount(w, count);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   898
	SetVScroll2Count(w, count2);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   899
	WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   900
	WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   901
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   902
	WP(w,replaceveh_d).count[0] = count;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   903
	WP(w,replaceveh_d).count[1] = count2;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   904
	return;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   905
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   906
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   907
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   908
static void DrawEngineArrayInReplaceWindow(Window *w, int x, int y, int x2, int y2, int pos, int pos2,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   909
	int sel1, int sel2, EngineID selected_id1, EngineID selected_id2)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   910
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   911
	int sel[2];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   912
	EngineID selected_id[2];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   913
	const Player *p = GetPlayer(_local_player);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   914
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   915
	sel[0] = sel1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   916
	sel[1] = sel2;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   917
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   918
	selected_id[0] = selected_id1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   919
	selected_id[1] = selected_id2;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   920
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   921
	switch (WP(w,replaceveh_d).vehicletype) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   922
		case VEH_Train: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   923
			RailType railtype = _railtype_selected_in_replace_gui;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   924
			DrawString(157, w->widget[14].top + 1, _rail_types_list[railtype], 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   925
			/* draw sorting criteria string */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   926
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   927
			/* Ensure that custom engines which substituted wagons
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   928
			 * are sorted correctly.
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   929
			 * XXX - DO NOT EVER DO THIS EVER AGAIN! GRRR hacking in wagons as
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   930
			 * engines to get more types.. Stays here until we have our own format
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   931
			 * then it is exit!!! */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   932
			if (WP(w,replaceveh_d).wagon_btnstate) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   933
				train_engine_drawing_loop(&x, &y, &pos, &sel[0], &selected_id[0], railtype, w->vscroll.cap, true, false, true, true); // True engines
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   934
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, true, false, false, false); // True engines
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   935
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, false, false, false, false); // Feeble wagons
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   936
			} else {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   937
				train_engine_drawing_loop(&x, &y, &pos, &sel[0], &selected_id[0], railtype, w->vscroll.cap, false, true, true, true);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   938
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, false, true, false, true);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   939
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   940
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   941
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   942
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   943
		case VEH_Road: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   944
			int num = NUM_ROAD_ENGINES;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   945
			const Engine* e = GetEngine(ROAD_ENGINES_INDEX);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   946
			EngineID engine_id = ROAD_ENGINES_INDEX;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   947
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   948
			do {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   949
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   950
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   951
						DrawString(x+59, y+2, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   952
						DrawRoadVehEngine(x+29, y+6, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   953
						SetDParam(0, p->num_engines[engine_id]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   954
						DrawStringRightAligned(213, y+5, STR_TINY_BLACK, 0);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   955
						y += 14;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   956
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   957
				sel[0]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   958
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   959
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   960
				if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   961
					byte cargo = RoadVehInfo(selected_id[0])->cargo_type;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   962
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   963
					if (RoadVehInfo(engine_id)->cargo_type == cargo && HASBIT(e->player_avail, _local_player)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   964
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0) && RoadVehInfo(engine_id)->cargo_type == cargo) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   965
							DrawString(x2+59, y2+2, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   966
							DrawRoadVehEngine(x2+29, y2+6, engine_id, GetEnginePalette(engine_id, _local_player));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   967
							y2 += 14;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   968
						}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   969
						sel[1]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   970
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   971
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   972
			} while (++engine_id, ++e,--num);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   973
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   974
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   975
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   976
		case VEH_Ship: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   977
			int num = NUM_SHIP_ENGINES;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   978
			const Engine* e = GetEngine(SHIP_ENGINES_INDEX);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   979
			EngineID engine_id = SHIP_ENGINES_INDEX;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   980
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   981
			do {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   982
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   983
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   984
						DrawString(x+75, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   985
						DrawShipEngine(x+35, y+10, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   986
						SetDParam(0, p->num_engines[engine_id]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   987
						DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   988
						y += 24;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   989
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   990
					sel[0]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   991
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   992
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   993
				if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   994
					CargoID cargo = ShipVehInfo(selected_id[0])->cargo_type;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   995
					bool refittable = ShipVehInfo(selected_id[0])->refittable;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   996
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   997
					if (HASBIT(e->player_avail, _local_player) && ( cargo == ShipVehInfo(engine_id)->cargo_type || refittable & ShipVehInfo(engine_id)->refittable)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   998
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
   999
							DrawString(x2+75, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1000
							DrawShipEngine(x2+35, y2+10, engine_id, GetEnginePalette(engine_id, _local_player));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1001
							y2 += 24;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1002
						}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1003
						sel[1]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1004
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1005
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1006
			} while (++engine_id, ++e, --num);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1007
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1008
		}   //end of ship
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1009
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1010
		case VEH_Aircraft: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1011
			int num = NUM_AIRCRAFT_ENGINES;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1012
			const Engine* e = GetEngine(AIRCRAFT_ENGINES_INDEX);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1013
			EngineID engine_id = AIRCRAFT_ENGINES_INDEX;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1014
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1015
			do {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1016
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1017
					if (sel[0] == 0) selected_id[0] = engine_id;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1018
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1019
						DrawString(x+62, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1020
						DrawAircraftEngine(x+29, y+10, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1021
						SetDParam(0, p->num_engines[engine_id]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1022
						DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1023
						y += 24;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1024
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1025
					sel[0]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1026
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1027
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1028
				if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1029
					byte subtype = AircraftVehInfo(selected_id[0])->subtype;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1030
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1031
					if ((subtype & AIR_CTOL) == (AircraftVehInfo(engine_id)->subtype & AIR_CTOL) &&
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1032
							HASBIT(e->player_avail, _local_player)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1033
						if (sel[1] == 0) selected_id[1] = engine_id;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1034
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1035
							DrawString(x2+62, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1036
							DrawAircraftEngine(x2+29, y2+10, engine_id, GetEnginePalette(engine_id, _local_player));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1037
							y2 += 24;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1038
						}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1039
						sel[1]--;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1040
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1041
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1042
			} while (++engine_id, ++e,--num);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1043
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1044
		}   // end of aircraft
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1045
	}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1046
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1047
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1048
static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1049
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1050
	static const StringID _vehicle_type_names[] = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1051
		STR_019F_TRAIN,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1052
		STR_019C_ROAD_VEHICLE,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1053
		STR_019E_SHIP,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1054
		STR_019D_AIRCRAFT
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1055
	};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1056
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1057
	switch (e->event) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1058
		case WE_PAINT: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1059
				Player *p = GetPlayer(_local_player);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1060
				int pos = w->vscroll.pos;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1061
				EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1062
				int x = 1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1063
				int y = 15;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1064
				int pos2 = w->vscroll2.pos;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1065
				int x2 = 1 + 228;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1066
				int y2 = 15;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1067
				int sel[2];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1068
				byte i;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1069
				sel[0] = WP(w,replaceveh_d).sel_index[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1070
				sel[1] = WP(w,replaceveh_d).sel_index[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1071
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1072
				SetupScrollStuffForReplaceWindow(w);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1073
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1074
				selected_id[0] = WP(w,replaceveh_d).sel_engine[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1075
				selected_id[1] = WP(w,replaceveh_d).sel_engine[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1076
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1077
				// Disable the "Start Replacing" button if:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1078
				//    Either list is empty
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1079
				// or Both lists have the same vehicle selected
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1080
				// or The selected replacement engine has a replacement (to prevent loops)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1081
				// or The right list (new replacement) has the existing replacement vehicle selected
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1082
				SetWindowWidgetDisabledState(w, 4,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1083
						selected_id[0] == INVALID_ENGINE ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1084
						selected_id[1] == INVALID_ENGINE ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1085
						selected_id[0] == selected_id[1] ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1086
						EngineReplacementForPlayer(p, selected_id[1]) != INVALID_ENGINE ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1087
						EngineReplacementForPlayer(p, selected_id[0]) == selected_id[1]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1088
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1089
				// Disable the "Stop Replacing" button if:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1090
				//    The left list (existing vehicle) is empty
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1091
				// or The selected vehicle has no replacement set up
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1092
				SetWindowWidgetDisabledState(w, 6,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1093
						selected_id[0] == INVALID_ENGINE ||
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1094
						!EngineHasReplacementForPlayer(p, selected_id[0]));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1095
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1096
				// now the actual drawing of the window itself takes place
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1097
				SetDParam(0, _vehicle_type_names[WP(w, replaceveh_d).vehicletype - VEH_Train]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1098
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1099
				if (WP(w, replaceveh_d).vehicletype == VEH_Train) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1100
					// set on/off for renew_keep_length
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1101
					SetDParam(1, p->renew_keep_length ? STR_CONFIG_PATCHES_ON : STR_CONFIG_PATCHES_OFF);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1102
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1103
					// set wagon/engine button
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1104
					SetDParam(2, WP(w, replaceveh_d).wagon_btnstate ? STR_ENGINES : STR_WAGONS);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1105
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1106
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1107
				DrawWindowWidgets(w);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1108
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1109
				// sets up the string for the vehicle that is being replaced to
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1110
				if (selected_id[0] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1111
					if (!EngineHasReplacementForPlayer(p, selected_id[0])) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1112
						SetDParam(0, STR_NOT_REPLACING);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1113
					} else {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1114
						SetDParam(0, GetCustomEngineName(EngineReplacementForPlayer(p, selected_id[0])));
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1115
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1116
				} else {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1117
					SetDParam(0, STR_NOT_REPLACING_VEHICLE_SELECTED);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1118
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1119
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1120
				DrawString(145, w->widget[5].top + 1, STR_02BD, 0x10);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1121
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1122
				/* now we draw the two arrays according to what we just counted */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1123
				DrawEngineArrayInReplaceWindow(w, x, y, x2, y2, pos, pos2, sel[0], sel[1], selected_id[0], selected_id[1]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1124
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1125
				WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1126
				WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1127
				/* now we draw the info about the vehicles we selected */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1128
				for (i = 0 ; i < 2 ; i++) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1129
					if (selected_id[i] != INVALID_ENGINE) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1130
						const Widget *wi = &w->widget[i == 0 ? 3 : 11];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1131
						DrawVehiclePurchaseInfo(wi->left + 2 , wi->top + 1, wi->right - wi->left - 2, selected_id[i]);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1132
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1133
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1134
			} break;   // end of paint
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1135
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1136
		case WE_CLICK: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1137
			// these 3 variables is used if any of the lists is clicked
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1138
			uint16 click_scroll_pos = w->vscroll2.pos;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1139
			uint16 click_scroll_cap = w->vscroll2.cap;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1140
			byte click_side = 1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1141
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1142
			switch (e->we.click.widget) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1143
				case 12:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1144
					WP(w, replaceveh_d).wagon_btnstate = !(WP(w, replaceveh_d).wagon_btnstate);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1145
					SetWindowDirty(w);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1146
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1147
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1148
				case 14:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1149
				case 15: /* Railtype selection dropdown menu */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1150
					ShowDropDownMenu(w, _rail_types_list, _railtype_selected_in_replace_gui, 15, 0, ~GetPlayer(_local_player)->avail_railtypes);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1151
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1152
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1153
				case 17: /* toggle renew_keep_length */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1154
					DoCommandP(0, 5, GetPlayer(_local_player)->renew_keep_length ? 0 : 1, NULL, CMD_SET_AUTOREPLACE);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1155
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1156
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1157
				case 4: { /* Start replacing */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1158
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1159
					EngineID veh_to = WP(w, replaceveh_d).sel_engine[1];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1160
					DoCommandP(0, 3, veh_from + (veh_to << 16), NULL, CMD_SET_AUTOREPLACE);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1161
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1162
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1163
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1164
				case 6: { /* Stop replacing */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1165
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1166
					DoCommandP(0, 3, veh_from + (INVALID_ENGINE << 16), NULL, CMD_SET_AUTOREPLACE);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1167
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1168
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1169
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1170
				case 7:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1171
					// sets up that the left one was clicked. The default values are for the right one (9)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1172
					// this way, the code for 9 handles both sides
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1173
					click_scroll_pos = w->vscroll.pos;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1174
					click_scroll_cap = w->vscroll.cap;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1175
					click_side = 0;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1176
					/* FALL THROUGH */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1177
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1178
				case 9: {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1179
					uint i = (e->we.click.pt.y - 14) / w->resize.step_height;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1180
					if (i < click_scroll_cap) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1181
						WP(w,replaceveh_d).sel_index[click_side] = i + click_scroll_pos;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1182
						SetWindowDirty(w);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1183
					}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1184
					break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1185
				}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1186
			}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1187
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1188
		}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1189
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1190
		case WE_DROPDOWN_SELECT: /* we have selected a dropdown item in the list */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1191
			_railtype_selected_in_replace_gui = (RailType)e->we.dropdown.index;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1192
			/* Reset scrollbar positions */
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1193
			w->vscroll.pos  = 0;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1194
			w->vscroll2.pos = 0;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1195
			SetWindowDirty(w);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1196
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1197
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1198
		case WE_RESIZE:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1199
			w->vscroll.cap  += e->we.sizing.diff.y / (int)w->resize.step_height;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1200
			w->vscroll2.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1201
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1202
			w->widget[7].data = (w->vscroll.cap  << 8) + 1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1203
			w->widget[9].data = (w->vscroll2.cap << 8) + 1;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1204
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1205
	}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1206
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1207
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1208
static const Widget _replace_rail_vehicle_widgets[] = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1209
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,       STR_018B_CLOSE_WINDOW},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1210
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1211
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,       STR_STICKY_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1212
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   227, 0x0,            STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1213
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   240,   251, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1214
{      WWT_PANEL,     RESIZE_TB,    14,   139,   316,   228,   239, 0x0,            STR_REPLACE_HELP_REPLACE_INFO_TAB},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1215
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   240,   251, STR_REPLACE_VEHICLES_STOP,  STR_REPLACE_HELP_STOP_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1216
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,          STR_REPLACE_HELP_LEFT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1217
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1218
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,          STR_REPLACE_HELP_RIGHT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1219
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1220
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   227, 0x0,            STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1221
// train specific stuff
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1222
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   228,   239, STR_REPLACE_ENGINE_WAGON_SELECT,       STR_REPLACE_ENGINE_WAGON_SELECT_HELP},  // widget 12
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1223
{      WWT_PANEL,     RESIZE_TB,    14,   139,   153,   240,   251, 0x0,            STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1224
{      WWT_PANEL,     RESIZE_TB,    14,   154,   277,   240,   251, 0x0,            STR_REPLACE_HELP_RAILTYPE},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1225
{    WWT_TEXTBTN,     RESIZE_TB,    14,   278,   289,   240,   251, STR_0225,       STR_REPLACE_HELP_RAILTYPE},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1226
{      WWT_PANEL,     RESIZE_TB,    14,   290,   305,   240,   251, 0x0,            STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1227
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   317,   455,   228,   239, STR_REPLACE_REMOVE_WAGON,       STR_REPLACE_REMOVE_WAGON_HELP},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1228
// end of train specific stuff
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1229
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   240,   251, STR_NULL,       STR_RESIZE_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1230
{   WIDGETS_END},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1231
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1232
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1233
static const Widget _replace_road_vehicle_widgets[] = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1234
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                    STR_018B_CLOSE_WINDOW},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1235
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1236
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,                    STR_STICKY_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1237
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   217, 0x0,                         STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1238
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   218,   229, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1239
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   218,   229, 0x0,                         STR_REPLACE_HELP_REPLACE_INFO_TAB},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1240
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   218,   229, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1241
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,                       STR_REPLACE_HELP_LEFT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1242
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1243
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,                       STR_REPLACE_HELP_RIGHT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1244
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1245
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   217, 0x0,                         STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1246
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   218,   229, STR_NULL,                    STR_RESIZE_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1247
{   WIDGETS_END},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1248
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1249
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1250
static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1251
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                    STR_018B_CLOSE_WINDOW},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1252
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1253
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,                    STR_STICKY_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1254
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   110,   201, 0x0,                         STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1255
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   202,   213, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1256
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   202,   213, 0x0,                         STR_REPLACE_HELP_REPLACE_INFO_TAB},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1257
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   202,   213, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1258
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   109, 0x401,                       STR_REPLACE_HELP_LEFT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1259
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   109, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1260
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   109, 0x401,                       STR_REPLACE_HELP_RIGHT_ARRAY},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1261
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   109, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1262
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   110,   201, 0x0,                         STR_NULL},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1263
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   202,   213, STR_NULL,                    STR_RESIZE_BUTTON},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1264
{   WIDGETS_END},
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1265
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1266
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1267
static const WindowDesc _replace_rail_vehicle_desc = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1268
	WDP_AUTO, WDP_AUTO, 456, 252,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1269
	WC_REPLACE_VEHICLE,0,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1270
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1271
	_replace_rail_vehicle_widgets,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1272
	ReplaceVehicleWndProc
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1273
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1274
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1275
static const WindowDesc _replace_road_vehicle_desc = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1276
	WDP_AUTO, WDP_AUTO, 456, 230,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1277
	WC_REPLACE_VEHICLE,0,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1278
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1279
	_replace_road_vehicle_widgets,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1280
	ReplaceVehicleWndProc
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1281
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1282
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1283
static const WindowDesc _replace_ship_aircraft_vehicle_desc = {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1284
	WDP_AUTO, WDP_AUTO, 456, 214,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1285
	WC_REPLACE_VEHICLE,0,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1286
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1287
	_replace_ship_aircraft_vehicle_widgets,
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1288
	ReplaceVehicleWndProc
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1289
};
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1290
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1291
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1292
static void ShowReplaceVehicleWindow(byte vehicletype)
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1293
{
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1294
	Window *w;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1295
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1296
	DeleteWindowById(WC_REPLACE_VEHICLE, vehicletype);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1297
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1298
	switch (vehicletype) {
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1299
		case VEH_Train:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1300
			w = AllocateWindowDescFront(&_replace_rail_vehicle_desc, vehicletype);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1301
			w->vscroll.cap  = 8;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1302
			w->resize.step_height = 14;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1303
			WP(w, replaceveh_d).wagon_btnstate = true;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1304
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1305
		case VEH_Road:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1306
			w = AllocateWindowDescFront(&_replace_road_vehicle_desc, vehicletype);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1307
			w->vscroll.cap  = 8;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1308
			w->resize.step_height = 14;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1309
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1310
		case VEH_Ship:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1311
		case VEH_Aircraft:
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1312
			w = AllocateWindowDescFront(&_replace_ship_aircraft_vehicle_desc, vehicletype);
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1313
			w->vscroll.cap  = 4;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1314
			w->resize.step_height = 24;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1315
			break;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1316
		default: return;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1317
	}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1318
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1319
	w->caption_color = _local_player;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1320
	WP(w, replaceveh_d).vehicletype = vehicletype;
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1321
	w->vscroll2.cap = w->vscroll.cap;   // these two are always the same
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1322
}
c34443483ed3 (svn r8370) -Revert (r8363): the autoreplace GUI move cleared the file history
bjarni
parents: 5801
diff changeset
  1323
1246
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1324
void InitializeGUI(void)
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1325
{
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1326
	memset(&_sorting, 0, sizeof(_sorting));
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1327
}
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1328
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1329
/** Assigns an already open vehicle window to a new vehicle.
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1330
 * Assigns an already open vehicle window to a new vehicle. If the vehicle got
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1331
 * any sub window open (orders and so on) it will change owner too.
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1332
 * @param *from_v the current owner of the window
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1333
 * @param *to_v the new owner of the window
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1334
 */
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1335
void ChangeVehicleViewWindow(const Vehicle *from_v, const Vehicle *to_v)
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1336
{
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1337
	Window *w;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1338
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1339
	w = FindWindowById(WC_VEHICLE_VIEW, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1340
	if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1341
		w->window_number = to_v->index;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1342
		WP(w, vp_d).follow_vehicle = to_v->index;
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1343
		SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1344
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1345
		w = FindWindowById(WC_VEHICLE_ORDERS, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1346
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1347
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1348
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1349
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1350
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1351
		w = FindWindowById(WC_VEHICLE_REFIT, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1352
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1353
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1354
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1355
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1356
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1357
		w = FindWindowById(WC_VEHICLE_DETAILS, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1358
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1359
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1360
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1361
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1362
	}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1363
}
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1364
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1365
/*
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1366
 * Start of functions regarding vehicle list windows
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1367
 */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1368
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1369
enum {
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1370
	PLY_WND_PRC__OFFSET_TOP_WIDGET = 26,
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1371
	PLY_WND_PRC__SIZE_OF_ROW_SMALL = 26,
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1372
	PLY_WND_PRC__SIZE_OF_ROW_BIG   = 36,
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1373
};
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1374
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1375
enum VehicleListWindowWidgets {
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1376
	VLW_WIDGET_CLOSEBOX = 0,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1377
	VLW_WIDGET_CAPTION,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1378
	VLW_WIDGET_STICKY,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1379
	VLW_WIDGET_SORT_ORDER,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1380
	VLW_WIDGET_SORT_BY_TEXT,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1381
	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
  1382
	VLW_WIDGET_EMPTY_TOP_RIGHT,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1383
	VLW_WIDGET_LIST,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1384
	VLW_WIDGET_SCROLLBAR,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1385
	VLW_WIDGET_OTHER_PLAYER_FILLER,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1386
	VLW_WIDGET_NEW_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1387
	VLW_WIDGET_MANAGE_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1388
	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
  1389
	VLW_WIDGET_STOP_ALL,
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1390
	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
  1391
	VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1392
	VLW_WIDGET_RESIZE,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1393
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1394
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1395
static const Widget _vehicle_list_widgets[] = {
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1396
	{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,             STR_018B_CLOSE_WINDOW},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1397
	{    WWT_CAPTION,  RESIZE_RIGHT,    14,    11,   247,     0,    13, 0x0,                  STR_018C_WINDOW_TITLE_DRAG_THIS},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1398
	{  WWT_STICKYBOX,     RESIZE_LR,    14,   248,   259,     0,    13, 0x0,                  STR_STICKY_BUTTON},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1399
	{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,    80,    14,    25, STR_SORT_BY,          STR_SORT_ORDER_TIP},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1400
	{      WWT_PANEL,   RESIZE_NONE,    14,    81,   235,    14,    25, 0x0,                  STR_SORT_CRITERIA_TIP},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1401
	{    WWT_TEXTBTN,   RESIZE_NONE,    14,   236,   247,    14,    25, STR_0225,             STR_SORT_CRITERIA_TIP},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1402
	{      WWT_PANEL,  RESIZE_RIGHT,    14,   248,   259,    14,    25, 0x0,                  STR_NULL},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1403
	{     WWT_MATRIX,     RESIZE_RB,    14,     0,   247,    26,   169, 0x0,                  STR_NULL},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1404
	{  WWT_SCROLLBAR,    RESIZE_LRB,    14,   248,   259,    26,   169, 0x0,                  STR_0190_SCROLL_BAR_SCROLLS_LIST},
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1405
	/* Widget to be shown for other players hiding the following 6 widgets */
5282
361a10cbf4f3 (svn r7431) -Fix (r7418): GUI glitch when viewing other player's vehicle lists: bottom panel continued behind resize button.
peter1138
parents: 5274
diff changeset
  1406
	{      WWT_PANEL,    RESIZE_RTB,    14,     0,   247,   170,   181, 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
  1407
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1408
	{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   105,   170,   181, 0x0,                  STR_AVAILABLE_ENGINES_TIP},
5286
079e9754c8a9 (svn r7435) -Fix (r7418): Add proper tooltips to the manage list button instead of the sort tip
Darkvater
parents: 5282
diff changeset
  1409
	{    WWT_TEXTBTN,     RESIZE_TB,    14,   106,   211,   170,   181, STR_MANAGE_LIST,      STR_MANAGE_LIST_TIP},
079e9754c8a9 (svn r7435) -Fix (r7418): Add proper tooltips to the manage list button instead of the sort tip
Darkvater
parents: 5282
diff changeset
  1410
	{    WWT_TEXTBTN,     RESIZE_TB,    14,   212,   223,   170,   181, STR_0225,             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
  1411
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1412
	{ WWT_PUSHIMGBTN,     RESIZE_TB,    14,   224,   235,   170,   181, SPR_FLAG_VEH_STOPPED, STR_MASS_STOP_LIST_TIP},
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1413
	{ WWT_PUSHIMGBTN,     RESIZE_TB,    14,   236,   247,   170,   181, SPR_FLAG_VEH_RUNNING, STR_MASS_START_LIST_TIP},
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1414
	{      WWT_PANEL,    RESIZE_RTB,    14,   248,   247,   170,   181, 0x0,                  STR_NULL},
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1415
	{  WWT_RESIZEBOX,   RESIZE_LRTB,    14,   248,   259,   170,   181, 0x0,                  STR_RESIZE_BUTTON},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1416
	{   WIDGETS_END},
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1417
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1418
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1419
static void CreateVehicleListWindow(Window *w)
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1420
{
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1421
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1422
	uint16 window_type = w->window_number & VLW_MASK;
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
  1423
	PlayerID player = (PlayerID)GB(w->window_number, 0, 8);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1424
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1425
	vl->vehicle_type = GB(w->window_number, 11, 5);
4678
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
  1426
	vl->length_of_sort_list = 0;
e5fe6e4aca39 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
  1427
	vl->sort_list = NULL;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1428
	w->caption_color = player;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1429
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1430
	/* Hide the widgets that we will not use in this window
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1431
	 * Some windows contains actions only fit for the owner */
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1432
	if (player == _local_player) {
4702
c79e9d9f27b3 (svn r6612) -Codechange: Use accessors for hidden_state.
belugas
parents: 4698
diff changeset
  1433
		HideWindowWidget(w, VLW_WIDGET_OTHER_PLAYER_FILLER);
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1434
		SetWindowWidgetDisabledState(w, VLW_WIDGET_NEW_VEHICLES, window_type != VLW_STANDARD);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1435
	} else {
4758
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1436
		SetWindowWidgetsHiddenState(w, true,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1437
			VLW_WIDGET_NEW_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1438
			VLW_WIDGET_MANAGE_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1439
			VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4758
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1440
			VLW_WIDGET_STOP_ALL,
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1441
			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
  1442
			VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
4758
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1443
			WIDGET_LIST_END);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1444
	}
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1445
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1446
	/* Set up the window widgets */
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1447
	switch (vl->vehicle_type) {
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1448
		case VEH_Train:
4686
e438e8b2ab61 (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1449
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_883D_TRAINS_CLICK_ON_TRAIN_FOR;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1450
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_8815_NEW_VEHICLES;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1451
			break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1452
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1453
		case VEH_Road:
4686
e438e8b2ab61 (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1454
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_901A_ROAD_VEHICLES_CLICK_ON;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1455
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_9004_NEW_VEHICLES;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1456
			break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1457
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1458
		case VEH_Ship:
4686
e438e8b2ab61 (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1459
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_9823_SHIPS_CLICK_ON_SHIP_FOR;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1460
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_9804_NEW_SHIPS;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1461
			break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1462
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1463
		case VEH_Aircraft:
4686
e438e8b2ab61 (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1464
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_A01F_AIRCRAFT_CLICK_ON_AIRCRAFT;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1465
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_A003_NEW_AIRCRAFT;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1466
			break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1467
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1468
		default: NOT_REACHED();
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1469
	}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1470
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1471
	switch (window_type) {
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1472
		case VLW_SHARED_ORDERS:
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1473
			w->widget[VLW_WIDGET_CAPTION].data  = STR_VEH_WITH_SHARED_ORDERS_LIST;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1474
			break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1475
		case VLW_STANDARD: /* Company Name - standard widget setup */
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1476
			switch (vl->vehicle_type) {
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1477
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_881B_TRAINS;        break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1478
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_9001_ROAD_VEHICLES; break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1479
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_9805_SHIPS;         break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1480
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_A009_AIRCRAFT;      break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1481
				default: NOT_REACHED(); break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1482
			}
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1483
			break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1484
		case VLW_STATION_LIST: /* Station Name */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1485
			switch (vl->vehicle_type) {
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1486
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_TRAINS;        break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1487
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_ROAD_VEHICLES; break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1488
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_SHIPS;         break;
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1489
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_AIRCRAFT;      break;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1490
				default: NOT_REACHED(); break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1491
			}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1492
			break;
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
  1493
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
  1494
		case VLW_DEPOT_LIST:
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
  1495
			switch (vl->vehicle_type) {
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
  1496
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_TRAIN_DEPOT;    break;
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
  1497
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_ROADVEH_DEPOT;  break;
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
  1498
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_SHIP_DEPOT;     break;
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
  1499
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_AIRCRAFT_DEPOT; break;
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
  1500
				default: NOT_REACHED(); break;
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
  1501
			}
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
  1502
			break;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1503
		default: NOT_REACHED(); break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1504
	}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1505
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1506
	switch (vl->vehicle_type) {
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1507
		case VEH_Train:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1508
			w->resize.step_width = 1;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1509
			/* Fallthrough */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1510
		case VEH_Road:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1511
			w->vscroll.cap = 7;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1512
			w->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_SMALL;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1513
			w->resize.height = 220 - (PLY_WND_PRC__SIZE_OF_ROW_SMALL * 3); // Minimum of 4 vehicles
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1514
			break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1515
		case VEH_Ship:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1516
		case VEH_Aircraft:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1517
			w->vscroll.cap = 4;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1518
			w->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_BIG;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1519
			break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1520
		default: NOT_REACHED();
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1521
	}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1522
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1523
	w->widget[VLW_WIDGET_LIST].data = (w->vscroll.cap << 8) + 1;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1524
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1525
	/* Set up sorting. Make the window-specific _sorting variable
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1526
		* point to the correct global _sorting struct so we are freed
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1527
		* from having conditionals during window operation */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1528
	switch (vl->vehicle_type) {
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1529
		case VEH_Train:    vl->_sorting = &_sorting.train; break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1530
		case VEH_Road:     vl->_sorting = &_sorting.roadveh; break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1531
		case VEH_Ship:     vl->_sorting = &_sorting.ship; break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1532
		case VEH_Aircraft: vl->_sorting = &_sorting.aircraft; break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1533
		default: NOT_REACHED(); break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1534
	}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1535
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
  1536
	vl->l.flags = VL_REBUILD | (vl->_sorting->order ? VL_DESC : VL_NONE);
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1537
	vl->l.sort_type = vl->_sorting->criteria;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1538
	vl->sort_list = NULL;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1539
	vl->l.resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;	// Set up resort timer
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1540
}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1541
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1542
static void DrawSmallOrderList(const Vehicle *v, int x, int y)
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1543
{
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1544
	const Order *order;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1545
	int sel, i = 0;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1546
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1547
	sel = v->cur_order_index;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1548
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1549
	FOR_VEHICLE_ORDERS(v, order) {
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1550
		if (sel == 0) DrawString(x - 6, y, STR_SMALL_RIGHT_ARROW, 16);
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1551
		sel--;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1552
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1553
		if (order->type == OT_GOTO_STATION) {
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1554
			if (v->type == VEH_Ship && IsBuoy(GetStation(order->dest))) continue;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1555
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1556
			SetDParam(0, order->dest);
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1557
			DrawString(x, y, STR_A036, 0);
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1558
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1559
			y += 6;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1560
			if (++i == 4) break;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1561
		}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1562
	}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1563
}
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1564
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1565
static void DrawVehicleListWindow(Window *w)
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1566
{
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1567
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1568
	int x = 2;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1569
	int y = PLY_WND_PRC__OFFSET_TOP_WIDGET;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1570
	int max;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1571
	int i;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1572
	const PlayerID owner = (PlayerID)w->caption_color;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1573
	const Player *p = GetPlayer(owner);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1574
	const uint16 window_type = w->window_number & VLW_MASK;
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
  1575
	const uint16 index = GB(w->window_number, 16, 16);
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1576
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
  1577
	BuildVehicleList(vl, owner, index, window_type);
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1578
	SortVehicleList(vl);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1579
	SetVScrollCount(w, vl->l.list_length);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1580
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1581
	/* draw the widgets */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1582
	switch (window_type) {
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1583
		case VLW_SHARED_ORDERS: /* Shared Orders */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1584
			if (vl->l.list_length == 0) {
4735
632bb67a4c50 (svn r6647) -Fix: [vehicle list windows] Lists of shared orders are now no longer closed by a window event if the list is empty
bjarni
parents: 4734
diff changeset
  1585
				/* We can't open this window without vehicles using this order
632bb67a4c50 (svn r6647) -Fix: [vehicle list windows] Lists of shared orders are now no longer closed by a window event if the list is empty
bjarni
parents: 4734
diff changeset
  1586
				 * and we should close the window when deleting the order      */
632bb67a4c50 (svn r6647) -Fix: [vehicle list windows] Lists of shared orders are now no longer closed by a window event if the list is empty
bjarni
parents: 4734
diff changeset
  1587
				NOT_REACHED();
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1588
			}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1589
			SetDParam(0, w->vscroll.count);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1590
			break;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1591
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1592
		case VLW_STANDARD: /* Company Name */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1593
			SetDParam(0, p->name_1);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1594
			SetDParam(1, p->name_2);
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1595
			SetDParam(2, w->vscroll.count);
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1596
			break;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1597
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1598
		case VLW_STATION_LIST: /* Station Name */
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
  1599
			SetDParam(0, index);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1600
			SetDParam(1, w->vscroll.count);
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1601
			break;
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
  1602
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
  1603
		case VLW_DEPOT_LIST:
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
  1604
			switch (vl->vehicle_type) {
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
  1605
				case VEH_Train:    SetDParam(0, STR_8800_TRAIN_DEPOT);        break;
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
  1606
				case VEH_Road:     SetDParam(0, STR_9003_ROAD_VEHICLE_DEPOT); break;
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
  1607
				case VEH_Ship:     SetDParam(0, STR_9803_SHIP_DEPOT);         break;
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
  1608
				case VEH_Aircraft: SetDParam(0, STR_A002_AIRCRAFT_HANGAR);    break;
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
  1609
				default: NOT_REACHED(); break;
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
  1610
			}
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
  1611
			if (vl->vehicle_type == VEH_Aircraft) {
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
  1612
				SetDParam(1, index); // Airport name
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
  1613
			} else {
5747
ba5393ff957a (svn r8295) -Cleanup: merged arguments station, order and depot_airport_index for GenerateVehicleSortList() and BuildVehicleList() into one uint16 argument
bjarni
parents: 5745
diff changeset
  1614
				SetDParam(1, GetDepot(index)->town_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
  1615
			}
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
  1616
			SetDParam(2, w->vscroll.count);
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
  1617
			break;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1618
		default: NOT_REACHED(); break;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1619
	}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1620
4758
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1621
	SetWindowWidgetsDisabledState(w, vl->l.list_length == 0,
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1622
		VLW_WIDGET_MANAGE_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1623
		VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4758
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1624
		VLW_WIDGET_STOP_ALL,
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1625
		VLW_WIDGET_START_ALL,
090cf0f1b35e (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1626
		WIDGET_LIST_END);
4722
c9efab0020b9 (svn r6634) -Fix(r6377): Do not change a widget state after a DrawWindowWidgets, as it is a bit useless
belugas
parents: 4712
diff changeset
  1627
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1628
	DrawWindowWidgets(w);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1629
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1630
	/* draw sorting criteria string */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1631
	DrawString(85, 15, _vehicle_sort_listing[vl->l.sort_type], 0x10);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1632
	/* draw arrow pointing up/down for ascending/descending sorting */
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1633
	DoDrawString(vl->l.flags & VL_DESC ? DOWNARROW : UPARROW, 69, 15, 0x10);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1634
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1635
	max = min(w->vscroll.pos + w->vscroll.cap, vl->l.list_length);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1636
	for (i = w->vscroll.pos; i < max; ++i) {
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1637
		const Vehicle *v = vl->sort_list[i];
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1638
		StringID str;
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1639
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1640
		SetDParam(0, v->profit_this_year);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1641
		SetDParam(1, v->profit_last_year);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1642
4753
58daf74cb14f (svn r6667) - Codechange: The vehicle list has no horizontal scroll bar, so don't use it to store data; instead, just get the widget's width.
peter1138
parents: 4740
diff changeset
  1643
		DrawVehicleImage(v, x + 19, y + 6, w->widget[VLW_WIDGET_LIST].right - w->widget[VLW_WIDGET_LIST].left - 20, 0, INVALID_VEHICLE);
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1644
		DrawString(x + 19, y + w->resize.step_height - 8, STR_0198_PROFIT_THIS_YEAR_LAST_YEAR, 0);
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1645
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1646
		if ((v->type == VEH_Train    && v->string_id != STR_SV_TRAIN_NAME)   ||
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1647
			(v->type == VEH_Road     && v->string_id != STR_SV_ROADVEH_NAME) ||
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1648
			(v->type == VEH_Ship     && v->string_id != STR_SV_SHIP_NAME)    ||
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1649
			(v->type == VEH_Aircraft && v->string_id != STR_SV_AIRCRAFT_NAME)) {
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1650
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1651
			/* The vehicle got a name so we will print it */
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1652
			SetDParam(0, v->string_id);
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1653
			DrawString(x + 19, y, STR_01AB, 0);
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1654
		}
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1655
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1656
		if (w->resize.step_height == PLY_WND_PRC__SIZE_OF_ROW_BIG) DrawSmallOrderList(v, x + 138, y);
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1657
4734
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1658
		if (IsVehicleInDepot(v)) {
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1659
			str = STR_021F;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1660
		} else {
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1661
			str = (v->age > v->max_age - 366) ? STR_00E3 : STR_00E2;
24b34218c5ce (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1662
		}
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1663
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1664
		SetDParam(0, v->unitnumber);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1665
		DrawString(x, y + 2, str, 0);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1666
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1667
		DrawVehicleProfitButton(v, x, y + 13);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1668
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1669
		y += w->resize.step_height;
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1670
	}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1671
}
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1672
4449
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1673
/*
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1674
 * bitmask for w->window_number
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1675
 * 0-7 PlayerID (owner)
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1676
 * 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
  1677
 * 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
  1678
 * 16-31 StationID or OrderID depending on window type (bit 8-10)
820974aaa4a6 (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1679
 **/
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1680
void PlayerVehWndProc(Window *w, WindowEvent *e)
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1681
{
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1682
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1683
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1684
	switch (e->event) {
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1685
		case WE_CREATE:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1686
			CreateVehicleListWindow(w);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1687
			break;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1688
4665
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1689
		case WE_PAINT:
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1690
			DrawVehicleListWindow(w);
d58f13102cc3 (svn r6559) -Codechange: [vehicle list windows] moved creation and drawing code into two new functions to make it easier to see what goes on where
bjarni
parents: 4661
diff changeset
  1691
			break;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1692
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1693
		case WE_CLICK: {
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1694
			switch (e->we.click.widget) {
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1695
				case VLW_WIDGET_SORT_ORDER: /* Flip sorting method ascending/descending */
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1696
					vl->l.flags ^= VL_DESC;
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1697
					vl->l.flags |= VL_RESORT;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1698
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1699
					vl->_sorting->order = !!(vl->l.flags & VL_DESC);
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1700
					SetWindowDirty(w);
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1701
					break;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1702
				case VLW_WIDGET_SORT_BY_TEXT: case VLW_WIDGET_SORT_BY_PULLDOWN:/* Select sorting criteria dropdown menu */
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1703
					ShowDropDownMenu(w, _vehicle_sort_listing, vl->l.sort_type, VLW_WIDGET_SORT_BY_PULLDOWN, 0, 0);
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1704
					return;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1705
				case VLW_WIDGET_LIST: { /* Matrix to show vehicles */
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1706
					uint32 id_v = (e->we.click.pt.y - PLY_WND_PRC__OFFSET_TOP_WIDGET) / w->resize.step_height;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1707
					const Vehicle *v;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1708
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1709
					if (id_v >= w->vscroll.cap) return; // click out of bounds
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1710
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1711
					id_v += w->vscroll.pos;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1712
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1713
					if (id_v >= vl->l.list_length) return; // click out of list bound
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1714
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1715
					v = vl->sort_list[id_v];
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1716
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1717
					switch (vl->vehicle_type) {
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1718
						case VEH_Train: ShowTrainViewWindow(v); break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1719
						case VEH_Road: ShowRoadVehViewWindow(v); break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1720
						case VEH_Ship: ShowShipViewWindow(v); break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1721
						case VEH_Aircraft: ShowAircraftViewWindow(v); break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1722
						default: NOT_REACHED(); break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1723
					}
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1724
				} break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1725
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1726
				case VLW_WIDGET_NEW_VEHICLES:
5786
9bbd2d7f2a30 (svn r8338) -Codechange: merged road vehicle build window into the other ones
bjarni
parents: 5783
diff changeset
  1727
					ShowBuildVehicleWindow(0, vl->vehicle_type);
4506
e6a56518135c (svn r6291) -Feature: Vehicle lists from the station window now also got the goto depot button
bjarni
parents: 4498
diff changeset
  1728
					break;
4465
262c344f6f3d (svn r6249) -Fix: fixed assert when pressing goto depot in an empty list (forgot to disable the button in this condition)
bjarni
parents: 4463
diff changeset
  1729
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1730
				case VLW_WIDGET_MANAGE_VEHICLES:
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1731
				case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN: {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1732
					static StringID action_str[] = {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1733
						STR_REPLACE_VEHICLES,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1734
						STR_SEND_FOR_SERVICING,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1735
						STR_NULL,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1736
						INVALID_STRING_ID
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1737
					};
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1738
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1739
					static const StringID depot_name[] = {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1740
						STR_SEND_TRAIN_TO_DEPOT,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1741
						STR_SEND_ROAD_VEHICLE_TO_DEPOT,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1742
						STR_SEND_SHIP_TO_DEPOT,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1743
						STR_SEND_AIRCRAFT_TO_HANGAR
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1744
					};
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1745
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1746
					/* XXX - Substite string since the dropdown cannot handle dynamic strings */
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1747
					action_str[2] = depot_name[vl->vehicle_type - VEH_Train];
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1748
					ShowDropDownMenu(w, action_str, 0, VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN, 0, 0);
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1749
					break;
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1750
				}
4673
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1751
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1752
				case VLW_WIDGET_STOP_ALL:
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1753
				case VLW_WIDGET_START_ALL:
4762
771ccf746531 (svn r6676) -Fix: [vehicle list windows] mass start/stop now works correctly in shared orders and station lists
bjarni
parents: 4758
diff changeset
  1754
					DoCommandP(0, GB(w->window_number, 16, 16), (w->window_number & VLW_MASK) | (1 << 6) | (e->we.click.widget == VLW_WIDGET_START_ALL ? (1 << 5) : 0) | vl->vehicle_type, NULL, CMD_MASS_START_STOP);
4673
3160067b8751 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1755
					break;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1756
			}
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1757
		}	break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1758
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1759
		case WE_DROPDOWN_SELECT: /* we have selected a dropdown item in the list */
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1760
			switch (e->we.dropdown.button) {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1761
				case VLW_WIDGET_SORT_BY_PULLDOWN:
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1762
					if (vl->l.sort_type != e->we.dropdown.index) {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1763
						// value has changed -> resort
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1764
						vl->l.flags |= VL_RESORT;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1765
						vl->l.sort_type = e->we.dropdown.index;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1766
						vl->_sorting->criteria = vl->l.sort_type;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1767
					}
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1768
					break;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1769
				case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN:
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1770
					assert(vl->l.list_length != 0);
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1771
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1772
					switch (e->we.dropdown.index) {
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1773
						case 0: /* Replace window */
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1774
							ShowReplaceVehicleWindow(vl->vehicle_type);
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1775
							break;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1776
						case 1: /* Send for servicing */
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1777
							DoCommandP(0, GB(w->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1778
								(w->window_number & VLW_MASK) | DEPOT_MASS_SEND | DEPOT_SERVICE,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1779
								NULL,
5792
c4dad358b30b (svn r8349) -Codechange: replaced CMD_REFIT_VEH() and similar defines with real static inline functions
bjarni
parents: 5786
diff changeset
  1780
								GetCmdSendToDepot(vl->vehicle_type));
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1781
							break;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1782
						case 2: /* Send to Depots */
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1783
							DoCommandP(0, GB(w->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1784
								(w->window_number & VLW_MASK) | DEPOT_MASS_SEND,
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1785
								NULL,
5792
c4dad358b30b (svn r8349) -Codechange: replaced CMD_REFIT_VEH() and similar defines with real static inline functions
bjarni
parents: 5786
diff changeset
  1786
								GetCmdSendToDepot(vl->vehicle_type));
5274
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1787
							break;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1788
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1789
						default: NOT_REACHED();
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1790
					}
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1791
					break;
8bd7e4c00956 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1792
				default: NOT_REACHED();
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1793
			}
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1794
			SetWindowDirty(w);
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1795
			break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1796
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1797
		case WE_DESTROY:
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1798
			free((void*)vl->sort_list);
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1799
			break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1800
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1801
		case WE_TICK: /* resort the list every 20 seconds orso (10 days) */
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1802
			if (--vl->l.resort_timer == 0) {
4546
507b7d9bd834 (svn r6378) -Codechange: Rename VLW_FLAGS to VLW_MASK as it is a mask
Darkvater
parents: 4545
diff changeset
  1803
				StationID station = ((w->window_number & VLW_MASK) == VLW_STATION_LIST) ? GB(w->window_number, 16, 16) : INVALID_STATION;
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1804
				PlayerID owner = (PlayerID)w->caption_color;
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1805
5380
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5297
diff changeset
  1806
				DEBUG(misc, 3, "Periodic resort %d list player %d at station %d", vl->vehicle_type, owner, station);
4545
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1807
				vl->l.resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;
138a9195009a (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1808
				vl->l.flags |= VL_RESORT;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1809
				SetWindowDirty(w);
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1810
			}
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1811
			break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1812
4542
f42ecc669275 (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
  1813
		case WE_RESIZE: /* Update the scroll + matrix */
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1814
			w->vscroll.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1815
			w->widget[VLW_WIDGET_LIST].data = (w->vscroll.cap << 8) + 1;
4442
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1816
			break;
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1817
	}
9f8bb348d58f (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1818
}
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1819
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1820
static const WindowDesc _player_vehicle_list_train_desc = {
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1821
	WDP_AUTO, WDP_AUTO, 260, 182,
5070
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1822
	WC_TRAINS_LIST, 0,
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1823
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1824
	_vehicle_list_widgets,
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1825
	PlayerVehWndProc
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1826
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1827
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1828
static const WindowDesc _player_vehicle_list_road_veh_desc = {
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1829
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1830
	WC_ROADVEH_LIST,0,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1831
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1832
	_vehicle_list_widgets,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1833
	PlayerVehWndProc
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1834
};
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1835
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1836
static const WindowDesc _player_vehicle_list_ship_desc = {
5070
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1837
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1838
	WC_SHIPS_LIST,0,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1839
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1840
	_vehicle_list_widgets,
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1841
	PlayerVehWndProc
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1842
};
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1843
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1844
static const WindowDesc _player_vehicle_list_aircraft_desc = {
5070
7f5b13b7e728 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1845
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1846
	WC_AIRCRAFT_LIST,0,
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1847
	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
  1848
	_vehicle_list_widgets,
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1849
	PlayerVehWndProc
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1850
};
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1851
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1852
static void ShowVehicleListWindowLocal(PlayerID player, uint16 VLW_flag, byte vehicle_type, uint16 unique_number)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1853
{
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1854
	Window *w;
5005
f5086bd3945a (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1855
	WindowNumber num;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1856
5005
f5086bd3945a (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1857
	if (!IsValidPlayer(player)) return;
f5086bd3945a (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1858
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1859
	num = (unique_number << 16) | (vehicle_type << 11) | VLW_flag | player;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1860
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1861
	/* The vehicle list windows have been unified. Just some strings need
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1862
	 * to be changed which happens in the WE_CREATE event and resizing
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1863
	 * some of the windows to the correct size */
4726
a609ab3ee4c7 (svn r6638) -Fix r5652: restored each vehicle list type to their type classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
bjarni
parents: 4723
diff changeset
  1864
	switch (vehicle_type) {
5752
dc401d3f5e71 (svn r8303) -Codechange (r8293): default is moved to the front of the switch in ShowVehicleListWindowLocal()
bjarni
parents: 5747
diff changeset
  1865
		default: NOT_REACHED();
5269
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1866
		case VEH_Train:
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1867
			w = AllocateWindowDescFront(&_player_vehicle_list_train_desc, num);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1868
			if (w != NULL) ResizeWindow(w, 65, 38);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1869
			break;
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1870
		case VEH_Road:
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1871
			w = AllocateWindowDescFront(&_player_vehicle_list_road_veh_desc, num);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1872
			if (w != NULL) ResizeWindow(w, 0, 38);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1873
			break;
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1874
		case VEH_Ship:
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1875
			w = AllocateWindowDescFront(&_player_vehicle_list_ship_desc, num);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1876
			break;
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1877
		case VEH_Aircraft:
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1878
			w = AllocateWindowDescFront(&_player_vehicle_list_aircraft_desc, num);
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1879
			break;
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1880
	}
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1881
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1882
	if (w != NULL) {
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1883
		/* Set the minimum window size to the current window size */
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1884
		w->resize.width = w->width;
4b50973b21f6 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1885
		w->resize.height = w->height;
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1886
	}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1887
}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1888
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1889
void ShowVehicleListWindow(PlayerID player, byte vehicle_type)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1890
{
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1891
	ShowVehicleListWindowLocal(player, VLW_STANDARD, vehicle_type, 0);
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1892
}
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1893
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1894
void ShowVehicleListWindow(const Vehicle *v)
4668
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1895
{
f7256d0e7682 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1896
	if (v->orders == NULL) return; // no shared list to show
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1897
	ShowVehicleListWindowLocal(v->owner, VLW_SHARED_ORDERS, v->type, v->orders->index);
4669
c66d137bdca1 (svn r6565) - Fix (r6562): Missing newline at EOF caused a compiler warning
peter1138
parents: 4668
diff changeset
  1898
}
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
  1899
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1900
void ShowVehicleListWindow(PlayerID player, byte vehicle_type, StationID station)
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1901
{
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1902
	ShowVehicleListWindowLocal(player, VLW_STATION_LIST, vehicle_type, station);
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1903
}
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1904
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1905
void ShowVehicleListWindow(PlayerID player, byte 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
  1906
{
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
  1907
	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
  1908
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
  1909
	if (vehicle_type == VEH_Aircraft) {
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
  1910
		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
  1911
	} 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
  1912
		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
  1913
		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
  1914
		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
  1915
	}
5745
c8069ea3af5d (svn r8293) -Codechange: overloaded ShowVehicleListWindow() so it can open all types of vehicle lists (depending on arguments)
bjarni
parents: 5668
diff changeset
  1916
	ShowVehicleListWindowLocal(player, 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
  1917
}