rnd-20001203-4-src
[rocksndiamonds.git] / src / main.c
index bf7e3f5bcba90a439112bc038f705e0bf57495c7..40a19333c34cb2f928e5ca636a988e0cfeaa4473 100644 (file)
 #include "events.h"
 #include "joystick.h"
 
+#if 0
 #if defined(PLATFORM_MSDOS)
 #include <fcntl.h>
 #endif
+#endif
 
 #if 0
 DrawWindow     window = None;
@@ -65,13 +67,19 @@ char               *joystick_device_name[MAX_PLAYERS] =
   DEV_JOYSTICK_3
 };
 
+#if 0
 char          *program_name = NULL;
+#endif
 
 int            game_status = MAINMENU;
 boolean                level_editor_test_game = FALSE;
 boolean                network_playing = FALSE;
+
+#if 0
 int            button_status = MB_NOT_PRESSED;
 boolean                motion_status = FALSE;
+#endif
+
 int            key_joystick_mapping = 0;
 int            global_joystick_status = JOYSTICK_STATUS;
 int            joystick_status = JOYSTICK_STATUS;
@@ -128,7 +136,9 @@ int         TimeFrames, TimePlayed, TimeLeft;
 
 boolean                network_player_action_received = FALSE;
 
+#if 0
 struct LevelDirInfo    *leveldir_first = NULL, *leveldir_current = NULL;
+#endif
 struct LevelInfo       level;
 struct PlayerInfo      stored_player[MAX_PLAYERS], *local_player = NULL;
 struct HiScore         highscore[MAX_SCORE_ENTRIES];
@@ -984,15 +994,23 @@ void TEST_SDL_JOYSTICK()
 
 int main(int argc, char *argv[])
 {
+#if 0
   program_name = (strrchr(argv[0],'/') ? strrchr(argv[0],'/') + 1 : argv[0]);
+#endif
 
+  InitCommandName(argv[0]);
+  InitExitFunction(CloseAllAndExit);
+  InitPlatformDependantStuff();
+
+#if 0
 #if defined(PLATFORM_MSDOS)
   _fmode = O_BINARY;
 #endif
+#endif
 
 #if 1
   GetOptions(argv);
-  OpenAll(argc,argv);
+  OpenAll();
 #endif
 
 #if 0