author | KUDr |
Tue, 13 Feb 2007 23:49:01 +0000 | |
branch | cpp_gui |
changeset 6251 | cd413fa2e252 |
parent 6210 | 717cc12ac0a9 |
child 6268 | 4b5241e5dd10 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
1302 | 3 |
#include "stdafx.h" |
4 |
#include <stdio.h> |
|
1299 | 5 |
#include <stdarg.h> |
1891
92a3b0aa0946
(svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents:
1847
diff
changeset
|
6 |
#include "openttd.h" |
1299 | 7 |
#include "console.h" |
8 |
#include "debug.h" |
|
2163
637ec3c361f5
(svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents:
2125
diff
changeset
|
9 |
#include "functions.h" |
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
10 |
#include "string.h" |
6210
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
11 |
#include "network/core/core.h" |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
12 |
|
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
13 |
#if defined(ENABLE_NETWORK) |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
14 |
SOCKET _debug_socket = INVALID_SOCKET; |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
15 |
#endif /* ENABLE_NETWORK */ |
1299 | 16 |
|
17 |
int _debug_ai_level; |
|
2210
58a293892a66
(svn r2728) -Fix/Feature: Change the driver probing algorithm
tron
parents:
2186
diff
changeset
|
18 |
int _debug_driver_level; |
1299 | 19 |
int _debug_grf_level; |
20 |
int _debug_map_level; |
|
21 |
int _debug_misc_level; |
|
22 |
int _debug_ms_level; |
|
23 |
int _debug_net_level; |
|
5568
75f13d7bfaed
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents:
5108
diff
changeset
|
24 |
int _debug_sprite_level; |
1322
8697b73baa64
(svn r1826) -Feature: a brand new OldLoader so OpenTTD is TTD(Patch) compatible
truelight
parents:
1302
diff
changeset
|
25 |
int _debug_oldloader_level; |
2125
3098398bf7ff
(svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents:
2066
diff
changeset
|
26 |
int _debug_ntp_level; |
1678
838dd6f46081
(svn r2182) - Add: [NPF] There is now a debug class for NPF. Use -d npf<level> to enable debugging printouts from npf.
matthijs
parents:
1322
diff
changeset
|
27 |
int _debug_npf_level; |
3900
4984308f9125
(svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents:
2916
diff
changeset
|
28 |
int _debug_yapf_level; |
5108
dc67d70b5a45
(svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents:
3900
diff
changeset
|
29 |
int _debug_freetype_level; |
5568
75f13d7bfaed
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents:
5108
diff
changeset
|
30 |
int _debug_sl_level; |
5915 | 31 |
int _debug_station_level; |
1299 | 32 |
|
33 |
||
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
34 |
typedef struct DebugLevel { |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
35 |
const char *name; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
36 |
int *level; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
37 |
} DebugLevel; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
38 |
|
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
39 |
#define DEBUG_LEVEL(x) { #x, &_debug_##x##_level } |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
40 |
static const DebugLevel debug_level[] = { |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
41 |
DEBUG_LEVEL(ai), |
2210
58a293892a66
(svn r2728) -Fix/Feature: Change the driver probing algorithm
tron
parents:
2186
diff
changeset
|
42 |
DEBUG_LEVEL(driver), |
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
43 |
DEBUG_LEVEL(grf), |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
44 |
DEBUG_LEVEL(map), |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
45 |
DEBUG_LEVEL(misc), |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
46 |
DEBUG_LEVEL(ms), |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
47 |
DEBUG_LEVEL(net), |
5568
75f13d7bfaed
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents:
5108
diff
changeset
|
48 |
DEBUG_LEVEL(sprite), |
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
49 |
DEBUG_LEVEL(oldloader), |
2125
3098398bf7ff
(svn r2635) Fix: [ntp/misc] Improve the old pathfinder. Changed it to A* instead of Dijkstra.
ludde
parents:
2066
diff
changeset
|
50 |
DEBUG_LEVEL(ntp), |
3900
4984308f9125
(svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents:
2916
diff
changeset
|
51 |
DEBUG_LEVEL(npf), |
5108
dc67d70b5a45
(svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents:
3900
diff
changeset
|
52 |
DEBUG_LEVEL(yapf), |
5568
75f13d7bfaed
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents:
5108
diff
changeset
|
53 |
DEBUG_LEVEL(freetype), |
75f13d7bfaed
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents:
5108
diff
changeset
|
54 |
DEBUG_LEVEL(sl), |
5915 | 55 |
DEBUG_LEVEL(station), |
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
56 |
}; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
57 |
#undef DEBUG_LEVEL |
1299 | 58 |
|
5657
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
59 |
#if !defined(NO_DEBUG_MESSAGES) |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
60 |
|
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
61 |
/** Functionized DEBUG macro for compilers that don't support |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
62 |
* variadic macros (__VA_ARGS__) such as...yes MSVC2003 and lower */ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
63 |
#if defined(NO_VARARG_MACRO) |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
64 |
void CDECL DEBUG(int name, int level, ...) |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
65 |
{ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
66 |
va_list va; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
67 |
const char *dbg; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
68 |
const DebugLevel *dl = &debug_level[name]; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
69 |
|
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
70 |
if (level != 0 && *dl->level < level) return; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
71 |
dbg = dl->name; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
72 |
va_start(va, level); |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
73 |
#else |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
74 |
void CDECL debug(const char *dbg, ...) |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
75 |
{ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
76 |
va_list va; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
77 |
va_start(va, dbg); |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
78 |
#endif /* NO_VARARG_MACRO */ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
79 |
{ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
80 |
const char *s; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
81 |
char buf[1024]; |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
82 |
|
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
83 |
s = va_arg(va, const char*); |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
84 |
vsnprintf(buf, lengthof(buf), s, va); |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
85 |
va_end(va); |
6210
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
86 |
#if defined(ENABLE_NETWORK) |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
87 |
if (_debug_socket != INVALID_SOCKET) { |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
88 |
char buf2[lengthof(buf) + 32]; |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
89 |
|
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
90 |
snprintf(buf2, lengthof(buf2), "dbg: [%s] %s\n", dbg, buf); |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
91 |
send(_debug_socket, buf2, strlen(buf2), 0); |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
92 |
} else |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
93 |
#endif /* ENABLE_NETWORK */ |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
94 |
{ |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
95 |
fprintf(stderr, "dbg: [%s] %s\n", dbg, buf); |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
96 |
IConsoleDebug(dbg, buf); |
717cc12ac0a9
(svn r8631) -Add: added parameter -l ip[:port] to ./openttd, which redirects DEBUG() to a remote connection over TCP
truelight
parents:
5915
diff
changeset
|
97 |
} |
5657
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
98 |
} |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
99 |
} |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
100 |
#endif /* NO_DEBUG_MESSAGES */ |
54c99d0f6ba4
(svn r7602) -Fix (r7565): MSVC2003 and lower don't support variadic macros, so work around
Darkvater
parents:
5568
diff
changeset
|
101 |
|
1299 | 102 |
void SetDebugString(const char *s) |
103 |
{ |
|
104 |
int v; |
|
105 |
char *end; |
|
106 |
const char *t; |
|
107 |
||
108 |
// global debugging level? |
|
109 |
if (*s >= '0' && *s <= '9') { |
|
110 |
const DebugLevel *i; |
|
111 |
||
112 |
v = strtoul(s, &end, 0); |
|
113 |
s = end; |
|
114 |
||
2639 | 115 |
for (i = debug_level; i != endof(debug_level); ++i) *i->level = v; |
1299 | 116 |
} |
117 |
||
118 |
// individual levels |
|
2639 | 119 |
for (;;) { |
1299 | 120 |
const DebugLevel *i; |
121 |
int *p; |
|
122 |
||
123 |
// skip delimiters |
|
124 |
while (*s == ' ' || *s == ',' || *s == '\t') s++; |
|
125 |
if (*s == '\0') break; |
|
126 |
||
127 |
t = s; |
|
128 |
while (*s >= 'a' && *s <= 'z') s++; |
|
129 |
||
130 |
// check debugging levels |
|
131 |
p = NULL; |
|
132 |
for (i = debug_level; i != endof(debug_level); ++i) |
|
133 |
if (s == t + strlen(i->name) && strncmp(t, i->name, s - t) == 0) { |
|
134 |
p = i->level; |
|
135 |
break; |
|
136 |
} |
|
137 |
||
138 |
if (*s == '=') s++; |
|
139 |
v = strtoul(s, &end, 0); |
|
140 |
s = end; |
|
2639 | 141 |
if (p != NULL) { |
1299 | 142 |
*p = v; |
2639 | 143 |
} else { |
1299 | 144 |
ShowInfoF("Unknown debug level '%.*s'", s - t, t); |
145 |
return; |
|
146 |
} |
|
147 |
} |
|
148 |
} |
|
1847
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
149 |
|
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
150 |
/** Print out the current debug-level |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
151 |
* Just return a string with the values of all the debug categorites |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
152 |
* @return string with debug-levels |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
153 |
*/ |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
154 |
const char *GetDebugString(void) |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
155 |
{ |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
156 |
const DebugLevel *i; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
157 |
static char dbgstr[100]; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
158 |
char dbgval[20]; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
159 |
|
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
160 |
memset(dbgstr, 0, sizeof(dbgstr)); |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
161 |
i = debug_level; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
162 |
snprintf(dbgstr, sizeof(dbgstr), "%s=%d", i->name, *i->level); |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
163 |
|
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
164 |
for (i++; i != endof(debug_level); i++) { |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
165 |
snprintf(dbgval, sizeof(dbgval), ", %s=%d", i->name, *i->level); |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
166 |
ttd_strlcat(dbgstr, dbgval, sizeof(dbgstr)); |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
167 |
} |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
168 |
|
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
169 |
return dbgstr; |
47703af63895
(svn r2352) - Feature: add the possibility to print out the current debug-level
Darkvater
parents:
1678
diff
changeset
|
170 |
} |