forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsimdepot.cc
879 lines (773 loc) · 24.4 KB
/
simdepot.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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
/*
* This file is part of the Simutrans project under the Artistic License.
* (see LICENSE.txt)
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "simconvoi.h"
#include "vehicle/simvehicle.h"
#include "gui/simwin.h"
#include "player/simplay.h"
#include "simworld.h"
#include "simdepot.h"
#include "simline.h"
#include "simlinemgmt.h"
#include "simmenu.h"
#include "gui/depot_frame.h"
#include "gui/messagebox.h"
#include "dataobj/schedule.h"
#include "dataobj/loadsave.h"
#include "dataobj/translator.h"
#include "bauer/hausbauer.h"
#include "obj/gebaeude.h"
#include "bauer/vehikelbauer.h"
#include "descriptor/building_desc.h"
#include "utils/cbuffer_t.h"
slist_tpl<depot_t *> depot_t::all_depots;
depot_t::depot_t(loadsave_t *file) : gebaeude_t()
{
rdwr(file);
if(file->is_version_less(88, 2)) {
set_yoff(0);
}
all_depots.append(this);
selected_filter = VEHICLE_FILTER_RELEVANT;
selected_sort_by = SORT_BY_DEFAULT;
last_selected_line = linehandle_t();
command_pending = false;
}
depot_t::depot_t(koord3d pos, player_t *player, const building_tile_desc_t *t) :
gebaeude_t(pos, player, t)
{
all_depots.append(this);
selected_filter = VEHICLE_FILTER_RELEVANT;
selected_sort_by = SORT_BY_DEFAULT;
last_selected_line = linehandle_t();
command_pending = false;
replacement_seed = convoihandle_t();
}
depot_t::~depot_t()
{
destroy_win((ptrdiff_t)this);
all_depots.remove(this);
}
// finds the next/previous depot relative to the current position
depot_t *depot_t::find_depot( koord3d start, const obj_t::typ depot_type, const player_t *player, bool forward)
{
depot_t *found = NULL;
koord3d found_pos = forward ? koord3d(welt->get_size().x+1,welt->get_size().y+1,welt->get_groundwater()) : koord3d(-1,-1,-1);
sint32 found_hash = forward ? 0x7FFFFFF : -1;
sint32 start_hash = start.x + (8192 * start.y);
FOR(slist_tpl<depot_t*>, const d, all_depots) {
if(d->get_typ()==depot_type && d->get_owner()==player) {
// ok, the right type of depot
const koord3d pos = d->get_pos();
if(pos==start) {
// ignore the start point
continue;
}
sint32 hash = (pos.x + (8192 * pos.y));
if(forward) {
if(hash>start_hash || (hash==start_hash && pos.z>start.z)) {
// found a suitable one
if(hash<found_hash || (hash==found_hash && pos.z<found_pos.z)) {
// which is closer ...
found = d;
found_pos = pos;
found_hash = hash;
}
}
}
else {
// search to start of the map
if(hash<start_hash || (hash==start_hash && pos.z<start.z)) {
// found a suitable one
if(hash>found_hash || (hash==found_hash && pos.z>found_pos.z)) {
// which is closer ...
found = d;
found_pos = pos;
found_hash = hash;
}
}
}
}
}
return found;
}
// again needed for server
void depot_t::call_depot_tool( char tool, convoihandle_t cnv, const char *extra)
{
// call depot tool
tool_t *tmp_tool = create_tool( TOOL_CHANGE_DEPOT | SIMPLE_TOOL );
cbuffer_t buf;
buf.printf( "%c,%s,%hu", tool, get_pos().get_str(), cnv.get_id() );
if( extra ) {
buf.append( "," );
buf.append( extra );
}
tmp_tool->set_default_param(buf);
welt->set_tool( tmp_tool, get_owner() );
// since init always returns false, it is safe to delete immediately
delete tmp_tool;
}
void replace_cars(convoihandle_t cnv, depot_t* depot) {
convoihandle_t seed = depot->get_replacement_seed();
if( !seed.is_bound() ) {
return;
}
// First, remove all vehicles from the given convoy
depot->remove_vehicles_to_end(cnv, 0);
// Then copy the cars of the seed convoy
const bool local_execution = false;
for (uint8 i = 0; i<seed->get_vehicle_count(); i++) {
const vehicle_desc_t * info = seed->get_vehikel(i)->get_desc();
if (info != NULL) {
// search in depot for an existing vehicle of correct type
vehicle_t* oldest_vehicle = depot->get_oldest_vehicle(info);
if (oldest_vehicle != NULL) {
// append existing vehicle
depot->append_vehicle( cnv, oldest_vehicle, false, local_execution );
}
else {
// buy new vehicle
vehicle_t* veh = vehicle_builder_t::build(depot->get_pos(), depot->get_owner(), NULL, info );
veh->set_pos(depot->get_pos());
cnv->add_vehikel(veh, false);
}
}
}
// Finally, start the replaced convoy
cnv->set_state(convoi_t::states::WAITING_FOR_LEAVING_DEPOT);
}
/* this is called on two occasions:
* first a convoy reaches the depot during its journey
* second during loading a convoi is stored in a depot => only store it again
*/
void depot_t::convoi_arrived(convoihandle_t acnv, bool schedule_adjust)
{
if(schedule_adjust) {
// here a regular convoi arrived
for(unsigned i=0; i<acnv->get_vehicle_count(); i++) {
vehicle_t *v = acnv->get_vehikel(i);
// reset vehikel data
v->discard_cargo();
v->set_pos( koord3d::invalid );
v->set_leading( i==0 );
v->set_last( i+1==acnv->get_vehicle_count() );
}
// Volker: remove depot from schedule
schedule_t *schedule = acnv->get_schedule();
for( int i=0; i<schedule->get_count(); i++ ) {
// only if convoi found
if(schedule->entries[i].pos==get_pos()) {
const bool is_last = i==schedule->entries.get_count()-1;
schedule->set_current_stop( i );
schedule->remove();
if( is_last ) {
// When the last entry was deleted, index must be 0 to proceed.
schedule->set_current_stop( 0 );
}
acnv->set_schedule(schedule);
break;
}
}
}
// this part stores the convoi in the depot
convois.append(acnv);
depot_frame_t *depot_frame = dynamic_cast<depot_frame_t *>(win_get_magic( (ptrdiff_t)this ));
if(depot_frame) {
depot_frame->action_triggered(NULL,(long int)0);
}
acnv->set_home_depot( get_pos() );
DBG_MESSAGE("depot_t::convoi_arrived()", "convoi %d, %p entered depot", acnv.get_id(), acnv.get_rep());
if (acnv->front()->get_owner() != acnv->get_owner()){
for(int i = 0; i < acnv->get_vehicle_count(); i++){
acnv->get_vehikel(i)->set_owner(acnv->get_owner());
}
}
if( schedule_adjust && replacement_seed.is_bound() && replacement_seed!=acnv ) {
// replace cars of the arrived convoy, then start it immediately.
replace_cars(acnv, this);
}
}
void depot_t::show_info()
{
create_win( new depot_frame_t(this), w_info, (ptrdiff_t)this );
}
vehicle_t* depot_t::buy_vehicle(const vehicle_desc_t* info)
{
DBG_DEBUG("depot_t::buy_vehicle()", info->get_name());
vehicle_t* veh = vehicle_builder_t::build(get_pos(), get_owner(), NULL, info );
DBG_DEBUG("depot_t::buy_vehicle()", "vehiclebauer %p", veh);
vehicles.append(veh);
DBG_DEBUG("depot_t::buy_vehicle()", "appended %i vehicle", vehicles.get_count());
return veh;
}
void depot_t::append_vehicle(convoihandle_t cnv, vehicle_t* veh, bool infront, bool local_execution)
{
/* create a new convoi, if necessary */
if (!cnv.is_bound()) {
cnv = add_convoi( local_execution );
}
veh->set_pos(get_pos());
cnv->add_vehikel(veh, infront);
vehicles.remove(veh);
}
void depot_t::remove_vehicle(convoihandle_t cnv, int ipos)
{
vehicle_t* veh = cnv->remove_vehikel_bei( ipos );
if( veh ) {
vehicles.append( veh );
}
}
void depot_t::remove_vehicles_to_end(convoihandle_t cnv, int ipos)
{
while( vehicle_t* veh = cnv->remove_vehikel_bei( ipos ) ) {
vehicles.append( veh );
}
}
void depot_t::sell_vehicle(vehicle_t* veh)
{
vehicles.remove(veh);
get_owner()->book_new_vehicle((sint64)veh->calc_sale_value(), get_pos().get_2d(), get_waytype() );
DBG_MESSAGE("depot_t::sell_vehicle()", "this=%p sells %p", this, veh);
delete veh;
}
// returns the index of the oldest/newest vehicle in a list
vehicle_t* depot_t::find_oldest_newest(const vehicle_desc_t* desc, bool old)
{
vehicle_t* found_veh = NULL;
FOR( slist_tpl<vehicle_t*>, const veh, vehicles ) {
if( veh->get_desc() == desc ) {
// joy of XOR, finally a line where I could use it!
if( found_veh == NULL ||
old ^ (found_veh->get_purchase_time() > veh->get_purchase_time()) ) {
found_veh = veh;
}
}
}
return found_veh;
}
convoihandle_t depot_t::add_convoi(bool local_execution)
{
convoi_t* new_cnv = new convoi_t(get_owner());
new_cnv->set_home_depot(get_pos());
convois.append(new_cnv->self);
depot_frame_t *win = dynamic_cast<depot_frame_t *>(win_get_magic( (ptrdiff_t)this ));
if( win && local_execution ) {
win->activate_convoi( new_cnv->self );
}
return new_cnv->self;
}
bool depot_t::check_obsolete_inventory(convoihandle_t cnv)
{
bool ok = true;
slist_tpl<vehicle_t*> veh_tmp_list;
for( int i = 0; i < cnv->get_vehicle_count(); i++ ) {
const vehicle_desc_t* const vb = cnv->get_vehikel(i)->get_desc();
if( vb ) {
// search storage for matching vehicle
vehicle_t* veh = NULL;
for( slist_tpl<vehicle_t*>::iterator i = vehicles.begin(); i != vehicles.end(); ++i ) {
if( (*i)->get_desc() == vb ) {
// found in storage, remove to temp list while searching for next vehicle
veh = *i;
vehicles.erase(i);
veh_tmp_list.append( veh );
break;
}
}
if( !veh ) {
// need to buy new
if( vb->is_retired( welt->get_timeline_year_month() ) ) {
// is obsolete, return false
ok = false;
break;
}
}
}
}
// put vehicles back into storage
vehicles.append_list( veh_tmp_list );
return ok;
}
convoihandle_t depot_t::copy_convoi(convoihandle_t old_cnv, bool local_execution, bool is_copy_schedule)
{
if( old_cnv.is_bound() && !convoihandle_t::is_exhausted() &&
old_cnv->get_vehicle_count() > 0 && get_waytype() == old_cnv->front()->get_desc()->get_waytype() ) {
convoihandle_t new_cnv = add_convoi( false );
new_cnv->set_name(old_cnv->get_internal_name());
int vehicle_count = old_cnv->get_vehicle_count();
for (int i = 0; i<vehicle_count; i++) {
const int vehicle_index = old_cnv->is_reversed() ? vehicle_count - i - 1 : i; // Always copy in the normal order
const vehicle_desc_t * info = old_cnv->get_vehikel(vehicle_index)->get_desc();
if (info != NULL) {
// search in depot for an existing vehicle of correct type
vehicle_t* oldest_vehicle = get_oldest_vehicle(info);
if (oldest_vehicle != NULL) {
// append existing vehicle
append_vehicle( new_cnv, oldest_vehicle, false, local_execution );
}
else {
// buy new vehicle
vehicle_t* veh = vehicle_builder_t::build(get_pos(), get_owner(), NULL, info );
veh->set_pos(get_pos());
new_cnv->add_vehikel(veh, false);
}
}
}
if(is_copy_schedule){
if (old_cnv->get_line().is_bound()) {
new_cnv->set_line(old_cnv->get_line());
new_cnv->get_schedule()->set_current_stop( old_cnv->get_schedule()->get_current_stop() );
}
else {
if (old_cnv->get_schedule() != NULL) {
new_cnv->set_schedule(old_cnv->get_schedule()->copy());
}
}
}
// make this the current selected convoi
depot_frame_t *win = dynamic_cast<depot_frame_t *>(win_get_magic( (ptrdiff_t)this ));
if( win ) {
if( local_execution ) {
win->activate_convoi( new_cnv );
}
else {
win->update_data();
}
}
return new_cnv;
}
return convoihandle_t();
}
bool depot_t::disassemble_convoi(convoihandle_t cnv, bool sell)
{
if( cnv.is_bound() ) {
if( !sell ) {
// store vehicles in depot
while( vehicle_t* const v = cnv->remove_vehikel_bei(0) ) {
v->discard_cargo();
v->set_leading(false);
v->set_last(false);
vehicles.append(v);
}
}
// this convoy will be removed. so parent convoy uncouple this convoy.
for(uint32 i=0; i < convois.get_count() ; i++) {
if( cnv==convois.at(i)->get_coupling_convoi() ) {
convois.at(i)->set_coupling_convoi(convoihandle_t());
}
}
// remove from depot lists
remove_convoi( cnv );
// and remove from welt
cnv->self_destruct();
return true;
}
return false;
}
bool depot_t::start_all_convoys()
{
uint32 i = 0;
while( i < convois.get_count() ) {
if( !start_convoi( convois.at(i), false ) ) {
i++;
}
}
return (convois.get_count() == 0);
}
// implementation in simtool.cc
bool scenario_check_convoy(karte_t *welt, player_t *player, convoihandle_t cnv, depot_t* depot, bool local);
bool depot_t::start_convoi(convoihandle_t cnv, bool local_execution)
{
if( !can_start_convoi(cnv, local_execution) ) {
return false;
}
// Check if the convoy is coupled or not.
// When coupled, the convoy is not allowed to depart alone!
for(uint32 i=0; i < convois.get_count() ; i++) {
if( cnv==convois.at(i)->get_coupling_convoi() ) {
static cbuffer_t buf;
buf.clear();
buf.printf( translator::translate("Vehicle %s is coupled convoy, so it cannot depart alone!"), cnv->get_name() );
create_win( new news_img(buf), w_time_delete, magic_none);
return false;
}
}
// coupling convoys depart
if( cnv->get_coupling_convoi().is_bound() ) {
// these convoys can depart!
// parent starts
cnv->start();
remove_convoi( cnv );
// children start
convoihandle_t p_c = cnv;
convoihandle_t c_c = cnv->get_coupling_convoi();
while(c_c.is_bound()){
// child start
c_c->start();
remove_convoi( c_c );
// parent is coupling child convoy already started.
p_c->couple_convoi_during_running(c_c);
// switch to grandchild convoy
p_c=p_c->get_coupling_convoi();
c_c=c_c->get_coupling_convoi();
}
return true;
} else {
// go alone
// convoi can start now
cnv->start();
// remove from depot lists
remove_convoi( cnv );
return true;
}
}
/**
* return the condition of leaving.
*/
bool depot_t::can_start_convoi(convoihandle_t cnv, bool local_execution)
{
// close schedule window if not yet closed
if(cnv.is_bound() && cnv->get_schedule()!=NULL) {
if(!cnv->get_schedule()->is_editing_finished()) {
// close the schedule window
destroy_win((ptrdiff_t)cnv->get_schedule());
}
}
// convoi not in depot anymore, maybe user double-clicked on start-button
if(!convois.is_contained(cnv)) {
return false;
}
if (cnv.is_bound() && cnv->get_schedule() && !cnv->get_schedule()->empty()) {
// if next schedule entry is this depot => advance to next entry
const koord3d& cur_pos = cnv->get_schedule()->get_current_entry().pos;
if (cur_pos == get_pos()) {
cnv->get_schedule()->advance();
}
// check if convoi is complete
if(cnv->get_sum_power() == 0 || !cnv->pruefe_alle()) {
if (local_execution) {
create_win( new news_img("Diese Zusammenstellung kann nicht fahren!\n"), w_time_delete, magic_none);
}
}
else if( !cnv->front()->calc_route(this->get_pos(), cur_pos, cnv->get_min_top_speed(), cnv->access_route()) ) {
// no route to go ...
if(local_execution) {
static cbuffer_t buf;
buf.clear();
buf.printf( translator::translate("Vehicle %s can't find a route!"), cnv->get_name() );
create_win( new news_img(buf), w_time_delete, magic_none);
}
}
else if (!scenario_check_convoy(welt, get_owner(), cnv, this, local_execution) ) {
// not allowed by scenario
}
else {
// if this convoy also has child convoy, now we check the coupling condition
if( cnv->get_coupling_convoi().is_bound() ) {
convoihandle_t child_cnv = cnv->get_coupling_convoi();
// check the coupling condition
const schedule_entry_t t = cnv->get_schedule()->get_current_entry();
const schedule_entry_t c = child_cnv->get_schedule()->get_current_entry();
if( t.pos!=c.pos ) {
// the next stop is different!->false
static cbuffer_t buf;
buf.clear();
buf.printf( translator::translate("Vehicle %s will couple with vehicle %s, but the next stop positions are different!"), cnv->get_name(), child_cnv->get_name() );
create_win( new news_img(buf), w_time_delete, magic_none);
return false;
}
// check child convoy can depot?
return(can_start_convoi( child_cnv, local_execution ));
} else {
// ok, this child convoy can depart.
return true;
}
}
}
else {
if (local_execution) {
create_win( new news_img("Noch kein Fahrzeug\nmit Fahrplan\nvorhanden\n"), w_time_delete, magic_none);
}
if (!cnv.is_bound()) {
dbg->warning("depot_t::start_convoi()","No convoi to start!");
} else if (!cnv->get_schedule()) {
dbg->warning("depot_t::start_convoi()","No schedule for convoi.");
} else if (!cnv->get_schedule()->is_editing_finished()) {
dbg->warning("depot_t::start_convoi()","Schedule is incomplete/not finished");
}
}
return false;
}
void depot_t::remove_convoi( convoihandle_t cnv )
{
depot_frame_t *win = dynamic_cast<depot_frame_t *>(win_get_magic( (ptrdiff_t)this ));
if( win ) {
// get currently selected convoi to restore selection if not removed
int icnv = win->get_icnv();
convoihandle_t c = icnv > -1 ? get_convoi( icnv ) : convoihandle_t();
icnv = convois.index_of( cnv );
convois.remove( cnv );
if( c == cnv ) {
// removing currently selected, select next in list or last instead
c = !convois.empty() ? convois.at( min((uint32)icnv, convois.get_count() - 1) ) : convoihandle_t();
}
win->activate_convoi( c );
}
else {
convois.remove( cnv );
}
}
// attention! this will not be used for loading railway depots!
// They will be loaded by hand ...
void depot_t::rdwr(loadsave_t *file)
{
gebaeude_t::rdwr(file);
rdwr_vehikel(vehicles, file);
if( file->get_OTRP_version()>=24 ) {
convoi_t::rdwr_convoihandle_t(file, replacement_seed);
}
if (file->is_version_less(81, 33)) {
// wagons are stored extra, just add them to vehicles
assert(file->is_loading());
rdwr_vehikel(vehicles, file);
}
}
void depot_t::rdwr_vehikel(slist_tpl<vehicle_t *> &list, loadsave_t *file)
{
sint32 count;
if(file->is_saving()) {
count = list.get_count();
DBG_MESSAGE("depot_t::vehikel_laden()","saving %d vehicles",count);
}
file->rdwr_long(count);
if(file->is_loading()) {
// no house definition for this => use a normal hut ...
if( this->get_tile()==NULL ) {
dbg->error( "depot_t::rdwr()", "tile for depot not found!" );
set_tile( (*hausbauer_t::get_citybuilding_list( building_desc_t::city_res ))[0]->get_tile(0), true );
}
DBG_MESSAGE("depot_t::vehikel_laden()","loading %d vehicles",count);
for(int i=0; i<count; i++) {
obj_t::typ typ = (obj_t::typ)file->rd_obj_id();
vehicle_t *v = NULL;
const bool first = false;
const bool last = false;
switch( typ ) {
case old_automobil:
case road_vehicle: v = new road_vehicle_t(file, first, last); break;
case old_waggon:
case rail_vehicle: v = new rail_vehicle_t(file, first, last); break;
case old_schiff:
case water_vehicle: v = new water_vehicle_t(file, first, last); break;
case old_aircraft:
case air_vehicle: v = new air_vehicle_t(file, first, last); break;
case old_monorailwaggon:
case monorail_vehicle: v = new monorail_vehicle_t(file, first, last); break;
case maglev_vehicle: v = new maglev_vehicle_t(file, first, last); break;
case narrowgauge_vehicle: v = new narrowgauge_vehicle_t(file, first, last); break;
default:
dbg->fatal("depot_t::vehikel_laden()","invalid vehicle type $%X", typ);
}
if(v->get_desc()) {
DBG_MESSAGE("depot_t::vehikel_laden()","loaded %s", v->get_desc()->get_name());
list.append( v );
}
else {
dbg->error("depot_t::vehikel_laden()","vehicle has no desc => ignored");
}
}
}
else {
FOR(slist_tpl<vehicle_t*>, const v, list) {
file->wr_obj_id(v->get_typ());
v->rdwr_from_convoi(file);
}
}
}
/**
* @return NULL when OK, otherwise an error message
*/
const char * depot_t::is_deletable(const player_t *player)
{
if(player!=get_owner() && player!=welt->get_public_player()) {
return "Das Feld gehoert\neinem anderen Spieler\n";
}
if (!vehicles.empty()) {
return "There are still vehicles\nstored in this depot!\n";
}
FOR(slist_tpl<convoihandle_t>, const c, convois) {
if (c.is_bound() && c->get_vehicle_count() > 0) {
return "There are still vehicles\nstored in this depot!\n";
}
}
return NULL;
}
slist_tpl<vehicle_desc_t const*> const& depot_t::get_vehicle_type(uint8 sortkey) const
{
return vehicle_builder_t::get_info(get_waytype(), sortkey);
}
vehicle_t* depot_t::get_oldest_vehicle(const vehicle_desc_t* desc)
{
vehicle_t* oldest_veh = NULL;
FOR(slist_tpl<vehicle_t*>, const veh, get_vehicle_list()) {
if (veh->get_desc() == desc) {
if (oldest_veh == NULL ||
oldest_veh->get_purchase_time() > veh->get_purchase_time()) {
oldest_veh = veh;
}
}
}
return oldest_veh;
}
void depot_t::update_win()
{
depot_frame_t *depot_frame = dynamic_cast<depot_frame_t *>(win_get_magic( (ptrdiff_t)this ));
if(depot_frame) {
depot_frame->build_vehicle_lists();
}
}
void depot_t::new_month()
{
// since vehicles may have become obsolete
update_all_win();
}
void depot_t::update_all_win()
{
FOR(slist_tpl<depot_t*>, const d, all_depots) {
d->update_win();
}
}
void bahndepot_t::rdwr_vehicles(loadsave_t *file) {
depot_t::rdwr_vehikel(vehicles,file);
if( file->get_OTRP_version()>=24 ) {
convoi_t::rdwr_convoihandle_t(file, replacement_seed);
}
}
unsigned bahndepot_t::get_max_convoi_length() const
{
return welt->get_settings().get_max_rail_convoi_length();
}
unsigned strassendepot_t::get_max_convoi_length() const
{
return welt->get_settings().get_max_road_convoi_length();
}
unsigned schiffdepot_t::get_max_convoi_length() const
{
return welt->get_settings().get_max_ship_convoi_length();
}
unsigned airdepot_t::get_max_convoi_length() const
{
return welt->get_settings().get_max_air_convoi_length();
}
// train
sint8 bahndepot_t::get_x_placement() const
{
const sint8 x_placement = atoi(translator::translate("bahndepot_x_placement"));
return x_placement!=0 ? x_placement : -25;
}
sint8 bahndepot_t::get_y_placement() const
{
const sint8 y_placement = atoi(translator::translate("bahndepot_y_placement"));
return y_placement!=0 ? y_placement : -28;
}
sint8 bahndepot_t::get_x_grid() const
{
const sint8 x_grid = atoi(translator::translate("bahndepot_x_grid"));
return x_grid!=0 ? x_grid : 24;
}
sint8 bahndepot_t::get_x_num_grid() const
{
const sint8 x_num_grid = atoi(translator::translate("bahndepot_x_num_grid"));
return x_num_grid!=0 ? x_num_grid : 24;
}
sint8 bahndepot_t::get_y_grid() const
{
const sint8 y_grid = atoi(translator::translate("bahndepot_y_grid"));
return y_grid!=0 ? y_grid : 24;
}
sint8 bahndepot_t::get_grid_dx() const
{
const sint8 grid_dx = atoi(translator::translate("bahndepot_grid_dx"));
return grid_dx!=0 ? grid_dx : 24;
}
sint8 bahndepot_t::get_placement_dx() const
{
const sint8 placement_dx = atoi(translator::translate("bahndepot_placement_dx"));
return placement_dx!=0 ? placement_dx : 24;
}
// ship
sint8 schiffdepot_t::get_x_placement() const
{
const sint8 x_placement = atoi(translator::translate("schiffdepot_x_placement"));
return x_placement!=0 ? x_placement : -1;
}
sint8 schiffdepot_t::get_y_placement() const
{
const sint8 y_placement = atoi(translator::translate("schiffdepot_y_placement"));
return y_placement!=0 ? y_placement : -11;
}
sint8 schiffdepot_t::get_x_grid() const
{
const sint8 x_grid = atoi(translator::translate("schiffdepot_x_grid"));
return x_grid!=0 ? x_grid : 60;
}
sint8 schiffdepot_t::get_x_num_grid() const
{
const sint8 x_num_grid = atoi(translator::translate("schiffdepot_x_num_grid"));
return x_num_grid!=0 ? x_num_grid : 60;
}
sint8 schiffdepot_t::get_y_grid() const
{
const sint8 y_grid = atoi(translator::translate("schiffdepot_y_grid"));
return y_grid!=0 ? y_grid : 46;
}
sint8 schiffdepot_t::get_grid_dx() const
{
const sint8 grid_dx = atoi(translator::translate("schiffdepot_grid_dx"));
return grid_dx!=0 ? grid_dx : 60;
}
sint8 schiffdepot_t::get_placement_dx() const
{
const sint8 placement_dx = atoi(translator::translate("schiffdepot_placement_dx"));
return placement_dx!=0 ? placement_dx : 60;
}
// airplane
sint8 airdepot_t::get_x_placement() const
{
const sint8 x_placement = atoi(translator::translate("airdepot_x_placement"));
return x_placement!=0 ? x_placement : -10;
}
sint8 airdepot_t::get_y_placement() const
{
const sint8 y_placement = atoi(translator::translate("airdepot_y_placement"));
return y_placement!=0 ? y_placement : -23;
}
sint8 airdepot_t::get_x_grid() const
{
const sint8 x_grid = atoi(translator::translate("airdepot_x_grid"));
return x_grid!=0 ? x_grid : 36;
}
sint8 airdepot_t::get_x_num_grid() const
{
const sint8 x_num_grid = atoi(translator::translate("airdepot_x_num_grid"));
return x_num_grid!=0 ? x_num_grid : 36;
}
sint8 airdepot_t::get_y_grid() const
{
const sint8 y_grid = atoi(translator::translate("airdepot_y_grid"));
return y_grid!=0 ? y_grid : 36;
}
sint8 airdepot_t::get_grid_dx() const
{
const sint8 grid_dx = atoi(translator::translate("airdepot_grid_dx"));
return grid_dx!=0 ? grid_dx : 36;
}
sint8 airdepot_t::get_placement_dx() const
{
const sint8 placement_dx = atoi(translator::translate("airdepot_placement_dx"));
return placement_dx!=0 ? placement_dx : 36;
}