2022-05-19 01:51:26 -07:00
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
#include "memory.h"
|
2022-05-28 01:57:32 -07:00
|
|
|
#include "platform_compat.h"
|
2022-05-19 01:51:26 -07:00
|
|
|
#include "window_manager_private.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
// 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 = 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;
|
|
|
|
}
|
|
|
|
|
2022-05-21 08:22:03 -07:00
|
|
|
char* copy = (char*)internal_malloc(strlen(type) + 1);
|
2022-05-19 01:51:26 -07:00
|
|
|
if (copy == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(copy, type);
|
2022-05-28 01:57:32 -07:00
|
|
|
compat_strlwr(copy);
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
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);
|
|
|
|
OutputDebugStringA(string);
|
|
|
|
#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
|
2022-05-21 08:22:03 -07:00
|
|
|
void _debug_putc(char ch)
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
// TODO: Something with segments.
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x4C71AC
|
|
|
|
void _debug_scroll()
|
|
|
|
{
|
|
|
|
// TODO: Something with segments.
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x4C71E8
|
|
|
|
void _debug_exit(void)
|
|
|
|
{
|
|
|
|
if (_fd != NULL) {
|
|
|
|
fclose(_fd);
|
|
|
|
}
|
|
|
|
}
|