Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7035 was 7020, checked in by patrick, 19 years ago

trunk: added the game rules

File size: 5.5 KB
RevLine 
[4608]1/*
[3395]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
[4608]16/*!
[5039]17 * @file debug.h
[4836]18  *  Handles output to console for different Verbose-Modes.
[3601]19
20    There are two main modes HARD and SOFT. HARD is precessed during compileTime where SOFT is for runtime.
[4608]21    \li HARD: One can choose between different modes. see: // DEFINE_MODULES
[3601]22    \li SOFT: If you want each module can have its own variable for processing. just pass it to DEBUG_MODULE_SOFT
[4608]23*/
[3395]24
[3204]25#ifndef _DEBUG_H
26#define _DEBUG_H
27
[3863]28#include "confincl.h"
[5944]29#ifndef NO_SHELL
30 #include "shell_buffer.h"
31#endif /* NO_SHELL */
[3590]32
33#include <stdio.h>
[6868]34#include <cassert>
[3590]35
36// DEFINE ERROR MODES
[3395]37#define NO              0
[3480]38#define ERR             1
39#define WARN            2
40#define INFO            3
[4608]41//#define DEBUG           4
[4373]42#define vDEBUG          5
[3293]43
[3592]44extern int verbose;
45
[3601]46//definitions
[3592]47#ifndef MODULAR_DEBUG
[5440]48 #define HARD_DEBUG_LEVEL DEBUG
49 #define SOFT_DEBUG_LEVEL verbose
[3592]50#else /* MODULAR_DEBUG */
[5440]51 #ifndef DEBUG_MODULE_SOFT
52  #define SOFT_DEBUG_LEVEL verbose
53 #else /* DEBUG_MODULE_SOFT */
54  #define SOFT_DEBUG_LEVEL DEBUG_MODULE_SOFT
55 #endif /* DEBUG_MODULE_SOFT */
[3601]56
[5440]57 #ifndef DEBUG_SPECIAL_MODULE
58  #define HARD_DEBUG_LEVEL DEBUG
59 #else /* DEBUG_SPECIAL_MODULE */
60  ////////////////////
61  // DEFINE MODULES //
62  ////////////////////
63  // FRAMEWORK
64  #define DEBUG_MODULE_BASE                  2
65  #define DEBUG_MODULE_ORXONOX               2
66  #define DEBUG_MODULE_WORLD                 2
67  #define DEBUG_MODULE_NETWORK               2
[5300]68
[5440]69  // LOADING
70  #define DEBUG_MODULE_LOAD                  2
71  #define DEBUG_MODULE_IMPORTER              2
[3591]72
[5440]73  // ENGINES
74  #define DEBUG_MODULE_GRAPHICS              2
[5476]75  #define DEBUG_MODULE_EVENT                 2
[5440]76  #define DEBUG_MODULE_PHYSICS               2
77  #define DEBUG_MODULE_GARBAGE_COLLECTOR     2
78  #define DEBUG_MODULE_OBJECT_MANAGER        2
79  #define DEBUG_MODULE_ANIM                  2
80  #define DEBUG_MODULE_COLLISON_DETECTION    2
81  #define DEBUG_MODULE_SPATIAL_SEPARATION    2
82  #define DEBUG_MODULE_GUI                   2
[5930]83  #define DEBUG_MODULE_SOUND                 2
[5300]84
[5440]85  // MISC
86  #define DEBUG_MODULE_TRACK_MANAGER         2
87  #define DEBUG_MODULE_MATH                  2
[5300]88
[5440]89  #define DEBUG_MODULE_PNODE                 2
90  #define DEBUG_MODULE_WORLD_ENTITY          2
[5300]91
[6834]92  #define DEBUG_MODULE_STORY_ENTITY          2
[7020]93  #define DEBUG_MODULE_GAME_RULES            2
[6834]94
[5440]95  #define DEBUG_MODULE_WEAPON                2
[3439]96
[5440]97  #define HARD_DEBUG_LEVEL DEBUG_SPECIAL_MODULE
98
99 #endif /* DEBUG_SPECIAL_MODULE */
[3592]100#endif /* MODULAR_DEBUG */
[4373]101
[3293]102///////////////////////////////////////////////////
103/// PRINTF: prints with filename and linenumber ///
104///////////////////////////////////////////////////
[4373]105#define PRINTFNO      PRINTF0
106#define PRINTFERR     PRINTF1
107#define PRINTFWARN    PRINTF2
108#define PRINTFINFO    PRINTF3
109#define PRINTFDEBUG   PRINTF4
110#define PRINTFVDEBUG  PRINTF5
[3293]111
[5183]112#if DEBUG <= 3
[5076]113#define PRINTF(x)        PRINT(x)
[5183]114#endif
[5822]115#ifndef NO_SHELL
[6142]116#define PRINT_EXEC       ShellBuffer::addBufferLineStatic
[5822]117#else /* NO_SHELL */
118#define PRINT_EXEC       printf
119#endif
[5075]120
[5076]121#ifndef PRINTF
[3433]122#ifdef DEBUG
[3590]123
[3205]124#define PRINTF(x) \
125           PRINTF ## x
126
[3592]127#if HARD_DEBUG_LEVEL >= ERR
[3205]128#define PRINTF1 \
[3601]129    if (SOFT_DEBUG_LEVEL >= ERR) \
[5299]130      printf("(EE)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
[4608]131#else
[3395]132#define PRINTF1 if (NO)
[3205]133#endif
[4608]134
[3592]135#if HARD_DEBUG_LEVEL >= WARN
[3205]136#define PRINTF2 \
[3601]137     if (SOFT_DEBUG_LEVEL >= WARN) \
[5299]138       printf("(WW)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
[4608]139
140#else
[3395]141#define PRINTF2 if (NO)
[3205]142#endif
[4608]143
[3592]144#if HARD_DEBUG_LEVEL >= INFO
[3205]145#define PRINTF3 \
[3601]146     if (SOFT_DEBUG_LEVEL >= INFO) \
[5299]147       printf("(II)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
[4608]148#else
[3395]149#define PRINTF3 if (NO)
[3205]150#endif
[4608]151
[4373]152#if HARD_DEBUG_LEVEL >= DEBUG
[3205]153#define PRINTF4 \
[4373]154     if (SOFT_DEBUG_LEVEL >= DEBUG) \
[5299]155       printf("(DD)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
[4608]156#else
[3395]157#define PRINTF4 if (NO)
[3205]158#endif
[4608]159
[4373]160#if HARD_DEBUG_LEVEL >= vDEBUG
[3548]161#define PRINTF5 \
[4373]162     if (SOFT_DEBUG_LEVEL >= vDEBUG) \
[5299]163       printf("(VD)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC
[4608]164#else
[3548]165#define PRINTF5 if (NO)
166#endif
[4608]167
168#else
[3395]169#define PRINTF(x) if (NO)
[3204]170#endif
171
[3206]172#define PRINTF0 \
[5075]173    printf("%s:%d::", __FILE__, __LINE__) && PRINT_EXEC
[5076]174#endif
[3204]175
[3293]176///////////////////////////////////////////////////
177///  PRINT: just prints output as is            ///
178///////////////////////////////////////////////////
[4373]179#define PRINTNO      PRINT0
180#define PRINTERR     PRINT1
181#define PRINTWARN    PRINT2
182#define PRINTINFO    PRINT3
183#define PRINTDEBUG   PRINT4
184#define PRINTVDEBUG  PRINT5
185
[3293]186#ifdef  DEBUG
187#define PRINT(x) \
[3395]188  PRINT ## x
[3293]189
[3592]190#if HARD_DEBUG_LEVEL >= ERR
[4608]191#define PRINT1  \
192  if (SOFT_DEBUG_LEVEL >= ERR)  \
[5075]193    PRINT_EXEC
[4608]194#else
[3395]195#define PRINT1 if (NO)
[3293]196#endif
[3395]197
[3592]198#if HARD_DEBUG_LEVEL >= WARN
[3293]199#define PRINT2 \
[3601]200  if (SOFT_DEBUG_LEVEL >= WARN) \
[5075]201    PRINT_EXEC
[3293]202
[4608]203#else
[3395]204#define PRINT2 if (NO)
[3293]205#endif
[3395]206
[3592]207#if HARD_DEBUG_LEVEL >= INFO
[3293]208#define PRINT3 \
[3601]209  if (SOFT_DEBUG_LEVEL >= INFO) \
[5075]210    PRINT_EXEC
[4608]211#else
[3395]212#define PRINT3 if (NO)
[3293]213#endif
[3395]214
[4373]215#if HARD_DEBUG_LEVEL >= DEBUG
[3293]216#define PRINT4 \
[4373]217  if (SOFT_DEBUG_LEVEL >= DEBUG) \
[5075]218    PRINT_EXEC
[4608]219#else
[3395]220#define PRINT4 if (NO)
[3293]221#endif
[3395]222
[4373]223#if HARD_DEBUG_LEVEL >= vDEBUG
[3548]224#define PRINT5 \
[4373]225     if (SOFT_DEBUG_LEVEL >= vDEBUG) \
[5299]226       PRINT_EXEC
[4608]227#else
[3548]228#define PRINT5 if (NO)
229#endif
[3395]230
[3548]231
[4608]232#else
[3395]233#define PRINT(x) if (NO)
[3293]234#endif
235
236#define PRINT0 \
[5075]237  PRINT_EXEC
[3293]238
[3204]239#endif /* _DEBUG_H */
Note: See TracBrowser for help on using the repository browser.