forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simline.cc
501 lines (423 loc) · 12.9 KB
/
simline.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
#include "simtypes.h"
#include "simline.h"
#include "simhalt.h"
#include "simworld.h"
#include "utils/simstring.h"
#include "dataobj/schedule.h"
#include "dataobj/translator.h"
#include "dataobj/loadsave.h"
#include "gui/gui_theme.h"
#include "player/simplay.h"
#include "player/finance.h" // convert_money
#include "vehicle/simvehicle.h"
#include "simconvoi.h"
#include "convoihandle_t.h"
#include "simlinemgmt.h"
uint8 convoi_to_line_catgory_[convoi_t::MAX_CONVOI_COST] = {
LINE_CAPACITY, LINE_TRANSPORTED_GOODS, LINE_REVENUE, LINE_OPERATIONS, LINE_PROFIT, LINE_DISTANCE, LINE_MAXSPEED, LINE_WAYTOLL
};
uint8 simline_t::convoi_to_line_catgory(uint8 cnv_cost)
{
assert(cnv_cost < convoi_t::MAX_CONVOI_COST);
return convoi_to_line_catgory_[cnv_cost];
}
karte_ptr_t simline_t::welt;
simline_t::simline_t(player_t* player, linetype type)
{
self = linehandle_t(this);
char printname[128];
sprintf(printname, "(%i) %s", self.get_id(), translator::translate("Line", welt->get_settings().get_name_language_id()));
name = printname;
init_financial_history();
this->type = type;
this->schedule = NULL;
this->player = player;
withdraw = false;
state_color = SYSCOL_TEXT;
create_schedule();
}
simline_t::simline_t(player_t* player, linetype type, loadsave_t *file)
{
// id will be read and assigned during rdwr
self = linehandle_t();
this->type = type;
this->schedule = NULL;
this->player = player;
withdraw = false;
create_schedule();
rdwr(file);
// now self has the right id but the this-pointer is not assigned to the quickstone handle yet
// do this explicitly
// some savegames have line_id=0, resolve that in finish_rd
if (self.get_id()!=0) {
self = linehandle_t(this, self.get_id());
}
}
simline_t::~simline_t()
{
DBG_DEBUG("simline_t::~simline_t()", "deleting schedule=%p", schedule);
assert(count_convoys()==0);
unregister_stops();
delete schedule;
self.detach();
DBG_MESSAGE("simline_t::~simline_t()", "line %d (%p) destroyed", self.get_id(), this);
}
simline_t::linetype simline_t::waytype_to_linetype(const waytype_t wt)
{
switch (wt) {
case road_wt: return simline_t::truckline;
case track_wt: return simline_t::trainline;
case water_wt: return simline_t::shipline;
case monorail_wt: return simline_t::monorailline;
case maglev_wt: return simline_t::maglevline;
case tram_wt: return simline_t::tramline;
case narrowgauge_wt: return simline_t::narrowgaugeline;
case air_wt: return simline_t::airline;
default: return simline_t::MAX_LINE_TYPE;
}
}
const char *simline_t::get_linetype_name(const simline_t::linetype lt)
{
static const char *lt2name[MAX_LINE_TYPE] = {"All", "Truck", "Train", "Ship", "Air", "Monorail", "Tram", "Maglev", "Narrowgauge" };
return translator::translate( lt2name[lt] );
}
waytype_t simline_t::linetype_to_waytype(const linetype lt)
{
static const waytype_t wt2lt[MAX_LINE_TYPE] = { invalid_wt, road_wt, track_wt, water_wt, air_wt, monorail_wt, tram_wt, maglev_wt, narrowgauge_wt };
return wt2lt[lt];
}
void simline_t::set_schedule(schedule_t* schedule)
{
if (this->schedule) {
unregister_stops();
delete this->schedule;
}
this->schedule = schedule;
}
void simline_t::create_schedule()
{
switch(type) {
case simline_t::truckline: set_schedule(new truck_schedule_t()); break;
case simline_t::trainline: set_schedule(new train_schedule_t()); break;
case simline_t::shipline: set_schedule(new ship_schedule_t()); break;
case simline_t::airline: set_schedule(new airplane_schedule_t()); break;
case simline_t::monorailline: set_schedule(new monorail_schedule_t()); break;
case simline_t::tramline: set_schedule(new tram_schedule_t()); break;
case simline_t::maglevline: set_schedule(new maglev_schedule_t()); break;
case simline_t::narrowgaugeline: set_schedule(new narrowgauge_schedule_t()); break;
default:
dbg->fatal( "simline_t::create_schedule()", "Cannot create default schedule!" );
}
}
void simline_t::add_convoy(convoihandle_t cnv)
{
if (line_managed_convoys.empty() && self.is_bound()) {
// first convoi -> ok, now we can announce this connection to the stations
// unbound self can happen during loading if this line had line_id=0
register_stops(schedule);
}
// first convoi may change line type
if (type == trainline && line_managed_convoys.empty() && cnv.is_bound()) {
// check, if needed to convert to tram/monorail line
if (vehicle_t const* const v = cnv->front()) {
switch (v->get_desc()->get_waytype()) {
case tram_wt: type = simline_t::tramline; break;
// elevated monorail were saved with wrong coordinates for some versions.
// We try to recover here
case monorail_wt: type = simline_t::monorailline; break;
default: break;
}
}
}
// only add convoy if not already member of line
line_managed_convoys.append_unique(cnv);
// what goods can this line transport?
bool update_schedules = false;
if( cnv->get_state()!=convoi_t::INITIAL ) {
FOR(minivec_tpl<uint8>, const catg_index, cnv->get_goods_catg_index()) {
if( !goods_catg_index.is_contained( catg_index ) ) {
goods_catg_index.append( catg_index, 1 );
update_schedules = true;
}
}
}
// will not hurt ...
financial_history[0][LINE_CONVOIS] = count_convoys();
recalc_status();
// do we need to tell the world about our new schedule?
if( update_schedules ) {
welt->set_schedule_counter();
}
}
void simline_t::remove_convoy(convoihandle_t cnv)
{
if(line_managed_convoys.is_contained(cnv)) {
line_managed_convoys.remove(cnv);
recalc_catg_index();
financial_history[0][LINE_CONVOIS] = count_convoys();
recalc_status();
}
if(line_managed_convoys.empty()) {
unregister_stops();
}
}
// invalid line id prior to 110.0
#define INVALID_LINE_ID_OLD ((uint16)(-1))
// invalid line id from 110.0 on
#define INVALID_LINE_ID ((uint16)(0))
void simline_t::rdwr_linehandle_t(loadsave_t *file, linehandle_t &line)
{
uint16 id;
if (file->is_saving()) {
id = line.is_bound() ? line.get_id() :
(file->is_version_less(110, 0) ? INVALID_LINE_ID_OLD : INVALID_LINE_ID);
}
else {
// to avoid undefined errors during loading
id = 0;
}
if(file->is_version_less(88, 3)) {
sint32 dummy=id;
file->rdwr_long(dummy);
id = (uint16)dummy;
}
else {
file->rdwr_short(id);
}
if (file->is_loading()) {
// invalid line_id's: 0 and 65535
if (id == INVALID_LINE_ID_OLD) {
id = 0;
}
line.set_id(id);
}
}
void simline_t::rdwr(loadsave_t *file)
{
xml_tag_t s( file, "simline_t" );
assert(schedule);
file->rdwr_str(name);
rdwr_linehandle_t(file, self);
schedule->rdwr(file);
//financial history
if( file->is_version_less(102, 3) ) {
for (int j = 0; j<6; j++) {
for (size_t k = MAX_MONTHS; k-- != 0;) {
file->rdwr_longlong(financial_history[k][j]);
}
}
for (size_t k = MAX_MONTHS; k-- != 0;) {
financial_history[k][LINE_DISTANCE] = 0;
financial_history[k][LINE_MAXSPEED] = 0;
financial_history[k][LINE_WAYTOLL] = 0;
}
}
else if( file->is_version_less(111, 1) ) {
for (int j = 0; j<7; j++) {
for (size_t k = MAX_MONTHS; k-- != 0;) {
file->rdwr_longlong(financial_history[k][j]);
}
}
for (size_t k = MAX_MONTHS; k-- != 0;) {
financial_history[k][LINE_MAXSPEED] = 0;
financial_history[k][LINE_WAYTOLL] = 0;
}
}
else if( file->is_version_less(112, 8) ) {
for (int j = 0; j<8; j++) {
for (size_t k = MAX_MONTHS; k-- != 0;) {
file->rdwr_longlong(financial_history[k][j]);
}
}
for (size_t k = MAX_MONTHS; k-- != 0;) {
financial_history[k][LINE_WAYTOLL] = 0;
}
}
else {
for (int j = 0; j<MAX_LINE_COST; j++) {
for (size_t k = MAX_MONTHS; k-- != 0;) {
file->rdwr_longlong(financial_history[k][j]);
}
}
}
if(file->is_version_atleast(102, 2)) {
file->rdwr_bool(withdraw);
}
// otherwise initialized to zero if loading ...
financial_history[0][LINE_CONVOIS] = count_convoys();
}
void simline_t::finish_rd()
{
if( !self.is_bound() ) {
// get correct handle
self = player->simlinemgmt.get_line_with_id_zero();
assert( self.get_rep() == this );
DBG_MESSAGE("simline_t::finish_rd", "assigned id=%d to line %s", self.get_id(), get_name());
}
if (!line_managed_convoys.empty()) {
register_stops(schedule);
}
recalc_status();
}
void simline_t::register_stops(schedule_t * schedule)
{
DBG_DEBUG("simline_t::register_stops()", "%d schedule entries in schedule %p", schedule->get_count(),schedule);
FOR(minivec_tpl<schedule_entry_t>, const& i, schedule->entries) {
halthandle_t const halt = haltestelle_t::get_halt(i.pos, player);
if(halt.is_bound()) {
//DBG_DEBUG("simline_t::register_stops()", "halt not null");
halt->add_line(self);
}
else {
DBG_DEBUG("simline_t::register_stops()", "halt null");
}
}
}
void simline_t::unregister_stops()
{
unregister_stops(schedule);
}
void simline_t::unregister_stops(schedule_t * schedule)
{
FOR(minivec_tpl<schedule_entry_t>, const& i, schedule->entries) {
halthandle_t const halt = haltestelle_t::get_halt(i.pos, player);
if(halt.is_bound()) {
halt->remove_line(self);
}
}
}
void simline_t::renew_stops()
{
if (!line_managed_convoys.empty()) {
register_stops( schedule );
DBG_DEBUG("simline_t::renew_stops()", "Line id=%d, name='%s'", self.get_id(), name.c_str());
}
}
void simline_t::check_freight()
{
FOR(vector_tpl<convoihandle_t>, const i, line_managed_convoys) {
i->check_freight();
}
}
void simline_t::new_month()
{
recalc_status();
// then calculate maxspeed
sint64 line_max_speed = 0, line_max_speed_count = 0;
FOR(vector_tpl<convoihandle_t>, const i, line_managed_convoys) {
if (!i->in_depot()) {
// since convoi stepped first, our history is in month 1 ...
line_max_speed += i->get_finance_history(1, convoi_t::CONVOI_MAXSPEED);
line_max_speed_count ++;
}
}
// to avoid div by zero
if( line_max_speed_count ) {
line_max_speed /= line_max_speed_count;
}
financial_history[0][LINE_MAXSPEED] = line_max_speed;
// now roll history
for (int j = 0; j<MAX_LINE_COST; j++) {
for (int k = MAX_MONTHS-1; k>0; k--) {
financial_history[k][j] = financial_history[k-1][j];
}
financial_history[0][j] = 0;
}
financial_history[0][LINE_CONVOIS] = count_convoys();
}
void simline_t::init_financial_history()
{
MEMZERO(financial_history);
}
/*
* the current state saved as color
* Meanings are BLACK (ok), WHITE (no convois), YELLOW (no vehicle moved), RED (last month income minus), BLUE (at least one convoi vehicle is obsolete)
*/
void simline_t::recalc_status()
{
if(financial_history[0][LINE_CONVOIS]==0) {
// no convois assigned to this line
state_color = SYSCOL_TEXT_HIGHLIGHT;
withdraw = false;
}
else if(financial_history[0][LINE_PROFIT]<0) {
// ok, not performing best
state_color = color_idx_to_rgb(COL_RED);
}
else if((financial_history[0][LINE_OPERATIONS]|financial_history[1][LINE_OPERATIONS])==0) {
// nothing moved
state_color = color_idx_to_rgb(COL_YELLOW);
}
else if(welt->use_timeline()) {
// convois has obsolete vehicles?
bool has_obsolete = false;
FOR(vector_tpl<convoihandle_t>, const i, line_managed_convoys) {
has_obsolete = i->has_obsolete_vehicles();
if (has_obsolete) break;
}
// now we have to set it
state_color = has_obsolete ? color_idx_to_rgb(COL_DARK_BLUE) : SYSCOL_TEXT;
}
else {
// normal state
state_color = SYSCOL_TEXT;
}
}
// recalc what good this line is moving
void simline_t::recalc_catg_index()
{
// first copy old
minivec_tpl<uint8> old_goods_catg_index(goods_catg_index.get_count());
FOR(minivec_tpl<uint8>, const i, goods_catg_index) {
old_goods_catg_index.append(i);
}
goods_catg_index.clear();
withdraw = !line_managed_convoys.empty();
// then recreate current
FOR(vector_tpl<convoihandle_t>, const i, line_managed_convoys) {
// what goods can this line transport?
convoi_t const& cnv = *i;
withdraw &= cnv.get_withdraw();
FOR(minivec_tpl<uint8>, const catg_index, cnv.get_goods_catg_index()) {
goods_catg_index.append_unique( catg_index );
}
}
// if different => schedule need recalculation
if( goods_catg_index.get_count()!=old_goods_catg_index.get_count() ) {
// surely changed
welt->set_schedule_counter();
}
else {
// maybe changed => must test all entries
FOR(minivec_tpl<uint8>, const i, goods_catg_index) {
if (!old_goods_catg_index.is_contained(i)) {
// different => recalc
welt->set_schedule_counter();
break;
}
}
}
}
void simline_t::set_withdraw( bool yes_no )
{
withdraw = yes_no && !line_managed_convoys.empty();
// convois in depots will be immediately destroyed, thus we go backwards
for (size_t i = line_managed_convoys.get_count(); i-- != 0;) {
line_managed_convoys[i]->set_no_load(yes_no); // must be first, since set withdraw might destroy convoi if in depot!
line_managed_convoys[i]->set_withdraw(yes_no);
}
}
sint64 simline_t::get_stat_converted(int month, int cost_type) const
{
sint64 value = financial_history[month][cost_type];
switch(cost_type) {
case LINE_REVENUE:
case LINE_OPERATIONS:
case LINE_PROFIT:
case LINE_WAYTOLL:
value = convert_money(value);
break;
default: ;
}
return value;
}