Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/defs/debug.h @ 5075

Last change on this file since 5075 was 5075, checked in by bensch, 19 years ago

orxonox/trunk: redirected all printf-output to the shell
This is just for testing purposes, and will be changed again in the future (perhaps)

File size: 5.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16/*!
17 * @file debug.h
18  *  Handles output to console for different Verbose-Modes.
19
20    There are two main modes HARD and SOFT. HARD is precessed during compileTime where SOFT is for runtime.
21    \li HARD: One can choose between different modes. see: // DEFINE_MODULES
22    \li SOFT: If you want each module can have its own variable for processing. just pass it to DEBUG_MODULE_SOFT
23*/
24
25#ifndef _DEBUG_H
26#define _DEBUG_H
27
28#include "confincl.h"
29#include "shell.h"
30
31#include <stdio.h>
32
33// DEFINE ERROR MODES
34#define NO              0
35#define ERR             1
36#define WARN            2
37#define INFO            3
38//#define DEBUG           4
39#define vDEBUG          5
40
41extern int verbose;
42
43//definitions
44#ifndef MODULAR_DEBUG
45#define HARD_DEBUG_LEVEL DEBUG
46#define SOFT_DEBUG_LEVEL verbose
47#else /* MODULAR_DEBUG */
48#ifndef DEBUG_MODULE_SOFT
49#define SOFT_DEBUG_LEVEL verbose
50#else /* DEBUG_MODULE_SOFT */
51#define SOFT_DEBUG_LEVEL DEBUG_MODULE_SOFT
52#endif /* DEBUG_MODULE_SOFT */
53
54#ifndef DEBUG_SPECIAL_MODULE
55#define HARD_DEBUG_LEVEL DEBUG
56#else /* DEBUG_SPECIAL_MODULE */
57// DEFINE MODULES
58#define DEBUG_MODULE_ORXONOX            2
59#define DEBUG_MODULE_WORLD              2
60#define DEBUG_MODULE_PNODE              2
61#define DEBUG_MODULE_WORLD_ENTITY       2
62#define DEBUG_MODULE_COMMAND_NODE       2
63#define DEBUG_MODULE_GRAPHICS           2
64#define DEBUG_MODULE_LOAD               2
65
66#define DEBUG_MODULE_IMPORTER           2
67#define DEBUG_MODULE_TRACK_MANAGER      2
68#define DEBUG_MODULE_GARBAGE_COLLECTOR  2
69#define DEBUG_MODULE_OBJECT_MANAGER     2
70#define DEBUG_MODULE_LIGHT              2
71#define DEBUG_MODULE_PLAYER             2
72#define DEBUG_MODULE_WEAPON             2
73#define DEBUG_MODULE_MATH               2
74#define DEBUG_MODULE_FONT               2
75#define DEBUG_MODULE_ANIM               2
76#define DEBUG_MODULE_PARTICLE           2
77#define DEBUG_MODULE_PHYSICS            2
78#define DEBUG_MODULE_EVENT              2
79
80#define DEBUG_MODULE_NULL_PARENT        2
81#define DEBUG_MODULE_NETWORK            2
82
83#define DEBUG_MODULE_COLLISON_DETECTION 2
84#define DEBUG_MODULE_SPATIAL_SEPARATION 2
85
86#define HARD_DEBUG_LEVEL DEBUG_SPECIAL_MODULE
87#endif /* DEBUG_SPECIAL_MODULE */
88#endif /* MODULAR_DEBUG */
89
90///////////////////////////////////////////////////
91/// PRINTF: prints with filename and linenumber ///
92///////////////////////////////////////////////////
93#define PRINTFNO      PRINTF0
94#define PRINTFERR     PRINTF1
95#define PRINTFWARN    PRINTF2
96#define PRINTFINFO    PRINTF3
97#define PRINTFDEBUG   PRINTF4
98#define PRINTFVDEBUG  PRINTF5
99
100//#ifdef
101//#define PRINTF(x)        PRINT(x)
102#define PRINT_EXEC       Shell::addBufferLineStatic
103
104#ifdef DEBUG
105
106#define PRINTF(x) \
107           PRINTF ## x
108
109#if HARD_DEBUG_LEVEL >= ERR
110#define PRINTF1 \
111    if (SOFT_DEBUG_LEVEL >= ERR) \
112      printf("ERROR::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
113#else
114#define PRINTF1 if (NO)
115#endif
116
117#if HARD_DEBUG_LEVEL >= WARN
118#define PRINTF2 \
119     if (SOFT_DEBUG_LEVEL >= WARN) \
120       printf("WARNING::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
121
122#else
123#define PRINTF2 if (NO)
124#endif
125
126#if HARD_DEBUG_LEVEL >= INFO
127#define PRINTF3 \
128     if (SOFT_DEBUG_LEVEL >= INFO) \
129       printf("INFO::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
130#else
131#define PRINTF3 if (NO)
132#endif
133
134#if HARD_DEBUG_LEVEL >= DEBUG
135#define PRINTF4 \
136     if (SOFT_DEBUG_LEVEL >= DEBUG) \
137       printf("DEBUG::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
138#else
139#define PRINTF4 if (NO)
140#endif
141
142#if HARD_DEBUG_LEVEL >= vDEBUG
143#define PRINTF5 \
144     if (SOFT_DEBUG_LEVEL >= vDEBUG) \
145       printf("VERYDEBUG::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
146#else
147#define PRINTF5 if (NO)
148#endif
149
150#else
151#define PRINTF(x) if (NO)
152#endif
153
154#define PRINTF0 \
155    printf("%s:%d::", __FILE__, __LINE__) && PRINT_EXEC
156
157
158///////////////////////////////////////////////////
159///  PRINT: just prints output as is            ///
160///////////////////////////////////////////////////
161#define PRINTNO      PRINT0
162#define PRINTERR     PRINT1
163#define PRINTWARN    PRINT2
164#define PRINTINFO    PRINT3
165#define PRINTDEBUG   PRINT4
166#define PRINTVDEBUG  PRINT5
167
168#ifdef  DEBUG
169#define PRINT(x) \
170  PRINT ## x
171
172#if HARD_DEBUG_LEVEL >= ERR
173#define PRINT1  \
174  if (SOFT_DEBUG_LEVEL >= ERR)  \
175    PRINT_EXEC
176#else
177#define PRINT1 if (NO)
178#endif
179
180#if HARD_DEBUG_LEVEL >= WARN
181#define PRINT2 \
182  if (SOFT_DEBUG_LEVEL >= WARN) \
183    PRINT_EXEC
184
185#else
186#define PRINT2 if (NO)
187#endif
188
189#if HARD_DEBUG_LEVEL >= INFO
190#define PRINT3 \
191  if (SOFT_DEBUG_LEVEL >= INFO) \
192    PRINT_EXEC
193#else
194#define PRINT3 if (NO)
195#endif
196
197#if HARD_DEBUG_LEVEL >= DEBUG
198#define PRINT4 \
199  if (SOFT_DEBUG_LEVEL >= DEBUG) \
200    PRINT_EXEC
201#else
202#define PRINT4 if (NO)
203#endif
204
205#if HARD_DEBUG_LEVEL >= vDEBUG
206#define PRINT5 \
207     if (SOFT_DEBUG_LEVEL >= vDEBUG) \
208       PRINT_EXEC("VERYDEBUG::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
209#else
210#define PRINT5 if (NO)
211#endif
212
213
214#else
215#define PRINT(x) if (NO)
216#endif
217
218#define PRINT0 \
219  PRINT_EXEC
220
221#endif /* _DEBUG_H */
Note: See TracBrowser for help on using the repository browser.