Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/defs/debug.h @ 5957

Last change on this file since 5957 was 5833, checked in by patrick, 19 years ago

network: server/client orxonox now works

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