diff options
| author | Max Horn | 2004-12-27 21:54:20 +0000 |
|---|---|---|
| committer | Max Horn | 2004-12-27 21:54:20 +0000 |
| commit | d138a880bf8498ac6facc66ac4dbc9cddbd33891 (patch) | |
| tree | 59005954d09d577a659678e14cd47ca9740dc614 /base | |
| parent | 2eb17ef32241618f41bede09eade8cac13d4bd05 (diff) | |
| download | scummvm-rg350-d138a880bf8498ac6facc66ac4dbc9cddbd33891.tar.gz scummvm-rg350-d138a880bf8498ac6facc66ac4dbc9cddbd33891.tar.bz2 scummvm-rg350-d138a880bf8498ac6facc66ac4dbc9cddbd33891.zip | |
Fix for bug #1091748 (DIG: Starting new games takes a long time); turns out querying the debuglevel from the config-manager very often is too slow
svn-id: r16345
Diffstat (limited to 'base')
| -rw-r--r-- | base/engine.cpp | 44 | ||||
| -rw-r--r-- | base/gameDetector.cpp | 7 | ||||
| -rw-r--r-- | base/gameDetector.h | 2 | ||||
| -rw-r--r-- | base/main.cpp | 51 |
4 files changed, 56 insertions, 48 deletions
diff --git a/base/engine.cpp b/base/engine.cpp index adf4546d31..b69e6c6a2a 100644 --- a/base/engine.cpp +++ b/base/engine.cpp @@ -158,50 +158,6 @@ void CDECL warning(const char *s, ...) { #endif } -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 > ConfMan.getInt("debuglevel")) - return; - - va_start(va, s); - vsprintf(buf, s, va); - va_end(va); - - debugHelper(buf); -} - -void CDECL debug(const char *s, ...) { - char buf[STRINGBUFLEN]; - va_list va; - - va_start(va, s); - vsprintf(buf, s, va); - va_end(va); - - debugHelper(buf); -} - void checkHeap() { #if defined(_MSC_VER) if (_heapchk() != _HEAPOK) { diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index bbee79d7f2..31b619fa55 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -333,9 +333,9 @@ void GameDetector::parseCommandLine(int argc, char **argv) { DO_OPTION_OPT('d', "debuglevel") if (option != NULL) ConfMan.set("debuglevel", (int)strtol(option, 0, 10), kTransientDomain); - int debuglevel = ConfMan.getInt("debuglevel"); - if (debuglevel) - printf("Debuglevel (from command line): %d\n", debuglevel); + gDebugLevel = ConfMan.getInt("debuglevel"); + if (gDebugLevel) + printf("Debuglevel (from command line): %d\n", gDebugLevel); else printf("Debuglevel (from command line): 0 - Game only\n"); END_OPTION @@ -510,6 +510,7 @@ ShowHelpAndExit: void GameDetector::setTarget(const String &name) { _targetName = name; ConfMan.setActiveDomain(name); + gDebugLevel = ConfMan.getInt("debuglevel"); } bool GameDetector::detectGame() { diff --git a/base/gameDetector.h b/base/gameDetector.h index e74176d5a4..fc45afd613 100644 --- a/base/gameDetector.h +++ b/base/gameDetector.h @@ -38,6 +38,8 @@ enum { GF_DEFAULT_TO_1X_SCALER = 1 << 30 }; +extern int gDebugLevel; + struct GameSettings { const char *name; const char *description; diff --git a/base/main.cpp b/base/main.cpp index 432e967c97..1fbe8262cb 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -119,7 +119,7 @@ const char *gScummVMFeatures = "" #ifdef USE_MPEG2 "MPEG2 " #endif - ; + ; #if defined(WIN32) && defined(NO_CONSOLE) #include <cstdio> @@ -184,6 +184,9 @@ static void do_memory_test(void) { #endif + +int gDebugLevel = 0; + static bool launcherDialog(GameDetector &detector, OSystem *system) { system->beginGFXTransaction(); @@ -349,6 +352,8 @@ extern "C" int scummvm_main(GameDetector &detector, int argc, char *argv[]) { else ConfMan.loadDefaultConfigFile(); + gDebugLevel = ConfMan.getInt("debuglevel"); + // Update the config file ConfMan.set("versioninfo", gScummVMVersion, Common::ConfigManager::kApplicationDomain); @@ -417,6 +422,50 @@ extern "C" int scummvm_main(GameDetector &detector, int argc, char *argv[]) { END_OF_MAIN(); #endif +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); + vsprintf(buf, s, va); + va_end(va); + + debugHelper(buf); +} + +void CDECL debug(const char *s, ...) { + char buf[STRINGBUFLEN]; + va_list va; + + va_start(va, s); + vsprintf(buf, s, va); + va_end(va); + + debugHelper(buf); +} + /* #if !defined(__PALM_OS__) && !defined(_WIN32_WCE) void *operator new(size_t size) { |
