X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.c;h=07d4de7986f2d164aef559a12e4bda7c2893f68a;hb=2ae6ae8ed951e87fcba7c363705cd6ddea8de91c;hp=b2909afd0f406846619dfbcff0a01cc0bb63118a;hpb=1100054eec7c45458359fd56072341bd661f4a9c;p=rocksndiamonds.git diff --git a/src/libgame/system.c b/src/libgame/system.c index b2909afd..07d4de79 100644 --- a/src/libgame/system.c +++ b/src/libgame/system.c @@ -12,6 +12,7 @@ ***********************************************************/ #include +#include #include "platform.h" @@ -56,7 +57,7 @@ int FrameCounter = 0; /* ========================================================================= */ -/* init functions */ +/* init/close functions */ /* ========================================================================= */ void InitCommandName(char *argv0) @@ -68,6 +69,15 @@ void InitCommandName(char *argv0) void InitExitFunction(void (*exit_function)(int)) { program.exit_function = exit_function; + + /* set signal handlers to custom exit function */ + signal(SIGINT, exit_function); + signal(SIGTERM, exit_function); + +#if defined(TARGET_SDL) + /* set exit function to automatically cleanup SDL stuff after exit() */ + atexit(SDL_Quit); +#endif } void InitPlatformDependantStuff(void) @@ -75,6 +85,17 @@ void InitPlatformDependantStuff(void) #if defined(PLATFORM_MSDOS) _fmode = O_BINARY; #endif + +#if !defined(PLATFORM_UNIX) + initErrorFile(); +#endif +} + +void ClosePlatformDependantStuff(void) +{ +#if !defined(PLATFORM_UNIX) + dumpErrorFile(); +#endif } void InitProgramInfo(char *unix_userdata_directory, char *program_title, @@ -159,6 +180,14 @@ inline void InitVideoDisplay(void) #endif } +inline void CloseVideoDisplay(void) +{ +#if defined(TARGET_X11) + if (display) + XCloseDisplay(display); +#endif +} + inline void InitVideoBuffer(DrawBuffer **backbuffer, DrawWindow **window, int width, int height, int depth, boolean fullscreen) @@ -452,7 +481,8 @@ inline void KeyboardAutoRepeatOn(void) SDL_DEFAULT_REPEAT_INTERVAL / 2); SDL_EnableUNICODE(1); #else - XAutoRepeatOn(display); + if (display) + XAutoRepeatOn(display); #endif } @@ -462,7 +492,8 @@ inline void KeyboardAutoRepeatOff(void) SDL_EnableKeyRepeat(0, SDL_DEFAULT_REPEAT_INTERVAL); SDL_EnableUNICODE(0); #else - XAutoRepeatOff(display); + if (display) + XAutoRepeatOff(display); #endif } @@ -515,6 +546,23 @@ inline boolean ChangeVideoModeIfNeeded(boolean fullscreen) return fullscreen; } +Bitmap *LoadImage(char *basename) +{ + Bitmap *new_bitmap; + char filename[256]; + + sprintf(filename, "%s/%s/%s", + options.ro_base_directory, GRAPHICS_DIRECTORY, basename); + +#if defined(TARGET_SDL) + new_bitmap = SDLLoadImage(filename); +#else + new_bitmap = X11LoadImage(filename); +#endif + + return new_bitmap; +} + /* ========================================================================= */ /* audio functions */