]> icculus.org git repositories - btb/d2x.git/blob - main/inferno.c
Added other SDL_(Un)LockAudio statements to protect the audio_mixcallback function
[btb/d2x.git] / main / inferno.c
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
11 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14 /*
15  *
16  * inferno.c: Entry point of program (main procedure)
17  *
18  * After main initializes everything, most of the time is spent in the loop
19  * while (Function_mode != FMODE_EXIT)
20  * In this loop, the main menu is brought up first.
21  *
22  * main() for Inferno
23  *
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #include <conf.h>
28 #endif
29
30 char copyright[] = "DESCENT II  COPYRIGHT (C) 1994-1996 PARALLAX SOFTWARE CORPORATION";
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <limits.h>
36
37 #ifdef __unix__
38 #include <unistd.h>
39 #include <sys/stat.h>
40 #include <sys/types.h>
41 #endif
42
43 #ifndef __MSDOS__
44 #include <SDL.h>
45 #endif
46 #include <physfs.h>
47
48 #include "strutil.h"
49 #include "gr.h"
50 #include "vid.h"
51 #include "maths.h"
52 #include "mono.h"
53 #include "key.h"
54 #include "timer.h"
55 #include "3d.h"
56 #include "inferno.h"
57 #include "error.h"
58 #include "u_mem.h"
59 #include "texmap.h"
60 #include "args.h"
61 #include "mouse.h"
62 #include "joy.h"
63 #include "cfile.h"
64 // #  include "3dfx_des.h"
65 #ifdef EDITOR
66 #include "editor/editor.h"
67 #include "ui.h"
68 #endif
69
70
71 void mem_init(void);
72 void arch_init(void);
73 void arch_init_start(void);
74
75 //Current version number
76
77 ubyte Version_major = 1;                //FULL VERSION
78 ubyte Version_minor = 2;
79
80 //static const char desc_id_checksum_str[] = DESC_ID_CHKSUM_TAG "0000"; // 4-byte checksum
81 char desc_id_exit_num = 0;
82
83 int Function_mode=FMODE_MENU;           //game or editor?
84 int Screen_mode=-1;                                     //game screen or editor screen?
85
86 //--unused-- grs_bitmap Inferno_bitmap_title;
87
88 int WVIDEO_running=0;           //debugger can set to 1 if running
89
90 #ifdef __WATCOMC__
91 int __far descent_critical_error_handler( unsigned deverr, unsigned errcode, unsigned __far * devhdr );
92 #endif
93
94 void check_joystick_calibration(void);
95
96 //--------------------------------------------------------------------------
97
98 extern int piggy_low_memory;
99
100
101 int descent_critical_error = 0;
102 unsigned descent_critical_deverror = 0;
103 unsigned descent_critical_errcode = 0;
104
105 extern int Network_allow_socket_changes;
106
107 extern void vfx_set_palette_sub(ubyte *);
108
109 extern int VR_low_res;
110
111 #define LINE_LEN        100
112
113 //read help from a file & print to screen
114 void print_commandline_help()
115 {
116         CFILE *ifile;
117         int have_binary=0;
118         char line[LINE_LEN];
119
120         ifile = cfopen("help.tex","rb");
121         if (!ifile) {
122                 ifile = cfopen("help.txb","rb");
123                 if (!ifile)
124                         Warning("Cannot load help text file.");
125                 have_binary = 1;
126         }
127
128         if (ifile)
129         {
130         char *end;
131         
132                 while ((end = cfgets(line,LINE_LEN,ifile))) {
133
134                         if (have_binary)
135                                 decode_text_line (line);
136
137             // This is the only use of cfgets that needs the CR
138                         strcat(end, "\n");
139
140                         if (line[0] == ';')
141                                 continue;               //don't show comments
142
143                         printf("%s",line);
144
145                 }
146
147                 cfclose(ifile);
148
149         }
150
151 //      printf( " Diagnostic:\n\n");
152 //      printf( "  -emul           %s\n", "Certain video cards need this option in order to run game");
153 //      printf( "  -ddemul         %s\n", "If -emul doesn't work, use this option");
154 //      printf( "\n");
155 #ifdef EDITOR
156         printf( " Editor Options:\n\n");
157         printf( "  -autoload <file>%s\n", "Autoload a level in the editor");
158         printf( "  -hoarddata      %s\n","Make the hoard ham file from some files, then exit");
159 //      printf( "  -nobm           %s\n","FIXME: Undocumented");
160         printf( "\n");
161 #endif
162         printf( " D2X Options:\n\n");
163         printf( "  -noredundancy   %s\n", "Do not send messages when picking up redundant items in multi");
164         printf( "  -shortpackets   %s\n", "Set shortpackets to default as on");
165 #ifdef OGL // currently only does anything on ogl build, so don't advertise othewise.
166         printf("  -renderstats    %s\n", "Enable renderstats info by default");
167 #endif
168         printf( "  -maxfps <n>     %s\n", "Set maximum framerate (1-100)");
169         printf( "  -notitles       %s\n", "Do not show titlescreens on startup");
170         printf( "  -hogdir <dir>   %s\n", "set shared data directory to <dir>");
171 #ifdef __unix__
172         printf( "  -nohogdir       %s\n", "don't try to use shared data directory");
173         printf( "  -userdir <dir>  %s\n", "set user dir to <dir> instead of $HOME/.d2x");
174 #endif
175         printf( "  -autoexec <file> %s\n", "autoexec file (execute console commands), defaults to autoexec.cfg");
176         printf( "  -ini <file>     %s\n", "option file (alternate to command line), defaults to d2x.ini");
177         printf( "  -autodemo       %s\n", "Start in demo mode");
178         printf( "  -bigpig         %s\n","FIXME: Undocumented");
179         printf( "  -bspgen         %s\n","FIXME: Undocumented");
180 //      printf( "  -cdproxy        %s\n","FIXME: Undocumented");
181 #ifndef NDEBUG
182         printf( "  -checktime      %s\n","FIXME: Undocumented");
183         printf( "  -showmeminfo    %s\n","FIXME: Undocumented");
184 #endif
185 //      printf( "  -codereadonly   %s\n","FIXME: Undocumented");
186 //      printf( "  -cyberimpact    %s\n","FIXME: Undocumented");
187         printf( "  -debug          %s\n","Enable very verbose output");
188 //      printf( "  -debugmode      %s\n","FIXME: Undocumented");
189 //      printf( "  -disallowgfx    %s\n","FIXME: Undocumented");
190 //      printf( "  -disallowreboot %s\n","FIXME: Undocumented");
191 //      printf( "  -dynamicsockets %s\n","FIXME: Undocumented");
192 //      printf( "  -forcegfx       %s\n","FIXME: Undocumented");
193 //      printf( "  -hw_3dacc       %s\n","FIXME: Undocumented");
194 #ifndef RELEASE
195         printf( "  -invulnerability %s\n","Make yourself invulnerable");
196 #endif
197         printf( "  -ipxnetwork <num> %s\n","Use IPX network number <num>");
198         printf( "  -jasen          %s\n","FIXME: Undocumented");
199         printf( "  -joyslow        %s\n","FIXME: Undocumented");
200 #ifdef NETWORK
201         printf( "  -kali           %s\n","use Kali for networking");
202 #endif
203 //      printf( "  -logfile        %s\n","FIXME: Undocumented");
204         printf( "  -lowresmovies   %s\n","Play low resolution movies if available (for slow machines)");
205 #if defined(EDITOR) || !defined(MACDATA)
206         printf( "  -macdata        %s\n","Read (and, for editor, write) mac data files (swap colors)");
207 #endif
208 //      printf( "  -memdbg         %s\n","FIXME: Undocumented");
209 //      printf( "  -monodebug      %s\n","FIXME: Undocumented");
210         printf( "  -nocdrom        %s\n","FIXME: Undocumented");
211 #ifndef NDEBUG
212         printf( "  -nofade         %s\n","Disable fades");
213 #endif
214 #ifdef NETWORK
215         printf( "  -nomatrixcheat  %s\n","FIXME: Undocumented");
216         printf( "  -norankings     %s\n","Disable multiplayer ranking system");
217         printf( "  -packets <num>  %s\n","Specifies the number of packets per second\n");
218 //      printf( "  -showaddress    %s\n","FIXME: Undocumented");
219         printf( "  -socket         %s\n","FIXME: Undocumented");
220 #endif
221 #if !defined(MACINTOSH) && !defined(WINDOWS)
222         printf( "  -nomixer        %s\n","Don't crank music volume");
223 #endif
224 //      printf( "  -nomodex        %s\n","FIXME: Undocumented");
225 #ifndef RELEASE
226         printf( "  -nomovies       %s\n","Don't play movies");
227         printf( "  -noscreens      %s\n","Skip briefing screens");
228 #endif
229         printf( "  -noredbook      %s\n","Disable redbook audio");
230         printf( "  -norun          %s\n","Bail out after initialization");
231 //      printf( "  -ordinaljoy     %s\n","FIXME: Undocumented");
232 //      printf( "  -rtscts         %s\n","Same as -ctsrts");
233 //      printf( "  -semiwin        %s\n","Use non-fullscreen mode");
234 //      printf( "  -specialdevice  %s\n","FIXME: Undocumented");
235 #ifdef TACTILE
236         printf( "  -stickmag       %s\n","FIXME: Undocumented");
237 #endif
238 //      printf( "  -stopwatch      %s\n","FIXME: Undocumented");
239         printf( "  -subtitles      %s\n","Turn on movie subtitles (English-only)");
240 //      printf( "  -sysram         %s\n","FIXME: Undocumented");
241         printf( "  -text <file>    %s\n","Specify alternate .tex file");
242 //      printf( "  -tsengdebug1    %s\n","FIXME: Undocumented");
243 //      printf( "  -tsengdebug2    %s\n","FIXME: Undocumented");
244 //      printf( "  -tsengdebug3    %s\n","FIXME: Undocumented");
245 //      printf( "  -vidram         %s\n","FIXME: Undocumented");
246         printf( "  -tmap <t>       %s\n","select texmapper to use (c,fp,i386,pent,ppro)");
247 #ifdef __MSDOS__
248         printf( "  -<X>x<Y>        %s\n", "Change screen resolution. Options:");
249         printf( "                     320x100;320x200;320x240;320x400;640x400;640x480;800x600;1024x768\n");
250 #else
251         printf( "  -<X>x<Y>        %s\n", "Change screen resolution to <X> by <Y>");
252 #endif
253         printf("  -niceautomap    %s\n", "Free cpu while doing automap");
254         printf( "  -automap<X>x<Y> %s\n","Set automap resolution to <X> by <Y>");
255         printf( "  -automap_gameres %s\n","Set automap to use the same resolution as in game");
256 //      printf( "  -menu<X>x<Y>    %s\n","Set menu resolution to <X> by <Y>");
257         printf( "  -menu_gameres   %s\n","Set menus to use the same resolution as in game");
258         printf("  -rearviewtime t %s\n", "time holding rearview key to use toggle mode (default 0.0625 seconds)");
259         printf( "\n");
260
261         printf( "D2X System Options:\n\n");
262 #ifdef __MSDOS__
263         printf("  -ihaveabrokenmouse %s\n", "try to make mouse work if it is not currently");
264         printf( "  -joy209         %s\n", "Use alternate port 209 for joystick");
265 #endif
266 #ifdef VID_SUPPORTS_FULLSCREEN_TOGGLE
267         printf( "  -fullscreen     %s\n", "Use fullscreen mode if available");
268 #endif
269 #ifdef OGL
270         printf( "  -gl_texmagfilt <f> %s\n","set GL_TEXTURE_MAG_FILTER (see readme.d1x)");
271         printf( "  -gl_texminfilt <f> %s\n","set GL_TEXTURE_MIN_FILTER (see readme.d1x)");
272         printf("  -gl_mipmap      %s\n", "set gl texture filters to \"standard\" (bilinear) mipmapping");
273         printf("  -gl_trilinear   %s\n", "set gl texture filters to trilinear mipmapping");
274         printf( "  -gl_simple      %s\n","set gl texture filters to gl_nearest for \"original\" look. (default)");
275         printf("  -gl_anisotropy <f> %s\n", "set maximum degree of anisotropy to <f>");
276         printf( "  -gl_alttexmerge %s\n","use new texmerge, usually uses less ram (default)");
277         printf( "  -gl_stdtexmerge %s\n","use old texmerge, uses more ram, but _might_ be a bit faster");
278 #ifdef VID_SUPPORTS_FULLSCREEN_TOGGLE
279         printf( "  -gl_voodoo      %s\n","force fullscreen mode only");
280 #endif
281         printf( "  -gl_16bittextures %s\n","attempt to use 16bit textures");
282         printf("  -gl_16bpp       %s\n", "attempt to use 16bit screen mode");
283         printf( "  -gl_reticle <r> %s\n","use OGL reticle 0=never 1=above 320x* 2=always");
284         printf( "  -gl_intensity4_ok %s\n","FIXME: Undocumented");
285         printf( "  -gl_luminance4_alpha4_ok %s\n","FIXME: Undocumented");
286         printf( "  -gl_readpixels_ok %s\n","FIXME: Undocumented");
287         printf( "  -gl_rgba2_ok    %s\n","FIXME: Undocumented");
288 //      printf( "  -gl_test1       %s\n","FIXME: Undocumented");
289         printf( "  -gl_test2       %s\n","FIXME: Undocumented");
290         printf( "  -gl_vidmem      %s\n","FIXME: Undocumented");
291 #ifdef WGL_VIDEO
292         printf("  -gl_refresh <r> %s\n", "set refresh rate (in fullscreen mode)");
293 #endif
294 #endif
295 #ifdef SDL_VIDEO
296         printf( "  -nosdlvidmodecheck %s\n", "Some X servers don't like checking vidmode first, so just switch");
297         printf( "  -hwsurface      %s\n","FIXME: Undocumented");
298 #endif
299 #ifdef NETWORK
300         printf("  -udp            %s\n", "Specify options for udp/ip:");
301         printf("    @<shift>      %s\n", "  shift udp port base offset");
302         printf("    =<HOST_LIST>  %s\n", "  broadcast both local and to HOST_LIST");
303         printf("    +<HOST_LIST>  %s\n", "  broadcast only to HOST_LIST");
304         printf("                  %s\n", "   HOSTS can be any IP or hostname")
305                 ;
306         printf("                  %s\n", "   HOSTS can also be in the form of <address>:<shift>");
307         printf("                  %s\n", "   separate multiple HOSTS with a ,");
308 #endif
309 #ifdef __unix__
310         printf( "  -serialdevice <s> %s\n", "Set serial/modem device to <s>");
311         printf( "  -serialread <r> %s\n", "Set serial/modem to read from <r>");
312 #endif
313         printf( "\n Help:\n\n");
314         printf( "  -help, -h, -?, ? %s\n", "View this help screen");
315         printf( "\n");
316 }
317
318 void do_joystick_init()
319 {
320
321         if (!FindArg( "-nojoystick" ))  {
322                 con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_6);
323                 joy_init();
324                 if ( FindArg( "-joyslow" ))     {
325                         con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_7);
326                         joy_set_slow_reading(JOY_SLOW_READINGS);
327                 }
328                 if ( FindArg( "-joypolled" ))   {
329                         con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_8);
330                         joy_set_slow_reading(JOY_POLLED_READINGS);
331                 }
332                 if ( FindArg( "-joybios" ))     {
333                         con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_9);
334                         joy_set_slow_reading(JOY_BIOS_READINGS);
335                 }
336
337         //      Added from Descent v1.5 by John.  Adapted by Samir.
338         } else {
339                 con_printf(CON_VERBOSE, "\n%s", TXT_VERBOSE_10);
340         }
341 }
342
343 //set this to force game to run in low res
344 int disable_high_res=0;
345
346 void do_register_player(ubyte *title_pal)
347 {
348         strncpy( Players[Player_num].callsign, config_last_player.string, CALLSIGN_LEN );
349         if (strlen(Players[Player_num].callsign))
350                 return;
351
352         if (!Auto_demo)         {
353
354                 key_flush();
355
356                 //now, before we bring up the register player menu, we need to
357                 //do some stuff to make sure the palette is ok.  First, we need to
358                 //get our current palette into the 2d's array, so the remapping will
359                 //work.  Second, we need to remap the fonts.  Third, we need to fill
360                 //in part of the fade tables so the darkening of the menu edges works
361
362 #if 0
363                 memcpy(gr_palette,title_pal,sizeof(gr_palette));
364 #endif
365                 remap_fonts_and_menus(1);
366                 RegisterPlayer();               //get player's name
367         }
368
369 }
370
371
372 void inferno_cmd_quit(int argc, char **argv)
373 {
374         if (argc > 1)
375                 return;
376
377         quit_request();
378 }
379
380
381 #define PROGNAME argv[0]
382
383 extern char Language[];
384
385 int Inferno_verbose = 0;
386
387 //added on 11/18/98 by Victor Rachels to add -mission and -startgame
388 int start_net_immediately = 0;
389 //int start_with_mission = 0;
390 //char *start_with_mission_name;
391 //end this section addition
392
393 #define MENU_HIRES_MODE SM(640,480)
394
395 //      DESCENT II by Parallax Software
396 //              Descent Main
397
398 //extern ubyte gr_current_pal[];
399
400 #ifdef  EDITOR
401 int     Auto_exit = 0;
402 char    Auto_file[128] = "";
403 #endif
404
405 int main(int argc, char *argv[])
406 {
407         int t;
408         ubyte title_pal[768];
409
410         mem_init();
411         con_init(); // Initialise the console
412
413         cmd_addcommand("quit", inferno_cmd_quit, "");
414
415         error_init(NULL, NULL);
416         PHYSFSX_init(argc, argv);
417
418         if (FindArg("-debug"))
419                 cvar_setint( &con_threshold, CON_DEBUG );
420         else if (FindArg("-verbose"))
421                 cvar_setint( &con_threshold, CON_VERBOSE );
422
423         if (! cfile_init("descent2.hog"))
424                 if (! cfile_init("d2demo.hog"))
425                         Warning("Could not find a valid hog file (descent2.hog or d2demo.hog)\nPossible locations are:\n"
426 #ifdef __unix__
427                               "\t$HOME/.d2x\n"
428                               "\t" SHAREPATH "\n"
429 #else
430                                   "\tCurrent directory\n"
431 #endif
432                                   "Or use the -hogdir option to specify an alternate location.");
433         load_text();
434
435         //print out the banner title
436         con_printf(CON_NORMAL, "\nDESCENT 2 %s v%d.%d",VERSION_TYPE,Version_major,Version_minor);
437         #ifdef VERSION_NAME
438         con_printf(CON_NORMAL, "  %s", VERSION_NAME);
439         #endif
440         if (cfexist(MISSION_DIR "d2x.hog"))
441                 con_printf(CON_NORMAL, "  Vertigo Enhanced");
442
443         con_printf(CON_NORMAL, "  %s %s\n", __DATE__,__TIME__);
444         con_printf(CON_NORMAL, "%s\n%s\n",TXT_COPYRIGHT,TXT_TRADEMARK);
445         con_printf(CON_NORMAL, "This is a MODIFIED version of Descent 2. Copyright (c) 1999 Peter Hawkins\n");
446         con_printf(CON_NORMAL, "                                         Copyright (c) 2002 Bradley Bell\n");
447
448
449         if (FindArg( "-?" ) || FindArg( "-help" ) || FindArg( "?" ) || FindArg( "-h" ) ) {
450                 print_commandline_help();
451                 set_exit_message("");
452 #ifdef __MINGW32__
453                 exit(0);  /* mingw hangs on this return.  dunno why */
454 #endif
455                 return(0);
456         }
457
458         con_printf(CON_NORMAL, "\n");
459         con_printf(CON_NORMAL, TXT_HELP, PROGNAME);             //help message has %s for program name
460         con_printf(CON_NORMAL, "\n");
461
462         {
463                 char **i, **list;
464
465                 for (i = PHYSFS_getSearchPath(); *i != NULL; i++)
466                         con_printf(CON_VERBOSE, "PHYSFS: [%s] is in the search path.\n", *i);
467
468                 list = PHYSFS_getCdRomDirs();
469                 for (i = list; *i != NULL; i++)
470                         con_printf(CON_VERBOSE, "PHYSFS: cdrom dir [%s] is available.\n", *i);
471                 PHYSFS_freeList(list);
472
473                 list = PHYSFS_enumerateFiles("");
474                 for (i = list; *i != NULL; i++)
475                         con_printf(CON_DEBUG, "PHYSFS: * We've got [%s].\n", *i);
476                 PHYSFS_freeList(list);
477         }
478
479         //(re)added Mar 30, 2003 Micah Lieske - Allow use of 22K sound samples again.
480         if(FindArg("-sound22k"))
481         {
482                 digi_sample_rate = SAMPLE_RATE_22K;
483         }
484
485         if(FindArg("-sound11k"))
486         {
487                 digi_sample_rate = SAMPLE_RATE_11K;
488         }
489
490         arch_init_start();
491
492         arch_init();
493
494         //con_printf(CON_VERBOSE, "\n%s...", "Checking for Descent 2 CD-ROM");
495
496         if ((t = FindArg("-rearviewtime")))
497         {
498                 float f = atof(Args[t + 1]);
499                 Rear_view_leave_time = f * f1_0;
500         }
501         con_printf(CON_VERBOSE, "Rear_view_leave_time=0x%x (%f sec)\n", Rear_view_leave_time, Rear_view_leave_time / (float)f1_0);
502
503         //added/edited 8/18/98 by Victor Rachels to set maximum fps <= 100
504         if ((t = FindArg( "-maxfps" ))) {
505                 t=atoi(Args[t+1]);
506                 if (t > 0 && t <= MAX_FPS)
507                         maxfps=t;
508         }
509         //end addition - Victor Rachels
510
511 #ifdef SUPPORTS_NICEFPS
512         if (FindArg("-nicefps"))
513                 use_nice_fps = 1;
514         if (FindArg("-niceautomap"))
515                 nice_automap = 1;
516 #endif
517
518         if (FindArg("-renderstats"))
519                 gr_renderstats = 1;
520
521         if ( FindArg( "-autodemo" ))
522                 Auto_demo = 1;
523
524 #ifndef RELEASE
525         if ( FindArg( "-noscreens" ) )
526                 Skip_briefing_screens = 1;
527 #endif
528
529         texmap_init();
530
531         Lighting_on = 1;
532
533         if (vid_init())
534                 return 1;
535
536         #ifdef EDITOR
537         if (vid_check_mode(SM(800, 600)) != 0) {
538                 con_printf(CON_NORMAL, "The editor will not be available, press any key to start game...\n" );
539                 Function_mode = FMODE_MENU;
540         }
541         #endif
542
543         if (!WVIDEO_running)
544                 con_printf(CON_DEBUG,"WVIDEO_running = %d\n",WVIDEO_running);
545
546         do_joystick_init();
547
548         if ((t = gr_init()) != 0) // doesn't do much
549                 Error(TXT_CANT_INIT_GFX, t);
550
551         con_printf (CON_VERBOSE, "%s", TXT_VERBOSE_1);
552         ReadConfigFile();
553
554         if (!VR_offscreen_buffer)       //if hasn't been initialied (by headset init)
555                 set_display_mode(Default_display_mode); //..then set default display mode
556
557         {
558                 int screen_width = 0;
559                 int screen_height = 0;
560
561                 FindResArg("", &screen_width, &screen_height);
562
563                 if (screen_width && screen_height)
564                         set_display_mode(SM(screen_width, screen_height));
565         }
566         {
567 // added/edited on 12/14/98 by Matt Mueller - override res in d1x.ini with command line args
568                 int i, argnum = INT_MAX, w, h;
569 // added on 9/30/98 by Matt Mueller for selectable automap modes - edited 11/21/99 whee, more fun with defines. - edited 03/31/02 to use new FindResArg.
570 #define SMODE(V,VV,VG) if ((i = FindResArg(#V, &w, &h)) && (i < argnum)) { argnum = i; VV = SM(w, h); cvar_setint(&VG, 0); }
571 #define SMODE_GR(V,VG) if ((i = FindArg("-" #V "_gameres"))) { if (i < argnum) cvar_setint(&VG, 1); }
572 #define SMODE_PRINT(V,VV,VG) if (VG.intval) con_printf(CON_VERBOSE, #V " using game resolution ...\n"); else con_printf(CON_VERBOSE, #V " using %ix%i ...\n",SM_W(VV),SM_H(VV) );
573 // aren't #defines great? :)
574 // end addition/edit -MM
575 #define S_MODE(V,VV,VG) argnum = INT_MAX; SMODE(V, VV, VG); SMODE_GR(V, VG); SMODE_PRINT(V, VV, VG);
576
577                 S_MODE(automap,automap_mode,automap_use_game_res);
578                 SMODE_GR(menu, menu_use_game_res);
579                 SMODE_PRINT(menu, MENU_SCREEN_MODE, menu_use_game_res);
580         }
581 //end addition -MM
582
583         controls_init();
584
585         con_printf(CON_VERBOSE, "\n%s\n\n", TXT_INITIALIZING_GRAPHICS);
586         if (FindArg("-nofade"))
587                 grd_fades_disabled=1;
588
589         //determine whether we're using high-res menus & movies
590         if (FindArg("-nohires") || FindArg("-nohighres") || (vid_check_mode(MENU_HIRES_MODE) != 0) || disable_high_res)
591                 cvar_setint( &MovieHires, MenuHiresAvailable = 0 );
592         else
593                 MenuHiresAvailable = 1;
594
595         if (FindArg( "-lowresmovies" ))
596                 cvar_setint( &MovieHires, 0 );
597
598         con_printf(CON_VERBOSE, "Going into graphics mode...\n");
599         vid_set_mode(MOVIE_SCREEN_MODE);
600
601         // Load the palette stuff. Returns non-zero if error.
602         con_printf(CON_DEBUG, "Initializing palette system...\n" );
603         gr_use_palette_table(D2_DEFAULT_PALETTE);
604
605         con_printf(CON_DEBUG, "Initializing font system...\n" );
606         gamefont_init();        // must load after palette data loaded.
607
608         con_printf( CON_DEBUG, "Initializing movie libraries...\n" );
609         init_movies();          //init movie libraries
610
611         if ( FindArg( "-notitles" ) )
612                 songs_play_song( SONG_TITLE, 1);
613         else
614                 show_titles();
615
616         con_printf( CON_DEBUG, "\nShowing loading screen..." );
617         show_loading_screen(title_pal); // title_pal is needed (see below)
618
619         con_init_gfx(SWIDTH, SHEIGHT / 2);
620
621         con_printf( CON_DEBUG , "\nDoing bm_init..." );
622         #ifdef EDITOR
623         if (!bm_init_use_tbl())
624         #endif
625                 bm_init();
626
627 #ifdef NETWORK
628         #ifdef EDITOR
629         if (FindArg("-hoarddata") != 0)
630         {
631                 save_hoard_data();
632                 exit(1);
633         }
634         #endif
635 #endif
636
637         //the bitmap loading code changes gr_palette, so restore it
638         memcpy(gr_palette,title_pal,sizeof(gr_palette));
639
640         if ( FindArg( "-norun" ) )
641                 return(0);
642
643         con_printf( CON_DEBUG, "\nInitializing 3d system..." );
644         g3_init();
645
646         con_printf( CON_DEBUG, "\nInitializing texture caching system..." );
647         texmerge_init( 10 );            // 10 cache bitmaps
648
649         con_printf( CON_DEBUG, "\nRunning game...\n" );
650         set_screen_mode(SCREEN_MENU);
651
652         init_game();
653
654         remap_fonts_and_menus(1);
655
656         if ((t = FindArg("-autoexec")))
657                 cmd_appendf("exec %s", Args[t+1]);
658         else if (cfexist("autoexec.cfg"))
659                 cmd_append("exec autoexec.cfg");
660
661         cmd_queue_process();
662
663         //      If built with editor, option to auto-load a level and quit game
664         //      to write certain data.
665         #ifdef  EDITOR
666         {       int t;
667         if ( (t = FindArg( "-autoload" )) ) {
668                 Auto_exit = 1;
669                 strcpy(Auto_file, Args[t+1]);
670         }
671                 
672         }
673
674         if (Auto_exit) {
675                 strcpy(Players[0].callsign, "dummy");
676         } else
677         #endif
678                 if (!strlen(Players[0].callsign))
679                         do_register_player(title_pal);
680
681         Game_mode = GM_GAME_OVER;
682
683         if (Auto_demo)  {
684                 newdemo_start_playback("descent.dem");
685                 if (Newdemo_state == ND_STATE_PLAYBACK )
686                         Function_mode = FMODE_GAME;
687         }
688
689         //do this here because the demo code can do a longjmp when trying to
690         //autostart a demo from the main menu, never having gone into the game
691         setjmp(LeaveGame);
692
693         remap_fonts_and_menus(1);
694
695         while (Function_mode != FMODE_EXIT)
696         {
697                 cmd_queue_process();
698
699                 switch( Function_mode ) {
700                 case FMODE_MENU:
701                         set_screen_mode(SCREEN_MENU);
702                         if ( Auto_demo )        {
703                                 newdemo_start_playback(NULL);           // Randomly pick a file
704                                 if (Newdemo_state != ND_STATE_PLAYBACK) 
705                                         Error("No demo files were found for autodemo mode!");
706                         } else {
707                                 #ifdef EDITOR
708                                 if (Auto_exit) {
709                                         strcpy((char *)&Level_names[0], Auto_file);
710                                         LoadLevel(1, 1);
711                                         Function_mode = FMODE_EXIT;
712                                         break;
713                                 }
714                                 #endif
715
716                                 check_joystick_calibration();
717                                 gr_palette_clear();             //I'm not sure why we need this, but we do
718                                 DoMenu();                                                                               
719                                 #ifdef EDITOR
720                                 if ( Function_mode == FMODE_EDITOR )    {
721                                         create_new_mine();
722                                         SetPlayerFromCurseg();
723                                         load_palette(NULL,1,0);
724                                 }
725                                 #endif
726                         }
727                         break;
728                 case FMODE_GAME:
729                         #ifdef EDITOR
730                                 keyd_editor_mode = 0;
731                         #endif
732
733                         game();
734
735                         if ( Function_mode == FMODE_MENU )
736                                 songs_play_song( SONG_TITLE, 1 );
737                         break;
738                 #ifdef EDITOR
739                 case FMODE_EDITOR:
740                         keyd_editor_mode = 1;
741                         editor();
742 #ifdef __WATCOMC__
743                         _harderr( (void*)descent_critical_error_handler );              // Reinstall game error handler
744 #endif
745                         if ( Function_mode == FMODE_GAME ) {
746                                 Game_mode = GM_EDITOR;
747                                 editor_reset_stuff_on_level();
748                                 N_players = 1;
749                         }
750                         break;
751                 #endif
752                 default:
753                         Error("Invalid function mode %d",Function_mode);
754                 }
755         }
756
757         WriteConfigFile();
758
759         if (!FindArg( "-notitles" ))
760                 show_order_form();
761
762         #ifndef NDEBUG
763         if ( FindArg( "-showmeminfo" ) )
764                 show_mem_info = 1;              // Make memory statistics show
765         #endif
766
767         return(0);              //presumably successful exit
768 }
769
770
771 void check_joystick_calibration()       {
772         int x1, y1, x2, y2, c;
773         fix t1;
774
775         if ( !Config_control_joystick.intval )
776                 return;
777
778         joy_get_pos( &x1, &y1 );
779
780         t1 = timer_get_fixed_seconds();
781         while( timer_get_fixed_seconds() < t1 + F1_0/100 )
782                 ;
783
784         joy_get_pos( &x2, &y2 );
785
786         // If joystick hasn't moved...
787         if ( (abs(x2-x1)<30) &&  (abs(y2-y1)<30) )      {
788                 if ( (abs(x1)>30) || (abs(x2)>30) ||  (abs(y1)>30) || (abs(y2)>30) )    {
789                         c = nm_messagebox( NULL, 2, TXT_CALIBRATE, TXT_SKIP, TXT_JOYSTICK_NOT_CEN );
790                         if ( c==0 )     {
791                                 joydefs_calibrate();
792                         }
793                 }
794         }
795
796 }
797
798 void quit_request()
799 {
800 #ifdef NETWORK
801 //      void network_abort_game();
802 //      if(Network_status)
803 //              network_abort_game();
804 #endif
805         set_warn_func(warn_printf);
806         exit(0);
807 }