src/engine.cpp
author rubidium
Sun, 25 May 2008 22:36:44 +0000
changeset 9358 2e1e4d2f71dd
parent 9354 845e07db4549
child 9380 62dabf4a5b7e
permissions -rw-r--r--
(svn r13255) -Codechange: move _opt to _settings.
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
9111
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 9070
diff changeset
     3
/** @file engine.cpp Base for all engine handling. */
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1883
diff changeset
     6
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1197
diff changeset
     7
#include "debug.h"
8254
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8226
diff changeset
     8
#include "player_base.h"
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8226
diff changeset
     9
#include "player_func.h"
8116
8da76dcb3287 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8114
diff changeset
    10
#include "command_func.h"
8763
81fadd257f67 (svn r12459) -Codechange: split news.h into news_type.h and news_func.h.
rubidium
parents: 8633
diff changeset
    11
#include "news_func.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    12
#include "saveload.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2147
diff changeset
    13
#include "variables.h"
2708
48714bad9499 (svn r3252) - NewGRF: Map new train subtypes to old types for rail vehicles.
peter1138
parents: 2639
diff changeset
    14
#include "train.h"
5854
9eee280920f0 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 5840
diff changeset
    15
#include "aircraft.h"
3866
b13553406a0a (svn r4902) Newgrf : Introduction of the newgrf_cargo files.
belugas
parents: 3865
diff changeset
    16
#include "newgrf_cargo.h"
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    17
#include "newgrf_engine.h"
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
    18
