2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "stdafx.h"
|
2005-02-05 21:57:01 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "console.h"
|
|
|
|
#include "debug.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2005-05-20 17:59:24 +00:00
|
|
|
#include "string.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
|
|
|
|
int _debug_ai_level;
|
|
|
|
int _debug_grf_level;
|
|
|
|
int _debug_map_level;
|
|
|
|
int _debug_misc_level;
|
|
|
|
int _debug_ms_level;
|
|
|
|
int _debug_net_level;
|
|
|
|
int _debug_spritecache_level;
|
2005-02-06 18:28:35 +00:00
|
|
|
int _debug_oldloader_level;
|
2005-07-04 14:58:55 +00:00
|
|
|
int _debug_pbs_level;
|
2005-07-19 11:42:40 +00:00
|
|
|
int _debug_ntp_level;
|
2005-07-10 14:57:43 +00:00
|
|
|
#ifdef GPMI
|
|
|
|
int _debug_gpmi_level;
|
|
|
|
#endif /* GPMI */
|
2005-04-11 19:53:44 +00:00
|
|
|
int _debug_npf_level;
|
2005-02-05 15:58:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
void CDECL debug(const char *s, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
va_start(va, s);
|
|
|
|
vsnprintf(buf, lengthof(buf), s, va);
|
|
|
|
va_end(va);
|
|
|
|
fprintf(stderr, "dbg: %s\n", buf);
|
|
|
|
IConsoleDebug(buf);
|
|
|
|
}
|
|
|
|
|
2005-05-20 17:59:24 +00:00
|
|
|
typedef struct DebugLevel {
|
|
|
|
const char *name;
|
|
|
|
int *level;
|
|
|
|
} DebugLevel;
|
|
|
|
|
|
|
|
#define DEBUG_LEVEL(x) { #x, &_debug_##x##_level }
|
|
|
|
static const DebugLevel debug_level[] = {
|
|
|
|
DEBUG_LEVEL(ai),
|
|
|
|
DEBUG_LEVEL(grf),
|
|
|
|
DEBUG_LEVEL(map),
|
|
|
|
DEBUG_LEVEL(misc),
|
|
|
|
DEBUG_LEVEL(ms),
|
|
|
|
DEBUG_LEVEL(net),
|
|
|
|
DEBUG_LEVEL(spritecache),
|
|
|
|
DEBUG_LEVEL(oldloader),
|
2005-07-04 14:58:55 +00:00
|
|
|
DEBUG_LEVEL(pbs),
|
2005-07-19 11:42:40 +00:00
|
|
|
DEBUG_LEVEL(ntp),
|
2005-07-10 14:57:43 +00:00
|
|
|
#ifdef GPMI
|
|
|
|
DEBUG_LEVEL(gpmi),
|
2005-07-15 16:50:39 +00:00
|
|
|
#endif
|
2005-05-20 17:59:24 +00:00
|
|
|
DEBUG_LEVEL(npf)
|
|
|
|
};
|
|
|
|
#undef DEBUG_LEVEL
|
2005-02-05 15:58:59 +00:00
|
|
|
|
|
|
|
void SetDebugString(const char *s)
|
|
|
|
{
|
|
|
|
int v;
|
|
|
|
char *end;
|
|
|
|
const char *t;
|
|
|
|
|
|
|
|
// global debugging level?
|
|
|
|
if (*s >= '0' && *s <= '9') {
|
|
|
|
const DebugLevel *i;
|
|
|
|
|
|
|
|
v = strtoul(s, &end, 0);
|
|
|
|
s = end;
|
|
|
|
|
|
|
|
for (i = debug_level; i != endof(debug_level); ++i)
|
|
|
|
*i->level = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
// individual levels
|
|
|
|
for(;;) {
|
|
|
|
const DebugLevel *i;
|
|
|
|
int *p;
|
|
|
|
|
|
|
|
// skip delimiters
|
|
|
|
while (*s == ' ' || *s == ',' || *s == '\t') s++;
|
|
|
|
if (*s == '\0') break;
|
|
|
|
|
|
|
|
t = s;
|
|
|
|
while (*s >= 'a' && *s <= 'z') s++;
|
|
|
|
|
|
|
|
// check debugging levels
|
|
|
|
p = NULL;
|
|
|
|
for (i = debug_level; i != endof(debug_level); ++i)
|
|
|
|
if (s == t + strlen(i->name) && strncmp(t, i->name, s - t) == 0) {
|
|
|
|
p = i->level;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == '=') s++;
|
|
|
|
v = strtoul(s, &end, 0);
|
|
|
|
s = end;
|
|
|
|
if (p != NULL)
|
|
|
|
*p = v;
|
|
|
|
else {
|
|
|
|
ShowInfoF("Unknown debug level '%.*s'", s - t, t);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-05-20 17:59:24 +00:00
|
|
|
|
|
|
|
/** Print out the current debug-level
|
|
|
|
* Just return a string with the values of all the debug categorites
|
|
|
|
* @return string with debug-levels
|
|
|
|
*/
|
|
|
|
const char *GetDebugString(void)
|
|
|
|
{
|
|
|
|
const DebugLevel *i;
|
|
|
|
static char dbgstr[100];
|
|
|
|
char dbgval[20];
|
|
|
|
|
|
|
|
memset(dbgstr, 0, sizeof(dbgstr));
|
|
|
|
i = debug_level;
|
|
|
|
snprintf(dbgstr, sizeof(dbgstr), "%s=%d", i->name, *i->level);
|
|
|
|
|
|
|
|
for (i++; i != endof(debug_level); i++) {
|
|
|
|
snprintf(dbgval, sizeof(dbgval), ", %s=%d", i->name, *i->level);
|
|
|
|
ttd_strlcat(dbgstr, dbgval, sizeof(dbgstr));
|
|
|
|
}
|
|
|
|
|
|
|
|
return dbgstr;
|
|
|
|
}
|
2005-07-10 14:57:43 +00:00
|
|
|
|
|
|
|
#ifdef GPMI
|
|
|
|
void gpmi_debug_openttd(int level, char *s)
|
|
|
|
{
|
|
|
|
DEBUG(gpmi, level)("[GPMI] %s", s);
|
|
|
|
}
|
|
|
|
#endif /* GPMI */
|