forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simmain.cc
1334 lines (1165 loc) · 39.4 KB
/
simmain.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
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#if defined(_M_X64) || defined(__x86_64__)
#if __GNUC__
#warning "Simutrans is preferably compiled as 32 bit binary!"
#endif
#endif
#include <stdio.h>
#include <string>
#include <new>
#include "pathes.h"
#include "simmain.h"
#include "simworld.h"
#include "simware.h"
#include "display/simview.h"
#include "gui/simwin.h"
#include "gui/gui_theme.h"
#include "simhalt.h"
#include "display/simimg.h"
#include "simcolor.h"
#include "simskin.h"
#include "simconst.h"
#include "boden/boden.h"
#include "boden/wasser.h"
#include "simcity.h"
#include "player/simplay.h"
#include "simsound.h"
#include "simintr.h"
#include "simloadingscreen.h"
#include "simticker.h"
#include "simmesg.h"
#include "simtool.h"
#include "siminteraction.h"
#include "simsys.h"
#include "display/simgraph.h"
#include "simevent.h"
#include "simversion.h"
#include "gui/banner.h"
#include "gui/pakselector.h"
#include "gui/welt.h"
#include "gui/help_frame.h"
#include "gui/sprachen.h"
#include "gui/climates.h"
#include "gui/messagebox.h"
#include "gui/loadsave_frame.h"
#include "gui/load_relief_frame.h"
#include "gui/scenario_frame.h"
#include "obj/baum.h"
#include "utils/simstring.h"
#include "utils/searchfolder.h"
#include "network/network.h" // must be before any "windows.h" is included via bzlib2.h ...
#include "dataobj/loadsave.h"
#include "dataobj/environment.h"
#include "dataobj/tabfile.h"
#include "dataobj/settings.h"
#include "dataobj/translator.h"
#include "network/pakset_info.h"
#include "besch/reader/obj_reader.h"
#include "besch/sound_besch.h"
#include "besch/grund_besch.h"
#include "music/music.h"
#include "sound/sound.h"
#include "utils/cbuffer_t.h"
#include "utils/simrandom.h"
#include "bauer/vehikelbauer.h"
#include "vehicle/simvehicle.h"
#include "vehicle/simroadtraffic.h"
using std::string;
/* diagnostic routine:
* show the size of several internal structures
*/
static void show_sizes()
{
DBG_MESSAGE("Debug", "size of structures");
DBG_MESSAGE("sizes", "koord: %d", sizeof(koord));
DBG_MESSAGE("sizes", "koord3d: %d", sizeof(koord3d));
DBG_MESSAGE("sizes", "ribi_t::ribi: %d", sizeof(ribi_t::ribi));
DBG_MESSAGE("sizes", "halthandle_t: %d\n", sizeof(halthandle_t));
DBG_MESSAGE("sizes", "obj_t: %d", sizeof(obj_t));
DBG_MESSAGE("sizes", "gebaeude_t: %d", sizeof(gebaeude_t));
DBG_MESSAGE("sizes", "baum_t: %d", sizeof(baum_t));
DBG_MESSAGE("sizes", "weg_t: %d", sizeof(weg_t));
DBG_MESSAGE("sizes", "private_car_t: %d\n", sizeof(private_car_t));
DBG_MESSAGE("sizes", "grund_t: %d", sizeof(grund_t));
DBG_MESSAGE("sizes", "boden_t: %d", sizeof(boden_t));
DBG_MESSAGE("sizes", "wasser_t: %d", sizeof(wasser_t));
DBG_MESSAGE("sizes", "planquadrat_t: %d\n", sizeof(planquadrat_t));
DBG_MESSAGE("sizes", "ware_t: %d", sizeof(ware_t));
DBG_MESSAGE("sizes", "vehicle_t: %d", sizeof(vehicle_t));
DBG_MESSAGE("sizes", "haltestelle_t: %d\n", sizeof(haltestelle_t));
DBG_MESSAGE("sizes", "karte_t: %d", sizeof(karte_t));
DBG_MESSAGE("sizes", "player_t: %d\n", sizeof(player_t));
}
// render tests ...
static void show_times(karte_t *welt, karte_ansicht_t *view)
{
intr_set(welt, view);
welt->set_fast_forward(true);
intr_disable();
dbg->message( "show_times()", "simple profiling of drawing routines" );
int i;
image_id img = grund_besch_t::ausserhalb->get_bild(0,0);
uint32 ms = dr_time();
for (i = 0; i < 6000000; i++) {
#ifdef MULTI_THREAD
display_img( img, 50, 50, 1, 0);
#else
display_img( img, 50, 50, 1);
#endif
}
dbg->message( "display_img()", "%i iterations took %li ms", i, dr_time() - ms );
image_id player_img = skinverwaltung_t::color_options->get_bild_nr(0);
ms = dr_time();
for (i = 0; i < 1000000; i++) {
display_color_img( player_img, 120, 100, i%15, 0, 1);
}
dbg->message( "display_color_img() with recolor", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 1000000; i++) {
display_color_img( img, 120, 100, 0, 1, 1);
display_color_img( player_img, 160, 150, 16, 1, 1);
}
dbg->message( "display_color_img()", "3x %i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 600000; i++) {
dr_prepare_flush();
dr_flush();
}
dbg->message( "display_flush_buffer()", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 300000; i++) {
display_text_proportional_len_clip(100, 120, "Dies ist ein kurzer Textetxt ...", 0, 0, false, -1);
}
dbg->message( "display_text_proportional_len_clip()", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 300000; i++) {
display_fillbox_wh(100, 120, 300, 50, 0, false);
}
dbg->message( "display_fillbox_wh()", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 2000; i++) {
view->display(true);
}
dbg->message( "view->display(true)", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 2000; i++) {
view->display(true);
win_display_flush(0.0);
}
dbg->message( "view->display(true) and flush", "%i iterations took %li ms", i, dr_time() - ms );
ms = dr_time();
for (i = 0; i < 40000000/(int)weg_t::get_alle_wege().get_count(); i++) {
FOR( slist_tpl<weg_t *>, const w, weg_t::get_alle_wege() ) {
grund_t *dummy;
welt->lookup( w->get_pos() )->get_neighbour( dummy, invalid_wt, ribi_t::nord );
}
}
dbg->message( "grund_t::get_neighbour()", "%i iterations took %li ms", i*weg_t::get_alle_wege().get_count(), dr_time() - ms );
ms = dr_time();
for (i = 0; i < 2000; i++) {
welt->sync_step(200,true,true);
welt->step();
}
dbg->message( "welt->sync_step/step(200,1,1)", "%i iterations took %li ms", i, dr_time() - ms );
}
void modal_dialogue( gui_frame_t *gui, ptrdiff_t magic, karte_t *welt, bool (*quit)() )
{
if( display_get_width()==0 ) {
dbg->error( "modal_dialogue()", "called without a display driver => nothing will be shown!" );
env_t::quit_simutrans = true;
// cannot handle this!
return;
}
// switch off autosave
sint32 old_autosave = env_t::autosave;
env_t::autosave = 0;
event_t ev;
create_win( (display_get_width()-gui->get_windowsize().w)/2, (display_get_height()-gui->get_windowsize().h)/2, gui, w_info, magic );
if( welt ) {
welt->set_pause( false );
welt->reset_interaction();
welt->reset_timer();
uint32 ms_pause = max( 25, 1000/env_t::fps );
uint32 last_step = dr_time();
uint step_count = 5;
while( win_is_open(gui) && !env_t::quit_simutrans && !quit() ) {
do {
DBG_DEBUG4("zeige_banner", "calling win_poll_event");
win_poll_event(&ev);
// no toolbar events
if( ev.my < env_t::iconsize.h ) {
ev.my = env_t::iconsize.h;
}
if( ev.cy < env_t::iconsize.h ) {
ev.cy = env_t::iconsize.h;
}
if( ev.ev_class == EVENT_KEYBOARD && ev.ev_code == SIM_KEY_F1 ) {
if( gui_frame_t *win = win_get_top() ) {
if( const char *helpfile = win->get_help_filename() ) {
help_frame_t::open_help_on( helpfile );
continue;
}
}
}
DBG_DEBUG4("zeige_banner", "calling check_pos_win");
check_pos_win(&ev);
if( ev.ev_class == EVENT_SYSTEM && ev.ev_code == SYSTEM_QUIT ) {
env_t::quit_simutrans = true;
break;
}
dr_sleep(5);
} while( dr_time() - last_step < ms_pause );
DBG_DEBUG4("zeige_banner", "calling welt->sync_step");
welt->sync_step( ms_pause, true, true );
DBG_DEBUG4("zeige_banner", "calling welt->step");
if( step_count--==0 ) {
welt->step();
step_count = 5;
}
last_step += ms_pause;
}
}
else {
display_show_pointer(true);
show_pointer(1);
set_pointer(0);
display_fillbox_wh( 0, 0, display_get_width(), display_get_height(), COL_BLACK, true );
while( win_is_open(gui) && !env_t::quit_simutrans && !quit() ) {
// do not move, do not close it!
dr_sleep(50);
dr_prepare_flush();
gui->draw(win_get_pos(gui), gui->get_windowsize());
dr_flush();
display_poll_event(&ev);
if(ev.ev_class==EVENT_SYSTEM) {
if (ev.ev_code==SYSTEM_RESIZE) {
// main window resized
simgraph_resize( ev.mx, ev.my );
dr_prepare_flush();
display_fillbox_wh( 0, 0, ev.mx, ev.my, COL_BLACK, true );
dr_flush();
}
else if (ev.ev_code == SYSTEM_QUIT) {
env_t::quit_simutrans = true;
break;
}
}
else {
// other events
check_pos_win(&ev);
}
}
set_pointer(1);
dr_prepare_flush();
display_fillbox_wh( 0, 0, display_get_width(), display_get_height(), COL_BLACK, true );
dr_flush();
}
// just trigger not another following window => wait for button release
if (IS_LEFTCLICK(&ev)) {
do {
display_get_event(&ev);
} while (!IS_LEFTRELEASE(&ev));
}
// restore autosave
env_t::autosave = old_autosave;
}
// some routines for the modal display
static bool never_quit() { return false; }
static bool empty_objfilename() { return !env_t::objfilename.empty(); }
static bool no_language() { return translator::get_language()!=-1; }
/**
* Show pak selector
*/
static void ask_objfilename()
{
pakselector_t* sel = new pakselector_t();
sel->fill_list();
if(sel->has_pak()) {
destroy_all_win(true); // since eventually the successful load message is still there ....
modal_dialogue( sel, magic_none, NULL, empty_objfilename );
}
else {
delete sel;
}
}
/**
* Show language selector
*/
static void ask_language()
{
if( display_get_width()==0 ) {
// only console available ... => choose english for the moment
dbg->warning( "ask_language", "No language selected, will use english!" );
translator::set_language( "en" );
}
else {
sprachengui_t* sel = new sprachengui_t();
destroy_all_win(true); // since eventually the successful load message is still there ....
modal_dialogue( sel, magic_none, NULL, no_language );
destroy_win( sel );
}
}
/**
* This function will be set in the main function as the handler the runtime environment will
* call in the case it lacks memory for new()
*/
static void sim_new_handler()
{
dbg->fatal("sim_new_handler()", "OUT OF MEMORY");
}
static const char *gimme_arg(int argc, char *argv[], const char *arg, int off)
{
for( int i = 1; i < argc; i++ ) {
if(strcmp(argv[i], arg) == 0 && i < argc - off ) {
return argv[i + off];
}
}
return NULL;
}
int simu_main(int argc, char** argv)
{
static const sint16 resolutions[][2] = {
{ 640, 480 },
{ 800, 600 },
{ 1024, 768 },
{ 1280, 1024 },
{ 704, 560 } // try to force window mode with allegro
};
sint16 disp_width = 0;
sint16 disp_height = 0;
sint16 fullscreen = false;
uint32 quit_month = 0x7FFFFFFFu;
std::set_new_handler(sim_new_handler);
env_t::init();
// you really want help with this?
if (gimme_arg(argc, argv, "-h", 0) ||
gimme_arg(argc, argv, "-?", 0) ||
gimme_arg(argc, argv, "-help", 0) ||
gimme_arg(argc, argv, "--help", 0)) {
printf(
"\n"
"---------------------------------------\n"
" Simutrans " VERSION_NUMBER "\n"
" released " VERSION_DATE "\n"
" developed\n"
" by the Simutrans team.\n"
"\n"
" Send feedback and questions to:\n"
" <[email protected]>\n"
"\n"
" Based on Simutrans 0.84.21.2\n"
" by Hansjörg Malthaner et. al.\n"
"---------------------------------------\n"
"command line parameters available: \n"
" -addons loads also addons (with -objects)\n"
" -async asynchronous images, only for SDL\n"
" -use_hw hardware double buffering, only for SDL\n"
" -debug NUM enables debugging (1..5)\n"
" -freeplay play with endless money\n"
" -fullscreen starts simutrans in fullscreen mode\n"
" -fps COUNT framerate (from 5 to 100)\n"
" -h | -help | --help displays this help\n"
" -lang CODE starts with specified language\n"
" -load FILE[.sve] loads game in file 'save/FILE.sve'\n"
" -log enables logging to file 'simu.log'\n"
#ifdef SYSLOG
" -syslog enable logging to syslog\n"
" mutually exclusive with -log\n"
" -tag TAG sets syslog tag (default 'simutrans')\n"
#endif
" -noaddons does not load any addon (default)\n"
" -nomidi turns off background music\n"
" -nosound turns off ambient sounds\n"
" -objects DIR_NAME/ load the pakset in specified directory\n"
" -pause starts game with paused after loading\n"
" -res N starts in specified resolution: \n"
" 1=640x480, 2=800x600, 3=1024x768, 4=1280x1024\n"
" -screensize WxH set screensize to width W and height H\n"
" -server [PORT] starts program as server (for network game)\n"
" without port specified uses 13353\n"
" -announce Enable server announcements\n"
" -server_dns FQDN/IP FQDN or IP address of server for announcements\n"
" -server_name NAME Name of server for announcements\n"
" -server_admin_pw PW password for server administration\n"
" -singleuser Save everything in program directory (portable version)\n"
#ifdef DEBUG
" -sizes Show current size of some structures\n"
#endif
" -startyear N start in year N\n"
" -theme N user directory containing theme files\n"
#ifdef MULTI_THREAD
" -threads N use N threads if possible\n"
#endif
" -timeline enables timeline\n"
#if defined DEBUG || defined PROFILE
" -times does some simple profiling\n"
" -until YEAR.MONTH quits when MONTH of YEAR starts\n"
#endif
" -use_workdir use current dir as basedir\n"
);
return 0;
}
#ifdef _WIN32
#define PATHSEP "\\"
#else
#define PATHSEP "/"
#endif
const char* path_sep = PATHSEP;
#ifdef __BEOS__
if (1) // since BeOS only supports relative paths ...
#else
// use current dir as basedir, else use program_dir
if (gimme_arg(argc, argv, "-use_workdir", 0))
#endif
{
// save the current directories
getcwd(env_t::program_dir, lengthof(env_t::program_dir));
strcat( env_t::program_dir, path_sep );
}
else {
strcpy( env_t::program_dir, argv[0] );
*(strrchr( env_t::program_dir, path_sep[0] )+1) = 0;
#ifdef __APPLE__
// change working directory from binary dir to bundle dir
if( !strcmp((env_t::program_dir + (strlen(env_t::program_dir) - 20 )), ".app/Contents/MacOS/") ) {
env_t::program_dir[strlen(env_t::program_dir) - 20] = 0;
while( env_t::program_dir[strlen(env_t::program_dir) - 1] != '/' ) {
env_t::program_dir[strlen(env_t::program_dir) - 1] = 0;
}
}
#endif
#ifdef __APPLE__
// Detect if the binary is started inside an application bundle
// Change working dir to bundle dir if that is the case or the game will search for the files inside the bundle
if (!strcmp((env_t::program_dir + (strlen(env_t::program_dir) - 20 )), ".app/Contents/MacOS/"))
{
env_t::program_dir[strlen(env_t::program_dir) - 20] = 0;
while (env_t::program_dir[strlen(env_t::program_dir) - 1] != '/') {
env_t::program_dir[strlen(env_t::program_dir) - 1] = 0;
}
}
#endif
chdir( env_t::program_dir );
}
printf("Use work dir %s\n", env_t::program_dir);
// only the specified pak conf should override this!
uint16 pak_diagonal_multiplier = env_t::default_settings.get_pak_diagonal_multiplier();
sint8 pak_tile_height = TILE_HEIGHT_STEP;
sint8 pak_height_conversion_factor = env_t::pak_height_conversion_factor;
// parsing config/simuconf.tab
printf("Reading low level config data ...\n");
bool found_settings = false;
bool found_simuconf = false;
bool multiuser = (gimme_arg(argc, argv, "-singleuser", 0) == NULL);
tabfile_t simuconf;
char path_to_simuconf[24];
// was config/simuconf.tab
sprintf(path_to_simuconf, "config%csimuconf.tab", path_sep[0]);
if(simuconf.open(path_to_simuconf)) {
{
tabfileobj_t contents;
simuconf.read(contents);
// use different save directories
multiuser = !(contents.get_int("singleuser_install", !multiuser)==1 || !multiuser);
found_simuconf = true;
}
simuconf.close();
}
// init dirs now
if(multiuser) {
env_t::user_dir = dr_query_homedir();
}
else {
// save in program directory
env_t::user_dir = env_t::program_dir;
}
chdir( env_t::user_dir );
#ifdef REVISION
const char *version = "Simutrans version " VERSION_NUMBER " from " VERSION_DATE " r" QUOTEME(REVISION) "\n";
#else
const char *version = "Simutrans version " VERSION_NUMBER " from " VERSION_DATE "\n";
#endif
/*** Begin logging set up ***/
#ifdef SYSLOG
bool cli_syslog_enabled = (gimme_arg( argc, argv, "-syslog", 0 ) != NULL);
const char* cli_syslog_tag = gimme_arg( argc, argv, "-tag", 1 );
#else
bool cli_syslog_enabled = false;
const char* cli_syslog_tag = NULL;
#endif
env_t::verbose_debug = 0;
if( gimme_arg(argc, argv, "-debug", 0) != NULL ) {
const char *s = gimme_arg(argc, argv, "-debug", 1);
int level = 4;
if(s!=NULL && s[0]>='0' && s[0]<='9' ) {
level = atoi(s);
}
env_t::verbose_debug = level;
}
if ( cli_syslog_enabled ) {
printf("syslog enabled\n");
if ( cli_syslog_tag ) {
printf("Init logging with syslog tag: %s\n", cli_syslog_tag);
init_logging( "syslog", true, true, version, cli_syslog_tag );
}
else {
printf("Init logging with default syslog tag\n");
init_logging( "syslog", true, true, version, "simutrans" );
}
}
else if (gimme_arg(argc, argv, "-log", 0)) {
chdir( env_t::user_dir );
char temp_log_name[256];
const char *logname = "simu.log";
if( gimme_arg(argc, argv, "-server", 0) ) {
const char *p = gimme_arg(argc, argv, "-server", 1);
int portadress = p ? atoi( p ) : 13353;
sprintf( temp_log_name, "simu-server%d.log", portadress==0 ? 13353 : portadress );
logname = temp_log_name;
}
init_logging( logname, true, gimme_arg(argc, argv, "-log", 0 ) != NULL, version, NULL );
}
else if (gimme_arg(argc, argv, "-debug", 0) != NULL) {
init_logging( "stderr", true, gimme_arg(argc, argv, "-debug", 0 ) != NULL, version, NULL );
}
else {
init_logging(NULL, false, false, version, NULL);
}
/*** End logging set up ***/
// now read last setting (might be overwritten by the tab-files)
loadsave_t file;
if(file.rd_open("settings.xml")) {
if( file.get_version()>loadsave_t::int_version(SAVEGAME_VER_NR, NULL, NULL ) ) {
// too new => remove it
file.close();
remove( "settings.xml" );
}
else {
found_settings = true;
env_t::rdwr(&file);
env_t::default_settings.rdwr(&file);
file.close();
// reset to false (otherwise these settings will persist)
env_t::default_settings.set_freeplay( false );
env_t::default_settings.set_allow_player_change( true );
env_t::server_announce = 0;
}
}
// continue parsing ...
chdir( env_t::program_dir );
if( found_simuconf ) {
if(simuconf.open(path_to_simuconf)) {
printf("parse_simuconf() at config/simuconf.tab: ");
env_t::default_settings.parse_simuconf( simuconf, disp_width, disp_height, fullscreen, env_t::objfilename );
}
}
// a portable installation could have a personal simuconf.tab in the main dir of simutrans
// otherwise it is in ~/simutrans/simuconf.tab
string obj_conf = string(env_t::user_dir) + "simuconf.tab";
if (simuconf.open(obj_conf.c_str())) {
printf("parse_simuconf() at %s: ", obj_conf.c_str() );
env_t::default_settings.parse_simuconf( simuconf, disp_width, disp_height, fullscreen, env_t::objfilename );
}
// env: override previous settings
if( (gimme_arg(argc, argv, "-freeplay", 0) != NULL) ) {
env_t::default_settings.set_freeplay( true );
}
// now set the desired objectfilename (override all previous settings)
if( const char *fn = gimme_arg(argc, argv, "-objects", 1) ) {
env_t::objfilename = fn;
// append slash / replace trailing backslash if necessary
uint16 len = env_t::objfilename.length();
if (len > 0) {
if (env_t::objfilename[len-1]=='\\') {
env_t::objfilename.erase(len-1);
env_t::objfilename += "/";
}
else if (env_t::objfilename[len-1]!='/') {
env_t::objfilename += "/";
}
}
}
else if( const char *filename = gimme_arg(argc, argv, "-load", 1) ) {
// try to get a pak file path from a savegame file
// read pak_extension from file
loadsave_t test;
std::string fn = env_t::user_dir;
fn += "save/";
fn += filename;
if( test.rd_open(fn.c_str()) ) {
// add pak extension
std::string pak_extension = test.get_pak_extension();
if( pak_extension!="(unknown)" ) {
env_t::objfilename = pak_extension + "/";
}
}
}
// starting a server?
if( gimme_arg(argc, argv, "-server", 0) ) {
const char *p = gimme_arg(argc, argv, "-server", 1);
int portadress = p ? atoi( p ) : 13353;
if( portadress==0 ) {
portadress = 13353;
}
// will fail fatal on the opening routine ...
dbg->message( "simmain()", "Server started on port %i", portadress );
env_t::networkmode = network_init_server( portadress );
}
else {
// no announce for clients ...
env_t::server_announce = 0;
}
DBG_MESSAGE( "simmain::main()", "Version: " VERSION_NUMBER " Date: " VERSION_DATE);
DBG_MESSAGE("Debuglevel", "%i", env_t::verbose_debug);
DBG_MESSAGE("program_dir", "%s", env_t::program_dir);
DBG_MESSAGE("home_dir", "%s", env_t::user_dir);
DBG_MESSAGE("locale", "%s", dr_get_locale_string());
//#ifdef DEBUG
if (gimme_arg(argc, argv, "-sizes", 0) != NULL) {
// show the size of some structures ...
show_sizes();
}
//#endif
// prepare skins first
bool themes_ok = false;
if( const char *themestr = gimme_arg(argc, argv, "-theme", 1) ) {
chdir( env_t::user_dir );
chdir( "themes" );
themes_ok = gui_theme_t::themes_init(themestr);
if( !themes_ok ) {
chdir( env_t::program_dir );
chdir( "themes" );
themes_ok = gui_theme_t::themes_init(themestr);
}
}
// next try the last used theme
if( !themes_ok && env_t::default_theme.c_str()!=NULL ) {
chdir( env_t::user_dir );
chdir( "themes" );
themes_ok = gui_theme_t::themes_init( env_t::default_theme );
if( !themes_ok ) {
chdir( env_t::program_dir );
chdir( "themes" );
themes_ok = gui_theme_t::themes_init( env_t::default_theme );
}
}
// specified themes not found => try default themes
if( !themes_ok ) {
chdir( env_t::program_dir );
chdir( "themes" );
themes_ok = gui_theme_t::themes_init("themes.tab");
}
if( !themes_ok ) {
dbg->fatal( "simmain()", "No GUI themes found! Please re-install!" );
}
chdir( env_t::program_dir );
// likely only the program without graphics was downloaded
if (gimme_arg(argc, argv, "-res", 0) != NULL) {
const char* res_str = gimme_arg(argc, argv, "-res", 1);
const int res = *res_str - '1';
switch (res) {
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
fullscreen = (res<=4);
disp_width = resolutions[res][0];
disp_height = resolutions[res][1];
break;
default:
fprintf(stderr,
"invalid resolution, argument must be 1,2,3 or 4\n"
"1=640x480, 2=800x600, 3=1024x768, 4=1280x1024, 5=windowed\n"
);
return 0;
}
}
fullscreen |= (gimme_arg(argc, argv, "-fullscreen", 0) != NULL);
if(gimme_arg(argc, argv, "-screensize", 0) != NULL) {
const char* res_str = gimme_arg(argc, argv, "-screensize", 1);
int n = 0;
if (res_str != NULL) {
n = sscanf(res_str, "%hdx%hd", &disp_width, &disp_height);
}
if (n != 2) {
fprintf(stderr,
"invalid argument for -screensize option\n"
"argument must be of format like 800x600\n"
);
return 1;
}
}
int parameter[2];
parameter[0] = gimme_arg( argc, argv, "-async", 0) != NULL;
parameter[1] = gimme_arg( argc, argv, "-use_hw", 0) != NULL;
if (!dr_os_init(parameter)) {
dr_fatal_notify("Failed to initialize backend.\n");
return EXIT_FAILURE;
}
// Get optimal resolution.
if (disp_width == 0 || disp_height == 0) {
resolution const res = dr_query_screen_resolution();
if (fullscreen) {
disp_width = res.w;
disp_height = res.h;
}
else {
disp_width = min(704, res.w);
disp_height = min(560, res.h);
}
}
dbg->important("Preparing display ...");
DBG_MESSAGE("simmain", "simgraph_init disp_width=%d, disp_height=%d, fullscreen=%d", disp_width, disp_height, fullscreen);
simgraph_init(disp_width, disp_height, fullscreen);
DBG_MESSAGE("simmain", ".. results in disp_width=%d, disp_height=%d", display_get_width(), display_get_height());
// The loading screen needs to be initialized
show_pointer(1);
// if no object files given, we ask the user
if( env_t::objfilename.empty() ) {
ask_objfilename();
if( env_t::quit_simutrans ) {
simgraph_exit();
return 0;
}
if( env_t::objfilename.empty() ) {
// try to download missing paks
if( dr_download_pakset( env_t::program_dir, env_t::program_dir == env_t::user_dir ) ) {
ask_objfilename();
if( env_t::quit_simutrans ) {
simgraph_exit();
return 0;
}
}
// still nothing?
if( env_t::objfilename.empty() ) {
// nothing to be loaded => exit
dr_fatal_notify("*** No pak set found ***\n\nMost likely, you have no pak set installed.\nPlease download and install a pak set (graphics).\n");
simgraph_exit();
return 0;
}
}
}
// check for valid pak path
{
cbuffer_t buf;
buf.append( env_t::program_dir );
buf.append( env_t::objfilename.c_str() );
buf.append("ground.Outside.pak");
FILE* const f = fopen(buf, "r");
if( !f ) {
dr_fatal_notify("*** No pak set found ***\n\nMost likely, you have no pak set installed.\nPlease download and install a pak set (graphics).\n");
simgraph_exit();
return 0;
}
fclose(f);
}
// now find the pak specific tab file ...
obj_conf = env_t::objfilename + path_to_simuconf;
if( simuconf.open(obj_conf.c_str()) ) {
sint16 idummy;
string dummy;
env_t::default_settings.set_way_height_clearance( 0 );
dbg->important("parse_simuconf() at %s: ", obj_conf.c_str());
env_t::default_settings.parse_simuconf( simuconf, idummy, idummy, idummy, dummy );
pak_diagonal_multiplier = env_t::default_settings.get_pak_diagonal_multiplier();
pak_height_conversion_factor = env_t::pak_height_conversion_factor;
pak_tile_height = TILE_HEIGHT_STEP;
if( env_t::default_settings.get_way_height_clearance() == 0 ) {
// ok, set default as conversion factor
env_t::default_settings.set_way_height_clearance( pak_height_conversion_factor );
}
simuconf.close();
}
// and parse again the user settings
obj_conf = string(env_t::user_dir) + "simuconf.tab";
if (simuconf.open(obj_conf.c_str())) {
sint16 idummy;
string dummy;
dbg->important("parse_simuconf() at %s: ", obj_conf.c_str());
env_t::default_settings.parse_simuconf( simuconf, idummy, idummy, idummy, dummy );
simuconf.close();
}
// load with private addons (now in addons/pak-name either in simutrans main dir or in userdir)
if( gimme_arg(argc, argv, "-objects", 1) != NULL ) {
if(gimme_arg(argc, argv, "-addons", 0) != NULL) {
env_t::default_settings.set_with_private_paks( true );
}
if(gimme_arg(argc, argv, "-noaddons", 0) != NULL) {
env_t::default_settings.set_with_private_paks( false );
}
}
// parse ~/simutrans/pakxyz/config.tab"
if( env_t::default_settings.get_with_private_paks() ) {
obj_conf = string(env_t::user_dir) + "addons/" + env_t::objfilename + "config/simuconf.tab";
sint16 idummy;
string dummy;
if (simuconf.open(obj_conf.c_str())) {
dbg->important("parse_simuconf() at %s: ", obj_conf.c_str());
env_t::default_settings.parse_simuconf( simuconf, idummy, idummy, idummy, dummy );
simuconf.close();
}
// and parse user settings again ...
obj_conf = string(env_t::user_dir) + "simuconf.tab";
if (simuconf.open(obj_conf.c_str())) {
dbg->important("parse_simuconf() at %s: ", obj_conf.c_str());
env_t::default_settings.parse_simuconf( simuconf, idummy, idummy, idummy, dummy );
simuconf.close();
}
}
// now (re)set the correct length and other pak set only settings
env_t::default_settings.set_pak_diagonal_multiplier( pak_diagonal_multiplier );
vehicle_base_t::set_diagonal_multiplier( pak_diagonal_multiplier, pak_diagonal_multiplier );
env_t::pak_height_conversion_factor = pak_height_conversion_factor;
TILE_HEIGHT_STEP = pak_tile_height;
convoihandle_t::init( 1024 );
linehandle_t::init( 1024 );
halthandle_t::init( 1024 );
#ifdef MULTI_THREAD
// set number of threads
if( const char *ref_str = gimme_arg(argc, argv, "-threads", 1) ) {
int want_threads = atoi(ref_str);
env_t::num_threads = clamp(want_threads, 1, MAX_THREADS);
}
#else
if( env_t::num_threads > 1 ) {
env_t::num_threads = 1;
dbg->important("Multithreading not enabled: threads = %d ignored.", env_t::num_threads );
}
#endif
// just check before loading objects
if (!gimme_arg(argc, argv, "-nosound", 0) && dr_init_sound()) {
dbg->important("Reading compatibility sound data ...");
sound_besch_t::init();
}
else {
sound_set_mute(true);
}
// Adam - Moved away loading from simmain and placed into translator for better modularization
if( !translator::load(env_t::objfilename) ) {
// installation error: likely only program started
dbg->fatal("simmain::main()", "Unable to load any language files\n"
"*** PLEASE INSTALL PROPER BASE FILES ***\n\n"
"either run ./get_lang_files.sh\n\nor\n\n"
"download a complete simutrans archive and put the text/ folder here."
);
exit(11);
}
// use requested language (if available)
if( gimme_arg(argc, argv, "-lang", 1) ) {
const char *iso = gimme_arg(argc, argv, "-lang", 1);
if( strlen(iso)>=2 ) {
translator::set_language( iso );
}
if( translator::get_language()==-1 ) {
dbg->fatal("simmain", "Illegal language definition \"%s\"", iso );
}
env_t::language_iso = translator::get_lang()->iso_base;
}
else if( found_settings ) {
translator::set_language( env_t::language_iso );
}
// Hajo: simgraph init loads default fonts, now we need to load
// the real fonts for the current language
sprachengui_t::init_font_from_lang();
chdir(env_t::program_dir);
dbg->important("Reading city configuration ...");
stadt_t::cityrules_init(env_t::objfilename);
dbg->important("Reading speedbonus configuration ...");
vehikelbauer_t::speedbonus_init(env_t::objfilename);
dbg->important("Reading menu configuration ...");
tool_t::init_menu();
// loading all paks
dbg->important("Reading object data from %s...", env_t::objfilename.c_str());
obj_reader_t::load(env_t::objfilename.c_str(), translator::translate("Loading paks ...") );
if( env_t::default_settings.get_with_private_paks() ) {
// try to read addons from private directory
chdir( env_t::user_dir );
if(!obj_reader_t::load(("addons/" + env_t::objfilename).c_str(), translator::translate("Loading addon paks ..."))) {
fprintf(stderr, "reading addon object data failed (disabling).\n");
env_t::default_settings.set_with_private_paks( false );