vehicle_gui.c
author peter1138
Fri, 03 Feb 2006 07:45:58 +0000
changeset 2961 f83710dba47c
parent 2951 2de6d3a59743
child 2962 f0a49b646c48
permissions -rw-r--r--
(svn r3523) Undefine helper macros after using them
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
     3
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1859
diff changeset
     4
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1294
diff changeset
     5
#include "debug.h"
2163
b17b313113a0 (svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents: 2159
diff changeset
     6
#include "functions.h"
2154
f86c59e73a16 (svn r2664) Remove depedency on player.h from variables.h
tron
parents: 1926
diff changeset
     7
#include "player.h"
2466
1aa260b43faa (svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
tron
parents: 2462
diff changeset
     8
#include "station.h"
1309
4403a69da4f8 (svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents: 1299
diff changeset
     9
#include "strings.h"
1363
775a7ee52369 (svn r1867) Include tables/sprites.h only in files which need it
tron
parents: 1309
diff changeset
    10
#include "table/sprites.h"
507
04b5403aaf6b (svn r815) Include strings.h only in the files which need it.
tron
parents: 505
diff changeset
    11
#include "table/strings.h"
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents:
diff changeset
    12
#include "vehicle.h"
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    13
#include "window.h"
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    14
#include "engine.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    15
#include "gui.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    16
#include "command.h"
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    17
#include "gfx.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    18
#include "variables.h"
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    19
#include "vehicle_gui.h"
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
    20
#include "viewport.h"
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
    21
#include "train.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    22
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    23
Sorting _sorting;
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    24
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    25
static uint32 _internal_name_sorter_id; // internal StringID for default vehicle-names
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    26
static uint32 _last_vehicle_idx;        // cached index to hopefully speed up name-sorting
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2154
diff changeset
    27
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
    28
2569
fe379f11f6bf (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
    29
static uint16 _player_num_engines[TOTAL_NUM_ENGINES];
2520
8a52362c4ada (svn r3049) Replace byte/int/uint by RailType where appropriate
tron
parents: 2519
diff changeset
    30
static RailType _railtype_selected_in_replace_gui;
2288
2e27113b0611 (svn r2812) Move variables, which only vehicle_gui.c needs to know about, there
tron
parents: 2206
diff changeset
    31
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    32
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    33
typedef int CDECL VehicleSortListingTypeFunction(const void*, const void*);
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    34
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    35
static VehicleSortListingTypeFunction VehicleUnsortedSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    36
static VehicleSortListingTypeFunction VehicleNumberSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    37
static VehicleSortListingTypeFunction VehicleNameSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    38
static VehicleSortListingTypeFunction VehicleAgeSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    39
static VehicleSortListingTypeFunction VehicleProfitThisYearSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    40
static VehicleSortListingTypeFunction VehicleProfitLastYearSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    41
static VehicleSortListingTypeFunction VehicleCargoSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    42
static VehicleSortListingTypeFunction VehicleReliabilitySorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    43
static VehicleSortListingTypeFunction VehicleMaxSpeedSorter;
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    44
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    45
static VehicleSortListingTypeFunction* const _vehicle_sorter[] = {
505
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    46
	&VehicleUnsortedSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    47
	&VehicleNumberSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    48
	&VehicleNameSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    49
	&VehicleAgeSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    50
	&VehicleProfitThisYearSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    51
	&VehicleProfitLastYearSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    52
	&VehicleCargoSorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    53
	&VehicleReliabilitySorter,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    54
	&VehicleMaxSpeedSorter
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    55
};
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    56
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    57
const StringID _vehicle_sort_listing[] = {
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    58
	STR_SORT_BY_UNSORTED,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    59
	STR_SORT_BY_NUMBER,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    60
	STR_SORT_BY_DROPDOWN_NAME,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    61
	STR_SORT_BY_AGE,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    62
	STR_SORT_BY_PROFIT_THIS_YEAR,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    63
	STR_SORT_BY_PROFIT_LAST_YEAR,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    64
	STR_SORT_BY_TOTAL_CAPACITY_PER_CARGOTYPE,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    65
	STR_SORT_BY_RELIABILITY,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    66
	STR_SORT_BY_MAX_SPEED,
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    67
	INVALID_STRING_ID
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    68
};
1d5e770d2ce4 (svn r813) Push two tables from vehicle_gui.h into vehicle_gui.c - they were in the binary 48 (!) times.
tron
parents: 243
diff changeset
    69
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
    70
static const StringID _rail_types_list[] = {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    71
	STR_RAIL_VEHICLES,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    72
	STR_MONORAIL_VEHICLES,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    73
	STR_MAGLEV_VEHICLES,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    74
	INVALID_STRING_ID
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    75
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
    76
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    77
void RebuildVehicleLists(void)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    78
{
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    79
	Window *w;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    80
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    81
	for (w = _windows; w != _last_window; ++w)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    82
		switch (w->window_class) {
967
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    83
		case WC_TRAINS_LIST: case WC_ROADVEH_LIST:
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    84
		case WC_SHIPS_LIST:  case WC_AIRCRAFT_LIST:
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    85
			WP(w, vehiclelist_d).flags |= VL_REBUILD;
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    86
			SetWindowDirty(w);
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    87
			break;
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    88
		default: break;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    89
		}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    90
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    91
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    92
void ResortVehicleLists(void)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    93
{
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    94
	Window *w;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    95
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    96
	for (w = _windows; w != _last_window; ++w)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
    97
		switch (w->window_class) {
967
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    98
		case WC_TRAINS_LIST: case WC_ROADVEH_LIST:
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
    99
		case WC_SHIPS_LIST:  case WC_AIRCRAFT_LIST:
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
   100
			WP(w, vehiclelist_d).flags |= VL_RESORT;
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
   101
			SetWindowDirty(w);
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
   102
			break;
124257e8befa (svn r1460) -Fix: [1099225] Bug Fix - Vehicle Lists not updated at Acqusition (thx tamlin and mpetrov) This also fixes some bug but can't find i right now.
darkvater
parents: 945
diff changeset
   103
		default: break;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   104
		}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   105
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   106
2466
1aa260b43faa (svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
tron
parents: 2462
diff changeset
   107
void BuildVehicleList(vehiclelist_d* vl, int type, PlayerID owner, StationID station)
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   108
{
2818
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   109
	SortStruct* sort_list;
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
   110
	uint subtype = (type != VEH_Aircraft) ? Train_Front : 2;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   111
	uint n = 0;
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   112
	uint i;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   113
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   114
	if (!(vl->flags & VL_REBUILD)) return;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   115
2818
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   116
	sort_list = malloc(GetVehiclePoolSize() * sizeof(sort_list[0]));
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   117
	if (sort_list == NULL) {
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   118
		error("Could not allocate memory for the vehicle-sorting-list");
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   119
	}
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   120
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   121
	DEBUG(misc, 1) ("Building vehicle list for player %d station %d...",
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   122
		owner, station);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   123
2466
1aa260b43faa (svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
tron
parents: 2462
diff changeset
   124
	if (station != INVALID_STATION) {
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   125
		const Vehicle *v;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   126
		FOR_ALL_VEHICLES(v) {
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
   127
			if (v->type == type && (
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   128
						(type == VEH_Train && IsFrontEngine(v)) ||
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   129
						(type != VEH_Train && v->subtype <= subtype)
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   130
					)) {
1024
5e446b5b3ec5 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 1017
diff changeset
   131
				const Order *order;
5e446b5b3ec5 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 1017
diff changeset
   132
5e446b5b3ec5 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 1017
diff changeset
   133
				FOR_VEHICLE_ORDERS(v, order) {
5e446b5b3ec5 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 1017
diff changeset
   134
					if (order->type == OT_GOTO_STATION && order->station == station) {
2818
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   135
						sort_list[n].index = v->index;
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   136
						sort_list[n].owner = v->owner;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   137
						++n;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   138
						break;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   139
					}
1024
5e446b5b3ec5 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 1017
diff changeset
   140
				}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   141
			}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   142
		}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   143
	} else {
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   144
		const Vehicle *v;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   145
		FOR_ALL_VEHICLES(v) {
2676
59b65b4fb480 (svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents: 2639
diff changeset
   146
			if (v->type == type && v->owner == owner && (
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   147
						(type == VEH_Train && IsFrontEngine(v)) ||
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   148
						(type != VEH_Train && v->subtype <= subtype)
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   149
					)) {
2818
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   150
				sort_list[n].index = v->index;
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   151
				sort_list[n].owner = v->owner;
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   152
				++n;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   153
			}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   154
		}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   155
	}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   156
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   157
	free(vl->sort_list);
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   158
	vl->sort_list = malloc(n * sizeof(vl->sort_list[0]));
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   159
	if (n != 0 && vl->sort_list == NULL) {
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   160
		error("Could not allocate memory for the vehicle-sorting-list");
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2848
diff changeset
   161
	}
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   162
	vl->list_length = n;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   163
2818
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   164
	for (i = 0; i < n; ++i) vl->sort_list[i] = sort_list[i];
b61038e1a75c (svn r3366) Make an unnecessarily global variable local
tron
parents: 2811
diff changeset
   165
	free(sort_list);
588
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   166
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   167
	vl->flags &= ~VL_REBUILD;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   168
	vl->flags |= VL_RESORT;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   169
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   170
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   171
void SortVehicleList(vehiclelist_d *vl)
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   172
{
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   173
	if (!(vl->flags & VL_RESORT)) return;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   174
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   175
	_internal_sort_order = vl->flags & VL_DESC;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   176
	_internal_name_sorter_id = STR_SV_TRAIN_NAME;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   177
	_last_vehicle_idx = 0; // used for "cache" in namesorting
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   178
	qsort(vl->sort_list, vl->list_length, sizeof(vl->sort_list[0]),
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   179
		_vehicle_sorter[vl->sort_type]);
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   180
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   181
	vl->resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   182
	vl->flags &= ~VL_RESORT;
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   183
}
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   184
03521b270f62 (svn r1009) -Feature: per-station vehicle lists
tron
parents: 579
diff changeset
   185
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
   186
/* General Vehicle GUI based procedures that are independent of vehicle types */
1093
4fdc46eaf423 (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents: 1067
diff changeset
   187
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
   188
{
2519
beb11a5ac48c (svn r3048) Replace 0/1/2 by RAILTYPE_RAIL/MONO/MAGLEV where appropriate
tron
parents: 2477
diff changeset
   189
	_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
   190
}
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
   191
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
   192
// draw the vehicle profit button in the vehicle list window.
2436
7d5df545bd5d (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2375
diff changeset
   193
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
   194
{
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
   195
	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
   196
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
   197
	// draw profit-based colored icons
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   198
	if (v->age <= 365 * 2) {
1688
af2bb9bcb2ed (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
   199
		ormod = PALETTE_TO_GREY;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   200
	} else if (v->profit_last_year < 0) {
1688
af2bb9bcb2ed (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
   201
		ormod = PALETTE_TO_RED;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   202
	} else if (v->profit_last_year < 10000) {
1688
af2bb9bcb2ed (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
   203
		ormod = PALETTE_TO_YELLOW;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   204
	} else {
1688
af2bb9bcb2ed (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
   205
		ormod = PALETTE_TO_GREEN;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   206
	}
1688
af2bb9bcb2ed (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
   207
	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
   208
}
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
   209
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   210
/** Draw the list of available refit options for a consist.
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   211
 * Draw the list and highlight the selected refit option (if any)
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   212
 * @param *v first vehicle in consist to get the refit-options of
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   213
 * @param sel selected refit cargo-type in the window
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   214
 * @return the cargo type that is hightlighted, CT_INVALID if none
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   215
 */
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   216
CargoID DrawVehicleRefitWindow(const Vehicle *v, int sel)
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   217
{
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   218
	uint32 cmask;
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   219
	CargoID cid, cargo = CT_INVALID;
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   220
	int y = 25;
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   221
	const Vehicle* u;
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   222
#define show_cargo(ctype) { \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   223
		byte colour = 16; \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   224
		if (sel == 0) { \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   225
			cargo = ctype; \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   226
			colour = 12; \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   227
} \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   228
		sel--; \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   229
		DrawString(6, y, _cargoc.names_s[ctype], colour); \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   230
		y += 10; \
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   231
}
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   232
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   233
		/* Check if vehicle has custom refit or normal ones, and get its bitmasked value.
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   234
		 * If its a train, 'or' this with the refit masks of the wagons. Now just 'and'
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   235
		 * it with the bitmask of available cargo on the current landscape, and
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   236
		 * where the bits are set: those are available */
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   237
		cmask = 0;
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   238
		u = v;
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   239
		do {
2611
36aa372eeb34 (svn r3148) -NewGRF, Feature: Add support for cargo refitting specification by cargo classes.
peter1138
parents: 2569
diff changeset
   240
			cmask |= _engine_info[u->engine_type].refit_mask;
1859
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   241
			u = u->next;
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   242
		} while (v->type == VEH_Train && u != NULL);
870dcb6fd65b (svn r2365) - Change: [refitting] Make refitting capacities for trains newgrf compatible. Train vehicles can now carry twice as much mail/goods as other cargo, and four times as much passengers.
hackykid
parents: 1802
diff changeset
   243
1802
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   244
		/* Check which cargo has been selected from the refit window and draw list */
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   245
		for (cid = 0; cmask != 0; cmask >>= 1, cid++) {
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   246
			if (HASBIT(cmask, 0)) // vehicle is refittable to this cargo
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   247
				show_cargo(_local_cargo_id_ctype[cid]);
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   248
		}
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   249
		return cargo;
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   250
}
da61740cc1e7 (svn r2306) - CodeChange: Check the last commands; refits. This needed an extensive rewrite and global/local-cargo ID juggling and bitmasking. However with this done it looks better as well and is compatible with newgrf handling. Big thanks to HackyKid for doing most of the work. This also closes patch "[ 1199277 ] Command checks"
Darkvater
parents: 1763
diff changeset
   251
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
   252
/************ Sorter functions *****************/
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
   253
int CDECL GeneralOwnerSorter(const void *a, const void *b)
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
   254
{
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   255
	return (*(const SortStruct*)a).owner - (*(const SortStruct*)b).owner;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   256
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   257
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   258
/* Variables you need to set before calling this function!
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   259
* 1. (byte)_internal_sort_type:					sorting criteria to sort on
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   260
* 2. (bool)_internal_sort_order:				sorting order, descending/ascending
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   261
* 3. (uint32)_internal_name_sorter_id:	default StringID of the vehicle when no name is set. eg
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   262
*    STR_SV_TRAIN_NAME for trains or STR_SV_AIRCRAFT_NAME for aircraft
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   263
*/
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   264
static int CDECL VehicleUnsortedSorter(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
   265
{
1294
4cdf0e76c093 (svn r1798) GetFoo(i)->index is per definition i, so replace the former with the latter
tron
parents: 1279
diff changeset
   266
	return ((const SortStruct*)a)->index - ((const SortStruct*)b)->index;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   267
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   268
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   269
// 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
   270
#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
   271
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   272
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
   273
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   274
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   275
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   276
	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
   277
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   278
	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
   279
}
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
   280
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
   281
static char _bufcache[64];	// used together with _last_vehicle_idx to hopefully speed up stringsorting
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   282
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
   283
{
171
29854f28b90b (svn r172) -Fix: warning fixes (Tron)
darkvater
parents: 168
diff changeset
   284
	const SortStruct *cmp1 = (const SortStruct*)a;
29854f28b90b (svn r172) -Fix: warning fixes (Tron)
darkvater
parents: 168
diff changeset
   285
	const SortStruct *cmp2 = (const SortStruct*)b;
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   286
	const Vehicle *va = GetVehicle(cmp1->index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   287
	const Vehicle *vb = GetVehicle(cmp2->index);
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
   288
	char buf1[64] = "\0";
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
   289
	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
   290
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   291
	if (va->string_id != _internal_name_sorter_id) {
534
306bc86eb23e (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   292
		SetDParam(0, va->string_id);
1017
b09bae77a850 (svn r1518) -Fix: server issue where some company names were wrong
darkvater
parents: 967
diff changeset
   293
		GetString(buf1, STR_JUST_STRING);
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
   294
	}
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
   295
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   296
	if (cmp2->index != _last_vehicle_idx) {
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
   297
		_last_vehicle_idx = cmp2->index;
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
   298
		_bufcache[0] = '\0';
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   299
		if (vb->string_id != _internal_name_sorter_id) {
534
306bc86eb23e (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   300
			SetDParam(0, vb->string_id);
1017
b09bae77a850 (svn r1518) -Fix: server issue where some company names were wrong
darkvater
parents: 967
diff changeset
   301
			GetString(_bufcache, STR_JUST_STRING);
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
   302
		}
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
   303
	}
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
   304
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
   305
	r =  strcmp(buf1, _bufcache);	// sort by name
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 171
diff changeset
   306
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   307
	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
   308
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   309
	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
   310
}
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
   311
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   312
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
   313
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   314
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   315
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   316
	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
   317
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   318
	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
   319
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   320
	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
   321
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   322
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   323
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
   324
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   325
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   326
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   327
	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
   328
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   329
	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
   330
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   331
	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
   332
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   333
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   334
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
   335
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   336
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   337
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   338
	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
   339
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   340
	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
   341
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   342
	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
   343
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   344
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   345
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
   346
{
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   347
	const Vehicle* va = GetVehicle(((const SortStruct*)a)->index);
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   348
	const Vehicle* vb = GetVehicle(((const SortStruct*)b)->index);
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   349
	const Vehicle* v;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   350
	AcceptedCargo cargoa;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   351
	AcceptedCargo cargob;
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   352
	int r = 0;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   353
	int i;
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   354
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   355
	memset(cargoa, 0, sizeof(cargoa));
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   356
	memset(cargob, 0, sizeof(cargob));
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   357
	for (v = va; v != NULL; v = v->next) cargoa[v->cargo_type] += v->cargo_cap;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   358
	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
   359
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   360
	for (i = 0; i < NUM_CARGO; i++) {
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   361
		r = cargoa[i] - cargob[i];
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
   362
		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
   363
	}
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
   364
594
1b51f81b4a77 (svn r1016) Make the cargo sorter not consider the number of wagons of a particular cargo type but the sum of their capacity.
tron
parents: 588
diff changeset
   365
	VEHICLEUNITNUMBERSORTER(r, va, vb);
1b51f81b4a77 (svn r1016) Make the cargo sorter not consider the number of wagons of a particular cargo type but the sum of their capacity.
tron
parents: 588
diff changeset
   366
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   367
	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
   368
}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   369
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   370
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
   371
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   372
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   373
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   374
	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
   375
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   376
	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
   377
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   378
	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
   379
}
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   380
2462
2f90bb70fb00 (svn r2988) static where static is due
tron
parents: 2448
diff changeset
   381
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
   382
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   383
	const Vehicle *va = GetVehicle((*(const SortStruct*)a).index);
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   384
	const Vehicle *vb = GetVehicle((*(const SortStruct*)b).index);
1179
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   385
	int max_speed_a = 0xFFFF, max_speed_b = 0xFFFF;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   386
	int r;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   387
	const Vehicle *ua = va, *ub = vb;
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   388
1191
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   389
	if (va->type == VEH_Train && vb->type == VEH_Train) {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   390
		do {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   391
			if (RailVehInfo(ua->engine_type)->max_speed != 0)
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   392
				max_speed_a = min(max_speed_a, RailVehInfo(ua->engine_type)->max_speed);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   393
		} while ((ua = ua->next) != NULL);
1179
ce0a75460808 (svn r1681) -Feature: New realistic acceleration.
celestar
parents: 1178
diff changeset
   394
1191
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   395
		do {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   396
			if (RailVehInfo(ub->engine_type)->max_speed != 0)
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   397
				max_speed_b = min(max_speed_b, RailVehInfo(ub->engine_type)->max_speed);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   398
		} while ((ub = ub->next) != NULL);
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   399
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   400
		r = max_speed_a - max_speed_b;
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   401
	} else {
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   402
		r = va->max_speed - vb->max_speed;
dc46f04aab3a (svn r1695) -Fix: I broke maximum speed sorting for anything but trains with the new acceleration. Sorry
Celestar
parents: 1182
diff changeset
   403
	}
168
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   404
243
9a40daa560ae (svn r244) -Fix: Stations were not sorted for non-player-0 players
darkvater
parents: 193
diff changeset
   405
	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
   406
79f9ed5b23e6 (svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents: 164
diff changeset
   407
	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
   408
}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   409
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   410
// this define is to match engine.c, but engine.c keeps it to itself
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   411
// ENGINE_AVAILABLE is used in ReplaceVehicleWndProc
2530
df14798edc40 (svn r3059) Use bitfields to encode railtype and climates of engines instead of manual shifting/anding
tron
parents: 2520
diff changeset
   412
#define ENGINE_AVAILABLE ((e->flags & 1 && HASBIT(info->climates, _opt.landscape)) || HASBIT(e->player_avail, _local_player))
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   413
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   414
/*  if show_outdated is selected, it do not sort psudo engines properly but it draws all engines
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   415
 *	if used compined with show_cars set to false, it will work as intended. Replace window do it like that
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   416
 *  this was a big hack even before show_outdated was added. Stupid newgrf :p										*/
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   417
static void train_engine_drawing_loop(int *x, int *y, int *pos, int *sel, EngineID *selected_id, RailType railtype,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   418
	uint8 lines_drawn, bool is_engine, bool show_cars, bool show_outdated)
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   419
{
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   420
	EngineID i;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   421
	byte colour;
2569
fe379f11f6bf (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
   422
	const Player *p = GetPlayer(_local_player);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   423
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   424
	for (i = 0; i < NUM_TRAIN_ENGINES; i++) {
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   425
		const Engine *e = GetEngine(i);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   426
		const RailVehicleInfo *rvi = RailVehInfo(i);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   427
		const EngineInfo *info = &_engine_info[i];
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   428
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   429
		if (!EngineHasReplacementForPlayer(p, i) && _player_num_engines[i] == 0 && show_outdated) continue;
1128
ca7f860db7ac (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
   430
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   431
		if (rvi->power == 0 && !show_cars)   // disables display of cars (works since they do not have power)
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   432
			continue;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   433
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   434
		if (*sel == 0) *selected_id = i;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   435
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   436
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   437
		colour = *sel == 0 ? 0xC : 0x10;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   438
		if (!(ENGINE_AVAILABLE && show_outdated && RailVehInfo(i)->power && e->railtype == railtype)) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   439
			if (e->railtype != railtype || !(rvi->flags & RVI_WAGON) != is_engine ||
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   440
				!HASBIT(e->player_avail, _local_player))
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   441
				continue;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   442
		} /*else {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   443
		// TODO find a nice red colour for vehicles being replaced
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   444
			if ( _autoreplace_array[i] != i )
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   445
				colour = *sel == 0 ? 0x44 : 0x45;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   446
		} */
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   447
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   448
		if (IS_INT_INSIDE(--*pos, -lines_drawn, 0)) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   449
			DrawString(*x + 59, *y + 2, GetCustomEngineName(i),
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   450
				colour);
2569
fe379f11f6bf (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
   451
			// show_outdated is true only for left side, which is where we show old replacements
fe379f11f6bf (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
   452
			DrawTrainEngine(*x + 29, *y + 6, i, (_player_num_engines[i] == 0 && show_outdated) ?
fe379f11f6bf (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
   453
				PALETTE_CRASH : SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)));
1128
ca7f860db7ac (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
   454
			if ( show_outdated ) {
ca7f860db7ac (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
   455
				SetDParam(0, _player_num_engines[i]);
ca7f860db7ac (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
   456
				DrawStringRightAligned(213, *y+5, STR_TINY_BLACK, 0);
ca7f860db7ac (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
   457
			}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   458
			*y += 14;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   459
		}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   460
		--*sel;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   461
	}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   462
}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   463
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   464
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   465
static void SetupScrollStuffForReplaceWindow(Window *w)
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   466
{
2520
8a52362c4ada (svn r3049) Replace byte/int/uint by RailType where appropriate
tron
parents: 2519
diff changeset
   467
	RailType railtype;
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   468
	EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   469
	int sel[2];
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   470
	int count = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   471
	int count2 = 0;
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   472
	EngineID engine_id;
2569
fe379f11f6bf (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
   473
	const Player *p = GetPlayer(_local_player);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   474
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   475
	sel[0] = WP(w,replaceveh_d).sel_index[0];
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   476
	sel[1] = WP(w,replaceveh_d).sel_index[1];
915
d845fe7cf6f2 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   477
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   478
	switch (WP(w,replaceveh_d).vehicletype) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   479
		case VEH_Train: {
1178
7c39a741eafb (svn r1680) Feature: Replace train GUI now remembers the railtype selected in the dropdown menu
bjarni
parents: 1177
diff changeset
   480
			railtype = _railtype_selected_in_replace_gui;
870
b60bf24869a7 (svn r1351) fixed issue in last commit where it it not update the replace train window properly when changing company colour (the lower two panels stayed the old colour until the window was reopened)
bjarni
parents: 869
diff changeset
   481
			w->widget[13].color = _player_colors[_local_player];	// sets the colour of that art thing
b60bf24869a7 (svn r1351) fixed issue in last commit where it it not update the replace train window properly when changing company colour (the lower two panels stayed the old colour until the window was reopened)
bjarni
parents: 869
diff changeset
   482
			w->widget[16].color = _player_colors[_local_player];	// sets the colour of that art thing
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   483
			for (engine_id = 0; engine_id < NUM_TRAIN_ENGINES; engine_id++) {
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   484
				const Engine *e = GetEngine(engine_id);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   485
				const EngineInfo *info = &_engine_info[engine_id];
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   486
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   487
				if (ENGINE_AVAILABLE && RailVehInfo(engine_id)->power && e->railtype == railtype) {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   488
					if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   489
						if (sel[0] == 0) selected_id[0] = engine_id;
1134
f7342e7b4718 (svn r1635) fix: forgot to set SetVScrollCount properly in autoreplace train GUI. It appears ok now
bjarni
parents: 1128
diff changeset
   490
						count++;
1128
ca7f860db7ac (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
   491
						sel[0]--;
ca7f860db7ac (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
   492
					}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   493
					if (HASBIT(e->player_avail, _local_player)) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   494
						if (sel[1] == 0) selected_id[1] = engine_id;
1128
ca7f860db7ac (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
   495
						count2++;
ca7f860db7ac (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
   496
						sel[1]--;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   497
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   498
				}
1128
ca7f860db7ac (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
   499
			}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   500
			break;
1128
ca7f860db7ac (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
   501
		}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   502
		case VEH_Road: {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   503
			int num = NUM_ROAD_ENGINES;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   504
			const Engine* e = GetEngine(ROAD_ENGINES_INDEX);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   505
			byte cargo;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   506
			engine_id = ROAD_ENGINES_INDEX;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   507
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   508
			do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   509
				if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   510
					if (sel[0] == 0) selected_id[0] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   511
					count++;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   512
					sel[0]--;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   513
				}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   514
			} while (++engine_id,++e,--num);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   515
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   516
			if (selected_id[0] != INVALID_ENGINE) { // only draw right array if we have anything in the left one
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   517
				num = NUM_ROAD_ENGINES;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   518
				engine_id = ROAD_ENGINES_INDEX;
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   519
				e = GetEngine(ROAD_ENGINES_INDEX);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   520
				cargo = RoadVehInfo(selected_id[0])->cargo_type;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   521
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   522
				do {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   523
					if (cargo == RoadVehInfo(engine_id)->cargo_type && HASBIT(e->player_avail, _local_player)) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   524
						count2++;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   525
						if (sel[1] == 0) selected_id[1] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   526
						sel[1]--;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   527
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   528
				} while (++engine_id,++e,--num);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   529
			}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   530
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   531
		}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   532
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   533
		case VEH_Ship: {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   534
			int num = NUM_SHIP_ENGINES;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   535
			const Engine* e = GetEngine(SHIP_ENGINES_INDEX);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   536
			byte cargo, refittable;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   537
			engine_id = SHIP_ENGINES_INDEX;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   538
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   539
			do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   540
				if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   541
					if (sel[0] == 0) selected_id[0] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   542
					count++;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   543
					sel[0]--;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   544
				}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   545
			} while (++engine_id,++e,--num);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   546
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   547
			if (selected_id[0] != INVALID_ENGINE) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   548
				num = NUM_SHIP_ENGINES;
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   549
				e = GetEngine(SHIP_ENGINES_INDEX);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   550
				engine_id = SHIP_ENGINES_INDEX;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   551
				cargo = ShipVehInfo(selected_id[0])->cargo_type;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   552
				refittable = ShipVehInfo(selected_id[0])->refittable;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   553
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   554
				do {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   555
					if (HASBIT(e->player_avail, _local_player) &&
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   556
							(cargo == ShipVehInfo(engine_id)->cargo_type || refittable & ShipVehInfo(engine_id)->refittable)) {
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   557
						if (sel[1] == 0) selected_id[1] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   558
						sel[1]--;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   559
						count2++;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   560
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   561
				} while (++engine_id,++e,--num);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   562
			}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   563
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   564
		}   //end of ship
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   565
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   566
		case VEH_Aircraft:{
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   567
			int num = NUM_AIRCRAFT_ENGINES;
843
f51135b17930 (svn r1324) Fixed problem with autoreplace GUI and msvc6 (thanks bociusz)
bjarni
parents: 842
diff changeset
   568
			byte subtype;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   569
			const Engine* e = GetEngine(AIRCRAFT_ENGINES_INDEX);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   570
			engine_id = AIRCRAFT_ENGINES_INDEX;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   571
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   572
			do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   573
				if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   574
					count++;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   575
					if (sel[0] == 0) selected_id[0] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   576
					sel[0]--;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   577
				}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   578
			} while (++engine_id,++e,--num);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   579
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   580
			if (selected_id[0] != INVALID_ENGINE) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   581
				num = NUM_AIRCRAFT_ENGINES;
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   582
				e = GetEngine(AIRCRAFT_ENGINES_INDEX);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   583
				subtype = AircraftVehInfo(selected_id[0])->subtype;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   584
				engine_id = AIRCRAFT_ENGINES_INDEX;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   585
				do {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   586
					if (HASBIT(e->player_avail, _local_player)) {
1182
57287d8c9b4b (svn r1684) - Fix: [autoreplace] made sure that planes only show planes in replace GUI and helicopters only show helicopters
bjarni
parents: 1179
diff changeset
   587
						if (HASBIT(subtype, 0) == HASBIT(AircraftVehInfo(engine_id)->subtype, 0)) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   588
							count2++;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   589
							if (sel[1] == 0) selected_id[1] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   590
							sel[1]--;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   591
						}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   592
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   593
				} while (++engine_id,++e,--num);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   594
			}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   595
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   596
		}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   597
	}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   598
	// sets up the number of items in each list
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   599
	SetVScrollCount(w, count);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   600
	SetVScroll2Count(w, count2);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   601
	WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   602
	WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   603
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   604
	WP(w,replaceveh_d).count[0] = count;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   605
	WP(w,replaceveh_d).count[1] = count2;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   606
	return;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   607
}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   608
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   609
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   610
static void DrawEngineArrayInReplaceWindow(Window *w, int x, int y, int x2, int y2, int pos, int pos2,
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   611
	int sel1, int sel2, EngineID selected_id1, EngineID selected_id2)
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   612
{
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   613
	int sel[2];
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   614
	EngineID selected_id[2];
2569
fe379f11f6bf (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
   615
	const Player *p = GetPlayer(_local_player);
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   616
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   617
	sel[0] = sel1;
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   618
	sel[1] = sel2;
915
d845fe7cf6f2 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   619
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   620
	selected_id[0] = selected_id1;
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   621
	selected_id[1] = selected_id2;
915
d845fe7cf6f2 (svn r1402) Trim trailing whitespace
tron
parents: 912
diff changeset
   622
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   623
	switch (WP(w,replaceveh_d).vehicletype) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   624
		case VEH_Train: {
2520
8a52362c4ada (svn r3049) Replace byte/int/uint by RailType where appropriate
tron
parents: 2519
diff changeset
   625
			RailType railtype = _railtype_selected_in_replace_gui;
1923
bce919cad8e1 (svn r2429) - Fix: Oops, forgot to increase the size of the autoreplace window to fit the extra info from powered wagons.
hackykid
parents: 1907
diff changeset
   626
			DrawString(157, 99 + (14 * w->vscroll.cap), _rail_types_list[railtype], 0x10);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   627
			/* draw sorting criteria string */
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   628
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   629
			/* Ensure that custom engines which substituted wagons
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   630
			* are sorted correctly.
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   631
			* XXX - DO NOT EVER DO THIS EVER AGAIN! GRRR hacking in wagons as
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   632
			* engines to get more types.. Stays here until we have our own format
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   633
			* then it is exit!!! */
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   634
			train_engine_drawing_loop(&x, &y, &pos, &sel[0], &selected_id[0], railtype, w->vscroll.cap, true, false, true); // True engines
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   635
			train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, true, false, false); // True engines
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   636
			train_engine_drawing_loop(&x2, &y2, &pos2, &sel[1], &selected_id[1], railtype, w->vscroll.cap, false, false, false); // Feeble wagons
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   637
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   638
		}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   639
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   640
		case VEH_Road: {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   641
			int num = NUM_ROAD_ENGINES;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   642
			const Engine* e = GetEngine(ROAD_ENGINES_INDEX);
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   643
			EngineID engine_id = ROAD_ENGINES_INDEX;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   644
			byte cargo;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   645
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   646
			if (selected_id[0] >= ROAD_ENGINES_INDEX && selected_id[0] < SHIP_ENGINES_INDEX) {
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   647
				cargo = RoadVehInfo(selected_id[0])->cargo_type;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   648
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   649
				do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   650
					if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   651
						if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   652
							DrawString(x+59, y+2, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
2569
fe379f11f6bf (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
   653
							DrawRoadVehEngine(x+29, y+6, engine_id, _player_num_engines[engine_id] > 0 ? SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)) : PALETTE_CRASH);
1128
ca7f860db7ac (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
   654
							SetDParam(0, _player_num_engines[engine_id]);
ca7f860db7ac (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
   655
							DrawStringRightAligned(213, y+5, STR_TINY_BLACK, 0);
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   656
							y += 14;
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   657
						}
1128
ca7f860db7ac (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
   658
					sel[0]--;
ca7f860db7ac (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
   659
					}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   660
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   661
					if (RoadVehInfo(engine_id)->cargo_type == cargo && HASBIT(e->player_avail, _local_player)) {
1128
ca7f860db7ac (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
   662
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0) && RoadVehInfo(engine_id)->cargo_type == cargo) {
ca7f860db7ac (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
   663
							DrawString(x2+59, y2+2, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
ca7f860db7ac (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
   664
							DrawRoadVehEngine(x2+29, y2+6, engine_id, SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)));
ca7f860db7ac (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
   665
							y2 += 14;
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   666
						}
1128
ca7f860db7ac (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
   667
						sel[1]--;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   668
					}
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   669
				} while (++engine_id, ++e,--num);
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   670
			}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   671
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   672
		}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   673
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   674
		case VEH_Ship: {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   675
			int num = NUM_SHIP_ENGINES;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   676
			const Engine* e = GetEngine(SHIP_ENGINES_INDEX);
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   677
			EngineID engine_id = SHIP_ENGINES_INDEX;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   678
			byte cargo, refittable;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   679
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   680
			if (selected_id[0] != INVALID_ENGINE) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   681
				cargo = ShipVehInfo(selected_id[0])->cargo_type;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   682
				refittable = ShipVehInfo(selected_id[0])->refittable;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   683
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   684
				do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   685
					if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   686
						if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   687
							DrawString(x+75, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
2569
fe379f11f6bf (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
   688
							DrawShipEngine(x+35, y+10, engine_id, _player_num_engines[engine_id] > 0 ? SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)) : PALETTE_CRASH);
1128
ca7f860db7ac (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
   689
							SetDParam(0, _player_num_engines[engine_id]);
ca7f860db7ac (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
   690
							DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   691
							y += 24;
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   692
						}
1128
ca7f860db7ac (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
   693
						sel[0]--;
ca7f860db7ac (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
   694
					}
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   695
					if (selected_id[0] != INVALID_ENGINE) {
1128
ca7f860db7ac (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
   696
						if (HASBIT(e->player_avail, _local_player) && ( cargo == ShipVehInfo(engine_id)->cargo_type || refittable & ShipVehInfo(engine_id)->refittable)) {
ca7f860db7ac (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
   697
							if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
ca7f860db7ac (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
   698
								DrawString(x2+75, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
ca7f860db7ac (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
   699
								DrawShipEngine(x2+35, y2+10, engine_id, SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)));
ca7f860db7ac (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
   700
								y2 += 24;
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   701
							}
1128
ca7f860db7ac (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
   702
							sel[1]--;
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   703
						}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   704
					}
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   705
				} while (++engine_id, ++e,--num);
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   706
			}
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
   707
			break;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   708
		}   //end of ship
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   709
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   710
		case VEH_Aircraft: {
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   711
			if (selected_id[0] != INVALID_ENGINE) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   712
				int num = NUM_AIRCRAFT_ENGINES;
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2617
diff changeset
   713
				const Engine* e = GetEngine(AIRCRAFT_ENGINES_INDEX);
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2466
diff changeset
   714
				EngineID engine_id = AIRCRAFT_ENGINES_INDEX;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   715
				byte subtype = AircraftVehInfo(selected_id[0])->subtype;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   716
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   717
				do {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   718
					if (_player_num_engines[engine_id] > 0 || EngineHasReplacementForPlayer(p, engine_id)) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   719
						if (sel[0] == 0) selected_id[0] = engine_id;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   720
						if (IS_INT_INSIDE(--pos, -w->vscroll.cap, 0)) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   721
							DrawString(x+62, y+7, GetCustomEngineName(engine_id), sel[0]==0 ? 0xC : 0x10);
2569
fe379f11f6bf (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
   722
							DrawAircraftEngine(x+29, y+10, engine_id, _player_num_engines[engine_id] > 0 ? SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)) : PALETTE_CRASH);
1128
ca7f860db7ac (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
   723
							SetDParam(0, _player_num_engines[engine_id]);
ca7f860db7ac (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
   724
							DrawStringRightAligned(213, y+15, STR_TINY_BLACK, 0);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   725
							y += 24;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   726
						}
1128
ca7f860db7ac (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
   727
						sel[0]--;
ca7f860db7ac (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
   728
					}
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   729
					if (HASBIT(subtype, 0) == HASBIT(AircraftVehInfo(engine_id)->subtype, 0) &&
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   730
							HASBIT(e->player_avail, _local_player)) {
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   731
						if (sel[1] == 0) selected_id[1] = engine_id;
1128
ca7f860db7ac (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
   732
						if (IS_INT_INSIDE(--pos2, -w->vscroll.cap, 0)) {
ca7f860db7ac (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
   733
							DrawString(x2+62, y2+7, GetCustomEngineName(engine_id), sel[1]==0 ? 0xC : 0x10);
ca7f860db7ac (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
   734
							DrawAircraftEngine(x2+29, y2+10, engine_id, SPRITE_PALETTE(PLAYER_SPRITE_COLOR(_local_player)));
ca7f860db7ac (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
   735
							y2 += 24;
ca7f860db7ac (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
   736
						}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   737
						sel[1]--;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   738
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   739
				} while (++engine_id, ++e,--num);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   740
			}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   741
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   742
		}   // end of aircraft
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   743
	}
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   744
}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   745
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   746
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   747
static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   748
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   749
	static const StringID _vehicle_type_names[] = {
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   750
		STR_019F_TRAIN,
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   751
		STR_019C_ROAD_VEHICLE,
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   752
		STR_019E_SHIP,
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   753
		STR_019D_AIRCRAFT
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   754
	};
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   755
2375
8cb43bb74d0e (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
   756
	switch (e->event) {
8cb43bb74d0e (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
   757
		case WE_PAINT: {
2805
29e2b43a1e20 (svn r3353) Simplify the automatic length adjustment algorithm for replacing trains: Use the length of the train before the replacement as reference length
tron
parents: 2753
diff changeset
   758
				const Player *p = GetPlayer(_local_player);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   759
				int pos = w->vscroll.pos;
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   760
				EngineID selected_id[2] = { INVALID_ENGINE, INVALID_ENGINE };
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   761
				int x = 1;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   762
				int y = 15;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   763
				int pos2 = w->vscroll2.pos;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   764
				int x2 = 1 + 228;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   765
				int y2 = 15;
912
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   766
				int sel[2];
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   767
				sel[0] = WP(w,replaceveh_d).sel_index[0];
a5fb6ad68d80 (svn r1399) -Fix: Fixes for compiling with Watcom C/C++ (ie, OS/2 port). (orudge)
truelight
parents: 907
diff changeset
   768
				sel[1] = WP(w,replaceveh_d).sel_index[1];
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   769
1128
ca7f860db7ac (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
   770
				{
ca7f860db7ac (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
   771
					uint i;
ca7f860db7ac (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
   772
					const Vehicle *vehicle;
ca7f860db7ac (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
   773
ca7f860db7ac (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
   774
					for (i = 0; i < lengthof(_player_num_engines); i++) {
ca7f860db7ac (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
   775
						_player_num_engines[i] = 0;
ca7f860db7ac (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
   776
					}
ca7f860db7ac (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
					FOR_ALL_VEHICLES(vehicle) {
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   778
						if (vehicle->owner == _local_player) {
1128
ca7f860db7ac (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
							if (vehicle->type == VEH_Aircraft && vehicle->subtype > 2) continue;
ca7f860db7ac (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
ca7f860db7ac (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
   781
							// do not count the vehicles, that contains only 0 in all var
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   782
							if (vehicle->engine_type == 0 && vehicle->spritenum == 0) continue;
1128
ca7f860db7ac (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
   783
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1923
diff changeset
   784
							if (vehicle->type != GetEngine(vehicle->engine_type)->type) continue;
1128
ca7f860db7ac (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
   785
ca7f860db7ac (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
   786
							_player_num_engines[vehicle->engine_type]++;
ca7f860db7ac (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
   787
						}
ca7f860db7ac (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
   788
					}
ca7f860db7ac (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
   789
				}
ca7f860db7ac (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
   790
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   791
				SetupScrollStuffForReplaceWindow(w);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   792
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   793
				selected_id[0] = WP(w,replaceveh_d).sel_engine[0];
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   794
				selected_id[1] = WP(w,replaceveh_d).sel_engine[1];
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   795
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   796
			// sets the selected left item to the top one if it's greater than the number of vehicles in the left side
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   797
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   798
				if (WP(w,replaceveh_d).count[0] <= sel[0]) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   799
					if (WP(w,replaceveh_d).count[0]) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   800
						sel[0] = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   801
						WP(w,replaceveh_d).sel_index[0] = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   802
						w->vscroll.pos = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   803
						// now we go back to set selected_id[1] properly
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   804
						SetWindowDirty(w);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   805
						return;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   806
					} else { //there are no vehicles in the left window
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   807
						selected_id[1] = INVALID_ENGINE;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   808
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   809
				}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   810
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   811
				if (WP(w,replaceveh_d).count[1] <= sel[1]) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   812
					if (WP(w,replaceveh_d).count[1]) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   813
						sel[1] = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   814
						WP(w,replaceveh_d).sel_index[1] = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   815
						w->vscroll2.pos = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   816
						// now we go back to set selected_id[1] properly
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   817
						SetWindowDirty(w);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   818
						return;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   819
					} else { //there are no vehicles in the right window
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   820
						selected_id[1] = INVALID_ENGINE;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   821
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   822
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   823
2556
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   824
				// Disable the "Start Replacing" button if:
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   825
				//    Either list is empty
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   826
				// or Both lists have the same vehicle selected
2747
7a233d41e9c4 (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
   827
				// or The selected replacement engine has a replacement (to prevent loops)
2556
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   828
				// or The right list (new replacement) has the existing replacement vehicle selected
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   829
				if (selected_id[0] == INVALID_ENGINE ||
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   830
						selected_id[1] == INVALID_ENGINE ||
2556
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   831
						selected_id[0] == selected_id[1] ||
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   832
						EngineReplacementForPlayer(p, selected_id[1]) != INVALID_ENGINE ||
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   833
						EngineReplacementForPlayer(p, selected_id[0]) == selected_id[1]) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   834
					SETBIT(w->disabled_state, 4);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   835
				} else {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   836
					CLRBIT(w->disabled_state, 4);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   837
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   838
2556
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   839
				// Disable the "Stop Replacing" button if:
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   840
				//    The left list (existing vehicle) is empty
c7fab9ee6335 (svn r3089) Fix possible issue with out-of-bounds array access in replace vehicle gui, and add brief commenting.
peter1138
parents: 2553
diff changeset
   841
				// or The selected vehicle has no replacement set up
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   842
				if (selected_id[0] == INVALID_ENGINE ||
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   843
						!EngineHasReplacementForPlayer(p, selected_id[0])) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   844
					SETBIT(w->disabled_state, 6);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   845
				} else {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   846
					CLRBIT(w->disabled_state, 6);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   847
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   848
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   849
				// now the actual drawing of the window itself takes place
2375
8cb43bb74d0e (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
   850
				SetDParam(0, _vehicle_type_names[WP(w, replaceveh_d).vehicletype - VEH_Train]);
2617
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   851
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   852
				if (WP(w, replaceveh_d).vehicletype == VEH_Train) {
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   853
					// set on/off for renew_keep_length
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   854
					SetDParam(1, p->renew_keep_length ? STR_CONFIG_PATCHES_ON : STR_CONFIG_PATCHES_OFF);
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   855
				}
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   856
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   857
				DrawWindowWidgets(w);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   858
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   859
				// sets up the string for the vehicle that is being replaced to
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   860
				if (selected_id[0] != INVALID_ENGINE) {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   861
					if (!EngineHasReplacementForPlayer(p, selected_id[0])) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   862
						SetDParam(0, STR_NOT_REPLACING);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   863
					} else {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2818
diff changeset
   864
						SetDParam(0, GetCustomEngineName(EngineReplacementForPlayer(p, selected_id[0])));
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   865
					}
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   866
				} else {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   867
					SetDParam(0, STR_NOT_REPLACING_VEHICLE_SELECTED);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   868
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   869
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   870
				DrawString(145, (w->resize.step_height == 24 ? 67 : 87) + w->resize.step_height * w->vscroll.cap, STR_02BD, 0x10);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   871
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   872
				/*	now we draw the two arrays according to what we just counted */
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   873
				DrawEngineArrayInReplaceWindow(w, x, y, x2, y2, pos, pos2, sel[0], sel[1], selected_id[0], selected_id[1]);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   874
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   875
				WP(w,replaceveh_d).sel_engine[0] = selected_id[0];
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   876
				WP(w,replaceveh_d).sel_engine[1] = selected_id[1];
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   877
				/* now we draw the info about the vehicles we selected */
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   878
				switch (WP(w,replaceveh_d).vehicletype) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   879
					case VEH_Train: {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   880
						byte i = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   881
						int offset = 0;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   882
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   883
						for (i = 0 ; i < 2 ; i++) {
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   884
							if (i > 0) offset = 228;
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   885
							if (selected_id[i] != INVALID_ENGINE) {
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   886
								if (!(RailVehInfo(selected_id[i])->flags & RVI_WAGON)) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   887
									/* it's an engine */
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   888
									DrawTrainEnginePurchaseInfo(2 + offset, 15 + (14 * w->vscroll.cap), selected_id[i]);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   889
								} else {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   890
									/* it's a wagon. Train cars are not replaced with the current GUI, but this code is ready for newgrf if anybody adds that*/
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   891
									DrawTrainWagonPurchaseInfo(2 + offset, 15 + (14 * w->vscroll.cap), selected_id[i]);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   892
								}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   893
							}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   894
						}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   895
						break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   896
					}   //end if case  VEH_Train
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   897
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   898
					case VEH_Road: {
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   899
						if (selected_id[0] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   900
							DrawRoadVehPurchaseInfo(2, 15 + (14 * w->vscroll.cap), selected_id[0]);
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   901
							if (selected_id[1] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   902
								DrawRoadVehPurchaseInfo(2 + 228, 15 + (14 * w->vscroll.cap), selected_id[1]);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   903
							}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   904
						}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   905
						break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   906
					}   // end of VEH_Road
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   907
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   908
					case VEH_Ship: {
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   909
						if (selected_id[0] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   910
							DrawShipPurchaseInfo(2, 15 + (24 * w->vscroll.cap), selected_id[0]);
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   911
							if (selected_id[1] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   912
								DrawShipPurchaseInfo(2 + 228, 15 + (24 * w->vscroll.cap), selected_id[1]);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   913
							}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   914
						}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   915
						break;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   916
					}   // end of VEH_Ship
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   917
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   918
					case VEH_Aircraft: {
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   919
						if (selected_id[0] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   920
							DrawAircraftPurchaseInfo(2, 15 + (24 * w->vscroll.cap), selected_id[0]);
2746
47c6e734556e (svn r3291) - Codechange, Autoreplace: Replace int with EngineID and -1 with INVALID_ENGINE, as appropriate.
peter1138
parents: 2725
diff changeset
   921
							if (selected_id[1] != INVALID_ENGINE) {
1907
61bafb476865 (svn r2413) - Codechange: Rewrite the displaying of purchase details a bit, make it easyer to add lines later.
hackykid
parents: 1891
diff changeset
   922
								DrawAircraftPurchaseInfo(2 + 228, 15 + (24 * w->vscroll.cap), selected_id[1]);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   923
							}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   924
						}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   925
						break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   926
					}   // end of VEH_Aircraft
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   927
				}
1462
a81f217b9cb6 (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
   928
			} break;   // end of paint
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   929
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   930
		case WE_CLICK: {
2375
8cb43bb74d0e (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
   931
			// these 3 variables is used if any of the lists is clicked
8cb43bb74d0e (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
   932
			uint16 click_scroll_pos = w->vscroll2.pos;
8cb43bb74d0e (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
   933
			uint16 click_scroll_cap = w->vscroll2.cap;
8cb43bb74d0e (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
   934
			byte click_side = 1;
8cb43bb74d0e (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
   935
8cb43bb74d0e (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
   936
			switch (e->click.widget) {
2206
4518d18a5f58 (svn r2724) -Fix: [Autoreplace] made the pulldown menu read GetPlayer(_local_player)->avail_railtypes - this removes the need for updating this code if we add more railtypes and it also allows the menu to show maglev when monorail is not available
bjarni
parents: 2186
diff changeset
   937
				case 14: case 15: { /* Select sorting criteria dropdown menu */
2448
1a07657c9f9a (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
   938
					ShowDropDownMenu(w, _rail_types_list, _railtype_selected_in_replace_gui, 15, 0, ~GetPlayer(_local_player)->avail_railtypes);
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
   939
					break;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   940
				}
2617
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   941
				case 17: { /* toggle renew_keep_length */
2805
29e2b43a1e20 (svn r3353) Simplify the automatic length adjustment algorithm for replacing trains: Use the length of the train before the replacement as reference length
tron
parents: 2753
diff changeset
   942
					DoCommandP(0, 5, GetPlayer(_local_player)->renew_keep_length ? 0 : 1, NULL, CMD_REPLACE_VEHICLE);
2617
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
   943
				} break;
2293
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   944
				case 4: { /* Start replacing */
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   945
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   946
					EngineID veh_to = WP(w, replaceveh_d).sel_engine[1];
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   947
					DoCommandP(0, 3, veh_from + (veh_to << 16), NULL, CMD_REPLACE_VEHICLE);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   948
					break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   949
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   950
2293
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   951
				case 6: { /* Stop replacing */
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   952
					EngineID veh_from = WP(w, replaceveh_d).sel_engine[0];
b48192aec903 (svn r2817) -Codechange: [autoreplace]: moved autoreplace and autorenew to serverside
bjarni
parents: 2288
diff changeset
   953
					DoCommandP(0, 3, veh_from + (INVALID_ENGINE << 16), NULL, CMD_REPLACE_VEHICLE);
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   954
					break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   955
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   956
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   957
				case 7:
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   958
					// sets up that the left one was clicked. The default values are for the right one (9)
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   959
					// this way, the code for 9 handles both sides
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   960
					click_scroll_pos = w->vscroll.pos;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   961
					click_scroll_cap = w->vscroll.cap;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   962
					click_side = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   963
				case 9: {
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
   964
					uint i = (e->click.pt.y - 14) / w->resize.step_height;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   965
					if (i < click_scroll_cap) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   966
						WP(w,replaceveh_d).sel_index[click_side] = i + click_scroll_pos;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   967
						SetWindowDirty(w);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   968
					}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   969
				} break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   970
			}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   971
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   972
		} break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   973
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   974
		case WE_DROPDOWN_SELECT: { /* we have selected a dropdown item in the list */
1178
7c39a741eafb (svn r1680) Feature: Replace train GUI now remembers the railtype selected in the dropdown menu
bjarni
parents: 1177
diff changeset
   975
			_railtype_selected_in_replace_gui = e->dropdown.index;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   976
			SetWindowDirty(w);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   977
		} break;
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   978
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   979
		case WE_RESIZE: {
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   980
			w->vscroll.cap  += e->sizing.diff.y / (int)w->resize.step_height;
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   981
			w->vscroll2.cap += e->sizing.diff.y / (int)w->resize.step_height;
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   982
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   983
			w->widget[7].unkA = (w->vscroll.cap  << 8) + 1;
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   984
			w->widget[9].unkA = (w->vscroll2.cap << 8) + 1;
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
   985
		} break;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   986
	}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   987
}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   988
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
   989
static const Widget _replace_rail_vehicle_widgets[] = {
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
   990
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,       STR_018B_CLOSE_WINDOW},
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
   991
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
2375
8cb43bb74d0e (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
   992
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,       STR_STICKY_BUTTON},
8cb43bb74d0e (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
   993
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   197, STR_NULL,       STR_NULL},
1923
bce919cad8e1 (svn r2429) - Fix: Oops, forgot to increase the size of the autoreplace window to fit the extra info from powered wagons.
hackykid
parents: 1907
diff changeset
   994
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   210,   221, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
2375
8cb43bb74d0e (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
   995
{      WWT_PANEL,     RESIZE_TB,    14,   139,   316,   198,   209, STR_NULL,       STR_REPLACE_HELP_REPLACE_INFO_TAB},
1923
bce919cad8e1 (svn r2429) - Fix: Oops, forgot to increase the size of the autoreplace window to fit the extra info from powered wagons.
hackykid
parents: 1907
diff changeset
   996
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   210,   221, STR_REPLACE_VEHICLES_STOP,  STR_REPLACE_HELP_STOP_BUTTON},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
   997
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,          STR_REPLACE_HELP_LEFT_ARRAY},
2375
8cb43bb74d0e (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
   998
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
   999
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,          STR_REPLACE_HELP_RIGHT_ARRAY},
2375
8cb43bb74d0e (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
  1000
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
8cb43bb74d0e (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
  1001
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   197, STR_NULL,       STR_NULL},
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1002
// train specific stuff
2375
8cb43bb74d0e (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
  1003
{      WWT_PANEL,     RESIZE_TB,    14,     0,   138,   198,   209, STR_NULL,       STR_NULL},
8cb43bb74d0e (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
  1004
{      WWT_PANEL,     RESIZE_TB,    14,   139,   153,   210,   221, STR_NULL,       STR_NULL},
8cb43bb74d0e (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
  1005
{      WWT_PANEL,     RESIZE_TB,    14,   154,   277,   210,   221, STR_NULL,       STR_REPLACE_HELP_RAILTYPE},
2725
775e3e14ca46 (svn r3270) Correct all (mis)uses of WWT_CLOSEBOX / WWT_TEXTBTN to reflect their actual use, and add "Close Window" tooltip where missing.
peter1138
parents: 2697
diff changeset
  1006
{    WWT_TEXTBTN,     RESIZE_TB,    14,   278,   289,   210,   221, STR_0225,       STR_REPLACE_HELP_RAILTYPE},
2375
8cb43bb74d0e (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
  1007
{      WWT_PANEL,     RESIZE_TB,    14,   290,   305,   210,   221, STR_NULL,       STR_NULL},
2617
03120a0b1e39 (svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
bjarni
parents: 2611
diff changeset
  1008
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   317,   455,   198,   209, STR_REPLACE_REMOVE_WAGON,       STR_REPLACE_REMOVE_WAGON_HELP},
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1009
// end of train specific stuff
2375
8cb43bb74d0e (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
  1010
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   210,   221, STR_NULL,       STR_RESIZE_BUTTON},
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1011
{   WIDGETS_END},
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1012
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1013
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1014
static const Widget _replace_road_vehicle_widgets[] = {
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1015
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,        STR_018B_CLOSE_WINDOW},
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1016
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
2375
8cb43bb74d0e (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
  1017
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,       STR_STICKY_BUTTON},
8cb43bb74d0e (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
  1018
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   126,   197, STR_NULL,       STR_NULL},
8cb43bb74d0e (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
  1019
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   198,   209, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
8cb43bb74d0e (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
  1020
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   198,   209, STR_NULL,       STR_REPLACE_HELP_REPLACE_INFO_TAB},
8cb43bb74d0e (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
  1021
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   198,   209, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1022
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   125, 0x801,          STR_REPLACE_HELP_LEFT_ARRAY},
2375
8cb43bb74d0e (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
  1023
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1024
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   125, 0x801,          STR_REPLACE_HELP_RIGHT_ARRAY},
2375
8cb43bb74d0e (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
  1025
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   125, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
8cb43bb74d0e (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
  1026
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   126,   197, STR_NULL,       STR_NULL},
8cb43bb74d0e (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
  1027
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   198,   209, STR_NULL,       STR_RESIZE_BUTTON},
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1028
{   WIDGETS_END},
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1029
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1030
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1031
static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1032
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,       STR_018B_CLOSE_WINDOW},
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1033
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   443,     0,    13, STR_REPLACE_VEHICLES_WHITE,  STR_018C_WINDOW_TITLE_DRAG_THIS},
2375
8cb43bb74d0e (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
  1034
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   444,   455,     0,    13, STR_NULL,       STR_STICKY_BUTTON},
8cb43bb74d0e (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
  1035
{      WWT_PANEL,     RESIZE_TB,    14,     0,   227,   110,   161, STR_NULL,       STR_NULL},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1036
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   138,   162,   173, STR_REPLACE_VEHICLES_START,  STR_REPLACE_HELP_START_BUTTON},
2375
8cb43bb74d0e (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
  1037
{      WWT_PANEL,     RESIZE_TB,    14,   139,   305,   162,   173, STR_NULL,       STR_REPLACE_HELP_REPLACE_INFO_TAB},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1038
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   306,   443,   162,   173, STR_REPLACE_VEHICLES_STOP,   STR_REPLACE_HELP_STOP_BUTTON},
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1039
{     WWT_MATRIX, RESIZE_BOTTOM,    14,     0,   215,    14,   109, 0x401,          STR_REPLACE_HELP_LEFT_ARRAY},
2375
8cb43bb74d0e (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
  1040
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    14,   216,   227,    14,   109, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
1465
e595fff78af2 (svn r1969) - GUI: Replace vehicle dropdown menu now looks a bit more comform the ones used throughout the game.
Darkvater
parents: 1462
diff changeset
  1041
{     WWT_MATRIX, RESIZE_BOTTOM,    14,   228,   443,    14,   109, 0x401,          STR_REPLACE_HELP_RIGHT_ARRAY},
2375
8cb43bb74d0e (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
  1042
{ WWT_SCROLL2BAR, RESIZE_BOTTOM,    14,   444,   455,    14,   109, STR_NULL,       STR_0190_SCROLL_BAR_SCROLLS_LIST},
8cb43bb74d0e (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
  1043
{      WWT_PANEL,     RESIZE_TB,    14,   228,   455,   110,   161, STR_NULL,       STR_NULL},
8cb43bb74d0e (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
  1044
{  WWT_RESIZEBOX,     RESIZE_TB,    14,   444,   455,   162,   173, STR_NULL,       STR_RESIZE_BUTTON},
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1045
{   WIDGETS_END},
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1046
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1047
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1048
static const WindowDesc _replace_rail_vehicle_desc = {
1923
bce919cad8e1 (svn r2429) - Fix: Oops, forgot to increase the size of the autoreplace window to fit the extra info from powered wagons.
hackykid
parents: 1907
diff changeset
  1049
	-1, -1, 456, 222,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1050
	WC_REPLACE_VEHICLE,0,
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1051
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1052
	_replace_rail_vehicle_widgets,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1053
	ReplaceVehicleWndProc
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1054
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1055
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1056
static const WindowDesc _replace_road_vehicle_desc = {
2375
8cb43bb74d0e (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
  1057
	-1, -1, 456, 210,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1058
	WC_REPLACE_VEHICLE,0,
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1059
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1060
	_replace_road_vehicle_widgets,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1061
	ReplaceVehicleWndProc
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1062
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1063
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1064
static const WindowDesc _replace_ship_aircraft_vehicle_desc = {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1065
	-1, -1, 456, 174,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1066
	WC_REPLACE_VEHICLE,0,
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1067
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1068
	_replace_ship_aircraft_vehicle_widgets,
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1069
	ReplaceVehicleWndProc
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1070
};
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1071
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1072
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1073
void ShowReplaceVehicleWindow(byte vehicletype)
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1074
{
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1075
	Window *w;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1076
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1077
	DeleteWindowById(WC_REPLACE_VEHICLE, vehicletype);
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1078
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1079
	switch (vehicletype) {
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1080
		case VEH_Train:
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1081
			w = AllocateWindowDescFront(&_replace_rail_vehicle_desc, vehicletype);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1082
			w->vscroll.cap  = 8;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1083
			w->resize.step_height = 14;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1084
			break;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1085
		case VEH_Road:
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1086
			w = AllocateWindowDescFront(&_replace_road_vehicle_desc, vehicletype);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1087
			w->vscroll.cap  = 8;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1088
			w->resize.step_height = 14;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1089
			break;
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1090
		case VEH_Ship:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2530
diff changeset
  1091
		case VEH_Aircraft:
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1092
			w = AllocateWindowDescFront(&_replace_ship_aircraft_vehicle_desc, vehicletype);
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1093
			w->vscroll.cap  = 4;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 845
diff changeset
  1094
			w->resize.step_height = 24;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1095
			break;
845
4960e265d25b (svn r1326) fixed compiler warnings in vehicle_gui.c and widget.c
bjarni
parents: 843
diff changeset
  1096
		default: return;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1097
	}
869
0f8d9efae2e8 (svn r1350) Replace Vehicle GUI:
bjarni
parents: 867
diff changeset
  1098
	w->caption_color = _local_player;
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1099
	WP(w,replaceveh_d).vehicletype = vehicletype;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1100
	w->vscroll2.cap = w->vscroll.cap;   // these two are always the same
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 594
diff changeset
  1101
}
1246
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1102
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1103
void InitializeGUI(void)
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1104
{
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1105
	memset(&_sorting, 0, sizeof(_sorting));
eb66ff34348f (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
darkvater
parents: 1191
diff changeset
  1106
}
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1107
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1108
/** Assigns an already open vehicle window to a new vehicle.
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1109
 * Assigns an already open vehicle window to a new vehicle. If the vehicle got
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1110
 * any sub window open (orders and so on) it will change owner too.
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1111
 * @param *from_v the current owner of the window
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1112
 * @param *to_v the new owner of the window
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1113
 */
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1114
void ChangeVehicleViewWindow(const Vehicle *from_v, const Vehicle *to_v)
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1115
{
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1116
	Window *w;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1117
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1118
	w = FindWindowById(WC_VEHICLE_VIEW, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1119
	if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1120
		w->window_number = to_v->index;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
  1121
		WP(w, vp_d).follow_vehicle = to_v->index;
2552
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1122
		SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1123
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1124
		w = FindWindowById(WC_VEHICLE_ORDERS, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1125
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1126
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1127
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1128
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1129
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1130
		w = FindWindowById(WC_VEHICLE_REFIT, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1131
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1132
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1133
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1134
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1135
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1136
		w = FindWindowById(WC_VEHICLE_DETAILS, from_v->index);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1137
		if (w != NULL) {
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1138
			w->window_number = to_v->index;
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1139
			SetWindowDirty(w);
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1140
		}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1141
	}
5b586a545665 (svn r3081) -Codechange: [autoreplace] complete rewrite of autoreplace
bjarni
parents: 2549
diff changeset
  1142
}