#include "group.h"
8114
dd6d21dc99c1 (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 7931
diff changeset
    19
#include "strings_func.h"
8225
cd84a95b6630 (svn r11788) -Fix (11787): makedepend doesn't mark delete files as changed...
rubidium
parents: 8221
diff changeset
    20
#include "gfx_func.h"
8131
160939e24ed3 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8121
diff changeset
    21
#include "functions.h"
160939e24ed3 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8121
diff changeset
    22
#include "window_func.h"
8140
0d0d8c94f84b (svn r11702) -Codechange: move all date related stuff to date*.
rubidium
parents: 8131
diff changeset
    23
#include "date_func.h"
8212
cf3fce5c7464 (svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents: 8144
diff changeset
    24
#include "autoreplace_base.h"
cf3fce5c7464 (svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents: 8144
diff changeset
    25
#include "autoreplace_gui.h"
8214
971f861d5543 (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
rubidium
parents: 8212
diff changeset
    26
#include "string_func.h"
8270
e7c342f6b14c (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8268
diff changeset
    27
#include "settings_type.h"
8847
426dd2d582e7 (svn r12599) -Codechange: force AllocateSafeRaw() to be linked to simplify compiler's decisions about inlining
smatz
parents: 8786
diff changeset
    28
#include "oldpool_func.h"
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    29
#include "core/alloc_func.hpp"
9211
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
    30
#include "vehicle_func.h"
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    31
#include "map"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
8264
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    33
#include "table/strings.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    34
#include "table/engines.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8258
diff changeset
    35
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    36
DEFINE_OLD_POOL_GENERIC(Engine, Engine)
2763
a4d065e3261b (svn r3308) BAD
tron
parents: 2708
diff changeset
    37
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    38
enum {
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
    39
	YEAR_ENGINE_AGING_STOPS = 2050,
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
    40
};
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
    41
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    43
/** Number of engines of each vehicle type in original engine data */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    44
const uint8 _engine_counts[4] = {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    45
	lengthof(_orig_rail_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    46
	lengthof(_orig_road_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    47
	lengthof(_orig_ship_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    48
	lengthof(_orig_aircraft_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    49
};
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    50
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    51
/** Offset of the first engine of each vehicle type in original engine data */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    52
const uint8 _engine_offsets[4] = {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    53
	0,
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    54
	lengthof(_orig_rail_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    55
	lengthof(_orig_rail_vehicle_info) + lengthof(_orig_road_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    56
	lengthof(_orig_rail_vehicle_info) + lengthof(_orig_road_vehicle_info) + lengthof(_orig_ship_vehicle_info),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    57
};
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    58
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    59
Engine::Engine() :
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    60
	name(NULL),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    61
	overrides_count(0),
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    62
	overrides(NULL)
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    63
{
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    64
}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    65
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    66
Engine::Engine(VehicleType type, EngineID base)
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    67
{
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    68
	this->type = type;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    69
	this->internal_id = base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    70
	this->list_position = base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    71
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    72
	/* Check if this base engine is within the original engine data range */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    73
	if (base >= _engine_counts[type]) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    74
		/* Mark engine as valid anyway */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    75
		this->info.climates = 0x80;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    76
		return;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    77
	}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    78
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    79
	/* Copy the original engine info for this slot */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    80
	this->info = _orig_engine_info[_engine_offsets[type] + base];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    81
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    82
	/* Copy the original engine data for this slot */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    83
	switch (type) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    84
		default: NOT_REACHED();
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    85
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    86
		case VEH_TRAIN:
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    87
			this->u.rail = _orig_rail_vehicle_info[base];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    88
			this->image_index = this->u.rail.image_index;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    89
			this->info.string_id = STR_8000_KIRBY_PAUL_TANK_STEAM + base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    90
			break;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    91
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    92
		case VEH_ROAD:
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    93
			this->u.road = _orig_road_vehicle_info[base];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    94
			this->image_index = this->u.road.image_index;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    95
			this->info.string_id = STR_8074_MPS_REGAL_BUS + base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    96
			break;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    97
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    98
		case VEH_SHIP:
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
    99
			this->u.ship = _orig_ship_vehicle_info[base];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   100
			this->image_index = this->u.ship.image_index;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   101
			this->info.string_id = STR_80CC_MPS_OIL_TANKER + base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   102
			break;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   103
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   104
		case VEH_AIRCRAFT:
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   105
			this->u.air = _orig_aircraft_vehicle_info[base];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   106
			this->image_index = this->u.air.image_index;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   107
			this->info.string_id = STR_80D7_SAMPSON_U52 + base;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   108
			break;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   109
	}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   110
}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   111
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   112
Engine::~Engine()
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   113
{
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   114
	UnloadWagonOverrides(this);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   115
	free(this->name);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   116
}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   117
9135
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   118
/** Sort all items using qsort() and given 'CompareItems' function
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   119
 * @param el list to be sorted
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   120
 * @param compare function for evaluation of the quicksort
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   121
 */
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   122
void EngList_Sort(EngineList *el, EngList_SortTypeFunction compare)
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   123
{
9206
c3f727972b70 (svn r13072) -Fix (r12995): possible out-of-bounds access
smatz
parents: 9199
diff changeset
   124
	size_t size = el->size();
c3f727972b70 (svn r13072) -Fix (r12995): possible out-of-bounds access
smatz
parents: 9199
diff changeset
   125
	/* out-of-bounds access at the next line for size == 0 (even with operator[] at some systems)
c3f727972b70 (svn r13072) -Fix (r12995): possible out-of-bounds access
smatz
parents: 9199
diff changeset
   126
	 * generally, do not sort if there are less than 2 items */
c3f727972b70 (svn r13072) -Fix (r12995): possible out-of-bounds access
smatz
parents: 9199
diff changeset
   127
	if (size < 2) return;
9223
2e4d5d55bdf0 (svn r13089) -Fix (r13072): MorphOS compilation was broken
smatz
parents: 9220
diff changeset
   128
	qsort(&((*el)[0]), size, sizeof(EngineID), compare); // MorphOS doesn't know vector::at(int) ...
9135
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   129
}
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   130
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   131
/** Sort selected range of items (on indices @ <begin, begin+num_items-1>)
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   132
 * @param el list to be sorted
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   133
 * @param compare function for evaluation of the quicksort
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   134
 * @param begin start of sorting
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   135
 * @param num_items count of items to be sorted
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   136
 */
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   137
void EngList_SortPartial(EngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items)
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   138
{
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   139
	assert(begin <= (uint)el->size());
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   140
	assert(begin + num_items <= (uint)el->size());
9300
460e2e65388d (svn r13168) -Fix (r13072): forgot to 'fix' EngList_SortPartial() together with EngList_Sort()
smatz
parents: 9234
diff changeset
   141
	if (num_items < 2) return;
9135
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   142
	qsort(&((*el)[begin]), num_items, sizeof(EngineID), compare);
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   143
}
9a96282bd1f8 (svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ wrapper for CBlobT
smatz
parents: 9111
diff changeset
   144
9220
125a9aaf4b0a (svn r13086) -Fix: do not crash badly after loading a newgrf with engines in-game that often
smatz
parents: 9211
diff changeset
   145
125a9aaf4b0a (svn r13086) -Fix: do not crash badly after loading a newgrf with engines in-game that often
smatz
parents: 9211
diff changeset
   146
/** Sets cached values in Player::num_vehicles and Group::num_vehicles
125a9aaf4b0a (svn r13086) -Fix: do not crash badly after loading a newgrf with engines in-game that often
smatz
parents: 9211
diff changeset
   147
 */
9211
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   148
void SetCachedEngineCounts()
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   149
{
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   150
	uint engines = GetEnginePoolSize();
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   151
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   152
	/* Set up the engine count for all players */
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   153
	Player *p;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   154
	FOR_ALL_PLAYERS(p) {
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   155
		free(p->num_engines);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   156
		p->num_engines = CallocT<EngineID>(engines);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   157
	}
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   158
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   159
	/* Recalculate */
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   160
	Group *g;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   161
	FOR_ALL_GROUPS(g) {
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   162
		free(g->num_engines);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   163
		g->num_engines = CallocT<EngineID>(engines);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   164
	}
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   165
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   166
	const Vehicle *v;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   167
	FOR_ALL_VEHICLES(v) {
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   168
		if (!IsEngineCountable(v)) continue;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   169
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   170
		assert(v->engine_type < engines);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   171
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   172
		GetPlayer(v->owner)->num_engines[v->engine_type]++;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   173
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   174
		if (v->group_id == DEFAULT_GROUP) continue;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   175
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   176
		g = GetGroup(v->group_id);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   177
		assert(v->type == g->vehicle_type);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   178
		assert(v->owner == g->owner);
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   179
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   180
		g->num_engines[v->engine_type]++;
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   181
	}
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   182
}
a7347659b84a (svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
smatz
parents: 9206
diff changeset
   183
8221
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   184
void SetupEngines()
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   185
{
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   186
	_Engine_pool.CleanPool();
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   187
	_Engine_pool.AddBlockToPool();
8221
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   188
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   189
	for (uint i = 0; i < lengthof(_orig_rail_vehicle_info); i++) new Engine(VEH_TRAIN, i);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   190
	for (uint i = 0; i < lengthof(_orig_road_vehicle_info); i++) new Engine(VEH_ROAD, i);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   191
	for (uint i = 0; i < lengthof(_orig_ship_vehicle_info); i++) new Engine(VEH_SHIP, i);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   192
	for (uint i = 0; i < lengthof(_orig_aircraft_vehicle_info); i++) new Engine(VEH_AIRCRAFT, i);
8221
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   193
}
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   194
59791d0e0c04 (svn r11784) -Codechange: set up initial engine data in one place
peter1138
parents: 8220
diff changeset
   195
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2469
diff changeset
   196
void ShowEnginePreviewWindow(EngineID engine);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   197
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   198
void DeleteCustomEngineNames()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
{
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   200
	Engine *e;
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   201
	FOR_ALL_ENGINES(e) {
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   202
		free(e->name);
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   203
		e->name = NULL;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   205
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   206
	_vehicle_design_names &= ~1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   207
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   208
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   209
void LoadCustomEngineNames()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   210
{
4432
372316ca7924 (svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and '/*' or '*/' in '//' style comments.
rubidium
parents: 4384
diff changeset
   211
	/* XXX: not done */
5380
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5216
diff changeset
   212
	DEBUG(misc, 1, "LoadCustomEngineNames: not done");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   213
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   214
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   215
static void CalcEngineReliability(Engine *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   216
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   217
	uint age = e->age;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   218
6606
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   219
	/* Check for early retirement */
9354
845e07db4549 (svn r13251) -Codechange: rename _patches to _settings as that is more logic.
rubidium
parents: 9300
diff changeset
   220
	if (e->player_avail != 0 && !_settings.vehicle.never_expire_vehicles) {
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   221
		int retire_early = e->info.retire_early;
8509
84c0cc012ad3 (svn r12084) -Fix: 'Early retirement'-properties are signed.
frosch
parents: 8479
diff changeset
   222
		uint retire_early_max_age = max(0, e->duration_phase_1 + e->duration_phase_2 - retire_early * 12);
84c0cc012ad3 (svn r12084) -Fix: 'Early retirement'-properties are signed.
frosch
parents: 8479
diff changeset
   223
		if (retire_early != 0 && age >= retire_early_max_age) {
6606
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   224
			/* Early retirement is enabled and we're past the date... */
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   225
			e->player_avail = 0;
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   226
			AddRemoveEngineFromAutoreplaceAndBuildWindows(e->type);
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   227
		}
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   228
	}
cc9f292f7223 (svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
peter1138
parents: 6530
diff changeset
   229
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
	if (age < e->duration_phase_1) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
		uint start = e->reliability_start;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
		e->reliability = age * (e->reliability_max - start) / e->duration_phase_1 + start;
9354
845e07db4549 (svn r13251) -Codechange: rename _patches to _settings as that is more logic.
rubidium
parents: 9300
diff changeset
   233
	} else if ((age -= e->duration_phase_1) < e->duration_phase_2 || _settings.vehicle.never_expire_vehicles) {
4767
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   234
		/* We are at the peak of this engines life. It will have max reliability.
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   235
		 * This is also true if the engines never expire. They will not go bad over time */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
		e->reliability = e->reliability_max;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
	} else if ((age -= e->duration_phase_2) < e->duration_phase_3) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
		uint max = e->reliability_max;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   239
		e->reliability = (int)age * (int)(e->reliability_final - max) / e->duration_phase_3 + max;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   240
	} else {
4767
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   241
		/* time's up for this engine.
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   242
		 * We will now completely retire this design */
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   243
		e->player_avail = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
		e->reliability = e->reliability_final;
5944
6d059cc8662b (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window
bjarni
parents: 5868
diff changeset
   245
		/* Kick this engine out of the lists */
6d059cc8662b (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window
bjarni
parents: 5868
diff changeset
   246
		AddRemoveEngineFromAutoreplaceAndBuildWindows(e->type);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   247
	}
4767
df84b7f59e5b (svn r6681) -Fix: when vehicles never expire they will stay at peak reliability instead of the lowest to make them useful even when old
bjarni
parents: 4766
diff changeset
   248
	InvalidateWindowClasses(WC_BUILD_VEHICLE); // Update to show the new reliability
5944
6d059cc8662b (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window
bjarni
parents: 5868
diff changeset
   249
	InvalidateWindowClasses(WC_REPLACE_VEHICLE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   251
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   252
void StartupEngines()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
	Engine *e;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
   255
	/* Aging of vehicles stops, so account for that when starting late */
4322
f40bbdf476b3 (svn r5975) -Cleanup: use ORIGINAL_BASE_YEAR & ORIGINAL_MAX_YEAR where the functions really depend on the original date format.
rubidium
parents: 4300
diff changeset
   256
	const Date aging_date = min(_date, ConvertYMDToDate(YEAR_ENGINE_AGING_STOPS, 0, 1));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   258
	FOR_ALL_ENGINES(e) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   259
		const EngineInfo *ei = &e->info;
2242
512eae2cf006 (svn r2762) Simplify a loop, remove an unused variable and add many consts
tron
parents: 2204
diff changeset
   260
		uint32 r;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
		e->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   263
		e->flags = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   264
		e->player_avail = 0;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 114
diff changeset
   265
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   266
		/* The magic value of 729 days below comes from the NewGRF spec. If the
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   267
		 * base intro date is before 1922 then the random number of days is not
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   268
		 * added. */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
		r = Random();
4297
d0311b62255c (svn r5934) -Cleanup: forgot some conversions to Year and to Date
rubidium
parents: 4293
diff changeset
   270
		e->intro_date = ei->base_intro <= ConvertYMDToDate(1922, 0, 1) ? ei->base_intro : (Date)GB(r, 0, 9) + ei->base_intro;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   271
		if (e->intro_date <= _date) {
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
   272
			e->age = (aging_date - e->intro_date) >> 5;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   273
			e->player_avail = (byte)-1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   274
			e->flags |= ENGINE_AVAILABLE;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   275
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   276
2140
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   277
		e->reliability_start = GB(r, 16, 14) + 0x7AE0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
		r = Random();
2140
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   279
		e->reliability_max   = GB(r,  0, 14) + 0xBFFF;
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   280
		e->reliability_final = GB(r, 16, 14) + 0x3FFF;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   281
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   282
		r = Random();
2140
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   283
		e->duration_phase_1 = GB(r, 0, 5) + 7;
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   284
		e->duration_phase_2 = GB(r, 5, 4) + ei->base_life * 12 - 96;
a04d0142ad65 (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 1988
diff changeset
   285
		e->duration_phase_3 = GB(r, 9, 7) + 120;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   286
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   287
		e->reliability_spd_dec = (ei->unk2&0x7F) << 2;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   288
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   289
		/* my invented flag for something that is a wagon */
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   290
		if (ei->unk2 & 0x80) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   291
			e->age = 0xFFFF;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   292
		} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   293
			CalcEngineReliability(e);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   294
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   295
9354
845e07db4549 (svn r13251) -Codechange: rename _patches to _settings as that is more logic.
rubidium
parents: 9300
diff changeset
   296
		e->lifelength = ei->lifelength + _settings.vehicle.extend_vehicle_life;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   297
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   298
		/* prevent certain engines from ever appearing. */
9358
2e1e4d2f71dd (svn r13255) -Codechange: move _opt to _settings.
rubidium
parents: 9354
diff changeset
   299
		if (!HasBit(ei->climates, _settings.game_creation.landscape)) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   300
			e->flags |= ENGINE_AVAILABLE;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   301
			e->player_avail = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   302
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   303
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   304
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   305
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   306
static void AcceptEnginePreview(EngineID eid, PlayerID player)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
{
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   308
	Engine *e = GetEngine(eid);
6685
00490513d7b1 (svn r9917) -Codechange: prepare some more areas for more road types.
rubidium
parents: 6643
diff changeset
   309
	Player *p = GetPlayer(player);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   310
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7928
diff changeset
   311
	SetBit(e->player_avail, player);
6259
471b91a4b1d8 (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6247
diff changeset
   312
	if (e->type == VEH_TRAIN) {
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   313
		const RailVehicleInfo *rvi = RailVehInfo(eid);
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   314
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   315
		assert(rvi->railtype < RAILTYPE_END);
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7928
diff changeset
   316
		SetBit(p->avail_railtypes, rvi->railtype);
6685
00490513d7b1 (svn r9917) -Codechange: prepare some more areas for more road types.
rubidium
parents: 6643
diff changeset
   317
	} else if (e->type == VEH_ROAD) {
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7928
diff changeset
   318
		SetBit(p->avail_roadtypes, HasBit(EngInfo(eid)->misc_flags, EF_ROAD_TRAM) ? ROADTYPE_TRAM : ROADTYPE_ROAD);
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   319
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   321
	e->preview_player_rank = 0xFF;
4766
aa276d0ec2eb (svn r6680) -Codechange r6679: [train build window] only generate the list when the window data is invalidated or the window is generated, not on each redraw
bjarni
parents: 4549
diff changeset
   322
	if (player == _local_player) {
5944
6d059cc8662b (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window
bjarni
parents: 5868
diff changeset
   323
		AddRemoveEngineFromAutoreplaceAndBuildWindows(e->type);
4766
aa276d0ec2eb (svn r6680) -Codechange r6679: [train build window] only generate the list when the window data is invalidated or the window is generated, not on each redraw
bjarni
parents: 4549
diff changeset
   324
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   326
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   327
static PlayerID GetBestPlayer(uint8 pp)
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   328
{
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   329
	const Player *p;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   330
	int32 best_hist;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   331
	PlayerID best_player;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   332
	uint mask = 0;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   333
8572
5042e9287ea1 (svn r12150) -Fix (r12143): compiler warnings - possible use of uninitialised variable
smatz
parents: 8565
diff changeset
   334
	do {
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   335
		best_hist = -1;
4848
45f848b46222 (svn r6774) -Codechange: Rename the badly named OWNER_SPECTATOR to PLAYER_SPECTATOR and
Darkvater
parents: 4845
diff changeset
   336
		best_player = PLAYER_SPECTATOR;
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   337
		FOR_ALL_PLAYERS(p) {
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7388
diff changeset
   338
			if (p->is_active && p->block_preview == 0 && !HasBit(mask, p->index) &&
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   339
					p->old_economy[0].performance_history > best_hist) {
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   340
				best_hist = p->old_economy[0].performance_history;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   341
				best_player = p->index;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   342
			}
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   343
		}
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   344
4848
45f848b46222 (svn r6774) -Codechange: Rename the badly named OWNER_SPECTATOR to PLAYER_SPECTATOR and
Darkvater
parents: 4845
diff changeset
   345
		if (best_player == PLAYER_SPECTATOR) return PLAYER_SPECTATOR;
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   346
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7928
diff changeset
   347
		SetBit(mask, best_player);
8633
454accf1533b (svn r12244) -Fix (r12150): typo resulting in no players are given the engine preview offer
smatz
parents: 8572
diff changeset
   348
	} while (--pp != 0);
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   349
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   350
	return best_player;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   351
}
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   352
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   353
void EnginesDailyLoop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   354
{
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
   355
	if (_cur_year >= YEAR_ENGINE_AGING_STOPS) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   356
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   357
	Engine *e;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   358
	FOR_ALL_ENGINES(e) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   359
		EngineID i = e->index;
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   360
		if (e->flags & ENGINE_EXCLUSIVE_PREVIEW) {
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   361
			if (e->flags & ENGINE_OFFER_WINDOW_OPEN) {
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   362
				if (e->preview_player_rank != 0xFF && !--e->preview_wait) {
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   363
					e->flags &= ~ENGINE_OFFER_WINDOW_OPEN;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   364
					DeleteWindowById(WC_ENGINE_PREVIEW, i);
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   365
					e->preview_player_rank++;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 114
diff changeset
   366
				}
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   367
			} else if (e->preview_player_rank != 0xFF) {
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   368
				PlayerID best_player = GetBestPlayer(e->preview_player_rank);
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   369
4848
45f848b46222 (svn r6774) -Codechange: Rename the badly named OWNER_SPECTATOR to PLAYER_SPECTATOR and
Darkvater
parents: 4845
diff changeset
   370
				if (best_player == PLAYER_SPECTATOR) {
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   371
					e->preview_player_rank = 0xFF;
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   372
					continue;
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   373
				}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 114
diff changeset
   374
4845
72bbb6e2694e (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4792
diff changeset
   375
				if (!IsHumanPlayer(best_player)) {
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   376
					/* XXX - TTDBUG: TTD has a bug here ???? */
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   377
					AcceptEnginePreview(i, best_player);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   378
				} else {
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   379
					e->flags |= ENGINE_OFFER_WINDOW_OPEN;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
					e->preview_wait = 20;
4845
72bbb6e2694e (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4792
diff changeset
   381
					if (IsInteractivePlayer(best_player)) ShowEnginePreviewWindow(i);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   382
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   383
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   384
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   385
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   386
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   387
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   388
/** Accept an engine prototype. XXX - it is possible that the top-player
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   389
 * changes while you are waiting to accept the offer? Then it becomes invalid
3491
35d747bb5e82 (svn r4342) Change the first two parameters of commands - virtual pixel coordinates of the tile to operate on - to a TileIndex
tron
parents: 3222
diff changeset
   390
 * @param tile unused
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6259
diff changeset
   391
 * @param flags operation to perfom
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   392
 * @param p1 engine-prototype offered
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   393
 * @param p2 unused
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   394
 */
6943
1914f26aee04 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 6686
diff changeset
   395
CommandCost CmdWantEnginePreview(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   396
{
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   397
	Engine *e;
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2875
diff changeset
   398
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   399
	if (!IsEngineIndex(p1)) return CMD_ERROR;
1926
530480d14685 (svn r2432) Use GetEngine() instead of DEREF_ENGINE() or even _engines[]
tron
parents: 1908
diff changeset
   400
	e = GetEngine(p1);
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   401
	if (GetBestPlayer(e->preview_player_rank) != _current_player) return CMD_ERROR;
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   402
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   403
	if (flags & DC_EXEC) AcceptEnginePreview(p1, _current_player);
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   404
6950
14ecb0acdfb4 (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 6943
diff changeset
   405
	return CommandCost();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   406
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   407
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   408
/* Determine if an engine type is a wagon (and not a loco) */
2477
225b2916fe2a (svn r3003) Change int, uint, uin16 and byte to EngineID where appropriate, plus some related changes (mostly casts)
tron
parents: 2469
diff changeset
   409
static bool IsWagon(EngineID index)
257
0ff8a2e60a0d (svn r262) Fix: [ 1028234 ] Monorail and MagLev infrastructure not available in 1920s any more
dominik
parents: 220
diff changeset
   410
{
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   411
	const Engine *e = GetEngine(index);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   412
	return e->type == VEH_TRAIN && e->u.rail.railveh_type == RAILVEH_WAGON;
257
0ff8a2e60a0d (svn r262) Fix: [ 1028234 ] Monorail and MagLev infrastructure not available in 1920s any more
dominik
parents: 220
diff changeset
   413
}
0ff8a2e60a0d (svn r262) Fix: [ 1028234 ] Monorail and MagLev infrastructure not available in 1920s any more
dominik
parents: 220
diff changeset
   414
9199
ce9fbdff6581 (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
rubidium
parents: 9135
diff changeset
   415
StringID GetEngineCategoryName(EngineID engine);
ce9fbdff6581 (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
rubidium
parents: 9135
diff changeset
   416
410
0efd84450b01 (svn r607) -Patch: [ 985102 ] static cleanup
tron
parents: 408
diff changeset
   417
static void NewVehicleAvailable(Engine *e)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   418
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   419
	Vehicle *v;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   420
	Player *p;
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   421
	EngineID index = e->index;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   423
	/* In case the player didn't build the vehicle during the intro period,
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   424
	 * prevent that player from getting future intro periods for a while. */
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   425
	if (e->flags & ENGINE_EXCLUSIVE_PREVIEW) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   426
		FOR_ALL_PLAYERS(p) {
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   427
			uint block_preview = p->block_preview;
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   428
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7388
diff changeset
   429
			if (!HasBit(e->player_avail, p->index)) continue;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 114
diff changeset
   430
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   431
			/* We assume the user did NOT build it.. prove me wrong ;) */
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   432
			p->block_preview = 20;
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   433
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   434
			FOR_ALL_VEHICLES(v) {
6259
471b91a4b1d8 (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6247
diff changeset
   435
				if (v->type == VEH_TRAIN || v->type == VEH_ROAD || v->type == VEH_SHIP ||
471b91a4b1d8 (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6247
diff changeset
   436
						(v->type == VEH_AIRCRAFT && IsNormalAircraft(v))) {
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   437
					if (v->owner == p->index && v->engine_type == index) {
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   438
						/* The user did prove me wrong, so restore old value */
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   439
						p->block_preview = block_preview;
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   440
						break;
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 915
diff changeset
   441
					}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   442
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   443
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   444
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   445
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   446
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   447
	e->flags = (e->flags & ~ENGINE_EXCLUSIVE_PREVIEW) | ENGINE_AVAILABLE;
5944
6d059cc8662b (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window
bjarni
parents: 5868
diff changeset
   448
	AddRemoveEngineFromAutoreplaceAndBuildWindows(e->type);
114
6a2af0c2d0db (svn r115) Fix: monorail/maglev became available around 1927
dominik
parents: 0
diff changeset
   449
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   450
	/* Now available for all players */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
	e->player_avail = (byte)-1;
114
6a2af0c2d0db (svn r115) Fix: monorail/maglev became available around 1927
dominik
parents: 0
diff changeset
   452
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   453
	/* Do not introduce new rail wagons */
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2611
diff changeset
   454
	if (IsWagon(index)) return;
114
6a2af0c2d0db (svn r115) Fix: monorail/maglev became available around 1927
dominik
parents: 0
diff changeset
   455
8220
97fb9c6afd8d (svn r11783) -Codechange: compare engine type with its type property, not by its index
peter1138
parents: 8214
diff changeset
   456
	if (e->type == VEH_TRAIN) {
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   457
		/* maybe make another rail type available */
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   458
		RailType railtype = e->u.rail.railtype;
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   459
		assert(railtype < RAILTYPE_END);
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   460
		FOR_ALL_PLAYERS(p) {
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7928
diff changeset
   461
			if (p->is_active) SetBit(p->avail_railtypes, railtype);
2147
eb6ba42fd216 (svn r2657) -Codechange: The available railtypes per player are now a bitmask, so
celestar
parents: 2140
diff changeset
   462
		}
8220
97fb9c6afd8d (svn r11783) -Codechange: compare engine type with its type property, not by its index
peter1138
parents: 8214
diff changeset
   463
	} else if (e->type == VEH_ROAD) {
6686
9e8b32366bd6 (svn r9918) -Fix: the available roadtypes/railtypes were not updated on GRF updates.
rubidium
parents: 6685
diff changeset
   464
		/* maybe make another road type available */
9e8b32366bd6 (svn r9918) -Fix: the available roadtypes/railtypes were not updated on GRF updates.
rubidium
parents: 6685
diff changeset
   465
		FOR_ALL_PLAYERS(p) {
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   466
			if (p->is_active) SetBit(p->avail_roadtypes, HasBit(e->info.misc_flags, EF_ROAD_TRAM) ? ROADTYPE_TRAM : ROADTYPE_ROAD);
6686
9e8b32366bd6 (svn r9918) -Fix: the available roadtypes/railtypes were not updated on GRF updates.
rubidium
parents: 6685
diff changeset
   467
		}
9e8b32366bd6 (svn r9918) -Fix: the available roadtypes/railtypes were not updated on GRF updates.
rubidium
parents: 6685
diff changeset
   468
	}
9199
ce9fbdff6581 (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
rubidium
parents: 9135
diff changeset
   469
ce9fbdff6581 (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
rubidium
parents: 9135
diff changeset
   470
	SetDParam(0, GetEngineCategoryName(index));
ce9fbdff6581 (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
rubidium
parents: 9135
diff changeset
   471
	SetDParam(1, index);
9234
bfc9d27d3d0d (svn r13100) -Codechange: reduce the amount of parameters passed via AddNewsMessage as there is (for each news message type) a tuple of 4 parameters that is the same for all calls.
rubidium
parents: 9223
diff changeset
   472
	AddNewsItem(STR_NEW_VEHICLE_NOW_AVAILABLE_WITH_TYPE, NS_NEW_VEHICLES, index, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   473
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   474
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   475
void EnginesMonthlyLoop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   476
{
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4297
diff changeset
   477
	if (_cur_year < YEAR_ENGINE_AGING_STOPS) {
8401
26fb10da8c68 (svn r11971) -Codechange: use of FOR_ALL_ENGINES/ENGINEIDS_OF_TYPE instead of for-loops
peter1138
parents: 8400
diff changeset
   478
		Engine *e;
26fb10da8c68 (svn r11971) -Codechange: use of FOR_ALL_ENGINES/ENGINEIDS_OF_TYPE instead of for-loops
peter1138
parents: 8400
diff changeset
   479
		FOR_ALL_ENGINES(e) {
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   480
			/* Age the vehicle */
2242
512eae2cf006 (svn r2762) Simplify a loop, remove an unused variable and add many consts
tron
parents: 2204
diff changeset
   481
			if (e->flags & ENGINE_AVAILABLE && e->age != 0xFFFF) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   482
				e->age++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   483
				CalcEngineReliability(e);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   484
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   485
2990
2bbe7769ebd4 (svn r3565) - Fix: On loading a game, GetPlayerRailtypes() didn't account for the fact that vehicles are introduced a year after their introduction date. This will also relieve possible (rare) network desyncs.
peter1138
parents: 2962
diff changeset
   486
			if (!(e->flags & ENGINE_AVAILABLE) && _date >= (e->intro_date + 365)) {
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   487
				/* Introduce it to all players */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   488
				NewVehicleAvailable(e);
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   489
			} else if (!(e->flags & (ENGINE_AVAILABLE|ENGINE_EXCLUSIVE_PREVIEW)) && _date >= e->intro_date) {
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   490
				/* Introduction date has passed.. show introducing dialog to one player. */
6174
0c743995213f (svn r8944) -Codechange: Move the enum describing the bitmask of Engine.flags to engine.h and give the enum values better names.
maedhros
parents: 6125
diff changeset
   491
				e->flags |= ENGINE_EXCLUSIVE_PREVIEW;
257
0ff8a2e60a0d (svn r262) Fix: [ 1028234 ] Monorail and MagLev infrastructure not available in 1920s any more
dominik
parents: 220
diff changeset
   492
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   493
				/* Do not introduce new rail wagons */
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   494
				if (!IsWagon(e->index))
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   495
					e->preview_player_rank = 1; // Give to the player with the highest rating.
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   496
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   497
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   498
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   499
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   500
7097
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   501
static bool IsUniqueEngineName(const char *name)
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   502
{
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   503
	char buf[512];
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   504
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   505
	const Engine *e;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   506
	FOR_ALL_ENGINES(e) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   507
		SetDParam(0, e->index);
7097
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   508
		GetString(buf, STR_ENGINE_NAME, lastof(buf));
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   509
		if (strcmp(buf, name) == 0) return false;
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   510
	}
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   511
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   512
	return true;
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   513
}
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   514
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   515
/** Rename an engine.
3491
35d747bb5e82 (svn r4342) Change the first two parameters of commands - virtual pixel coordinates of the tile to operate on - to a TileIndex
tron
parents: 3222
diff changeset
   516
 * @param tile unused
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6259
diff changeset
   517
 * @param flags operation to perfom
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   518
 * @param p1 engine ID to rename
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   519
 * @param p2 unused
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   520
 */
6943
1914f26aee04 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 6686
diff changeset
   521
CommandCost CmdRenameEngine(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   522
{
7097
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   523
	if (!IsEngineIndex(p1) || StrEmpty(_cmd_text)) return CMD_ERROR;
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 1560
diff changeset
   524
7097
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   525
	if (!IsUniqueEngineName(_cmd_text)) return_cmd_error(STR_NAME_MUST_BE_UNIQUE);
bc497a49fb45 (svn r10364) -Fix [FS#706]: checking for duplicate custom names was inconsistent, and tested all 'namespaces'. now only check names of the same type.
peter1138
parents: 6950
diff changeset
   526
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   527
	if (flags & DC_EXEC) {
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   528
		Engine *e = GetEngine(p1);
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   529
		free(e->name);
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   530
		e->name = strdup(_cmd_text);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   531
		_vehicle_design_names |= 3;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   532
		MarkWholeScreenDirty();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   533
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   534
6950
14ecb0acdfb4 (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 6943
diff changeset
   535
	return CommandCost();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   536
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   537
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   538
8479
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   539
/** Check if an engine is buildable.
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   540
 * @param engine index of the engine to check.
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   541
 * @param type   the type the engine should be.
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   542
 * @param player index of the player.
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   543
 * @return True if an engine is valid, of the specified type, and buildable by
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   544
 *              the given player.
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   545
 */
8479
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   546
bool IsEngineBuildable(EngineID engine, VehicleType type, PlayerID player)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   547
{
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   548
	/* check if it's an engine that is in the engine array */
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   549
	if (!IsEngineIndex(engine)) return false;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   550
8479
05ee5ae44a55 (svn r12054) -Cleanup: Use VehicleType instead of byte for vehicle types...
peter1138
parents: 8401
diff changeset
   551
	const Engine *e = GetEngine(engine);
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   552
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   553
	/* check if it's an engine of specified type */
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   554
	if (e->type != type) return false;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   555
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   556
	/* check if it's available */
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7388
diff changeset
   557
	if (!HasBit(e->player_avail, player)) return false;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   558
6530
06785f74984c (svn r9718) -Fix: Don't allow building of rail vehicles whose railtype isn't available yet. This also affects the rail purchase window.
peter1138
parents: 6505
diff changeset
   559
	if (type == VEH_TRAIN) {
06785f74984c (svn r9718) -Fix: Don't allow building of rail vehicles whose railtype isn't available yet. This also affects the rail purchase window.
peter1138
parents: 6505
diff changeset
   560
		/* Check if the rail type is available to this player */
06785f74984c (svn r9718) -Fix: Don't allow building of rail vehicles whose railtype isn't available yet. This also affects the rail purchase window.
peter1138
parents: 6505
diff changeset
   561
		const Player *p = GetPlayer(player);
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7388
diff changeset
   562
		if (!HasBit(p->avail_railtypes, RailVehInfo(engine)->railtype)) return false;
6530
06785f74984c (svn r9718) -Fix: Don't allow building of rail vehicles whose railtype isn't available yet. This also affects the rail purchase window.
peter1138
parents: 6505
diff changeset
   563
	}
06785f74984c (svn r9718) -Fix: Don't allow building of rail vehicles whose railtype isn't available yet. This also affects the rail purchase window.
peter1138
parents: 6505
diff changeset
   564
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   565
	return true;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   566
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   567
6505
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   568
/** Get the default cargo type for a certain engine type
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   569
 * @param engine The ID to get the cargo for
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   570
 * @return The cargo type. CT_INVALID means no cargo capacity
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   571
 */
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   572
CargoID GetEngineCargoType(EngineID engine)
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   573
{
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   574
	assert(IsEngineIndex(engine));
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   575
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   576
	switch (GetEngine(engine)->type) {
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   577
		case VEH_TRAIN:
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   578
			if (RailVehInfo(engine)->capacity == 0) return CT_INVALID;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   579
			return RailVehInfo(engine)->cargo_type;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   580
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   581
		case VEH_ROAD:
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   582
			if (RoadVehInfo(engine)->capacity == 0) return CT_INVALID;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   583
			return RoadVehInfo(engine)->cargo_type;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   584
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   585
		case VEH_SHIP:
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   586
			if (ShipVehInfo(engine)->capacity == 0) return CT_INVALID;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   587
			return ShipVehInfo(engine)->cargo_type;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   588
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   589
		case VEH_AIRCRAFT:
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   590
			/* all aircraft starts as passenger planes with cargo capacity */
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   591
			return CT_PASSENGERS;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   592
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   593
		default: NOT_REACHED(); return CT_INVALID;
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   594
	}
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   595
}
8b4c20ddacd3 (svn r9688) -Codechange: Created a function to get default cargo type for a cargo type
bjarni
parents: 6481
diff changeset
   596
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   597
/************************************************************************
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   598
 * Engine Replacement stuff
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   599
 ************************************************************************/
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   600
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   601
DEFINE_OLD_POOL_GENERIC(EngineRenew, EngineRenew)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   602
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   603
/**
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   604
 * Retrieves the EngineRenew that specifies the replacement of the given
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   605
 * engine type from the given renewlist */
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   606
static EngineRenew *GetEngineReplacement(EngineRenewList erl, EngineID engine, GroupID group)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   607
{
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   608
	EngineRenew *er = (EngineRenew *)erl;
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   609
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   610
	while (er) {
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   611
		if (er->from == engine && er->group_id == group) return er;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   612
		er = er->next;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   613
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   614
	return NULL;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   615
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   616
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4077
diff changeset
   617
void RemoveAllEngineReplacement(EngineRenewList *erl)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   618
{
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   619
	EngineRenew *er = (EngineRenew *)(*erl);
4384
7e0d3ed719d9 (svn r6137) -Codechange: some very minor cleanups:
truelight
parents: 4358
diff changeset
   620
	EngineRenew *next;
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   621
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   622
	while (er != NULL) {
4384
7e0d3ed719d9 (svn r6137) -Codechange: some very minor cleanups:
truelight
parents: 4358
diff changeset
   623
		next = er->next;
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   624
		delete er;
4384
7e0d3ed719d9 (svn r6137) -Codechange: some very minor cleanups:
truelight
parents: 4358
diff changeset
   625
		er = next;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   626
	}
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   627
	*erl = NULL; // Empty list
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   628
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   629
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   630
EngineID EngineReplacement(EngineRenewList erl, EngineID engine, GroupID group)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   631
{
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   632
	const EngineRenew *er = GetEngineReplacement(erl, engine, group);
8307
d4cf68c0d50b (svn r11872) -Fix (r9874): EngineHasReplacementForPlayer() didn't look in ALL_GROUP
bjarni
parents: 8270
diff changeset
   633
	if (er == NULL && (group == DEFAULT_GROUP || (IsValidGroupID(group) && !GetGroup(group)->replace_protection))) {
d4cf68c0d50b (svn r11872) -Fix (r9874): EngineHasReplacementForPlayer() didn't look in ALL_GROUP
bjarni
parents: 8270
diff changeset
   634
		/* We didn't find anything useful in the vehicle's own group so we will try ALL_GROUP */
d4cf68c0d50b (svn r11872) -Fix (r9874): EngineHasReplacementForPlayer() didn't look in ALL_GROUP
bjarni
parents: 8270
diff changeset
   635
		er = GetEngineReplacement(erl, engine, ALL_GROUP);
d4cf68c0d50b (svn r11872) -Fix (r9874): EngineHasReplacementForPlayer() didn't look in ALL_GROUP
bjarni
parents: 8270
diff changeset
   636
	}
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   637
	return er == NULL ? INVALID_ENGINE : er->to;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   638
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   639
6943
1914f26aee04 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 6686
diff changeset
   640
CommandCost AddEngineReplacement(EngineRenewList *erl, EngineID old_engine, EngineID new_engine, GroupID group, uint32 flags)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   641
{
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   642
	EngineRenew *er;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   643
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   644
	/* Check if the old vehicle is already in the list */
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   645
	er = GetEngineReplacement(*erl, old_engine, group);
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   646
	if (er != NULL) {
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   647
		if (flags & DC_EXEC) er->to = new_engine;
6950
14ecb0acdfb4 (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 6943
diff changeset
   648
		return CommandCost();
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   649
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   650
9036
6368fe55fd6d (svn r12855) -Codechange: do not use autoptr's for testing whether certain objects can be build, but check it directly in the pool so we do not have to call destructors in the testing phase. Stations still use the autoptr though.
rubidium
parents: 8847
diff changeset
   651
	if (!EngineRenew::CanAllocateItem()) return CMD_ERROR;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   652
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   653
	if (flags & DC_EXEC) {
9036
6368fe55fd6d (svn r12855) -Codechange: do not use autoptr's for testing whether certain objects can be build, but check it directly in the pool so we do not have to call destructors in the testing phase. Stations still use the autoptr though.
rubidium
parents: 8847
diff changeset
   654
		er = new EngineRenew(old_engine, new_engine);
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   655
		er->group_id = group;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   656
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   657
		/* Insert before the first element */
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   658
		er->next = (EngineRenew *)(*erl);
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   659
		*erl = (EngineRenewList)er;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   660
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   661
6950
14ecb0acdfb4 (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 6943
diff changeset
   662
	return CommandCost();
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   663
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   664
6943
1914f26aee04 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 6686
diff changeset
   665
CommandCost RemoveEngineReplacement(EngineRenewList *erl, EngineID engine, GroupID group, uint32 flags)
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   666
{
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   667
	EngineRenew *er = (EngineRenew *)(*erl);
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4077
diff changeset
   668
	EngineRenew *prev = NULL;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   669
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   670
	while (er)
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   671
	{
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   672
		if (er->from == engine && er->group_id == group) {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   673
			if (flags & DC_EXEC) {
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   674
				if (prev == NULL) { // First element
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   675
					/* The second becomes the new first element */
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   676
					*erl = (EngineRenewList)er->next;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   677
				} else {
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   678
					/* Cut this element out */
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   679
					prev->next = er->next;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   680
				}
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   681
				delete er;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   682
			}
6950
14ecb0acdfb4 (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 6943
diff changeset
   683
			return CommandCost();
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   684
		}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   685
		prev = er;
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   686
		er = er->next;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   687
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   688
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   689
	return CMD_ERROR;
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   690
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   691
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   692
static const SaveLoad _engine_renew_desc[] = {
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   693
	    SLE_VAR(EngineRenew, from,     SLE_UINT16),
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   694
	    SLE_VAR(EngineRenew, to,       SLE_UINT16),
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   695
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   696
	    SLE_REF(EngineRenew, next,     REF_ENGINE_RENEWS),
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   697
	SLE_CONDVAR(EngineRenew, group_id, SLE_UINT16, 60, SL_MAX_VERSION),
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   698
	SLE_END()
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   699
};
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   700
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   701
static void Save_ERNW()
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   702
{
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   703
	EngineRenew *er;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   704
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   705
	FOR_ALL_ENGINE_RENEWS(er) {
4348
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   706
		SlSetArrayIndex(er->index);
d9ddb0558a48 (svn r6049) -Codechange: forgot EngineRenew in r6047
truelight
parents: 4346
diff changeset
   707
		SlObject(er, _engine_renew_desc);
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   708
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   709
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   710
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   711
static void Load_ERNW()
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   712
{
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   713
	int index;
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   714
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   715
	while ((index = SlIterateArray()) != -1) {
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   716
		EngineRenew *er = new (index) EngineRenew();
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   717
		SlObject(er, _engine_renew_desc);
6643
f81bee57bc09 (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
rubidium
parents: 6606
diff changeset
   718
7258
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   719
		/* Advanced vehicle lists, ungrouped vehicles got added */
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   720
		if (CheckSavegameVersion(60)) {
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   721
			er->group_id = ALL_GROUP;
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   722
		} else if (CheckSavegameVersion(71)) {
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   723
			if (er->group_id == DEFAULT_GROUP) er->group_id = ALL_GROUP;
8ea218277d00 (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
rubidium
parents: 7097
diff changeset
   724
		}
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   725
	}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   726
}
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   727
1881
435d39bd6ee0 (svn r2387) - CodeChange: made the saveload code more readable and also removed the 'byte' saveload arrays which means you can save an array of more than 255 elements, or bigger structs than 255 bytes. This doesn't yet solve the problem that a chunk can be a maximum of 16384 big.
Darkvater
parents: 1855
diff changeset
   728
static const SaveLoad _engine_desc[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   729
	SLE_CONDVAR(Engine, intro_date,          SLE_FILE_U16 | SLE_VAR_I32,  0,  30),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   730
	SLE_CONDVAR(Engine, intro_date,          SLE_INT32,                  31, SL_MAX_VERSION),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   731
	SLE_CONDVAR(Engine, age,                 SLE_FILE_U16 | SLE_VAR_I32,  0,  30),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   732
	SLE_CONDVAR(Engine, age,                 SLE_INT32,                  31, SL_MAX_VERSION),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   733
	    SLE_VAR(Engine, reliability,         SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   734
	    SLE_VAR(Engine, reliability_spd_dec, SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   735
	    SLE_VAR(Engine, reliability_start,   SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   736
	    SLE_VAR(Engine, reliability_max,     SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   737
	    SLE_VAR(Engine, reliability_final,   SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   738
	    SLE_VAR(Engine, duration_phase_1,    SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   739
	    SLE_VAR(Engine, duration_phase_2,    SLE_UINT16),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   740
	    SLE_VAR(Engine, duration_phase_3,    SLE_UINT16),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   741
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   742
	    SLE_VAR(Engine, lifelength,          SLE_UINT8),
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   743
	    SLE_VAR(Engine, flags,               SLE_UINT8),
8565
8816b5ff28f5 (svn r12143) -Fix (r8038): Engine::preview_player does not contain a Player ID. Rename this to preview_player_rank and change back to a uint8 to avoid confusion.
peter1138
parents: 8509
diff changeset
   744
	    SLE_VAR(Engine, preview_player_rank, SLE_UINT8),
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   745
	    SLE_VAR(Engine, preview_wait,        SLE_UINT8),
5823
7aa8c2312103 (svn r8385) -Fix
tron
parents: 5763
diff changeset
   746
	SLE_CONDNULL(1, 0, 44),
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   747
	    SLE_VAR(Engine, player_avail,        SLE_UINT8),
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   748
	SLE_CONDSTR(Engine, name,                SLE_STR, 0,                 84, SL_MAX_VERSION),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   749
6125
a6fff965707c (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 5971
diff changeset
   750
	/* reserve extra space in savegame here. (currently 16 bytes) */
3222
6de22e06a1e9 (svn r3895) - Add proper SLE(G)_CONDNULL macros for the empty space reservation in savegames and update where used
Darkvater
parents: 3047
diff changeset
   751
	SLE_CONDNULL(16, 2, SL_MAX_VERSION),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   752
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   753
	SLE_END()
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   754
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   755
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   756
static std::map<EngineID, Engine> _temp_engine;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   757
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   758
Engine *GetTempDataEngine(EngineID index)
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   759
{
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   760
	return &_temp_engine[index];
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   761
}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   762
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   763
static void Save_ENGN()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   764
{
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   765
	Engine *e;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   766
	FOR_ALL_ENGINES(e) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   767
		SlSetArrayIndex(e->index);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   768
		SlObject(e, _engine_desc);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   769
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   771
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   772
static void Load_ENGN()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   773
{
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   774
	/* As engine data is loaded before engines are initialized we need to load
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   775
	 * this information into a temporary array. This is then copied into the
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   776
	 * engine pool after processing NewGRFs by CopyTempEngineData(). */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   777
	int index;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   778
	while ((index = SlIterateArray()) != -1) {
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   779
		Engine *e = GetTempDataEngine(index);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   780
		SlObject(e, _engine_desc);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   781
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   783
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   784
/**
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   785
 * Copy data from temporary engine array into the real engine pool.
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   786
 */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   787
void CopyTempEngineData()
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   788
{
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   789
	Engine *e;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   790
	FOR_ALL_ENGINES(e) {
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   791
		if (e->index >= _temp_engine.size()) break;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   792
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   793
		const Engine *se = GetTempDataEngine(e->index);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   794
		e->intro_date          = se->intro_date;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   795
		e->age                 = se->age;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   796
		e->reliability         = se->reliability;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   797
		e->reliability_spd_dec = se->reliability_spd_dec;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   798
		e->reliability_start   = se->reliability_start;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   799
		e->reliability_max     = se->reliability_max;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   800
		e->reliability_final   = se->reliability_final;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   801
		e->duration_phase_1    = se->duration_phase_1;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   802
		e->duration_phase_2    = se->duration_phase_2;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   803
		e->duration_phase_3    = se->duration_phase_3;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   804
		e->lifelength          = se->lifelength;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   805
		e->flags               = se->flags;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   806
		e->preview_player_rank = se->preview_player_rank;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   807
		e->preview_wait        = se->preview_wait;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   808
		e->player_avail        = se->player_avail;
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   809
		if (se->name != NULL) e->name = strdup(se->name);
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   810
	}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   811
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   812
	/* Get rid of temporary data */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   813
	_temp_engine.clear();
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   814
}
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   815
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   816
static void Load_ENGS()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   817
{
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   818
	/* Load old separate String ID list into a temporary array. This
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   819
	 * was always 256 entries. */
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   820
	StringID names[256];
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   821
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   822
	SlArray(names, lengthof(names), SLE_STRINGID);
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   823
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   824
	/* Copy each string into the temporary engine array. */
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   825
	for (EngineID engine = 0; engine < lengthof(names); engine++) {
9070
dd0121143eba (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
peter1138
parents: 9036
diff changeset
   826
		Engine *e = GetTempDataEngine(engine);
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   827
		e->name = CopyFromOldName(names[engine]);
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   828
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   829
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   830
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
   831
extern const ChunkHandler _engine_chunk_handlers[] = {
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   832
	{ 'ENGN', Save_ENGN,     Load_ENGN,     CH_ARRAY          },
8258
9fa31acb07bc (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
peter1138
parents: 8254
diff changeset
   833
	{ 'ENGS', NULL,          Load_ENGS,     CH_RIFF           },
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   834
	{ 'ERNW', Save_ERNW,     Load_ERNW,     CH_ARRAY | CH_LAST},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   835
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   836
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6209
diff changeset
   837
void InitializeEngines()
1197
433b4a05fa3e (svn r1701) Style police ^^
tron
parents: 1196
diff changeset
   838
{
2848
8f57563f8ddf (svn r3396) - Autoreplace changes:
peter1138
parents: 2830
diff changeset
   839
	/* Clean the engine renew pool and create 1 block in it */
7388
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   840
	_EngineRenew_pool.CleanPool();
0a3a9cc1a98b (svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium
parents: 7258
diff changeset
   841
	_EngineRenew_pool.AddBlockToPool();
1196
67f7f3017d99 (svn r1700) - Fix: Hacked clients can no longer be used to build vehicles that are not available yet (Hackykid)
bjarni
parents: 1096
diff changeset
   842
}