src/vehicle_gui.cpp
author celestar
Sun, 11 Mar 2007 09:28:58 +0000
branchcustombridgeheads
changeset 5651 335d9bd345b0
parent 5650 aefc131bf5ce
child 5860 7fdc9b423ba1
permissions -rw-r--r--
(svn r9109) [cbh] -Fix: Stabilize the reversing of trains on bridges/bridgeheads a little (it still crashes at times however). Also re-allow the construction of signals on bridgeheads
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
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
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1859
diff changeset
     4
#include "openttd.h"
1299
0a6510cc889b (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1294
diff changeset
     5
#include "debug.h"
2163
637ec3c361f5 (svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents: 2159
diff changeset
     6
#include "functions.h"
2154
63a6b880b4c0 (svn r2664) Remove depedency on player.h from variables.h
tron
parents: 1926
diff changeset
     7
#include "player.h"
2466
2774132ebb9a (svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
tron
parents: 2462
diff changeset
     8
#include "station.h"
1309
dab90d4cbf2d (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
01d3de5d8039 (svn r1867) Include tables/sprites.h only in files which need it
tron
parents: 1309
diff changeset
    10
#include "table/sprites.h"
507
8aa8100b0b22 (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    13
#include "window.h"
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    14
#include "engine.h"
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    15
#include "gui.h"
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    16
#include "command.h"
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    17
#include "gfx.h"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    18
#include "variables.h"
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    19
#include "vehicle_gui.h"
2552
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
    20
#include "viewport.h"
2676
2ba71e034d97 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
    21
#include "train.h"
3650
92a3f5cae745 (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
dbd168a4703a (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
92a3f5cae745 (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
2ec8f5a9747b (svn r5887) -Cleanup: move date related functions, defines and variables to date.[ch]
rubidium
parents: 4243
diff changeset
    25
#include "date.h"
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    26
#include "ship.h"
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    27
#include "aircraft.h"
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    28
#include "roadveh.h"
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
    29
#include "depot.h"
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
    30
#include "helpers.hpp"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    31
4542
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    32
typedef struct Sorting {
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    33
	Listing aircraft;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    34
	Listing roadveh;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    35
	Listing ship;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    36
	Listing train;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    37
} Sorting;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    38
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    39
static Sorting _sorting;
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    40
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    41
typedef struct vehiclelist_d {
4678
073e56e25e83 (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)
073e56e25e83 (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
073e56e25e83 (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
073e56e25e83 (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
073e56e25e83 (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
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
    47
} vehiclelist_d;
24f60077489a (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
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    49
3b634157c3b2 (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
2520
75eb66d6e371 (svn r3049) Replace byte/int/uint by RailType where appropriate
tron
parents: 2519
diff changeset
    52
static RailType _railtype_selected_in_replace_gui;
2288
57af8e0506f2 (svn r2812) Move variables, which only vehicle_gui.c needs to know about, there
tron
parents: 2206
diff changeset
    53
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    54
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    55
typedef int CDECL VehicleSortListingTypeFunction(const void*, const void*);
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    56
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    57
static VehicleSortListingTypeFunction VehicleNumberSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    58
static VehicleSortListingTypeFunction VehicleNameSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    59
static VehicleSortListingTypeFunction VehicleAgeSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    60
static VehicleSortListingTypeFunction VehicleProfitThisYearSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    61
static VehicleSortListingTypeFunction VehicleProfitLastYearSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    62
static VehicleSortListingTypeFunction VehicleCargoSorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    63
static VehicleSortListingTypeFunction VehicleReliabilitySorter;
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    64
static VehicleSortListingTypeFunction VehicleMaxSpeedSorter;
2965
edaa999a25dd (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;
edaa999a25dd (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
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    67
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    68
static VehicleSortListingTypeFunction* const _vehicle_sorter[] = {
505
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    76
	&VehicleMaxSpeedSorter,
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
    77
	&VehicleModelSorter,
edaa999a25dd (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
11582dcada49 (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
};
11582dcada49 (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
414f897f903f (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
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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,
11582dcada49 (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
edaa999a25dd (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,
edaa999a25dd (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
11582dcada49 (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
11582dcada49 (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
};
11582dcada49 (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
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    95
static const StringID _rail_types_list[] = {
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    96
	STR_RAIL_VEHICLES,
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
    97
	STR_ELRAIL_VEHICLES,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    98
	STR_MONORAIL_VEHICLES,
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    99
	STR_MAGLEV_VEHICLES,
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   100
	INVALID_STRING_ID
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   101
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   102
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   103
void RebuildVehicleLists(void)
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   104
{
5124
d30772d0e9e1 (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   106
5124
d30772d0e9e1 (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) {
d30772d0e9e1 (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;
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   109
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   110
		switch (w->window_class) {
5124
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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;
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   116
				SetWindowDirty(w);
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   117
				break;
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   118
		}
5124
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   119
	}
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   120
}
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   121
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   122
void ResortVehicleLists(void)
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   123
{
5124
d30772d0e9e1 (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   125
5124
d30772d0e9e1 (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) {
d30772d0e9e1 (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;
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   128
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   129
		switch (w->window_class) {
5124
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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:
d30772d0e9e1 (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;
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   135
				SetWindowDirty(w);
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   136
				break;
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   137
		}
5124
d30772d0e9e1 (svn r7205) -Fix [FS#350, SF#1560913]: Window allocation and deletion messed with the actual window
Darkvater
parents: 5071
diff changeset
   138
	}
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   139
}
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   140
4681
7d7a89b32dd0 (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
   141
static void BuildVehicleList(vehiclelist_d* vl, PlayerID owner, StationID station, OrderID order, uint16 depot_airport_index, uint16 window_type)
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   142
{
4545
ac6c6a32b18f (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   144
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5297
diff changeset
   145
	DEBUG(misc, 3, "Building vehicle list for player %d at station %d", owner, station);
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   146
4681
7d7a89b32dd0 (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
   147
	vl->l.list_length = GenerateVehicleSortList(&vl->sort_list, &vl->length_of_sort_list, vl->vehicle_type, owner, station, order, depot_airport_index, window_type);
588
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   148
4545
ac6c6a32b18f (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;
ac6c6a32b18f (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   151
}
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   152
4460
de71777a1e9b (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   154
{
4545
ac6c6a32b18f (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   156
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   157
	_internal_sort_order = (vl->l.flags & VL_DESC) != 0;
4545
ac6c6a32b18f (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]),
ac6c6a32b18f (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   160
4545
ac6c6a32b18f (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;
ac6c6a32b18f (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   163
}
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   164
4740
e562a2cde601 (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)
e562a2cde601 (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
{
e562a2cde601 (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;
e562a2cde601 (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]);
e562a2cde601 (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
1b60458bdc29 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   170
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
   171
/* General Vehicle GUI based procedures that are independent of vehicle types */
1093
e8d26c7dc42f (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents: 1067
diff changeset
   172
void InitializeVehiclesGuiList(void)
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
   173
{
2519
67a2d670c17e (svn r3048) Replace 0/1/2 by RAILTYPE_RAIL/MONO/MAGLEV where appropriate
tron
parents: 2477
diff changeset
   174
	_railtype_selected_in_replace_gui = RAILTYPE_RAIL;
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
   175
}
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
   176
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
177cb6a8339f (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
{
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
   180
	uint32 ormod;
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
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   183
	if (v->age <= 365 * 2) {
1688
787400219027 (svn r2192) - Add greater control to the 'message options' window. Now you can turn off the telegraphc ticker sound for summarized messages, or turn off news-messages altogether (you get a red blot to notify you though). The [<][>] set the settings in one way, while clicking on the option itself, cycles it. This commit also 'fixes' bugs [1166973], [1121484] and patch [1169930].
Darkvater
parents: 1465
diff changeset
   184
		ormod = PALETTE_TO_GREY;
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   185
	} else if (v->profit_last_year < 0) {
1688
787400219027 (svn r2192) - Add greater control to the 'message options' window. Now you can turn off the telegraphc ticker sound for summarized messages, or turn off news-messages altogether (you get a red blot to notify you though). The [<][>] set the settings in one way, while clicking on the option itself, cycles it. This commit also 'fixes' bugs [1166973], [1121484] and patch [1169930].
Darkvater
parents: 1465
diff changeset
   186
		ormod = PALETTE_TO_RED;
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   187
	} else if (v->profit_last_year < 10000) {
1688
787400219027 (svn r2192) - Add greater control to the 'message options' window. Now you can turn off the telegraphc ticker sound for summarized messages, or turn off news-messages altogether (you get a red blot to notify you though). The [<][>] set the settings in one way, while clicking on the option itself, cycles it. This commit also 'fixes' bugs [1166973], [1121484] and patch [1169930].
Darkvater
parents: 1465
diff changeset
   188
		ormod = PALETTE_TO_YELLOW;
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   189
	} else {
1688
787400219027 (svn r2192) - Add greater control to the 'message options' window. Now you can turn off the telegraphc ticker sound for summarized messages, or turn off news-messages altogether (you get a red blot to notify you though). The [<][>] set the settings in one way, while clicking on the option itself, cycles it. This commit also 'fixes' bugs [1166973], [1121484] and patch [1169930].
Darkvater
parents: 1465
diff changeset
   190
		ormod = PALETTE_TO_GREEN;
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   191
	}
1688
787400219027 (svn r2192) - Add greater control to the 'message options' window. Now you can turn off the telegraphc ticker sound for summarized messages, or turn off news-messages altogether (you get a red blot to notify you though). The [<][>] set the settings in one way, while clicking on the option itself, cycles it. This commit also 'fixes' bugs [1166973], [1121484] and patch [1169930].
Darkvater
parents: 1465
diff changeset
   192
	DrawSprite(SPR_BLOT | ormod, 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
a4d2a3abe75c (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 {
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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
a4d2a3abe75c (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 {
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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;
a4d2a3abe75c (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
52419a88345d (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
a4d2a3abe75c (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
{
a4d2a3abe75c (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;
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   210
	RefitOption *refit;
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   211
	CallocT(&refit, max_lines);
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   212
	RefitList *list;
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   213
	CallocT(&list, 1);
4694
a4d2a3abe75c (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
	Vehicle *u = (Vehicle*)v;
a4d2a3abe75c (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
	uint num_lines = 0;
a4d2a3abe75c (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
	uint i;
a4d2a3abe75c (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
a4d2a3abe75c (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
	do {
a4d2a3abe75c (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
		CargoID cid;
a4d2a3abe75c (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
		uint32 cmask = EngInfo(u->engine_type)->refit_mask;
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   221
		byte callbackmask = EngInfo(u->engine_type)->callbackmask;
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   222
4933
106e2a14ab3c (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   223
		/* Skip this engine if it has no capacity */
106e2a14ab3c (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   224
		if (u->cargo_cap == 0) continue;
106e2a14ab3c (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   225
4694
a4d2a3abe75c (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
   226
		/* Loop through all cargos in the refit mask */
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   227
		for (cid = 0; cmask != 0 && num_lines < max_lines; cmask >>= 1, cid++) {
4776
f9c174047c5d (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
   228
			CargoID lcid;
f9c174047c5d (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
   229
4694
a4d2a3abe75c (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
			/* Skip cargo type if it's not listed */
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   231
			if (!HASBIT(cmask, 0)) continue;
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   232
4776
f9c174047c5d (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
			lcid = _local_cargo_id_ctype[cid];
f9c174047c5d (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
   234
			if (lcid == CT_INVALID) continue;
f9c174047c5d (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
   235
4694
a4d2a3abe75c (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
			/* Check the vehicle's callback mask for cargo suffixes */
a4d2a3abe75c (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
			if (HASBIT(callbackmask, CBM_CARGO_SUFFIX)) {
a4d2a3abe75c (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
				/* Make a note of the original cargo type. It has to be
a4d2a3abe75c (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
				 * changed to test the cargo & subtype... */
a4d2a3abe75c (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
				CargoID temp_cargo = u->cargo_type;
a4d2a3abe75c (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
				byte temp_subtype  = u->cargo_subtype;
a4d2a3abe75c (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
   242
				byte refit_cyc;
a4d2a3abe75c (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
4776
f9c174047c5d (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
   244
				u->cargo_type = lcid;
4694
a4d2a3abe75c (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
a4d2a3abe75c (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
				for (refit_cyc = 0; refit_cyc < 16 && num_lines < max_lines; refit_cyc++) {
a4d2a3abe75c (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
					bool duplicate = false;
a4d2a3abe75c (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
					uint16 callback;
a4d2a3abe75c (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
a4d2a3abe75c (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
					u->cargo_subtype = refit_cyc;
a4d2a3abe75c (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
					callback = GetVehicleCallback(CBID_VEHICLE_CARGO_SUFFIX, 0, 0, u->engine_type, u);
a4d2a3abe75c (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
a4d2a3abe75c (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
					if (callback == 0xFF) callback = CALLBACK_FAILED;
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   254
					if (refit_cyc != 0 && callback == CALLBACK_FAILED) break;
a4d2a3abe75c (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
a4d2a3abe75c (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
   256
					/* Check if this cargo and subtype combination are listed */
a4d2a3abe75c (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
					for (i = 0; i < num_lines && !duplicate; i++) {
4776
f9c174047c5d (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
   258
						if (refit[i].cargo == lcid && refit[i].value == callback) duplicate = true;
4694
a4d2a3abe75c (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
					}
a4d2a3abe75c (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
a4d2a3abe75c (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
   261
					if (duplicate) continue;
a4d2a3abe75c (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
4776
f9c174047c5d (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
   263
					refit[num_lines].cargo   = lcid;
4694
a4d2a3abe75c (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].subtype = refit_cyc;
a4d2a3abe75c (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
					refit[num_lines].value   = callback;
a4d2a3abe75c (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
					refit[num_lines].engine  = u->engine_type;
a4d2a3abe75c (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
					num_lines++;
a4d2a3abe75c (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
				}
a4d2a3abe75c (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
a4d2a3abe75c (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
				/* Reset the vehicle's cargo type */
a4d2a3abe75c (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
				u->cargo_type    = temp_cargo;
a4d2a3abe75c (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
				u->cargo_subtype = temp_subtype;
a4d2a3abe75c (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
			} else {
a4d2a3abe75c (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
				/* No cargo suffix callback -- use no subtype */
a4d2a3abe75c (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
				bool duplicate = false;
a4d2a3abe75c (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
   276
a4d2a3abe75c (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
				for (i = 0; i < num_lines && !duplicate; i++) {
4776
f9c174047c5d (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
   278
					if (refit[i].cargo == lcid && refit[i].value == CALLBACK_FAILED) duplicate = true;
4694
a4d2a3abe75c (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
				}
a4d2a3abe75c (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
   280
a4d2a3abe75c (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
				if (!duplicate) {
4776
f9c174047c5d (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
   282
					refit[num_lines].cargo   = lcid;
4694
a4d2a3abe75c (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].subtype = 0;
a4d2a3abe75c (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
					refit[num_lines].value   = CALLBACK_FAILED;
a4d2a3abe75c (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
					refit[num_lines].engine  = INVALID_ENGINE;
a4d2a3abe75c (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
					num_lines++;
a4d2a3abe75c (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
				}
a4d2a3abe75c (svn r6601) - Codechange: Support cargo subtypes in the refit window. The refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
peter1138
parents: 4686
diff changeset
   288
			}
a4d2a3abe75c (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
		}
4933
106e2a14ab3c (svn r6920) - Codechange: Ignore refit options of an engine if it has no capacity.
peter1138
parents: 4932
diff changeset
   290
	} while (v->type == VEH_Train && (u = u->next) != NULL && num_lines < max_lines);
4694
a4d2a3abe75c (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
a4d2a3abe75c (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
	list->num_lines = num_lines;
a4d2a3abe75c (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
	list->items = refit;
a4d2a3abe75c (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
a4d2a3abe75c (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
	return list;
a4d2a3abe75c (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
   296
}
a4d2a3abe75c (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
   297
1859
b3af0081df39 (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
/** Draw the list of available refit options for a consist.
1802
448f187042d3 (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
 * Draw the list and highlight the selected refit option (if any)
1859
b3af0081df39 (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
   300
 * @param *v first vehicle in consist to get the refit-options of
1802
448f187042d3 (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
 * @param sel selected refit cargo-type in the window
4695
52419a88345d (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
 * @return the refit option that is hightlighted, NULL if none
1802
448f187042d3 (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
 */
4695
52419a88345d (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
   304
static RefitOption *DrawVehicleRefitWindow(const RefitList *list, int sel, uint pos, uint rows, uint delta)
1802
448f187042d3 (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
   305
{
4694
a4d2a3abe75c (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
	RefitOption *refit = list->items;
4695
52419a88345d (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
   307
	RefitOption *selected = NULL;
4694
a4d2a3abe75c (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 num_lines = list->num_lines;
a4d2a3abe75c (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
   309
	uint y = 31;
a4d2a3abe75c (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
	uint i;
1802
448f187042d3 (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
   311
4694
a4d2a3abe75c (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
	/* Draw the list, and find the selected cargo (by its position in list) */
4697
f824e8550d53 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   313
	for (i = 0; i < num_lines; i++) {
4694
a4d2a3abe75c (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
   314
		byte colour = 16;
a4d2a3abe75c (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
		if (sel == 0) {
4695
52419a88345d (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
   316
			selected = &refit[i];
4694
a4d2a3abe75c (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
   317
			colour = 12;
a4d2a3abe75c (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
   318
		}
1859
b3af0081df39 (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
   319
4697
f824e8550d53 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   320
		if (i >= pos && i < pos + rows) {
4694
a4d2a3abe75c (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
			/* Draw the cargo name */
4776
f9c174047c5d (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
   322
			int last_x = DrawString(2, y, _cargoc.names_s[refit[i].cargo], colour);
4694
a4d2a3abe75c (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
a4d2a3abe75c (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
			/* If the callback succeeded, draw the cargo suffix */
a4d2a3abe75c (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
   325
			if (refit[i].value != CALLBACK_FAILED) {
a4d2a3abe75c (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
				DrawString(last_x + 1, y, GetGRFStringID(GetEngineGRFID(refit[i].engine), 0xD000 + refit[i].value), colour);
3025
ec4098b53115 (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   327
			}
4694
a4d2a3abe75c (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
   328
			y += delta;
a4d2a3abe75c (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
		}
3025
ec4098b53115 (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   330
4694
a4d2a3abe75c (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
   331
		sel--;
3025
ec4098b53115 (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   332
	}
ec4098b53115 (svn r3605) - Remove silly macro and fix indenting in DrawVehicleRefitWindow()
peter1138
parents: 2989
diff changeset
   333
4695
52419a88345d (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
   334
	return selected;
1802
448f187042d3 (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
   335
}
448f187042d3 (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
   336
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   337
static void VehicleRefitWndProc(Window *w, WindowEvent *e)
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   338
{
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   339
	switch (e->event) {
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   340
		case WE_PAINT: {
4694
a4d2a3abe75c (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
			Vehicle *v = GetVehicle(w->window_number);
a4d2a3abe75c (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
a4d2a3abe75c (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
			if (v->type == VEH_Train) {
a4d2a3abe75c (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
				uint length = CountVehiclesInChain(v);
a4d2a3abe75c (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
a4d2a3abe75c (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
				if (length != WP(w, refit_d).length) {
a4d2a3abe75c (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
					/* Consist length has changed, so rebuild the refit list */
a4d2a3abe75c (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
					free(WP(w, refit_d).list->items);
a4d2a3abe75c (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
					free(WP(w, refit_d).list);
a4d2a3abe75c (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
					WP(w, refit_d).list = BuildRefitList(v);
a4d2a3abe75c (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
					WP(w, refit_d).length = length;
a4d2a3abe75c (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
   352
				}
a4d2a3abe75c (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
   353
			}
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   354
4698
e98ee8b71e65 (svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...
peter1138
parents: 4697
diff changeset
   355
			SetVScrollCount(w, WP(w, refit_d).list->num_lines);
e98ee8b71e65 (svn r6608) - Fix (r6601): The scroll bar could fall out of the window... more gui-fu needed...
peter1138
parents: 4697
diff changeset
   356
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   357
			SetDParam(0, v->string_id);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   358
			SetDParam(1, v->unitnumber);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   359
			DrawWindowWidgets(w);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   360
4694
a4d2a3abe75c (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
   361
			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
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   362
4695
52419a88345d (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
   363
			if (WP(w,refit_d).cargo != NULL) {
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   364
				int32 cost = 0;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   365
				switch (GetVehicle(w->window_number)->type) {
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   366
					case VEH_Train:    cost = CMD_REFIT_RAIL_VEHICLE; break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   367
					case VEH_Road:     cost = CMD_REFIT_ROAD_VEH;     break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   368
					case VEH_Ship:     cost = CMD_REFIT_SHIP;         break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   369
					case VEH_Aircraft: cost = CMD_REFIT_AIRCRAFT;     break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   370
				}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   371
4695
52419a88345d (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
   372
				cost = DoCommand(v->tile, v->index, WP(w,refit_d).cargo->cargo | WP(w,refit_d).cargo->subtype << 8, DC_QUERY_COST, cost);
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   373
				if (!CmdFailed(cost)) {
4896
72d7a8614580 (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
   374
					SetDParam(0, WP(w,refit_d).cargo->cargo);
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   375
					SetDParam(1, _returned_refit_capacity);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   376
					SetDParam(2, cost);
4694
a4d2a3abe75c (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
   377
					DrawString(2, w->widget[5].top + 1, STR_9840_NEW_CAPACITY_COST_OF_REFIT, 0);
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   378
				}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   379
			}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   380
		}	break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   381
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   382
		case WE_CLICK:
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   383
			switch (e->we.click.widget) {
4694
a4d2a3abe75c (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
   384
				case 3: { // listbox
a4d2a3abe75c (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
   385
					int y = e->we.click.pt.y - w->widget[3].top;
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   386
					if (y >= 0) {
4697
f824e8550d53 (svn r6607) - Fix (r6601): Fix selection of refit type when the list is scrolled.
peter1138
parents: 4695
diff changeset
   387
						WP(w,refit_d).sel = (y / (int)w->resize.step_height) + w->vscroll.pos;
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   388
						SetWindowDirty(w);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   389
					}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   390
				} break;
4694
a4d2a3abe75c (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
   391
				case 6: // refit button
4695
52419a88345d (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
   392
					if (WP(w,refit_d).cargo != NULL) {
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   393
						const Vehicle *v = GetVehicle(w->window_number);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   394
4712
273ec3b182bf (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
						if (WP(w, refit_d).order == INVALID_VEH_ORDER_ID) {
273ec3b182bf (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
							int command = 0;
273ec3b182bf (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
273ec3b182bf (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
							switch (v->type) {
273ec3b182bf (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_Train:    command = CMD_REFIT_RAIL_VEHICLE | CMD_MSG(STR_RAIL_CAN_T_REFIT_VEHICLE);  break;
273ec3b182bf (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_Road:     command = CMD_REFIT_ROAD_VEH     | CMD_MSG(STR_REFIT_ROAD_VEHICLE_CAN_T);  break;
273ec3b182bf (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
								case VEH_Ship:     command = CMD_REFIT_SHIP         | CMD_MSG(STR_9841_CAN_T_REFIT_SHIP);     break;
273ec3b182bf (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
								case VEH_Aircraft: command = CMD_REFIT_AIRCRAFT     | CMD_MSG(STR_A042_CAN_T_REFIT_AIRCRAFT); break;
273ec3b182bf (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
							}
273ec3b182bf (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, NULL, command)) DeleteWindow(w);
273ec3b182bf (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
   405
						} else {
273ec3b182bf (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
   406
							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
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   407
						}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   408
					}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   409
					break;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   410
			}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   411
			break;
4694
a4d2a3abe75c (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
a4d2a3abe75c (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
		case WE_RESIZE:
a4d2a3abe75c (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
			w->vscroll.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
a4d2a3abe75c (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
			w->widget[3].data = (w->vscroll.cap << 8) + 1;
a4d2a3abe75c (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
			break;
a4d2a3abe75c (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
a4d2a3abe75c (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
		case WE_DESTROY:
a4d2a3abe75c (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
			free(WP(w, refit_d).list->items);
a4d2a3abe75c (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
   420
			free(WP(w, refit_d).list);
a4d2a3abe75c (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
   421
			break;
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   422
	}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   423
}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   424
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   425
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   426
static const Widget _vehicle_refit_widgets[] = {
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   427
	{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                            STR_018B_CLOSE_WINDOW},
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   428
	{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   239,     0,    13, STR_983B_REFIT,                      STR_018C_WINDOW_TITLE_DRAG_THIS},
4694
a4d2a3abe75c (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_TEXTBTN,   RESIZE_NONE,    14,     0,   239,    14,    27, STR_983F_SELECT_CARGO_TYPE_TO_CARRY, STR_983D_SELECT_TYPE_OF_CARGO_FOR},
4775
4e0daa957997 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   430
	{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   227,    28,   139, 0x801,                               STR_EMPTY},
4694
a4d2a3abe75c (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_SCROLLBAR, RESIZE_BOTTOM,    14,   228,   239,    28,   139, 0x0,                                 STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
   432
	{      WWT_PANEL,     RESIZE_TB,    14,     0,   239,   140,   161, 0x0,                                 STR_NULL},
4694
a4d2a3abe75c (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
   433
	{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   227,   162,   173, 0x0,                                 STR_NULL},
a4d2a3abe75c (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
   434
	{  WWT_RESIZEBOX,     RESIZE_TB,    14,   228,   239,   162,   173, 0x0,                                 STR_RESIZE_BUTTON},
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   435
	{   WIDGETS_END},
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   436
};
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   437
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   438
static const WindowDesc _vehicle_refit_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
   439
	WDP_AUTO, WDP_AUTO, 240, 174,
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   440
	WC_VEHICLE_REFIT,WC_VEHICLE_VIEW,
4694
a4d2a3abe75c (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
   441
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   442
	_vehicle_refit_widgets,
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   443
	VehicleRefitWndProc,
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   444
};
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   445
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   446
/** Show the refit window for a vehicle
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   447
* @param *v The vehicle to show the refit window for
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   448
*/
4712
273ec3b182bf (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
   449
void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order)
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   450
{
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   451
	Window *w;
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   452
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   453
	DeleteWindowById(WC_VEHICLE_REFIT, v->index);
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   454
5071
14f432b47034 (svn r7129) -Codechange: Get rid of a global variable that only sets a window's number.
Darkvater
parents: 5070
diff changeset
   455
	w = AllocateWindowDescFront(&_vehicle_refit_desc, v->index);
4712
273ec3b182bf (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
   456
	WP(w, refit_d).order = order;
4704
3b84b962c3ed (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
3b84b962c3ed (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
	if (w != NULL) {
3b84b962c3ed (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->caption_color = v->owner;
3b84b962c3ed (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
		w->vscroll.cap = 8;
3b84b962c3ed (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
		w->resize.step_height = 14;
3b84b962c3ed (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
		WP(w, refit_d).sel  = -1;
3b84b962c3ed (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
		WP(w, refit_d).list = BuildRefitList(v);
3b84b962c3ed (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
		if (v->type == VEH_Train) WP(w, refit_d).length = CountVehiclesInChain(v);
3b84b962c3ed (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
		SetVScrollCount(w, WP(w, refit_d).list->num_lines);
3b84b962c3ed (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
3b84b962c3ed (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
   467
		switch (v->type) {
3b84b962c3ed (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
			case VEH_Train:
4775
4e0daa957997 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   469
				w->widget[3].tooltips = STR_RAIL_SELECT_TYPE_OF_CARGO_FOR;
4704
3b84b962c3ed (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
				w->widget[6].data     = STR_RAIL_REFIT_VEHICLE;
3b84b962c3ed (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
				w->widget[6].tooltips = STR_RAIL_REFIT_TO_CARRY_HIGHLIGHTED;
3b84b962c3ed (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
   472
				break;
3b84b962c3ed (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
			case VEH_Road:
4775
4e0daa957997 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   474
				w->widget[3].tooltips = STR_ROAD_SELECT_TYPE_OF_CARGO_FOR;
4704
3b84b962c3ed (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
				w->widget[6].data     = STR_REFIT_ROAD_VEHICLE;
3b84b962c3ed (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
				w->widget[6].tooltips = STR_REFIT_ROAD_VEHICLE_TO_CARRY_HIGHLIGHTED;
3b84b962c3ed (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
   477
				break;
3b84b962c3ed (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
			case VEH_Ship:
4775
4e0daa957997 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   479
				w->widget[3].tooltips = STR_983D_SELECT_TYPE_OF_CARGO_FOR;
4704
3b84b962c3ed (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
				w->widget[6].data     = STR_983C_REFIT_SHIP;
3b84b962c3ed (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
				w->widget[6].tooltips = STR_983E_REFIT_SHIP_TO_CARRY_HIGHLIGHTED;
3b84b962c3ed (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
   482
				break;
3b84b962c3ed (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
			case VEH_Aircraft:
4775
4e0daa957997 (svn r6689) -Fix: corrected vehicle type in tooltip for the list in the refit window
bjarni
parents: 4762
diff changeset
   484
				w->widget[3].tooltips = STR_A03E_SELECT_TYPE_OF_CARGO_FOR;
4704
3b84b962c3ed (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
				w->widget[6].data     = STR_A03D_REFIT_AIRCRAFT;
3b84b962c3ed (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
				w->widget[6].tooltips = STR_A03F_REFIT_AIRCRAFT_TO_CARRY;
3b84b962c3ed (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
				break;
3b84b962c3ed (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
   488
			default: NOT_REACHED();
3b84b962c3ed (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
   489
		}
4642
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   490
	}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   491
}
486900e9288d (svn r6518) -Codechange: unified the vehicle refit windows
bjarni
parents: 4634
diff changeset
   492
3650
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   493
/* Display additional text from NewGRF in the purchase information window */
4932
3567a3ec9d80 (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
   494
uint ShowAdditionalText(int x, int y, uint w, EngineID engine)
3650
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   495
{
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   496
	uint16 callback = GetVehicleCallback(CBID_VEHICLE_ADDITIONAL_TEXT, 0, 0, engine, NULL);
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   497
	if (callback == CALLBACK_FAILED) return 0;
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   498
4928
4cdb51b5db7b (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
	// STR_02BD is used to start the string with {BLACK}
4cdb51b5db7b (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
   500
	SetDParam(0, GetGRFStringID(GetEngineGRFID(engine), 0xD000 + callback));
4cdb51b5db7b (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
   501
	return DrawStringMultiLine(x, y, STR_02BD, w);
3650
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   502
}
92a3f5cae745 (svn r4561) - NewGRF: implement most of callback 0x23: additional text in vehicle purchase windows.
peter1138
parents: 3492
diff changeset
   503
4932
3567a3ec9d80 (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
/* Count the number of bits that are set in a mask */
3567a3ec9d80 (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
static uint CountBits(uint32 mask)
3567a3ec9d80 (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
{
3567a3ec9d80 (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
	uint c = 0;
3567a3ec9d80 (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
	for (; mask != 0; mask >>= 1) if (HASBIT(mask, 0)) c++;
3567a3ec9d80 (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
	return c;
3567a3ec9d80 (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
}
3567a3ec9d80 (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
3567a3ec9d80 (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
/* Display list of cargo types of the engine, for the purchase information window */
3567a3ec9d80 (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
uint ShowRefitOptionsList(int x, int y, uint w, EngineID engine)
3567a3ec9d80 (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
{
3567a3ec9d80 (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 of this engine */
3567a3ec9d80 (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 cmask = EngInfo(engine)->refit_mask;
3567a3ec9d80 (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
	/* List of cargo types available in this climate */
3567a3ec9d80 (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
	uint32 lmask = _landscape_global_cargo_mask[_opt.landscape];
3567a3ec9d80 (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
	char *b = _userstring;
3567a3ec9d80 (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
3567a3ec9d80 (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
	/* Draw nothing if the engine is not refittable */
3567a3ec9d80 (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
	if (CountBits(cmask) <= 1) return 0;
3567a3ec9d80 (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
3567a3ec9d80 (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
	b = InlineString(b, STR_PURCHASE_INFO_REFITTABLE_TO);
3567a3ec9d80 (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
3567a3ec9d80 (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
	if (cmask == lmask) {
3567a3ec9d80 (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
		/* Engine can be refitted to all types in this climate */
3567a3ec9d80 (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
		b = InlineString(b, STR_PURCHASE_INFO_ALL_TYPES);
3567a3ec9d80 (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
	} else {
3567a3ec9d80 (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
		CargoID cid;
3567a3ec9d80 (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
3567a3ec9d80 (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
		/* Check if we are able to refit to more cargo types and unable to. If
3567a3ec9d80 (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
		 * so, invert the cargo types to list those that we can't refit to. */
3567a3ec9d80 (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
		if (CountBits(cmask ^ lmask) < CountBits(cmask)) {
3567a3ec9d80 (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
			cmask ^= lmask;
3567a3ec9d80 (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
			b = InlineString(b, STR_PURCHASE_INFO_ALL_BUT);
3567a3ec9d80 (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
		}
3567a3ec9d80 (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
3567a3ec9d80 (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
		/* Add each cargo type to the list */
3567a3ec9d80 (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
		for (cid = 0; cmask != 0; cmask >>= 1, cid++) {
3567a3ec9d80 (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
			if (!HASBIT(cmask, 0)) continue;
3567a3ec9d80 (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
3567a3ec9d80 (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
			b = InlineString(b, _cargoc.names_s[_local_cargo_id_ctype[cid]]);
3567a3ec9d80 (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
			if (cmask > 1) b = strecpy(b, ", ", lastof(_userstring));
3567a3ec9d80 (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
		}
3567a3ec9d80 (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
	}
3567a3ec9d80 (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
3567a3ec9d80 (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
	/* Terminate and display the completed string */
3567a3ec9d80 (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
	*b = '\0';
3567a3ec9d80 (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
	return DrawStringMultiLine(x, y, STR_SPEC_USERSTRING, w);
3567a3ec9d80 (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
   551
}
3567a3ec9d80 (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
   552
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   553
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   554
// 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
   555
#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
   556
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   557
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
   558
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   559
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   560
	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
   561
	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
   562
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   563
	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
   564
}
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
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   566
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
   567
{
4863
b1968ab309b6 (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
	static const Vehicle *last_vehicle[2] = { NULL, NULL };
b1968ab309b6 (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
   569
	static char           last_name[2][64] = { "", "" };
b1968ab309b6 (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
   570
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   571
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   572
	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
   573
	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
   574
4863
b1968ab309b6 (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 (va != last_vehicle[0]) {
b1968ab309b6 (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
   576
		last_vehicle[0] = va;
b1968ab309b6 (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
		if (IsCustomName(va->string_id)) {
4912
d04b3f2bca70 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   578
			GetString(last_name[0], va->string_id, lastof(last_name[0]));
4863
b1968ab309b6 (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
   579
		} else {
b1968ab309b6 (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
   580
			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
   581
		}
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
   582
	}
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
   583
4863
b1968ab309b6 (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 (vb != last_vehicle[1]) {
b1968ab309b6 (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
   585
		last_vehicle[1] = vb;
b1968ab309b6 (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
		if (IsCustomName(vb->string_id)) {
4912
d04b3f2bca70 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   587
			GetString(last_name[1], vb->string_id, lastof(last_name[1]));
4863
b1968ab309b6 (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
		} else {
b1968ab309b6 (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
			last_name[1][0] = '\0';
b1968ab309b6 (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
		}
b1968ab309b6 (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
	}
b1968ab309b6 (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
   592
b1968ab309b6 (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
   593
	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
   594
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   595
	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
   596
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   597
	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
   598
}
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
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   600
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
   601
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   602
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   603
	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
   604
	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
   605
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   606
	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
   607
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   608
	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
   609
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   610
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   611
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
   612
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   613
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   614
	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
   615
	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
   616
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   617
	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
   618
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   619
	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
   620
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   621
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   622
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
   623
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   624
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   625
	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
   626
	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
   627
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   628
	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
   629
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   630
	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
   631
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   632
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   633
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
   634
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   635
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   636
	const Vehicle* vb = *(const Vehicle**)b;
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   637
	const Vehicle* v;
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   638
	AcceptedCargo cargoa;
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   639
	AcceptedCargo cargob;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   640
	int r = 0;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   641
	int i;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   642
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   643
	memset(cargoa, 0, sizeof(cargoa));
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   644
	memset(cargob, 0, sizeof(cargob));
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   645
	for (v = va; v != NULL; v = v->next) cargoa[v->cargo_type] += v->cargo_cap;
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   646
	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
   647
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   648
	for (i = 0; i < NUM_CARGO; i++) {
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   649
		r = cargoa[i] - cargob[i];
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   650
		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
   651
	}
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
   652
594
81c0d7edfb17 (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
   653
	VEHICLEUNITNUMBERSORTER(r, va, vb);
81c0d7edfb17 (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
   654
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   655
	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
   656
}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   657
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   658
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
   659
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   660
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   661
	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
   662
	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
   663
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   664
	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
   665
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   666
	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
   667
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   668
2462
2475587ac5de (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   669
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
   670
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   671
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   672
	const Vehicle* vb = *(const Vehicle**)b;
1179
abea5b669f74 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   673
	int max_speed_a = 0xFFFF, max_speed_b = 0xFFFF;
abea5b669f74 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   674
	int r;
abea5b669f74 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   675
	const Vehicle *ua = va, *ub = vb;
abea5b669f74 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   676
1191
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   677
	if (va->type == VEH_Train && vb->type == VEH_Train) {
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   678
		do {
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   679
			if (RailVehInfo(ua->engine_type)->max_speed != 0)
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   680
				max_speed_a = min(max_speed_a, RailVehInfo(ua->engine_type)->max_speed);
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   681
		} while ((ua = ua->next) != NULL);
1179
abea5b669f74 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   682
1191
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   683
		do {
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   684
			if (RailVehInfo(ub->engine_type)->max_speed != 0)
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   685
				max_speed_b = min(max_speed_b, RailVehInfo(ub->engine_type)->max_speed);
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   686
		} while ((ub = ub->next) != NULL);
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   687
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   688
		r = max_speed_a - max_speed_b;
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   689
	} else {
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   690
		r = va->max_speed - vb->max_speed;
b680ace4455e (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   691
	}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   692
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   693
	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
   694
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   695
	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
   696
}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   697
2965
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   698
static int CDECL VehicleModelSorter(const void *a, const void *b)
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   699
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   700
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   701
	const Vehicle* vb = *(const Vehicle**)b;
2965
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   702
	int r = va->engine_type - vb->engine_type;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   703
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   704
	VEHICLEUNITNUMBERSORTER(r, va, vb);
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   705
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   706
	return (_internal_sort_order & 1) ? -r : r;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   707
}
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   708
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   709
static int CDECL VehicleValueSorter(const void *a, const void *b)
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   710
{
4266
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   711
	const Vehicle* va = *(const Vehicle**)a;
57a72ad31925 (svn r5894) Remove a totally unnecessary indirection in the vehicle sorter code. Less code, less data, simply better
tron
parents: 4261
diff changeset
   712
	const Vehicle* vb = *(const Vehicle**)b;
2965
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   713
	const Vehicle *u;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   714
	int valuea = 0, valueb = 0;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   715
	int r;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   716
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   717
	for (u = va; u != NULL; u = u->next) valuea += u->value;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   718
	for (u = vb; u != NULL; u = u->next) valueb += u->value;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   719
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   720
	r = valuea - valueb;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   721
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   722
	VEHICLEUNITNUMBERSORTER(r, va, vb);
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   723
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   724
	return (_internal_sort_order & 1) ? -r : r;
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   725
}
edaa999a25dd (svn r3528) - Feature: Allow sorting of vehicle lists by model or value (based on meush's work)
peter1138
parents: 2962
diff changeset
   726
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   727
// this define is to match engine.c, but engine.c keeps it to itself
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   728
// ENGINE_AVAILABLE is used in ReplaceVehicleWndProc
2530
b8d5a5284024 (svn r3059) Use bitfields to encode railtype and climates of engines instead of manual shifting/anding
tron
parents: 2520
diff changeset
   729
#define ENGINE_AVAILABLE ((e->flags & 1 && HASBIT(info->climates, _opt.landscape)) || HASBIT(e->player_avail, _local_player))
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   730
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   731
/*  if show_outdated is selected, it do not sort psudo engines properly but it draws all engines
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
   732
 * if used compined with show_cars set to false, it will work as intended. Replace window do it like that
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
   733
 *  this was a big hack even before show_outdated was added. Stupid newgrf :p
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
   734
 */
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   735
static void train_engine_drawing_loop(int *x, int *y, int *pos, int *sel, EngineID *selected_id, RailType railtype,
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   736
	uint8 lines_drawn, bool is_engine, bool show_cars, bool show_outdated, bool show_compatible)
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   737
{
2971
9b62397dbd56 (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list)
peter1138
parents: 2970
diff changeset
   738
	EngineID j;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   739
	byte colour;
2569
2851becf6330 (svn r3106) -Autoreplace feature: Continue to show old vehicles in replace window after all player's vehicles of that type have been replaced. This allows the replacement to be removed. These vehicles are shown in grey instead of the player's colour.
peter1138
parents: 2556
diff changeset
   740
	const Player *p = GetPlayer(_local_player);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   741
2971
9b62397dbd56 (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list)
peter1138
parents: 2970
diff changeset
   742
	for (j = 0; j < NUM_TRAIN_ENGINES; j++) {
9b62397dbd56 (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list)
peter1138
parents: 2970
diff changeset
   743
		EngineID i = GetRailVehAtPosition(j);
1926
68d60188a22f (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   744
		const Engine *e = GetEngine(i);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   745
		const RailVehicleInfo *rvi = RailVehInfo(i);
3393
48ce4c723a76 (svn r4201) - Codechange: Do for _engine_info[] what we do for _*_vehicle_info[]; create and use a function to retrieve data, and ensure constness.
peter1138
parents: 3355
diff changeset
   746
		const EngineInfo *info = EngInfo(i);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   747
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   748
		if (!EngineHasReplacementForPlayer(p, i) && p->num_engines[i] == 0 && show_outdated) continue;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   749
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
   750
		if ((rvi->power == 0 && !show_cars) || (rvi->power != 0 && show_cars))  // show wagons or engines (works since wagons do not have power)
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   751
			continue;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   752
2971
9b62397dbd56 (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list)
peter1138
parents: 2970
diff changeset
   753
		if (*sel == 0) *selected_id = j;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   754
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   755
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   756
		colour = *sel == 0 ? 0xC : 0x10;
3492
5670ff6c83e9 (svn r4343) [Autoreplace] Fix drawing of train list for outdated engines. Fixes FS#106
peter1138
parents: 3414
diff changeset
   757
		if (!(ENGINE_AVAILABLE && show_outdated && RailVehInfo(i)->power && IsCompatibleRail(e->railtype, railtype))) {
3414
35a7ea80eee7 (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to
peter1138
parents: 3393
diff changeset
   758
			if ((!IsCompatibleRail(e->railtype, railtype) && show_compatible)
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   759
				|| (e->railtype != railtype && !show_compatible)
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   760
				|| !(rvi->flags & RVI_WAGON) != is_engine ||
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   761
				!HASBIT(e->player_avail, _local_player))
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   762
				continue;
4432
33631ac88c40 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4414
diff changeset
   763
#if 0
33631ac88c40 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4414
diff changeset
   764
		} else {
33631ac88c40 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4414
diff changeset
   765
			// TODO find a nice red colour for vehicles being replaced
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   766
			if ( _autoreplace_array[i] != i )
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   767
				colour = *sel == 0 ? 0x44 : 0x45;
4432
33631ac88c40 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4414
diff changeset
   768
#endif
33631ac88c40 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4414
diff changeset
   769
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   770
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   771
		if (IS_INT_INSIDE(--*pos, -lines_drawn, 0)) {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   772
			DrawString(*x + 59, *y + 2, GetCustomEngineName(i),
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   773
				colour);
2569
2851becf6330 (svn r3106) -Autoreplace feature: Continue to show old vehicles in replace window after all player's vehicles of that type have been replaced. This allows the replacement to be removed. These vehicles are shown in grey instead of the player's colour.
peter1138
parents: 2556
diff changeset
   774
			// show_outdated is true only for left side, which is where we show old replacements
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   775
			DrawTrainEngine(*x + 29, *y + 6, i, (p->num_engines[i] == 0 && show_outdated) ?
3040
c3473d1fb81f (svn r3620) - 2cc: Replace use of macro to determine colour map with a function call for drawing of vehicles.
peter1138
parents: 3030
diff changeset
   776
				PALETTE_CRASH : GetEnginePalette(i, _local_player));
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   777
			if ( show_outdated ) {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   778
				SetDParam(0, p->num_engines[i]);
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   779
				DrawStringRightAligned(213, *y+5, STR_TINY_BLACK, 0);
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   780
			}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   781
			*y += 14;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   782
		}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   783
		--*sel;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   784
	}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   785
}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   786
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   787
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   788
static void SetupScrollStuffForReplaceWindow(Window *w)
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   789
{
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   790
	EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   791
	const Player* p = GetPlayer(_local_player);
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   792
	uint sel[2];
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   793
	uint count = 0;
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   794
	uint count2 = 0;
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   795
	EngineID i;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   796
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   797
	sel[0] = WP(w,replaceveh_d).sel_index[0];
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   798
	sel[1] = WP(w,replaceveh_d).sel_index[1];
915
013cb2d74800 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   799
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   800
	switch (WP(w,replaceveh_d).vehicletype) {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   801
		case VEH_Train: {
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   802
			RailType railtype = _railtype_selected_in_replace_gui;
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   803
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
   804
			w->widget[13].color = _player_colors[_local_player]; // sets the colour of that art thing
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
   805
			w->widget[16].color = _player_colors[_local_player]; // sets the colour of that art thing
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   806
2971
9b62397dbd56 (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list)
peter1138
parents: 2970
diff changeset
   807
			for (i = 0; i < NUM_TRAIN_ENGINES; i++) {
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   808
				EngineID eid = GetRailVehAtPosition(i);
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   809
				const Engine* e = GetEngine(eid);
3393
48ce4c723a76 (svn r4201) - Codechange: Do for _engine_info[] what we do for _*_vehicle_info[]; create and use a function to retrieve data, and ensure constness.
peter1138
parents: 3355
diff changeset
   810
				const EngineInfo* info = EngInfo(eid);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   811
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   812
				// left window contains compatible engines while right window only contains engines of the selected type
4084
5ca6453491c1 (svn r5399) Simplify a conditional expression: (a && b) || (!a && !b) -> a == b
tron
parents: 4023
diff changeset
   813
				if (ENGINE_AVAILABLE &&
5ca6453491c1 (svn r5399) Simplify a conditional expression: (a && b) || (!a && !b) -> a == b
tron
parents: 4023
diff changeset
   814
						(RailVehInfo(eid)->power != 0) == (WP(w, replaceveh_d).wagon_btnstate != 0)) {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   815
					if (IsCompatibleRail(e->railtype, railtype) && (p->num_engines[eid] > 0 || EngineHasReplacementForPlayer(p, eid))) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   816
						if (sel[0] == count) selected_id[0] = eid;
1134
cdaa9f6a7d73 (svn r1635) fix: forgot to set SetVScrollCount properly in autoreplace train GUI. It appears ok now
bjarni
parents: 1128
diff changeset
   817
						count++;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   818
					}
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   819
					if (e->railtype == railtype && HASBIT(e->player_avail, _local_player)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   820
						if (sel[1] == count2) selected_id[1] = eid;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   821
						count2++;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   822
					}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   823
				}
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   824
			}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   825
			break;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   826
		}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   827
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   828
		case VEH_Road: {
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   829
			for (i = ROAD_ENGINES_INDEX; i < ROAD_ENGINES_INDEX + NUM_ROAD_ENGINES; i++) {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   830
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   831
					if (sel[0] == count) selected_id[0] = i;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   832
					count++;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   833
				}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   834
			}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   835
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   836
			if (selected_id[0] != INVALID_ENGINE) { // only draw right array if we have anything in the left one
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   837
				CargoID cargo = RoadVehInfo(selected_id[0])->cargo_type;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   838
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   839
				for (i = ROAD_ENGINES_INDEX; i < ROAD_ENGINES_INDEX + NUM_ROAD_ENGINES; i++) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   840
					if (cargo == RoadVehInfo(i)->cargo_type &&
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   841
							HASBIT(GetEngine(i)->player_avail, _local_player)) {
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   842
						if (sel[1] == count2) selected_id[1] = i;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   843
						count2++;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   844
					}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   845
				}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   846
			}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   847
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   848
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   849
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   850
		case VEH_Ship: {
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   851
			for (i = SHIP_ENGINES_INDEX; i < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; i++) {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   852
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   853
					if (sel[0] == count) selected_id[0] = i;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   854
					count++;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   855
				}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   856
			}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   857
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   858
			if (selected_id[0] != INVALID_ENGINE) {
3030
0ca48e75e4ea (svn r3610) And one more (see r3608/r3609)
tron
parents: 3029
diff changeset
   859
				const ShipVehicleInfo* svi = ShipVehInfo(selected_id[0]);
0ca48e75e4ea (svn r3610) And one more (see r3608/r3609)
tron
parents: 3029
diff changeset
   860
				CargoID cargo = svi->cargo_type;
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   861
				bool refittable = svi->refittable;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   862
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   863
				for (i = SHIP_ENGINES_INDEX; i < SHIP_ENGINES_INDEX + NUM_SHIP_ENGINES; i++) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   864
					if (HASBIT(GetEngine(i)->player_avail, _local_player) && (
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   865
								ShipVehInfo(i)->cargo_type == cargo ||
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
   866
								ShipVehInfo(i)->refittable && refittable
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   867
							)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   868
						if (sel[1] == count2) selected_id[1] = i;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   869
						count2++;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   870
					}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   871
				}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   872
			}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   873
			break;
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   874
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   875
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   876
		case VEH_Aircraft: {
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   877
			for (i = AIRCRAFT_ENGINES_INDEX; i < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; i++) {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
   878
				if (p->num_engines[i] > 0 || EngineHasReplacementForPlayer(p, i)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   879
					if (sel[0] == count) selected_id[0] = i;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   880
					count++;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   881
				}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   882
			}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   883
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   884
			if (selected_id[0] != INVALID_ENGINE) {
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   885
				byte subtype = AircraftVehInfo(selected_id[0])->subtype;
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   886
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   887
				for (i = AIRCRAFT_ENGINES_INDEX; i < AIRCRAFT_ENGINES_INDEX + NUM_AIRCRAFT_ENGINES; i++) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   888
					if (HASBIT(GetEngine(i)->player_avail, _local_player) &&
4023
b65af90447d2 (svn r5262) Add symbolic names for the aircraft subtypes. not perfect, but better than raw numbers
tron
parents: 3650
diff changeset
   889
							(subtype & AIR_CTOL) == (AircraftVehInfo(i)->subtype & AIR_CTOL)) {
3029
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   890
						if (sel[1] == count2) selected_id[1] = i;
157958f9e1f3 (svn r3609) Some more simplification in the same function as r3608
tron
parents: 3028
diff changeset
   891
						count2++;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   892
					}
3028
e470394e175e (svn r3608) No functional change, just make some code more comprehensible: Reduce variable scope, remove write-only variables, turn do-while-loops with multiple induction variables into canonical for-loops
tron
parents: 3025
diff changeset
   893
				}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   894
			}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   895
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   896
		}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   897
	}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   898
	// sets up the number of items in each list
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   899
	SetVScrollCount(w, count);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   900
	SetVScroll2Count(w, count2);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   901
	WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   902
	WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   903
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   904
	WP(w,replaceveh_d).count[0] = count;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   905
	WP(w,replaceveh_d).count[1] = count2;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   906
	return;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   907
}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   908
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   909
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   910
static void DrawEngineArrayInReplaceWindow(Window *w, int x, int y, int x2, int y2, int pos, int pos2,
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   911
	int sel1, int sel2, EngineID selected_id1, EngineID selected_id2)
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   912
{
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   913
	int sel[2];
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   914
	EngineID selected_id[2];
2569
2851becf6330 (svn r3106) -Autoreplace feature: Continue to show old vehicles in replace window after all player's vehicles of that type have been replaced. This allows the replacement to be removed. These vehicles are shown in grey instead of the player's colour.
peter1138
parents: 2556
diff changeset
   915
	const Player *p = GetPlayer(_local_player);
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   916
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   917
	sel[0] = sel1;
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   918
	sel[1] = sel2;
915
013cb2d74800 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   919
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   920
	selected_id[0] = selected_id1;
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   921
	selected_id[1] = selected_id2;
915
013cb2d74800 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   922
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   923
	switch (WP(w,replaceveh_d).vehicletype) {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   924
		case VEH_Train: {
2520
75eb66d6e371 (svn r3049) Replace byte/int/uint by RailType where appropriate
tron
parents: 2519
diff changeset
   925
			RailType railtype = _railtype_selected_in_replace_gui;
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
   926
			DrawString(157, w->widget[14].top + 1, _rail_types_list[railtype], 0x10);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   927
			/* draw sorting criteria string */
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   928
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   929
			/* Ensure that custom engines which substituted wagons
4549
60410aa1aa88 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4547
diff changeset
   930
			 * are sorted correctly.
60410aa1aa88 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4547
diff changeset
   931
			 * XXX - DO NOT EVER DO THIS EVER AGAIN! GRRR hacking in wagons as
60410aa1aa88 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4547
diff changeset
   932
			 * engines to get more types.. Stays here until we have our own format
60410aa1aa88 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4547
diff changeset
   933
			 * then it is exit!!! */
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
   934
			if (WP(w,replaceveh_d).wagon_btnstate) {
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   935
				train_engine_drawing_loop(&x, &y, &pos, &sel[0], &selected_id[0], railtype, w->vscroll.cap, true, false, true, true); // True engines
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   936
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, true, false, false, false); // True engines
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   937
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, false, false, false, false); // Feeble wagons
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
   938
			} else {
3355
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   939
				train_engine_drawing_loop(&x, &y, &pos, &sel[0], &selected_id[0], railtype, w->vscroll.cap, false, true, true, true);
a653b8e47f27 (svn r4150) -Feature: Merged elrails into trunk. Thanks to Tron for lots of code and proofreading, thanks to peter1138 for another lot of code and ideas.
celestar
parents: 3040
diff changeset
   940
				train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, false, true, false, true);
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
   941
			}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   942
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   943
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   944
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   945
		case VEH_Road: {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   946
			int num = NUM_ROAD_ENGINES;
2630
35249d2ded3e (svn r3172) static, const
tron
parents: 2617
diff changeset
   947
			const Engine* e = GetEngine(ROAD_ENGINES_INDEX);
2477
d454d5152386 (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   948
			EngineID engine_id = ROAD_ENGINES_INDEX;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   949
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   950
			do {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   951
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   952
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   953
						DrawString(x+59, y+2, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   954
						DrawRoadVehEngine(x+29, y+6, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   955
						SetDParam(0, p->num_engines[engine_id]);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   956
						DrawStringRightAligned(213, y+5, STR_TINY_BLACK, 0);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   957
						y += 14;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   958
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   959
				sel[0]--;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   960
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   961
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   962
				if (selected_id[0] != INVALID_ENGINE) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   963
					byte cargo = RoadVehInfo(selected_id[0])->cargo_type;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   964
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   965
					if (RoadVehInfo(engine_id)->cargo_type == cargo && HASBIT(e->player_avail, _local_player)) {
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   966
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0) && RoadVehInfo(engine_id)->cargo_type == cargo) {
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   967
							DrawString(x2+59, y2+2, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
3040
c3473d1fb81f (svn r3620) - 2cc: Replace use of macro to determine colour map with a function call for drawing of vehicles.
peter1138
parents: 3030
diff changeset
   968
							DrawRoadVehEngine(x2+29, y2+6, engine_id, GetEnginePalette(engine_id, _local_player));
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   969
							y2 += 14;
845
0c66e26fecb2 (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   970
						}
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   971
						sel[1]--;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   972
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   973
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   974
			} while (++engine_id, ++e,--num);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   975
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   976
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   977
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   978
		case VEH_Ship: {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   979
			int num = NUM_SHIP_ENGINES;
2630
35249d2ded3e (svn r3172) static, const
tron
parents: 2617
diff changeset
   980
			const Engine* e = GetEngine(SHIP_ENGINES_INDEX);
2477
d454d5152386 (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   981
			EngineID engine_id = SHIP_ENGINES_INDEX;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   982
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   983
			do {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   984
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   985
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   986
						DrawString(x+75, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   987
						DrawShipEngine(x+35, y+10, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   988
						SetDParam(0, p->num_engines[engine_id]);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   989
						DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   990
						y += 24;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
   991
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   992
					sel[0]--;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   993
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   994
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   995
				if (selected_id[0] != INVALID_ENGINE) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   996
					CargoID cargo = ShipVehInfo(selected_id[0])->cargo_type;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   997
					bool refittable = ShipVehInfo(selected_id[0])->refittable;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   998
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
   999
					if (HASBIT(e->player_avail, _local_player) && ( cargo == ShipVehInfo(engine_id)->cargo_type || refittable & ShipVehInfo(engine_id)->refittable)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1000
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1001
							DrawString(x2+75, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1002
							DrawShipEngine(x2+35, y2+10, engine_id, GetEnginePalette(engine_id, _local_player));
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1003
							y2 += 24;
845
0c66e26fecb2 (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
  1004
						}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1005
						sel[1]--;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1006
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1007
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1008
			} while (++engine_id, ++e, --num);
845
0c66e26fecb2 (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
  1009
			break;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1010
		}   //end of ship
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1011
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1012
		case VEH_Aircraft: {
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1013
			int num = NUM_AIRCRAFT_ENGINES;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1014
			const Engine* e = GetEngine(AIRCRAFT_ENGINES_INDEX);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1015
			EngineID engine_id = AIRCRAFT_ENGINES_INDEX;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1016
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1017
			do {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1018
				if (p->num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1019
					if (sel[0] == 0) selected_id[0] = engine_id;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1020
					if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1021
						DrawString(x+62, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1022
						DrawAircraftEngine(x+29, y+10, engine_id, p->num_engines[engine_id] > 0 ? GetEnginePalette(engine_id, _local_player) : PALETTE_CRASH);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1023
						SetDParam(0, p->num_engines[engine_id]);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1024
						DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1025
						y += 24;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
  1026
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1027
					sel[0]--;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1028
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1029
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1030
				if (selected_id[0] != INVALID_ENGINE) {
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1031
					byte subtype = AircraftVehInfo(selected_id[0])->subtype;
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1032
4023
b65af90447d2 (svn r5262) Add symbolic names for the aircraft subtypes. not perfect, but better than raw numbers
tron
parents: 3650
diff changeset
  1033
					if ((subtype & AIR_CTOL) == (AircraftVehInfo(engine_id)->subtype & AIR_CTOL) &&
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1034
							HASBIT(e->player_avail, _local_player)) {
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1035
						if (sel[1] == 0) selected_id[1] = engine_id;
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
  1036
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
  1037
							DrawString(x2+62, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
3040
c3473d1fb81f (svn r3620) - 2cc: Replace use of macro to determine colour map with a function call for drawing of vehicles.
peter1138
parents: 3030
diff changeset
  1038
							DrawAircraftEngine(x2+29, y2+10, engine_id, GetEnginePalette(engine_id, _local_player));
1128
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
  1039
							y2 += 24;
d3ffc98b92ad (svn r1629) added a counter to tell how many engines you have of each type to the autoreplace vehicle windows and made them show only the vehicles you actually have in the left list.
bjarni
parents: 1093
diff changeset
  1040
						}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1041
						sel[1]--;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1042
					}
4999
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1043
				}
5c27bcc2dbae (svn r7009) - Fix (r1323, r1326): In the replace vehicle window, the left vehicle list was not drawn when an engine was not selected.
peter1138
parents: 4938
diff changeset
  1044
			} while (++engine_id, ++e,--num);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1045
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1046
		}   // end of aircraft
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1047
	}
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1048
}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1049
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1050
static void DrawVehiclePurchaseInfo(const int x, const int y, uint w, const EngineID engine_number)
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1051
{
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1052
	switch (GetEngine(engine_number)->type) {
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1053
		case VEH_Train:
4929
0eb123d23079 (svn r6909) - Codechange: Base the decision to draw rail engine or wagon purchase information on the rail vehicle type, not an arbitrary value.
peter1138
parents: 4928
diff changeset
  1054
			if ((RailVehInfo(engine_number)->flags & RVI_WAGON) == 0) {
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1055
				DrawTrainEnginePurchaseInfo(x, y, w, engine_number);
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1056
			} else {
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1057
				DrawTrainWagonPurchaseInfo(x, y, w, engine_number);
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1058
			}
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1059
			break;
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1060
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1061
		case VEH_Road: DrawRoadVehPurchaseInfo(x, y, w, engine_number);      break;
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1062
		case VEH_Ship: DrawShipPurchaseInfo(x, y, w, engine_number);         break;
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1063
		case VEH_Aircraft: DrawAircraftPurchaseInfo(x, y, w, engine_number); break;
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1064
		default: NOT_REACHED();
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1065
	}
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1066
}
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1067
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1068
static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1069
{
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1070
	static const StringID _vehicle_type_names[] = {
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1071
		STR_019F_TRAIN,
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1072
		STR_019C_ROAD_VEHICLE,
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1073
		STR_019E_SHIP,
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1074
		STR_019D_AIRCRAFT
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1075
	};
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1076
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1077
	switch (e->event) {
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1078
		case WE_PAINT: {
4574
497540b4a75f (svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles from each time the window is redrawn
bjarni
parents: 4569
diff changeset
  1079
				Player *p = GetPlayer(_local_player);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1080
				int pos = w->vscroll.pos;
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
  1081
				EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1082
				int x = 1;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1083
				int y = 15;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1084
				int pos2 = w->vscroll2.pos;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1085
				int x2 = 1 + 228;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1086
				int y2 = 15;
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
  1087
				int sel[2];
4581
9316ef1a36ab (svn r6431) -Fix r6424: removed a declaration after statement in ReplaceVehicleWndProc()
bjarni
parents: 4579
diff changeset
  1088
				byte i;
912
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
  1089
				sel[0] = WP(w,replaceveh_d).sel_index[0];
d9a42d0dcbf5 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
  1090
				sel[1] = WP(w,replaceveh_d).sel_index[1];
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1091
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1092
				SetupScrollStuffForReplaceWindow(w);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1093
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1094
				selected_id[0] = WP(w,replaceveh_d).sel_engine[0];
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1095
				selected_id[1] = WP(w,replaceveh_d).sel_engine[1];
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1096
2556
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1097
				// Disable the "Start Replacing" button if:
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1098
				//    Either list is empty
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1099
				// or Both lists have the same vehicle selected
2747
ac25d748652b (svn r3292) - Autoreplace: Disallow replacing to an engine type that already has a replacement set up; this stops loops being set up.
peter1138
parents: 2746
diff changeset
  1100
				// or The selected replacement engine has a replacement (to prevent loops)
2556
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1101
				// or The right list (new replacement) has the existing replacement vehicle selected
4709
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1102
				SetWindowWidgetDisabledState(w, 4,
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1103
						selected_id[0] == INVALID_ENGINE ||
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
  1104
						selected_id[1] == INVALID_ENGINE ||
2556
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1105
						selected_id[0] == selected_id[1] ||
2848
cb4b1cc0bf65 (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
  1106
						EngineReplacementForPlayer(p, selected_id[1]) != INVALID_ENGINE ||
4709
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1107
						EngineReplacementForPlayer(p, selected_id[0]) == selected_id[1]);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1108
2556
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1109
				// Disable the "Stop Replacing" button if:
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1110
				//    The left list (existing vehicle) is empty
a6f1c61fa5d0 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
  1111
				// or The selected vehicle has no replacement set up
4709
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1112
				SetWindowWidgetDisabledState(w, 6,
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1113
						selected_id[0] == INVALID_ENGINE ||
eff35edfb653 (svn r6619) -Codechange: Use accessors for disabled_state.
belugas
parents: 4705
diff changeset
  1114
						!EngineHasReplacementForPlayer(p, selected_id[0]));
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1115
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1116
				// now the actual drawing of the window itself takes place
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1117
				SetDParam(0, _vehicle_type_names[WP(w, replaceveh_d).vehicletype - VEH_Train]);
2617
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1118
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1119
				if (WP(w, replaceveh_d).vehicletype == VEH_Train) {
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1120
					// set on/off for renew_keep_length
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1121
					SetDParam(1, p->renew_keep_length ? STR_CONFIG_PATCHES_ON : STR_CONFIG_PATCHES_OFF);
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
  1122
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
  1123
					// set wagon/engine button
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
  1124
					SetDParam(2, WP(w, replaceveh_d).wagon_btnstate ? STR_ENGINES : STR_WAGONS);
2617
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1125
				}
a9e1a187de99 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1126
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1127
				DrawWindowWidgets(w);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1128
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1129
				// sets up the string for the vehicle that is being replaced to
2746
d96ce2fdc3e4 (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
  1130
				if (selected_id[0] != INVALID_ENGINE) {
2848
cb4b1cc0bf65 (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
  1131
					if (!EngineHasReplacementForPlayer(p, selected_id[0])) {
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1132
						SetDParam(0, STR_NOT_REPLACING);
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1133
					} else {
2848
cb4b1cc0bf65 (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
  1134
						SetDParam(0, GetCustomEngineName(EngineReplacementForPlayer(p, selected_id[0])));
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1135
					}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1136
				} else {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1137
					SetDParam(0, STR_NOT_REPLACING_VEHICLE_SELECTED);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1138
				}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1139
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1140
				DrawString(145, w->widget[5].top + 1, STR_02BD, 0x10);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1141
4434
4175805666a5 (svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
rubidium
parents: 4432
diff changeset
  1142
				/* now we draw the two arrays according to what we just counted */
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1143
				DrawEngineArrayInReplaceWindow(w, x, y, x2, y2, pos, pos2, sel[0], sel[1], selected_id[0], selected_id[1]);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1144
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1145
				WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1146
				WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1147
				/* now we draw the info about the vehicles we selected */
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1148
				for (i = 0 ; i < 2 ; i++) {
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1149
					if (selected_id[i] != INVALID_ENGINE) {
4930
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1150
						const Widget *wi = &w->widget[i == 0 ? 3 : 11];
fd91a88d6ef6 (svn r6910) - Codechange: Supply width of area when drawing purchase info instead of using hardcoded values. (mart3p)
peter1138
parents: 4929
diff changeset
  1151
						DrawVehiclePurchaseInfo(wi->left + 2 , wi->top + 1, wi->right - wi->left - 2, selected_id[i]);
4578
0640ecc807e6 (svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the info text in the autoreplace window
bjarni
parents: 4574
diff changeset
  1152
					}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1153
				}
1462
f487048c5748 (svn r1966) - Fix: [ 1110437 ] Replace Vehicles GUI gets random clicks. Breaks people! Don't forget the breaks in switch() statements!!
Darkvater
parents: 1363
diff changeset
  1154
			} break;   // end of paint
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1155
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1156
		case WE_CLICK: {
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1157
			// these 3 variables is used if any of the lists is clicked
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1158
			uint16 click_scroll_pos = w->vscroll2.pos;
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1159
			uint16 click_scroll_cap = w->vscroll2.cap;
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1160
			byte click_side = 1;
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1161
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1162
			switch (e->we.click.widget) {
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1163
				case 12:
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1164
					WP(w, replaceveh_d).wagon_btnstate = !(WP(w, replaceveh_d).wagon_btnstate);
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1165
					SetWindowDirty(w);
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1166
					break;
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1167
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1168
				case 14:
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1169
				case 15: /* Railtype selection dropdown menu */
2448
0a34e90cb31f (svn r2974) -Fix: Drag and drop selection on drop down boxes didn't select correct item when some items were hidden.
peter1138
parents: 2436
diff changeset
  1170
					ShowDropDownMenu(w, _rail_types_list, _railtype_selected_in_replace_gui, 15, 0, ~GetPlayer(_local_player)->avail_railtypes);
869
f211ac238c8e (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1171
					break;
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1172
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1173
				case 17: /* toggle renew_keep_length */
4661
59492734db06 (svn r6544) - Codechange: Rename CmdReplaceVehicle to CmdSetAutoReplace, to reflect what it does.
peter1138
parents: 4643
diff changeset
  1174
					DoCommandP(0, 5, GetPlayer(_local_player)->renew_keep_length ? 0 : 1, NULL, CMD_SET_AUTOREPLACE);
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1175
					break;
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1176
2293
a71c210076be (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
  1177
				case 4: { /* Start replacing */
a71c210076be (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
  1178
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
a71c210076be (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
  1179
					EngineID veh_to = WP(w, replaceveh_d).sel_engine[1];
4661
59492734db06 (svn r6544) - Codechange: Rename CmdReplaceVehicle to CmdSetAutoReplace, to reflect what it does.
peter1138
parents: 4643
diff changeset
  1180
					DoCommandP(0, 3, veh_from + (veh_to << 16), NULL, CMD_SET_AUTOREPLACE);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1181
					break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1182
				}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1183
2293
a71c210076be (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
  1184
				case 6: { /* Stop replacing */
a71c210076be (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
  1185
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
4661
59492734db06 (svn r6544) - Codechange: Rename CmdReplaceVehicle to CmdSetAutoReplace, to reflect what it does.
peter1138
parents: 4643
diff changeset
  1186
					DoCommandP(0, 3, veh_from + (INVALID_ENGINE << 16), NULL, CMD_SET_AUTOREPLACE);
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1187
					break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1188
				}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1189
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1190
				case 7:
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1191
					// sets up that the left one was clicked. The default values are for the right one (9)
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1192
					// this way, the code for 9 handles both sides
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1193
					click_scroll_pos = w->vscroll.pos;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1194
					click_scroll_cap = w->vscroll.cap;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1195
					click_side = 0;
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1196
					/* FALL THROUGH */
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1197
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1198
				case 9: {
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1199
					uint i = (e->we.click.pt.y - 14) / w->resize.step_height;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1200
					if (i < click_scroll_cap) {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1201
						WP(w,replaceveh_d).sel_index[click_side] = i + click_scroll_pos;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1202
						SetWindowDirty(w);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1203
					}
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1204
					break;
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1205
				}
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1206
			}
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1207
			break;
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1208
		}
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1209
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1210
		case WE_DROPDOWN_SELECT: /* we have selected a dropdown item in the list */
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
  1211
			_railtype_selected_in_replace_gui = (RailType)e->we.dropdown.index;
3414
35a7ea80eee7 (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to
peter1138
parents: 3393
diff changeset
  1212
			/* Reset scrollbar positions */
35a7ea80eee7 (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to
peter1138
parents: 3393
diff changeset
  1213
			w->vscroll.pos  = 0;
35a7ea80eee7 (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to
peter1138
parents: 3393
diff changeset
  1214
			w->vscroll2.pos = 0;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1215
			SetWindowDirty(w);
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1216
			break;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1217
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1218
		case WE_RESIZE:
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1219
			w->vscroll.cap  += e->we.sizing.diff.y / (int)w->resize.step_height;
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1220
			w->vscroll2.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1221
4547
9786a24c4102 (svn r6379) -Codechange: cast 'remove babel' on widget's unkA and rename it to 'data'.
Darkvater
parents: 4546
diff changeset
  1222
			w->widget[7].data = (w->vscroll.cap  << 8) + 1;
9786a24c4102 (svn r6379) -Codechange: cast 'remove babel' on widget's unkA and rename it to 'data'.
Darkvater
parents: 4546
diff changeset
  1223
			w->widget[9].data = (w->vscroll2.cap << 8) + 1;
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2971
diff changeset
  1224
			break;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1225
	}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1226
}
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1227
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1228
static const Widget _replace_rail_vehicle_widgets[] = {
1465
c3fda8e8edf6 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1229
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,       STR_018B_CLOSE_WINDOW},
869
f211ac238c8e (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1230
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1231
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,       STR_STICKY_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1232
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   227, 0x0,            STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1233
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   240,   251, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1234
{      WWT_PANEL,     RESIZE_TB,    14,   139,   316,   228,   239, 0x0,            STR_REPLACE_HELP_REPLACE_INFO_TAB},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1235
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   240,   251, STR_REPLACE_VEHICLES_STOP,  STR_REPLACE_HELP_STOP_BUTTON},
1465
c3fda8e8edf6 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1236
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,          STR_REPLACE_HELP_LEFT_ARRAY},
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1237
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
1465
c3fda8e8edf6 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1238
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,          STR_REPLACE_HELP_RIGHT_ARRAY},
2375
0355db918128 (svn r2901) Refix 'replace window' with wrong string-etc. coordinates. Also clean up, and make window-title a bit more meaningful (specify vehicle type replaced)
Darkvater
parents: 2354
diff changeset
  1239
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1240
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   227, 0x0,            STR_NULL},
869
f211ac238c8e (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1241
// train specific stuff
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1242
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   228,   239, STR_REPLACE_ENGINE_WAGON_SELECT,       STR_REPLACE_ENGINE_WAGON_SELECT_HELP},  // widget 12
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1243
{      WWT_PANEL,     RESIZE_TB,    14,   139,   153,   240,   251, 0x0,            STR_NULL},
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1244
{      WWT_PANEL,     RESIZE_TB,    14,   154,   277,   240,   251, 0x0,            STR_REPLACE_HELP_RAILTYPE},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1245
{    WWT_TEXTBTN,     RESIZE_TB,    14,   278,   289,   240,   251, STR_0225,       STR_REPLACE_HELP_RAILTYPE},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1246
{      WWT_PANEL,     RESIZE_TB,    14,   290,   305,   240,   251, 0x0,            STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1247
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   317,   455,   228,   239, STR_REPLACE_REMOVE_WAGON,       STR_REPLACE_REMOVE_WAGON_HELP},
869
f211ac238c8e (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1248
// end of train specific stuff
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1249
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   240,   251, STR_NULL,       STR_RESIZE_BUTTON},
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1250
{   WIDGETS_END},
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1251
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1252
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1253
static const Widget _replace_road_vehicle_widgets[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1254
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                    STR_018B_CLOSE_WINDOW},
1465
c3fda8e8edf6 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1255
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1256
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,                    STR_STICKY_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1257
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   217, 0x0,                         STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1258
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   218,   229, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1259
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   218,   229, 0x0,                         STR_REPLACE_HELP_REPLACE_INFO_TAB},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1260
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   218,   229, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1261
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,                       STR_REPLACE_HELP_LEFT_ARRAY},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1262
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1263
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,                       STR_REPLACE_HELP_RIGHT_ARRAY},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1264
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1265
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   217, 0x0,                         STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1266
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   218,   229, STR_NULL,                    STR_RESIZE_BUTTON},
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1267
{   WIDGETS_END},
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1268
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1269
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1270
static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1271
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                    STR_018B_CLOSE_WINDOW},
1465
c3fda8e8edf6 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1272
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1273
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,                    STR_STICKY_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1274
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   110,   201, 0x0,                         STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1275
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   202,   213, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1276
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   202,   213, 0x0,                         STR_REPLACE_HELP_REPLACE_INFO_TAB},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1277
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   202,   213, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1278
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   109, 0x401,                       STR_REPLACE_HELP_LEFT_ARRAY},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1279
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   109, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1280
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   109, 0x401,                       STR_REPLACE_HELP_RIGHT_ARRAY},
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4280
diff changeset
  1281
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   109, STR_NULL,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
074f734a91ca (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4933
diff changeset
  1282
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   110,   201, 0x0,                         STR_NULL},
4931
6e09e884257d (svn r6911) - Codechange: Add extra space to all purchase windows (and the replace window) to allow room for more text. (mart3p)
peter1138
parents: 4930
diff changeset
  1283
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   202,   213, STR_NULL,                    STR_RESIZE_BUTTON},
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1284
{   WIDGETS_END},
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1285
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1286
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1287
static const WindowDesc _replace_rail_vehicle_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1288
	WDP_AUTO, WDP_AUTO, 456, 252,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1289
	WC_REPLACE_VEHICLE,0,
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1290
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1291
	_replace_rail_vehicle_widgets,
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1292
	ReplaceVehicleWndProc
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1293
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1294
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1295
static const WindowDesc _replace_road_vehicle_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1296
	WDP_AUTO, WDP_AUTO, 456, 230,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1297
	WC_REPLACE_VEHICLE,0,
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1298
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1299
	_replace_road_vehicle_widgets,
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1300
	ReplaceVehicleWndProc
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1301
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1302
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1303
static const WindowDesc _replace_ship_aircraft_vehicle_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1304
	WDP_AUTO, WDP_AUTO, 456, 214,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1305
	WC_REPLACE_VEHICLE,0,
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1306
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1307
	_replace_ship_aircraft_vehicle_widgets,
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1308
	ReplaceVehicleWndProc
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1309
};
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1310
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1311
4542
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
  1312
static void ShowReplaceVehicleWindow(byte vehicletype)
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1313
{
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1314
	Window *w;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1315
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1316
	DeleteWindowById(WC_REPLACE_VEHICLE, vehicletype);
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1317
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1318
	switch (vehicletype) {
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1319
		case VEH_Train:
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1320
			w = AllocateWindowDescFront(&_replace_rail_vehicle_desc, vehicletype);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1321
			w->vscroll.cap  = 8;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1322
			w->resize.step_height = 14;
2970
77fa46c313c0 (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons
bjarni
parents: 2965
diff changeset
  1323
			WP(w, replaceveh_d).wagon_btnstate = true;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1324
			break;
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1325
		case VEH_Road:
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1326
			w = AllocateWindowDescFront(&_replace_road_vehicle_desc, vehicletype);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1327
			w->vscroll.cap  = 8;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1328
			w->resize.step_height = 14;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1329
			break;
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1330
		case VEH_Ship:
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1331
		case VEH_Aircraft:
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1332
			w = AllocateWindowDescFront(&_replace_ship_aircraft_vehicle_desc, vehicletype);
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1333
			w->vscroll.cap  = 4;
867
581154a08a78 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1334
			w->resize.step_height = 24;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1335
			break;
845
0c66e26fecb2 (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
  1336
		default: return;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1337
	}
4542
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
  1338
869
f211ac238c8e (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1339
	w->caption_color = _local_player;
4542
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
  1340
	WP(w, replaceveh_d).vehicletype = vehicletype;
842
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1341
	w->vscroll2.cap = w->vscroll.cap;   // these two are always the same
ebfd36603ab9 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1342
}
1246
45f15251412b (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1343
45f15251412b (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1344
void InitializeGUI(void)
45f15251412b (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1345
{
45f15251412b (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1346
	memset(&_sorting, 0, sizeof(_sorting));
45f15251412b (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1347
}
2552
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1348
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1349
/** Assigns an already open vehicle window to a new vehicle.
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1350
 * Assigns an already open vehicle window to a new vehicle. If the vehicle got
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1351
 * any sub window open (orders and so on) it will change owner too.
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1352
 * @param *from_v the current owner of the window
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1353
 * @param *to_v the new owner of the window
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1354
 */
2552
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1355
void ChangeVehicleViewWindow(const Vehicle *from_v, const Vehicle *to_v)
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1356
{
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1357
	Window *w;
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1358
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1359
	w = FindWindowById(WC_VEHICLE_VIEW, from_v->index);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1360
	if (w != NULL) {
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1361
		w->window_number = to_v->index;
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1362
		WP(w, vp_d).follow_vehicle = to_v->index;
2552
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1363
		SetWindowDirty(w);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1364
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1365
		w = FindWindowById(WC_VEHICLE_ORDERS, from_v->index);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1366
		if (w != NULL) {
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1367
			w->window_number = to_v->index;
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1368
			SetWindowDirty(w);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1369
		}
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1370
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1371
		w = FindWindowById(WC_VEHICLE_REFIT, from_v->index);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1372
		if (w != NULL) {
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1373
			w->window_number = to_v->index;
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1374
			SetWindowDirty(w);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1375
		}
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1376
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1377
		w = FindWindowById(WC_VEHICLE_DETAILS, from_v->index);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1378
		if (w != NULL) {
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1379
			w->window_number = to_v->index;
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1380
			SetWindowDirty(w);
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1381
		}
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1382
	}
fb174febb0b1 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1383
}
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1384
4665
582663bc63a6 (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
  1385
/*
582663bc63a6 (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
  1386
 * Start of functions regarding vehicle list windows
582663bc63a6 (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
  1387
 */
582663bc63a6 (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
  1388
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1389
enum {
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1390
	PLY_WND_PRC__OFFSET_TOP_WIDGET = 26,
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1391
	PLY_WND_PRC__SIZE_OF_ROW_SMALL = 26,
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1392
	PLY_WND_PRC__SIZE_OF_ROW_BIG   = 36,
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1393
};
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1394
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1395
enum VehicleListWindowWidgets {
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1396
	VLW_WIDGET_CLOSEBOX = 0,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1397
	VLW_WIDGET_CAPTION,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1398
	VLW_WIDGET_STICKY,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1399
	VLW_WIDGET_SORT_ORDER,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1400
	VLW_WIDGET_SORT_BY_TEXT,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1401
	VLW_WIDGET_SORT_BY_PULLDOWN,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1402
	VLW_WIDGET_EMPTY_TOP_RIGHT,
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1403
	VLW_WIDGET_LIST,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1404
	VLW_WIDGET_SCROLLBAR,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1405
	VLW_WIDGET_OTHER_PLAYER_FILLER,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1406
	VLW_WIDGET_NEW_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1407
	VLW_WIDGET_MANAGE_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1408
	VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4673
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1409
	VLW_WIDGET_STOP_ALL,
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1410
	VLW_WIDGET_START_ALL,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1411
	VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1412
	VLW_WIDGET_RESIZE,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1413
};
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1414
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1415
static const Widget _vehicle_list_widgets[] = {
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1416
	{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,             STR_018B_CLOSE_WINDOW},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1417
	{    WWT_CAPTION,  RESIZE_RIGHT,    14,    11,   247,     0,    13, 0x0,                  STR_018C_WINDOW_TITLE_DRAG_THIS},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1418
	{  WWT_STICKYBOX,     RESIZE_LR,    14,   248,   259,     0,    13, 0x0,                  STR_STICKY_BUTTON},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1419
	{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,    80,    14,    25, STR_SORT_BY,          STR_SORT_ORDER_TIP},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1420
	{      WWT_PANEL,   RESIZE_NONE,    14,    81,   235,    14,    25, 0x0,                  STR_SORT_CRITERIA_TIP},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1421
	{    WWT_TEXTBTN,   RESIZE_NONE,    14,   236,   247,    14,    25, STR_0225,             STR_SORT_CRITERIA_TIP},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1422
	{      WWT_PANEL,  RESIZE_RIGHT,    14,   248,   259,    14,    25, 0x0,                  STR_NULL},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1423
	{     WWT_MATRIX,     RESIZE_RB,    14,     0,   247,    26,   169, 0x0,                  STR_NULL},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1424
	{  WWT_SCROLLBAR,    RESIZE_LRB,    14,   248,   259,    26,   169, 0x0,                  STR_0190_SCROLL_BAR_SCROLLS_LIST},
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1425
	/* Widget to be shown for other players hiding the following 6 widgets */
5282
527e021c3278 (svn r7431) -Fix (r7418): GUI glitch when viewing other player's vehicle lists: bottom panel continued behind resize button.
peter1138
parents: 5274
diff changeset
  1426
	{      WWT_PANEL,    RESIZE_RTB,    14,     0,   247,   170,   181, 0x0,                  STR_NULL},
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1427
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1428
	{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   105,   170,   181, 0x0,                  STR_AVAILABLE_ENGINES_TIP},
5286
18289ef1929d (svn r7435) -Fix (r7418): Add proper tooltips to the manage list button instead of the sort tip
Darkvater
parents: 5282
diff changeset
  1429
	{    WWT_TEXTBTN,     RESIZE_TB,    14,   106,   211,   170,   181, STR_MANAGE_LIST,      STR_MANAGE_LIST_TIP},
18289ef1929d (svn r7435) -Fix (r7418): Add proper tooltips to the manage list button instead of the sort tip
Darkvater
parents: 5282
diff changeset
  1430
	{    WWT_TEXTBTN,     RESIZE_TB,    14,   212,   223,   170,   181, STR_0225,             STR_MANAGE_LIST_TIP},
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1431
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1432
	{ WWT_PUSHIMGBTN,     RESIZE_TB,    14,   224,   235,   170,   181, SPR_FLAG_VEH_STOPPED, STR_MASS_STOP_LIST_TIP},
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1433
	{ WWT_PUSHIMGBTN,     RESIZE_TB,    14,   236,   247,   170,   181, SPR_FLAG_VEH_RUNNING, STR_MASS_START_LIST_TIP},
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1434
	{      WWT_PANEL,    RESIZE_RTB,    14,   248,   247,   170,   181, 0x0,                  STR_NULL},
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1435
	{  WWT_RESIZEBOX,   RESIZE_LRTB,    14,   248,   259,   170,   181, 0x0,                  STR_RESIZE_BUTTON},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1436
	{   WIDGETS_END},
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1437
};
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1438
4665
582663bc63a6 (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
  1439
static void CreateVehicleListWindow(Window *w)
582663bc63a6 (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
  1440
{
582663bc63a6 (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
  1441
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
582663bc63a6 (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
  1442
	uint16 window_type = w->window_number & VLW_MASK;
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
  1443
	PlayerID player = (PlayerID)GB(w->window_number, 0, 8);
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1444
4665
582663bc63a6 (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
	vl->vehicle_type = GB(w->window_number, 11, 5);
4678
073e56e25e83 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
  1446
	vl->length_of_sort_list = 0;
073e56e25e83 (svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same allocation over and over if possible (like BuildDepotVehicleList() )
bjarni
parents: 4677
diff changeset
  1447
	vl->sort_list = NULL;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1448
	w->caption_color = player;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1449
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1450
	/* Hide the widgets that we will not use in this window
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1451
	 * Some windows contains actions only fit for the owner */
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1452
	if (player == _local_player) {
4702
5179f9adc5b3 (svn r6612) -Codechange: Use accessors for hidden_state.
belugas
parents: 4698
diff changeset
  1453
		HideWindowWidget(w, VLW_WIDGET_OTHER_PLAYER_FILLER);
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1454
		SetWindowWidgetDisabledState(w, VLW_WIDGET_NEW_VEHICLES, window_type != VLW_STANDARD);
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1455
	} else {
4758
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1456
		SetWindowWidgetsHiddenState(w, true,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1457
			VLW_WIDGET_NEW_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1458
			VLW_WIDGET_MANAGE_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1459
			VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4758
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1460
			VLW_WIDGET_STOP_ALL,
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1461
			VLW_WIDGET_START_ALL,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1462
			VLW_WIDGET_EMPTY_BOTTOM_RIGHT,
4758
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1463
			WIDGET_LIST_END);
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1464
	}
4665
582663bc63a6 (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
  1465
582663bc63a6 (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
  1466
	/* Set up the window widgets */
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1467
	switch (vl->vehicle_type) {
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1468
		case VEH_Train:
4686
4f4ac8a1445b (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1469
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_883D_TRAINS_CLICK_ON_TRAIN_FOR;
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1470
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_8815_NEW_VEHICLES;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1471
			break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1472
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1473
		case VEH_Road:
4686
4f4ac8a1445b (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1474
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_901A_ROAD_VEHICLES_CLICK_ON;
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1475
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_9004_NEW_VEHICLES;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1476
			break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1477
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1478
		case VEH_Ship:
4686
4f4ac8a1445b (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1479
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_9823_SHIPS_CLICK_ON_SHIP_FOR;
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1480
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_9804_NEW_SHIPS;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1481
			break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1482
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1483
		case VEH_Aircraft:
4686
4f4ac8a1445b (svn r6591) -Codechange: changed strings that used the word "depot" into one for each vehicle type
bjarni
parents: 4681
diff changeset
  1484
			w->widget[VLW_WIDGET_LIST].tooltips          = STR_A01F_AIRCRAFT_CLICK_ON_AIRCRAFT;
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1485
			w->widget[VLW_WIDGET_NEW_VEHICLES].data = STR_A003_NEW_AIRCRAFT;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1486
			break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1487
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1488
		default: NOT_REACHED();
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1489
	}
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1490
4665
582663bc63a6 (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
	switch (window_type) {
582663bc63a6 (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
		case VLW_SHARED_ORDERS:
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1493
			w->widget[VLW_WIDGET_CAPTION].data  = STR_VEH_WITH_SHARED_ORDERS_LIST;
4665
582663bc63a6 (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
  1494
			break;
582663bc63a6 (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
  1495
		case VLW_STANDARD: /* Company Name - standard widget setup */
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1496
			switch (vl->vehicle_type) {
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1497
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_881B_TRAINS;        break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1498
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_9001_ROAD_VEHICLES; break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1499
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_9805_SHIPS;         break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1500
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_A009_AIRCRAFT;      break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1501
				default: NOT_REACHED(); break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1502
			}
4665
582663bc63a6 (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
			break;
582663bc63a6 (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
		case VLW_STATION_LIST: /* Station Name */
582663bc63a6 (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
			switch (vl->vehicle_type) {
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1506
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_TRAINS;        break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1507
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_ROAD_VEHICLES; break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1508
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_SHIPS;         break;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1509
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_SCHEDULED_AIRCRAFT;      break;
4665
582663bc63a6 (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
				default: NOT_REACHED(); break;
582663bc63a6 (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
			}
582663bc63a6 (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
			break;
4681
7d7a89b32dd0 (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
  1513
7d7a89b32dd0 (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
  1514
		case VLW_DEPOT_LIST:
7d7a89b32dd0 (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
  1515
			switch (vl->vehicle_type) {
7d7a89b32dd0 (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
  1516
				case VEH_Train:    w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_TRAIN_DEPOT;    break;
7d7a89b32dd0 (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
  1517
				case VEH_Road:     w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_ROADVEH_DEPOT;  break;
7d7a89b32dd0 (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
  1518
				case VEH_Ship:     w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_SHIP_DEPOT;     break;
7d7a89b32dd0 (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
  1519
				case VEH_Aircraft: w->widget[VLW_WIDGET_CAPTION].data = STR_VEHICLE_LIST_AIRCRAFT_DEPOT; break;
7d7a89b32dd0 (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
  1520
				default: NOT_REACHED(); break;
7d7a89b32dd0 (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
  1521
			}
7d7a89b32dd0 (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
  1522
			break;
4665
582663bc63a6 (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
  1523
		default: NOT_REACHED(); break;
582663bc63a6 (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
	}
582663bc63a6 (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
582663bc63a6 (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
	switch (vl->vehicle_type) {
582663bc63a6 (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
		case VEH_Train:
582663bc63a6 (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
			w->resize.step_width = 1;
582663bc63a6 (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
			/* Fallthrough */
582663bc63a6 (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:
582663bc63a6 (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
			w->vscroll.cap = 7;
582663bc63a6 (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
			w->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_SMALL;
582663bc63a6 (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
			w->resize.height = 220 - (PLY_WND_PRC__SIZE_OF_ROW_SMALL * 3); // Minimum of 4 vehicles
582663bc63a6 (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
			break;
582663bc63a6 (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
		case VEH_Ship:
582663bc63a6 (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
  1536
		case VEH_Aircraft:
582663bc63a6 (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
			w->vscroll.cap = 4;
582663bc63a6 (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
			w->resize.step_height = PLY_WND_PRC__SIZE_OF_ROW_BIG;
582663bc63a6 (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
			break;
582663bc63a6 (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
		default: NOT_REACHED();
582663bc63a6 (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
	}
582663bc63a6 (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
  1542
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1543
	w->widget[VLW_WIDGET_LIST].data = (w->vscroll.cap << 8) + 1;
4665
582663bc63a6 (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
  1544
582663bc63a6 (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
  1545
	/* Set up sorting. Make the window-specific _sorting variable
582663bc63a6 (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
  1546
		* point to the correct global _sorting struct so we are freed
582663bc63a6 (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
  1547
		* from having conditionals during window operation */
582663bc63a6 (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
  1548
	switch (vl->vehicle_type) {
582663bc63a6 (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
  1549
		case VEH_Train:    vl->_sorting = &_sorting.train; break;
582663bc63a6 (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
  1550
		case VEH_Road:     vl->_sorting = &_sorting.roadveh; break;
582663bc63a6 (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
  1551
		case VEH_Ship:     vl->_sorting = &_sorting.ship; break;
582663bc63a6 (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
  1552
		case VEH_Aircraft: vl->_sorting = &_sorting.aircraft; break;
582663bc63a6 (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
  1553
		default: NOT_REACHED(); break;
582663bc63a6 (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
  1554
	}
582663bc63a6 (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
  1555
5650
aefc131bf5ce (svn r8149) [cbh] - Sync with -r8038:8038 from trunk (the cpp merge)
celestar
parents: 5649
diff changeset
  1556
	vl->l.flags = VL_REBUILD | (vl->_sorting->order ? VL_DESC : VL_NONE);
4665
582663bc63a6 (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
  1557
	vl->l.sort_type = vl->_sorting->criteria;
582663bc63a6 (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
  1558
	vl->sort_list = NULL;
582663bc63a6 (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
  1559
	vl->l.resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;	// Set up resort timer
582663bc63a6 (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
  1560
}
582663bc63a6 (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
  1561
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1562
static void DrawSmallOrderList(const Vehicle *v, int x, int y)
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1563
{
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1564
	const Order *order;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1565
	int sel, i = 0;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1566
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1567
	sel = v->cur_order_index;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1568
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1569
	FOR_VEHICLE_ORDERS(v, order) {
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1570
		if (sel == 0) DrawString(x - 6, y, STR_SMALL_RIGHT_ARROW, 16);
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1571
		sel--;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1572
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1573
		if (order->type == OT_GOTO_STATION) {
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1574
			if (v->type == VEH_Ship && IsBuoy(GetStation(order->dest))) continue;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1575
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1576
			SetDParam(0, order->dest);
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1577
			DrawString(x, y, STR_A036, 0);
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1578
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1579
			y += 6;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1580
			if (++i == 4) break;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1581
		}
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1582
	}
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1583
}
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1584
4665
582663bc63a6 (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
  1585
static void DrawVehicleListWindow(Window *w)
582663bc63a6 (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
  1586
{
582663bc63a6 (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
  1587
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
582663bc63a6 (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
	int x = 2;
582663bc63a6 (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
	int y = PLY_WND_PRC__OFFSET_TOP_WIDGET;
582663bc63a6 (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
	int max;
582663bc63a6 (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
	int i;
582663bc63a6 (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
	const PlayerID owner = (PlayerID)w->caption_color;
582663bc63a6 (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
	const Player *p = GetPlayer(owner);
582663bc63a6 (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
  1594
	const uint16 window_type = w->window_number & VLW_MASK;
4681
7d7a89b32dd0 (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
  1595
	const StationID station          = (window_type == VLW_STATION_LIST)  ? GB(w->window_number, 16, 16) : INVALID_STATION;
7d7a89b32dd0 (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
  1596
	const OrderID order              = (window_type == VLW_SHARED_ORDERS) ? GB(w->window_number, 16, 16) : INVALID_ORDER;
7d7a89b32dd0 (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
  1597
	const uint16 depot_airport_index = (window_type == VLW_DEPOT_LIST)    ? GB(w->window_number, 16, 16) : INVALID_STATION;
4665
582663bc63a6 (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
  1598
4681
7d7a89b32dd0 (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
  1599
	BuildVehicleList(vl, owner, station, order, depot_airport_index, window_type);
4665
582663bc63a6 (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
  1600
	SortVehicleList(vl);
582663bc63a6 (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
  1601
	SetVScrollCount(w, vl->l.list_length);
582663bc63a6 (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
  1602
582663bc63a6 (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
  1603
	/* draw the widgets */
582663bc63a6 (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
  1604
	switch (window_type) {
582663bc63a6 (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
  1605
		case VLW_SHARED_ORDERS: /* Shared Orders */
582663bc63a6 (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
  1606
			if (vl->l.list_length == 0) {
4735
cd7be58d0551 (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
  1607
				/* We can't open this window without vehicles using this order
cd7be58d0551 (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
  1608
				 * and we should close the window when deleting the order      */
cd7be58d0551 (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
  1609
				NOT_REACHED();
4665
582663bc63a6 (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
  1610
			}
582663bc63a6 (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
  1611
			SetDParam(0, w->vscroll.count);
582663bc63a6 (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
  1612
			break;
582663bc63a6 (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
  1613
582663bc63a6 (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
  1614
		case VLW_STANDARD: /* Company Name */
582663bc63a6 (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
  1615
			SetDParam(0, p->name_1);
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1616
			SetDParam(1, p->name_2);
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1617
			SetDParam(2, w->vscroll.count);
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1618
			break;
4665
582663bc63a6 (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
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1620
		case VLW_STATION_LIST: /* Station Name */
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1621
			SetDParam(0, station);
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1622
			SetDParam(1, w->vscroll.count);
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1623
			break;
4681
7d7a89b32dd0 (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
  1624
7d7a89b32dd0 (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
  1625
		case VLW_DEPOT_LIST:
7d7a89b32dd0 (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
  1626
			switch (vl->vehicle_type) {
7d7a89b32dd0 (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
  1627
				case VEH_Train:    SetDParam(0, STR_8800_TRAIN_DEPOT);        break;
7d7a89b32dd0 (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
  1628
				case VEH_Road:     SetDParam(0, STR_9003_ROAD_VEHICLE_DEPOT); break;
7d7a89b32dd0 (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
  1629
				case VEH_Ship:     SetDParam(0, STR_9803_SHIP_DEPOT);         break;
7d7a89b32dd0 (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
  1630
				case VEH_Aircraft: SetDParam(0, STR_A002_AIRCRAFT_HANGAR);    break;
7d7a89b32dd0 (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
  1631
				default: NOT_REACHED(); break;
7d7a89b32dd0 (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
  1632
			}
7d7a89b32dd0 (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
  1633
			if (vl->vehicle_type == VEH_Aircraft) {
7d7a89b32dd0 (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
  1634
				SetDParam(1, depot_airport_index); // Airport name
7d7a89b32dd0 (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
  1635
			} else {
7d7a89b32dd0 (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
  1636
				SetDParam(1, GetDepot(depot_airport_index)->town_index);
7d7a89b32dd0 (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
  1637
			}
7d7a89b32dd0 (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
  1638
			SetDParam(2, w->vscroll.count);
7d7a89b32dd0 (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
  1639
			break;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1640
		default: NOT_REACHED(); break;
4665
582663bc63a6 (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
	}
582663bc63a6 (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
4758
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1643
	SetWindowWidgetsDisabledState(w, vl->l.list_length == 0,
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1644
		VLW_WIDGET_MANAGE_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1645
		VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN,
4758
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1646
		VLW_WIDGET_STOP_ALL,
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1647
		VLW_WIDGET_START_ALL,
c955385b5432 (svn r6672) -Codechange: [depot & vehicle windows] applied SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
bjarni
parents: 4753
diff changeset
  1648
		WIDGET_LIST_END);
4722
a61140917301 (svn r6634) -Fix(r6377): Do not change a widget state after a DrawWindowWidgets, as it is a bit useless
belugas
parents: 4712
diff changeset
  1649
4665
582663bc63a6 (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
	DrawWindowWidgets(w);
582663bc63a6 (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
  1651
582663bc63a6 (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
  1652
	/* draw sorting criteria string */
582663bc63a6 (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
  1653
	DrawString(85, 15, _vehicle_sort_listing[vl->l.sort_type], 0x10);
582663bc63a6 (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
  1654
	/* draw arrow pointing up/down for ascending/descending sorting */
582663bc63a6 (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
	DoDrawString(vl->l.flags & VL_DESC ? DOWNARROW : UPARROW, 69, 15, 0x10);
582663bc63a6 (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
  1656
582663bc63a6 (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
	max = min(w->vscroll.pos + w->vscroll.cap, vl->l.list_length);
582663bc63a6 (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
  1658
	for (i = w->vscroll.pos; i < max; ++i) {
582663bc63a6 (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
  1659
		const Vehicle *v = vl->sort_list[i];
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1660
		StringID str;
4665
582663bc63a6 (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
  1661
582663bc63a6 (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
  1662
		SetDParam(0, v->profit_this_year);
582663bc63a6 (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
		SetDParam(1, v->profit_last_year);
582663bc63a6 (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
4753
f3360710c4a3 (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
  1665
		DrawVehicleImage(v, x + 19, y + 6, w->widget[VLW_WIDGET_LIST].right - w->widget[VLW_WIDGET_LIST].left - 20, 0, INVALID_VEHICLE);
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1666
		DrawString(x + 19, y + w->resize.step_height - 8, STR_0198_PROFIT_THIS_YEAR_LAST_YEAR, 0);
4665
582663bc63a6 (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
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1668
		if ((v->type == VEH_Train    && v->string_id != STR_SV_TRAIN_NAME)   ||
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1669
			(v->type == VEH_Road     && v->string_id != STR_SV_ROADVEH_NAME) ||
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1670
			(v->type == VEH_Ship     && v->string_id != STR_SV_SHIP_NAME)    ||
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1671
			(v->type == VEH_Aircraft && v->string_id != STR_SV_AIRCRAFT_NAME)) {
4665
582663bc63a6 (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
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1673
			/* The vehicle got a name so we will print it */
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1674
			SetDParam(0, v->string_id);
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1675
			DrawString(x + 19, y, STR_01AB, 0);
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1676
		}
4665
582663bc63a6 (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
  1677
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1678
		if (w->resize.step_height == PLY_WND_PRC__SIZE_OF_ROW_BIG) DrawSmallOrderList(v, x + 138, y);
4665
582663bc63a6 (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
  1679
4734
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1680
		if (IsVehicleInDepot(v)) {
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1681
			str = STR_021F;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1682
		} else {
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1683
			str = (v->age > v->max_age - 366) ? STR_00E3 : STR_00E2;
20770a208a04 (svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing code
bjarni
parents: 4726
diff changeset
  1684
		}
4665
582663bc63a6 (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
582663bc63a6 (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
		SetDParam(0, v->unitnumber);
582663bc63a6 (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
		DrawString(x, y + 2, str, 0);
582663bc63a6 (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
  1688
582663bc63a6 (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
		DrawVehicleProfitButton(v, x, y + 13);
582663bc63a6 (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
582663bc63a6 (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
		y += w->resize.step_height;
582663bc63a6 (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
  1692
	}
582663bc63a6 (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
  1693
}
582663bc63a6 (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
  1694
4449
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1695
/*
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1696
 * bitmask for w->window_number
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1697
 * 0-7 PlayerID (owner)
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1698
 * 8-10 window type (use flags in vehicle_gui.h)
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1699
 * 11-15 vehicle type (using VEH_, but can be compressed to fewer bytes if needed)
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1700
 * 16-31 StationID or OrderID depending on window type (bit 8-10)
7b1d5a6d15be (svn r6227) -Codechange: added window type flags to use with PlayerVehWndProc
bjarni
parents: 4442
diff changeset
  1701
 **/
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1702
void PlayerVehWndProc(Window *w, WindowEvent *e)
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1703
{
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1704
	vehiclelist_d *vl = &WP(w, vehiclelist_d);
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1705
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1706
	switch (e->event) {
4665
582663bc63a6 (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
  1707
		case WE_CREATE:
582663bc63a6 (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
  1708
			CreateVehicleListWindow(w);
582663bc63a6 (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
  1709
			break;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1710
4665
582663bc63a6 (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
  1711
		case WE_PAINT:
582663bc63a6 (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
  1712
			DrawVehicleListWindow(w);
582663bc63a6 (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
  1713
			break;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1714
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1715
		case WE_CLICK: {
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1716
			switch (e->we.click.widget) {
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1717
				case VLW_WIDGET_SORT_ORDER: /* Flip sorting method ascending/descending */
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1718
					vl->l.flags ^= VL_DESC;
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1719
					vl->l.flags |= VL_RESORT;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1720
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1721
					vl->_sorting->order = !!(vl->l.flags & VL_DESC);
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1722
					SetWindowDirty(w);
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1723
					break;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1724
				case VLW_WIDGET_SORT_BY_TEXT: case VLW_WIDGET_SORT_BY_PULLDOWN:/* Select sorting criteria dropdown menu */
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1725
					ShowDropDownMenu(w, _vehicle_sort_listing, vl->l.sort_type, VLW_WIDGET_SORT_BY_PULLDOWN, 0, 0);
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1726
					return;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1727
				case VLW_WIDGET_LIST: { /* Matrix to show vehicles */
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1728
					uint32 id_v = (e->we.click.pt.y - PLY_WND_PRC__OFFSET_TOP_WIDGET) / w->resize.step_height;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1729
					const Vehicle *v;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1730
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1731
					if (id_v >= w->vscroll.cap) return; // click out of bounds
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1732
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1733
					id_v += w->vscroll.pos;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1734
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1735
					if (id_v >= vl->l.list_length) return; // click out of list bound
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1736
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1737
					v = vl->sort_list[id_v];
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1738
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1739
					switch (vl->vehicle_type) {
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1740
						case VEH_Train: ShowTrainViewWindow(v); break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1741
						case VEH_Road: ShowRoadVehViewWindow(v); break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1742
						case VEH_Ship: ShowShipViewWindow(v); break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1743
						case VEH_Aircraft: ShowAircraftViewWindow(v); break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1744
						default: NOT_REACHED(); break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1745
					}
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1746
				} break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1747
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1748
				case VLW_WIDGET_NEW_VEHICLES:
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1749
					switch (vl->vehicle_type) {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1750
						case VEH_Train: ShowBuildTrainWindow(0); break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1751
						case VEH_Road:  ShowBuildRoadVehWindow(0); break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1752
						case VEH_Ship:  ShowBuildShipWindow(0); break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1753
						case VEH_Aircraft: ShowBuildVehicleWindow(0, vl->vehicle_type); break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1754
					}
4506
0d8fcc0a4e49 (svn r6291) -Feature: Vehicle lists from the station window now also got the goto depot button
bjarni
parents: 4498
diff changeset
  1755
					break;
4465
852cf43b354f (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
  1756
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1757
				case VLW_WIDGET_MANAGE_VEHICLES:
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1758
				case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN: {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1759
					static StringID action_str[] = {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1760
						STR_REPLACE_VEHICLES,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1761
						STR_SEND_FOR_SERVICING,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1762
						STR_NULL,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1763
						INVALID_STRING_ID
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1764
					};
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1765
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1766
					static const StringID depot_name[] = {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1767
						STR_SEND_TRAIN_TO_DEPOT,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1768
						STR_SEND_ROAD_VEHICLE_TO_DEPOT,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1769
						STR_SEND_SHIP_TO_DEPOT,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1770
						STR_SEND_AIRCRAFT_TO_HANGAR
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1771
					};
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1772
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1773
					/* XXX - Substite string since the dropdown cannot handle dynamic strings */
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1774
					action_str[2] = depot_name[vl->vehicle_type - VEH_Train];
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1775
					ShowDropDownMenu(w, action_str, 0, VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN, 0, 0);
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1776
					break;
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1777
				}
4673
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1778
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1779
				case VLW_WIDGET_STOP_ALL:
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1780
				case VLW_WIDGET_START_ALL:
4762
58d2f43ebdda (svn r6676) -Fix: [vehicle list windows] mass start/stop now works correctly in shared orders and station lists
bjarni
parents: 4758
diff changeset
  1781
					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
a2cdac5529f7 (svn r6570) -Feature: added "start all" and "stop all" buttons to the vehicle lists
bjarni
parents: 4669
diff changeset
  1782
					break;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1783
			}
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1784
		}	break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1785
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1786
		case WE_DROPDOWN_SELECT: /* we have selected a dropdown item in the list */
5274
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1787
			switch (e->we.dropdown.button) {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1788
				case VLW_WIDGET_SORT_BY_PULLDOWN:
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1789
					if (vl->l.sort_type != e->we.dropdown.index) {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1790
						// value has changed -> resort
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1791
						vl->l.flags |= VL_RESORT;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1792
						vl->l.sort_type = e->we.dropdown.index;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1793
						vl->_sorting->criteria = vl->l.sort_type;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1794
					}
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1795
					break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1796
				case VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN:
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1797
					assert(vl->l.list_length != 0);
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1798
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1799
					switch (e->we.dropdown.index) {
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1800
						case 0: /* Replace window */
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1801
							ShowReplaceVehicleWindow(vl->vehicle_type);
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1802
							break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1803
						case 1: /* Send for servicing */
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1804
							DoCommandP(0, GB(w->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1805
								(w->window_number & VLW_MASK) | DEPOT_MASS_SEND | DEPOT_SERVICE,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1806
								NULL,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1807
								CMD_SEND_TO_DEPOT(vl->vehicle_type));
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1808
							break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1809
						case 2: /* Send to Depots */
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1810
							DoCommandP(0, GB(w->window_number, 16, 16) /* StationID or OrderID (depending on VLW) */,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1811
								(w->window_number & VLW_MASK) | DEPOT_MASS_SEND,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1812
								NULL,
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1813
								CMD_SEND_TO_DEPOT(vl->vehicle_type));
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1814
							break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1815
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1816
						default: NOT_REACHED();
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1817
					}
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1818
					break;
8bb2b6d99ce7 (svn r7418) -Codechange/Feature: Put back the 'New Vehicles' button in the vehicle list window. As
Darkvater
parents: 5269
diff changeset
  1819
				default: NOT_REACHED();
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1820
			}
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1821
			SetWindowDirty(w);
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1822
			break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1823
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1824
		case WE_DESTROY:
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1825
			free((void*)vl->sort_list);
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1826
			break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1827
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1828
		case WE_TICK: /* resort the list every 20 seconds orso (10 days) */
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1829
			if (--vl->l.resort_timer == 0) {
4546
9345e0569655 (svn r6378) -Codechange: Rename VLW_FLAGS to VLW_MASK as it is a mask
Darkvater
parents: 4545
diff changeset
  1830
				StationID station = ((w->window_number & VLW_MASK) == VLW_STATION_LIST) ? GB(w->window_number, 16, 16) : INVALID_STATION;
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1831
				PlayerID owner = (PlayerID)w->caption_color;
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1832
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5297
diff changeset
  1833
				DEBUG(misc, 3, "Periodic resort %d list player %d at station %d", vl->vehicle_type, owner, station);
4545
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1834
				vl->l.resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;
ac6c6a32b18f (svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on every WE_PAINT
Darkvater
parents: 4542
diff changeset
  1835
				vl->l.flags |= VL_RESORT;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1836
				SetWindowDirty(w);
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1837
			}
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1838
			break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1839
4542
24f60077489a (svn r6372) -Codechange: static, unneeded decleration in headers, superfluous header includes
Darkvater
parents: 4541
diff changeset
  1840
		case WE_RESIZE: /* Update the scroll + matrix */
4634
897461a3e9ca (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4581
diff changeset
  1841
			w->vscroll.cap += e->we.sizing.diff.y / (int)w->resize.step_height;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1842
			w->widget[VLW_WIDGET_LIST].data = (w->vscroll.cap << 8) + 1;
4442
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1843
			break;
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1844
	}
8d8d0c2df7cb (svn r6215) -Codechange: [vehicle list windows] unified Player(vehicle)WndProc into PlayerVehWndProc
bjarni
parents: 4434
diff changeset
  1845
}
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1846
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1847
static const WindowDesc _player_vehicle_list_train_desc = {
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1848
	WDP_AUTO, WDP_AUTO, 260, 182,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1849
	WC_TRAINS_LIST, 0,
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1850
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1851
	_vehicle_list_widgets,
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1852
	PlayerVehWndProc
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1853
};
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1854
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1855
static const WindowDesc _player_vehicle_list_road_veh_desc = {
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1856
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
3d907a5bae52 (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
  1857
	WC_ROADVEH_LIST,0,
3d907a5bae52 (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
  1858
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
3d907a5bae52 (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
  1859
	_vehicle_list_widgets,
3d907a5bae52 (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
  1860
	PlayerVehWndProc
3d907a5bae52 (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
  1861
};
3d907a5bae52 (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
  1862
3d907a5bae52 (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
  1863
static const WindowDesc _player_vehicle_list_ship_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1864
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
3d907a5bae52 (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
  1865
	WC_SHIPS_LIST,0,
3d907a5bae52 (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
  1866
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
3d907a5bae52 (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
  1867
	_vehicle_list_widgets,
3d907a5bae52 (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
  1868
	PlayerVehWndProc
3d907a5bae52 (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
  1869
};
3d907a5bae52 (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
  1870
3d907a5bae52 (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
  1871
static const WindowDesc _player_vehicle_list_aircraft_desc = {
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 5005
diff changeset
  1872
	WDP_AUTO, WDP_AUTO, 260, 182,
4726
3d907a5bae52 (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
  1873
	WC_AIRCRAFT_LIST,0,
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1874
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1875
	_vehicle_list_widgets,
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1876
	PlayerVehWndProc
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1877
};
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1878
4681
7d7a89b32dd0 (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
  1879
static void ShowVehicleListWindowLocal(PlayerID player, byte vehicle_type, StationID station, OrderID order, uint16 depot_airport_index)
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1880
{
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1881
	Window *w;
5005
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1882
	WindowNumber num;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1883
5005
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1884
	if (!IsValidPlayer(player)) return;
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1885
21e84e53c732 (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4999
diff changeset
  1886
	num = (vehicle_type << 11) | player;
4681
7d7a89b32dd0 (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
  1887
	if (order != INVALID_ORDER) {
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1888
		num |= (order << 16) | VLW_SHARED_ORDERS;
4681
7d7a89b32dd0 (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
  1889
	} else if (depot_airport_index != INVALID_STATION) {
7d7a89b32dd0 (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
  1890
		num |= (depot_airport_index << 16) | VLW_DEPOT_LIST;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1891
	} else if (station == INVALID_STATION) {
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1892
		num |= VLW_STANDARD;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1893
	} else {
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1894
		num |= (station << 16) | VLW_STATION_LIST;
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1895
	}
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1896
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1897
	/* The vehicle list windows have been unified. Just some strings need
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1898
	 * to be changed which happens in the WE_CREATE event and resizing
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1899
	 * some of the windows to the correct size */
4726
3d907a5bae52 (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
  1900
	switch (vehicle_type) {
3d907a5bae52 (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
  1901
		default: NOT_REACHED();
5269
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1902
		case VEH_Train:
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1903
			w = AllocateWindowDescFront(&_player_vehicle_list_train_desc, num);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1904
			if (w != NULL) ResizeWindow(w, 65, 38);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1905
			break;
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1906
		case VEH_Road:
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1907
			w = AllocateWindowDescFront(&_player_vehicle_list_road_veh_desc, num);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1908
			if (w != NULL) ResizeWindow(w, 0, 38);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1909
			break;
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1910
		case VEH_Ship:
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1911
			w = AllocateWindowDescFront(&_player_vehicle_list_ship_desc, num);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1912
			break;
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1913
		case VEH_Aircraft:
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1914
			w = AllocateWindowDescFront(&_player_vehicle_list_aircraft_desc, num);
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1915
			break;
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1916
	}
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1917
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1918
	if (w != NULL) {
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1919
		/* Set the minimum window size to the current window size */
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1920
		w->resize.width = w->width;
3f3eead5ace2 (svn r7410) -Codechange/Fix: Remove useless and unfollowable programmatic-resize, and implement it
Darkvater
parents: 5125
diff changeset
  1921
		w->resize.height = w->height;
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1922
	}
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1923
}
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1924
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1925
void ShowVehicleListWindow(PlayerID player, StationID station, byte vehicle_type)
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1926
{
4681
7d7a89b32dd0 (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
  1927
	ShowVehicleListWindowLocal(player, vehicle_type, station, INVALID_ORDER, INVALID_STATION);
4668
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1928
}
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1929
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1930
void ShowVehWithSharedOrders(Vehicle *v, byte vehicle_type)
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1931
{
8b6035c51188 (svn r6562) -Codechange: merged the vehicle list window widget arrays
bjarni
parents: 4665
diff changeset
  1932
	if (v->orders == NULL) return; // no shared list to show
4681
7d7a89b32dd0 (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
  1933
	ShowVehicleListWindowLocal(v->owner, vehicle_type, INVALID_STATION, v->orders->index, INVALID_STATION);
4669
43b14210d7bd (svn r6565) - Fix (r6562): Missing newline at EOF caused a compiler warning
peter1138
parents: 4668
diff changeset
  1934
}
4681
7d7a89b32dd0 (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
  1935
7d7a89b32dd0 (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
  1936
void ShowVehDepotOrders(PlayerID player, byte vehicle_type, TileIndex depot_tile)
7d7a89b32dd0 (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
  1937
{
7d7a89b32dd0 (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
  1938
	uint16 depot_airport_index;
7d7a89b32dd0 (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
  1939
7d7a89b32dd0 (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
  1940
	if (vehicle_type == VEH_Aircraft) {
7d7a89b32dd0 (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
  1941
		depot_airport_index = GetStationIndex(depot_tile);
7d7a89b32dd0 (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
  1942
	} else {
7d7a89b32dd0 (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
  1943
		Depot *depot = GetDepotByTile(depot_tile);
7d7a89b32dd0 (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
  1944
		if (depot == NULL) return; // no depot to show
7d7a89b32dd0 (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
  1945
		depot_airport_index = depot->index;
7d7a89b32dd0 (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
  1946
	}
7d7a89b32dd0 (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
  1947
	ShowVehicleListWindowLocal(player, vehicle_type, INVALID_STATION, INVALID_ORDER, depot_airport_index);
7d7a89b32dd0 (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
  1948
}