#include "debug.h" #include "memory.h" #include "platform_compat.h" #include "window_manager_private.h" #include #include #include #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include #endif // 0x51DEF8 FILE* _fd = NULL; // 0x51DEFC int _curx = 0; // 0x51DF00 int _cury = 0; // 0x51DF04 DebugPrintProc* gDebugPrintProc = NULL; // 0x4C6CD0 void _GNW_debug_init() { atexit(_debug_exit); } // 0x4C6CDC void _debug_register_mono() { if (gDebugPrintProc != _debug_mono) { if (_fd != NULL) { fclose(_fd); _fd = NULL; } gDebugPrintProc = _debug_mono; _debug_clear(); } } // 0x4C6D18 void _debug_register_log(const char* fileName, const char* mode) { if ((mode[0] == 'w' && mode[1] == 'a') && mode[1] == 't') { if (_fd != NULL) { fclose(_fd); } _fd = compat_fopen(fileName, mode); gDebugPrintProc = _debug_log; } } // 0x4C6D5C void _debug_register_screen() { if (gDebugPrintProc != _debug_screen) { if (_fd != NULL) { fclose(_fd); _fd = NULL; } gDebugPrintProc = _debug_screen; } } // 0x4C6D90 void _debug_register_env() { const char* type = getenv("DEBUGACTIVE"); if (type == NULL) { return; } char* copy = (char*)internal_malloc(strlen(type) + 1); if (copy == NULL) { return; } strcpy(copy, type); compat_strlwr(copy); if (strcmp(copy, "mono") == 0) { // NOTE: Uninline. _debug_register_mono(); } else if (strcmp(copy, "log") == 0) { _debug_register_log("debug.log", "wt"); } else if (strcmp(copy, "screen") == 0) { // NOTE: Uninline. _debug_register_screen(); } else if (strcmp(copy, "gnw") == 0) { if (gDebugPrintProc != _win_debug) { if (_fd != NULL) { fclose(_fd); _fd = NULL; } gDebugPrintProc = _win_debug; } } internal_free(copy); } // 0x4C6F18 void _debug_register_func(DebugPrintProc* proc) { if (gDebugPrintProc != proc) { if (_fd != NULL) { fclose(_fd); _fd = NULL; } gDebugPrintProc = proc; } } // 0x4C6F48 int debugPrint(const char* format, ...) { va_list args; va_start(args, format); int rc; if (gDebugPrintProc != NULL) { char string[260]; vsprintf(string, format, args); rc = gDebugPrintProc(string); } else { #ifdef _DEBUG char string[260]; vsprintf(string, format, args); #ifdef _WIN32 OutputDebugStringA(string); #else printf("%s", string); #endif #endif rc = -1; } va_end(args); return rc; } // 0x4C6F94 int _debug_puts(char* string) { if (gDebugPrintProc != NULL) { return gDebugPrintProc(string); } return -1; } // 0x4C6FAC void _debug_clear() { // TODO: Something with segments. } // 0x4C7004 int _debug_mono(char* string) { if (gDebugPrintProc == _debug_mono) { while (*string != '\0') { char ch = *string++; _debug_putc(ch); } } return 0; } // 0x4C7028 int _debug_log(char* string) { if (gDebugPrintProc == _debug_log) { if (_fd == NULL) { return -1; } if (fprintf(_fd, string) < 0) { return -1; } if (fflush(_fd) == EOF) { return -1; } } return 0; } // 0x4C7068 int _debug_screen(char* string) { if (gDebugPrintProc == _debug_screen) { printf(string); } return 0; } // 0x4C709C void _debug_putc(char ch) { // TODO: Something with segments. } // 0x4C71AC void _debug_scroll() { // TODO: Something with segments. } // 0x4C71E8 void _debug_exit(void) { if (_fd != NULL) { fclose(_fd); } }