2002-04-21 17:46:42 +00:00
/* ScummVM - Scumm Interpreter
* Copyright ( C ) 2001 Ludvig Strigeus
2005-01-01 16:09:25 +00:00
* Copyright ( C ) 2001 - 2005 The ScummVM project
2002-04-21 17:46:42 +00:00
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version 2
* of the License , or ( at your option ) any later version .
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*
* $ Header $
*
*/
2003-05-29 23:13:15 +00:00
/*! \mainpage %ScummVM Source Reference
*
* These pages contains a cross referenced documentation for the % ScummVM source code ,
* generated with Doxygen ( http : //www.doxygen.org) directly from the source.
* Currently not much is actually properly documented , but at least you can get an overview
* of almost all the classes , methods and variables , and how they interact .
*/
2005-07-30 21:11:48 +00:00
2005-06-24 15:23:51 +00:00
# include "common/stdafx.h"
2003-09-18 02:07:18 +00:00
# include "base/engine.h"
2003-09-17 22:41:01 +00:00
# include "base/gameDetector.h"
# include "base/plugins.h"
2004-02-09 01:27:27 +00:00
# include "base/version.h"
2003-10-08 21:59:23 +00:00
# include "common/config-manager.h"
2004-08-05 11:13:00 +00:00
# include "common/file.h"
2005-01-10 22:06:49 +00:00
# include "common/system.h"
2003-09-27 23:59:00 +00:00
# include "common/timer.h"
2002-09-26 12:29:10 +00:00
# include "gui/newgui.h"
2002-09-27 23:27:14 +00:00
# include "gui/launcher.h"
2002-09-26 12:29:10 +00:00
# include "gui/message.h"
2004-12-14 01:02:55 +00:00
# include "sound/mididrv.h"
2002-04-12 21:26:59 +00:00
2004-01-26 07:32:25 +00:00
# ifdef _WIN32_WCE
2005-07-30 21:11:48 +00:00
# include "backends/wince/CELauncherDialog.h"
2004-01-26 07:32:25 +00:00
# endif
2004-08-26 21:51:26 +00:00
# ifdef __DC__
# include "backends/dc/DCLauncherDialog.h"
# endif
2004-11-09 10:37:28 +00:00
# ifdef __PALM_OS__
# include "args.h"
# endif
2003-09-08 17:46:54 +00:00
/*
* Version string and build date string . These can be used by anything that
* wants to display this information to the user ( e . g . about dialog ) .
*
* Note : it would be very nice if we could instead of ( or in addition to ) the
* build date present a date which corresponds to the date our source files
* were last changed . To understand the difference , imagine that a user
* makes a checkout of CVS on January 1 , then after a week compiles it
* ( e . g . after doing a ' make clean ' ) . The build date then will say January 8
* even though the files were last changed on January 1.
*
* Another problem is that __DATE__ / __TIME__ depend on the local time zone .
*
* It ' s clear that such a " last changed " date would be much more useful to us
* for feedback purposes . After all , when somebody files a bug report , we
* don ' t care about the build date , we want to know which date their checkout
* was made . This is even more important now since anon CVS lags a few
* days behind developer CVS .
*
* So , how could we implement this ? At least on unix systems , a special script
* could do it . Basically , that script would run over all . cpp / . h files and
* parse the CVS ' Header ' keyword we have in our file headers .
* That line contains a date / time in GMT . Now , the script just has to collect
* all these times and find the latest . This time then would be inserted into
* a header file or so ( common / date . h ? ) which engine . cpp then could
* include and put into a global variable analog to gScummVMBuildDate .
*
* Drawback : scanning all source / header files will be rather slow . Also , this
* only works on systems which can run powerful enough scripts ( so I guess
* Visual C + + would be out of the game here ? don ' t know VC enough to be sure ) .
*
* Another approach would be to somehow get CVS to update a global file
* ( e . g . LAST_CHANGED ) whenever any checkins are made . That would be
* faster and work w / o much " logic " on the client side , in particular no
* scripts have to be run . The problem with this is that I am not even
* sure it ' s actually possible ! Modifying files during commit time is trivial
* to setup , but I have no idea if / how one can also change files which are not
* currently being commit ' ed .
*/
2004-12-14 22:59:00 +00:00
const char * gScummVMVersion = " 0.8.0CVS " ;
2003-09-08 17:46:54 +00:00
const char * gScummVMBuildDate = __DATE__ " " __TIME__ ;
2004-12-14 22:59:00 +00:00
const char * gScummVMFullVersion = " ScummVM 0.8.0CVS ( " __DATE__ " " __TIME__ " ) " ;
2004-02-10 13:15:46 +00:00
const char * gScummVMFeatures = " "
2004-02-09 01:27:27 +00:00
# ifdef USE_VORBIS
" Vorbis "
# endif
# ifdef USE_FLAC
" FLAC "
# endif
# ifdef USE_MAD
" MP3 "
# endif
2003-09-08 17:46:54 +00:00
2004-02-09 01:27:27 +00:00
# ifdef USE_ALSA
" ALSA "
# endif
# ifdef USE_ZLIB
" zLib "
# endif
# ifdef USE_MPEG2
" MPEG2 "
# endif
2005-05-11 15:55:40 +00:00
# ifdef USE_FLUIDSYNTH
" FluidSynth "
# endif
2004-12-27 21:54:20 +00:00
;
2003-09-08 17:46:54 +00:00
2005-05-09 21:21:21 +00:00
# if defined(__amigaos4__)
// Set the stack cookie, 640 KB should be enough for everyone
const char * stackCookie = " $STACK: 655360 \0 " ;
# endif
2003-09-26 00:09:09 +00:00
# if defined(WIN32) && defined(NO_CONSOLE)
# include <cstdio>
# define STDOUT_FILE TEXT("stdout.txt")
# define STDERR_FILE TEXT("stderr.txt")
2005-06-21 22:08:21 +00:00
# elif defined(__SYMBIAN32__) // Symbian does not like any output to the console through any *print* function
# define STDOUT_FILE SYMBIAN32_DOC_DIR "scummvm.stdout.txt"
# define STDERR_FILE SYMBIAN32_DOC_DIR "scummvm.stderr.txt"
2003-09-26 00:09:09 +00:00
# endif
2002-07-25 21:34:06 +00:00
# if defined(QTOPIA)
// FIXME - why exactly is this needed?
extern " C " int main ( int argc , char * argv [ ] ) ;
# endif
2005-07-30 21:11:48 +00:00
# if defined(MACOSX) || defined(QTOPIA) || defined(__SYMBIAN32__)
2002-04-26 13:16:35 +00:00
# include <SDL.h>
2005-03-09 22:21:57 +00:00
# elif !defined(__MORPHOS__) && !defined(__DC__) && !defined(__GP32__)
2002-04-12 21:26:59 +00:00
# undef main
# endif
2003-10-05 13:58:46 +00:00
# if defined (ALLEGRO_BACKEND)
# include "allegro.h"
# endif
2005-07-05 20:22:56 +00:00
# ifdef __SYMBIAN32__
# include "gui/Actions.h"
# endif
2002-07-25 21:34:06 +00:00
# if defined(UNIX)
2002-05-03 18:24:16 +00:00
# include <signal.h>
2002-05-14 19:51:52 +00:00
# ifndef SCUMM_NEED_ALIGNMENT
2002-05-03 18:24:16 +00:00
static void handle_errors ( int sig_num ) {
2003-05-21 16:59:51 +00:00
error ( " Your system does not support unaligned memory accesses. Please rebuild with SCUMM_NEED_ALIGNMENT (signal %d) " , sig_num ) ;
2002-05-03 18:24:16 +00:00
}
2002-05-14 19:51:52 +00:00
# endif
2002-05-03 18:24:16 +00:00
/* This function is here to test if the endianness / alignement compiled it is matching
with the one at run - time . */
static void do_memory_test ( void ) {
unsigned char test [ 8 ] = { 0x11 , 0x22 , 0x33 , 0x44 , 0x55 , 0x66 , 0x77 , 0x88 } ;
unsigned int value ;
/* First test endianness */
# ifdef SCUMM_LITTLE_ENDIAN
if ( * ( ( int * ) test ) ! = 0x44332211 ) {
error ( " Compiled as LITTLE_ENDIAN on a big endian system. Please rebuild " ) ;
}
value = 0x55443322 ;
# else
if ( * ( ( int * ) test ) ! = 0x11223344 ) {
error ( " Compiled as BIG_ENDIAN on a little endian system. Please rebuild " ) ;
}
value = 0x22334455 ;
# endif
/* Then check if one really supports unaligned memory accesses */
# ifndef SCUMM_NEED_ALIGNMENT
signal ( SIGBUS , handle_errors ) ;
signal ( SIGABRT , handle_errors ) ;
signal ( SIGSEGV , handle_errors ) ;
2002-05-04 09:55:10 +00:00
if ( * ( ( unsigned int * ) ( ( char * ) test + 1 ) ) ! = value ) {
2002-05-03 18:24:16 +00:00
error ( " Your system does not support unaligned memory accesses. Please rebuild with SCUMM_NEED_ALIGNMENT " ) ;
}
signal ( SIGBUS , SIG_DFL ) ;
signal ( SIGABRT , SIG_DFL ) ;
signal ( SIGSEGV , SIG_DFL ) ;
# endif
}
# endif
2002-04-27 16:58:29 +00:00
2005-04-24 12:21:53 +00:00
/**
* The debug level . Initially set to - 1 , indicating that no debug output
* should be shown . Positive values usually imply an increasing number of
* debug output shall be generated , the higher the value , the more verbose the
* information ( although the exact semantics are up to the engines ) .
*/
int gDebugLevel = - 1 ;
2004-12-27 21:54:20 +00:00
2005-01-08 18:37:28 +00:00
static void setupDummyPalette ( OSystem & system ) {
2002-09-30 00:55:47 +00:00
// FIXME - mouse cursors are currently always set via 8 bit data.
// Thus for now we need to setup a dummy palette. On the long run, we might
2004-03-28 16:30:50 +00:00
// want to add a setMouseCursor_overlay() method to OSystem, which would serve
2002-09-30 00:55:47 +00:00
// two purposes:
// 1) allow for 16 bit mouse cursors in overlay mode
// 2) no need to backup & restore the mouse cursor before/after the overlay is shown
const byte dummy_palette [ ] = {
2005-07-30 21:11:48 +00:00
0 , 0 , 0 , 0 ,
0 , 0 , 171 , 0 ,
0 , 171 , 0 , 0 ,
0 , 171 , 171 , 0 ,
171 , 0 , 0 , 0 ,
171 , 0 , 171 , 0 ,
171 , 87 , 0 , 0 ,
171 , 171 , 171 , 0 ,
87 , 87 , 87 , 0 ,
87 , 87 , 255 , 0 ,
87 , 255 , 87 , 0 ,
87 , 255 , 255 , 0 ,
255 , 87 , 87 , 0 ,
255 , 87 , 255 , 0 ,
255 , 255 , 87 , 0 ,
255 , 255 , 255 , 0 ,
2002-09-30 00:55:47 +00:00
} ;
2005-01-01 18:53:47 +00:00
system . setPalette ( dummy_palette , 0 , 16 ) ;
2005-01-08 18:37:28 +00:00
}
static bool launcherDialog ( GameDetector & detector , OSystem & system ) {
system . beginGFXTransaction ( ) ;
// Set the user specified graphics mode (if any).
system . setGraphicsMode ( ConfMan . get ( " gfx_mode " ) . c_str ( ) ) ;
2005-07-30 21:11:48 +00:00
2005-03-09 23:07:32 +00:00
// Make GUI 640 x 400
2005-03-10 16:29:08 +00:00
system . initSize ( 320 , 200 , ( detector . _force1xOverlay ? 1 : 2 ) ) ;
2005-01-08 18:37:28 +00:00
system . endGFXTransaction ( ) ;
2005-07-30 21:11:48 +00:00
2005-01-08 18:37:28 +00:00
// Clear the main screen
system . clearScreen ( ) ;
// Setup a dummy palette, for the mouse cursor
setupDummyPalette ( system ) ;
2002-09-30 00:55:47 +00:00
2004-08-26 21:51:26 +00:00
# if defined(_WIN32_WCE)
2004-01-26 07:32:25 +00:00
CELauncherDialog dlg ( detector ) ;
2004-08-26 21:51:26 +00:00
# elif defined(__DC__)
DCLauncherDialog dlg ( detector ) ;
# else
GUI : : LauncherDialog dlg ( detector ) ;
2004-01-26 07:32:25 +00:00
# endif
2004-12-25 22:13:44 +00:00
return ( dlg . runModal ( ) ! = - 1 ) ;
2002-09-30 00:55:47 +00:00
}
2005-01-01 18:53:47 +00:00
static int runGame ( GameDetector & detector , OSystem & system ) {
2005-05-05 12:03:40 +00:00
// Create the game engine
Engine * engine = detector . createEngine ( & system ) ;
if ( ! engine ) {
// TODO: Show an error dialog or so?
//GUI::MessageDialog alert("ScummVM could not find any game in the specified directory!");
//alert.runModal();
warning ( " Failed to instantiate engine for target %s " , detector . _targetName . c_str ( ) ) ;
return 0 ;
}
2004-01-15 14:01:57 +00:00
// Set the window caption to the game name
Common : : String caption ( ConfMan . get ( " description " , detector . _targetName ) ) ;
if ( caption . isEmpty ( ) & & detector . _game . description )
caption = detector . _game . description ;
2005-07-30 21:11:48 +00:00
if ( caption . isEmpty ( ) )
2004-01-15 14:01:57 +00:00
caption = detector . _targetName ;
if ( ! caption . isEmpty ( ) ) {
2005-01-01 18:53:47 +00:00
system . setWindowCaption ( caption . c_str ( ) ) ;
2004-01-15 14:01:57 +00:00
}
2005-07-30 21:11:48 +00:00
2004-11-23 00:03:25 +00:00
// Add extrapath (if any) to the directory search list
if ( ConfMan . hasKey ( " extrapath " ) )
2005-05-10 22:56:25 +00:00
Common : : File : : addDefaultDirectory ( ConfMan . get ( " extrapath " ) ) ;
2004-11-23 00:03:25 +00:00
if ( ConfMan . hasKey ( " extrapath " , Common : : ConfigManager : : kApplicationDomain ) )
2005-05-10 22:56:25 +00:00
Common : : File : : addDefaultDirectory ( ConfMan . get ( " extrapath " , Common : : ConfigManager : : kApplicationDomain ) ) ;
2004-11-23 00:03:25 +00:00
int result ;
2004-11-24 00:14:21 +00:00
// Init the engine (this might change the screen parameters
result = engine - > init ( detector ) ;
2004-02-25 08:03:31 +00:00
2004-11-23 00:03:25 +00:00
// Run the game engine if the initialization was successful.
if ( result = = 0 ) {
result = engine - > go ( ) ;
}
2004-01-15 14:01:57 +00:00
// Free up memory
delete engine ;
2004-06-20 19:23:04 +00:00
// Stop all sound processing now (this prevents some race conditions later on)
2005-01-01 18:53:47 +00:00
system . clearSoundCallback ( ) ;
2005-07-30 21:11:48 +00:00
2004-11-23 00:03:25 +00:00
return result ;
2004-03-16 23:51:41 +00:00
}
2004-01-15 14:01:57 +00:00
2005-03-31 05:35:04 +00:00
# ifdef _WIN32_WCE
2004-01-17 23:43:23 +00:00
extern " C " int scummvm_main ( GameDetector & detector , int argc , char * argv [ ] ) {
2005-03-31 05:35:04 +00:00
# elif defined(__PLAYSTATION2__)
extern " C " int scummvm_main ( int argc , char * argv [ ] ) {
# else
extern " C " int main ( int argc , char * argv [ ] ) {
2004-01-17 23:43:23 +00:00
# endif
2005-06-21 22:08:21 +00:00
char * cfgFilename = NULL ;
char * s = NULL ; //argv[1]; SumthinWicked says: cannot assume that argv!=NULL here! eg. Symbian's CEBasicAppUI::SDLStartL() calls as main(0,NULL), if you want to change plz #ifdef __SYMBIAN32__
2004-11-11 14:01:11 +00:00
bool running = true ;
2002-05-14 11:32:16 +00:00
2002-07-25 21:34:06 +00:00
# if defined(UNIX)
2002-08-18 21:42:41 +00:00
/* On Unix, do a quick endian / alignement check before starting */
do_memory_test ( ) ;
2002-04-27 21:06:48 +00:00
# endif
2002-08-18 21:42:41 +00:00
2003-09-26 00:09:09 +00:00
// Code copied from SDL_main
2005-06-21 22:08:21 +00:00
# if (defined(WIN32) && defined(NO_CONSOLE)) || defined(__SYMBIAN32__)
// Symbian does not like any output to the console through any *print* function
2003-09-26 00:09:09 +00:00
/* Flush the output in case anything is queued */
fclose ( stdout ) ;
fclose ( stderr ) ;
/* Redirect standard input and standard output */
FILE * newfp = freopen ( STDOUT_FILE , " w " , stdout ) ;
2003-11-07 13:17:37 +00:00
if ( newfp = = NULL ) { /* This happens on NT */
2003-09-26 00:09:09 +00:00
# if !defined(stdout)
stdout = fopen ( STDOUT_FILE , " w " ) ;
# else
newfp = fopen ( STDOUT_FILE , " w " ) ;
2003-11-07 13:17:37 +00:00
if ( newfp ) {
2003-09-26 00:09:09 +00:00
* stdout = * newfp ;
}
# endif
}
newfp = freopen ( STDERR_FILE , " w " , stderr ) ;
2003-11-07 13:17:37 +00:00
if ( newfp = = NULL ) { /* This happens on NT */
2003-09-26 00:09:09 +00:00
# if !defined(stderr)
stderr = fopen ( STDERR_FILE , " w " ) ;
# else
newfp = fopen ( STDERR_FILE , " w " ) ;
2003-11-07 13:17:37 +00:00
if ( newfp ) {
2003-09-26 00:09:09 +00:00
* stderr = * newfp ;
}
# endif
}
2005-06-21 22:08:21 +00:00
# ifndef __SYMBIAN32__ // fcn not supported on Symbian
2003-11-01 19:13:48 +00:00
setlinebuf ( stdout ) ; /* Line buffered */
2005-06-21 22:08:21 +00:00
# endif
2003-09-26 00:09:09 +00:00
setbuf ( stderr , NULL ) ; /* No buffering */
2005-06-27 21:37:07 +00:00
# endif // (defined(WIN32) && defined(NO_CONSOLE)) || defined(__SYMBIAN32__)
2003-09-26 00:09:09 +00:00
2004-02-07 04:53:59 +00:00
// Quick preparse of command-line, looking for alt configfile path
for ( int i = argc - 1 ; i > = 1 ; i - - ) {
s = argv [ i ] ;
bool shortOpt = ( s [ 0 ] = = ' - ' & & tolower ( s [ 1 ] ) = = ' c ' ) ;
bool longOpt = ( s [ 0 ] = = ' - ' & & s [ 1 ] = = ' - ' & & s [ 2 ] = = ' c ' & & s [ 3 ] = = ' o ' \
& & s [ 4 ] = = ' n ' & & s [ 5 ] = = ' f ' & & s [ 6 ] = = ' i ' & & s [ 7 ] = = ' g ' ) ;
if ( shortOpt | | longOpt ) {
if ( longOpt ) s + = 9 ;
if ( shortOpt ) s + = 2 ;
if ( * s = = ' \0 ' )
break ;
cfgFilename = s ;
break ;
}
}
if ( cfgFilename ! = NULL )
2004-12-25 19:03:13 +00:00
ConfMan . loadConfigFile ( cfgFilename ) ;
else
ConfMan . loadDefaultConfigFile ( ) ;
2004-02-07 04:53:59 +00:00
2005-04-23 13:52:27 +00:00
if ( ConfMan . hasKey ( " debuglevel " ) )
gDebugLevel = ConfMan . getInt ( " debuglevel " ) ;
2004-12-27 21:54:20 +00:00
2003-10-08 21:59:23 +00:00
// Update the config file
2003-10-12 18:46:50 +00:00
ConfMan . set ( " versioninfo " , gScummVMVersion , Common : : ConfigManager : : kApplicationDomain ) ;
2003-11-08 22:05:58 +00:00
2003-09-08 17:13:40 +00:00
// Load the plugins
2003-10-08 22:10:59 +00:00
PluginManager : : instance ( ) . loadPlugins ( ) ;
2003-03-06 16:27:06 +00:00
2002-09-20 00:12:58 +00:00
// Parse the command line information
2004-01-17 23:43:23 +00:00
# ifndef _WIN32_WCE
2003-09-08 17:13:40 +00:00
GameDetector detector ;
2004-01-17 23:43:23 +00:00
# endif
2005-07-05 20:22:56 +00:00
# ifdef __SYMBIAN32__
// init keymap support here: we wanna move this somewhere else?
GUI : : Actions : : init ( detector ) ;
# endif
2005-07-30 21:11:48 +00:00
// Ensure the system object exists (it may have already been created
2005-07-05 20:22:56 +00:00
// at an earlier point, though!)
OSystem & system = OSystem : : instance ( ) ;
2003-11-07 13:17:37 +00:00
detector . parseCommandLine ( argc , argv ) ;
2002-04-12 21:26:59 +00:00
2004-11-09 10:37:28 +00:00
# ifdef __PALM_OS__
ArgsFree ( argv ) ;
# endif
2005-04-19 20:22:50 +00:00
// Init the backend. Must take place after all config data (including
// the command line params) was read.
system . initBackend ( ) ;
2003-11-08 22:05:58 +00:00
2003-10-05 13:10:28 +00:00
// Create the timer services
2005-05-10 23:17:38 +00:00
Common : : g_timer = new Common : : Timer ( & system ) ;
2002-04-12 21:26:59 +00:00
2002-11-14 14:20:41 +00:00
// Set initial window caption
2005-01-01 18:53:47 +00:00
system . setWindowCaption ( gScummVMFullVersion ) ;
2002-11-14 14:20:41 +00:00
2002-09-30 00:55:47 +00:00
// Unless a game was specified, show the launcher dialog
2003-10-12 18:40:12 +00:00
if ( detector . _targetName . isEmpty ( ) )
2004-12-25 22:13:44 +00:00
running = launcherDialog ( detector , system ) ;
2005-01-08 18:37:28 +00:00
else
// Setup a dummy palette, for the mouse cursor, in case an error
// dialog has to be shown. See bug #1097467.
setupDummyPalette ( system ) ;
2002-09-30 00:55:47 +00:00
2004-10-10 16:31:15 +00:00
// FIXME: We're now looping the launcher. This, of course, doesn't
// work as well as it should. In theory everything should be destroyed
// cleanly, so this is now enabled to encourage people to fix bits :)
2004-11-20 01:55:53 +00:00
while ( running ) {
2004-01-15 14:01:57 +00:00
// Verify the given game name is a valid supported game
if ( detector . detectMain ( ) ) {
2004-08-29 19:08:08 +00:00
// Unload all plugins not needed for this game,
// to save memory
PluginManager : : instance ( ) . unloadPluginsExcept ( detector . _plugin ) ;
2004-11-23 00:03:25 +00:00
int result = runGame ( detector , system ) ;
2004-12-05 17:35:24 +00:00
if ( result = = 0 )
break ;
2003-10-05 14:37:16 +00:00
2004-10-13 08:49:33 +00:00
// There are some command-line options that it's
// unlikely that we want to preserve now that we're
// going to start a different game.
ConfMan . removeKey ( " boot_param " , ConfMan . kTransientDomain ) ;
ConfMan . removeKey ( " save_slot " , ConfMan . kTransientDomain ) ;
2004-08-29 19:08:08 +00:00
// PluginManager::instance().unloadPlugins();
2004-11-11 14:01:11 +00:00
PluginManager : : instance ( ) . loadPlugins ( ) ;
2003-10-05 14:37:16 +00:00
}
2004-11-11 14:01:11 +00:00
2004-12-25 22:13:44 +00:00
running = launcherDialog ( detector , system ) ;
2004-10-10 16:31:15 +00:00
}
2003-08-19 15:03:27 +00:00
2002-09-20 00:12:58 +00:00
// ...and quit (the return 0 should never be reached)
2005-05-10 23:17:38 +00:00
delete Common : : g_timer ;
2005-01-01 18:53:47 +00:00
system . quit ( ) ;
2005-07-30 21:11:48 +00:00
2005-01-01 18:53:47 +00:00
error ( " If you are seeing this, your OSystem backend is not working properly " ) ;
2002-04-12 21:26:59 +00:00
return 0 ;
}
2003-10-05 13:58:46 +00:00
// allegro needs this for some reason...
# if defined(ALLEGRO_BACKEND)
END_OF_MAIN ( ) ;
# endif
2002-09-16 09:52:21 +00:00
2004-12-27 21:54:20 +00:00
static void debugHelper ( char * buf ) {
# ifndef _WIN32_WCE
printf ( " %s \n " , buf ) ;
# endif
# if defined( USE_WINDBG )
strcat ( buf , " \n " ) ;
# if defined( _WIN32_WCE )
TCHAR buf_unicode [ 1024 ] ;
MultiByteToWideChar ( CP_ACP , 0 , buf , strlen ( buf ) + 1 , buf_unicode , sizeof ( buf_unicode ) ) ;
OutputDebugString ( buf_unicode ) ;
# else
OutputDebugString ( buf ) ;
# endif
# endif
fflush ( stdout ) ;
}
void CDECL debug ( int level , const char * s , . . . ) {
char buf [ STRINGBUFLEN ] ;
va_list va ;
if ( level > gDebugLevel )
return ;
va_start ( va , s ) ;
2005-06-21 22:08:21 +00:00
# ifdef __SYMBIAN32__
vsprintf ( buf , s , va ) ;
# else
2005-01-26 11:01:41 +00:00
vsnprintf ( buf , STRINGBUFLEN , s , va ) ;
2005-06-21 22:08:21 +00:00
# endif
2004-12-27 21:54:20 +00:00
va_end ( va ) ;
2005-07-30 21:11:48 +00:00
2004-12-27 21:54:20 +00:00
debugHelper ( buf ) ;
}
void CDECL debug ( const char * s , . . . ) {
char buf [ STRINGBUFLEN ] ;
va_list va ;
va_start ( va , s ) ;
2005-06-21 22:08:21 +00:00
# ifdef __SYMBIAN32__
vsprintf ( buf , s , va ) ;
# else
2005-01-26 11:01:41 +00:00
vsnprintf ( buf , STRINGBUFLEN , s , va ) ;
2005-06-21 22:08:21 +00:00
# endif
2004-12-27 21:54:20 +00:00
va_end ( va ) ;
debugHelper ( buf ) ;
}