Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5300 in orxonox.OLD


Ignore:
Timestamp:
Oct 7, 2005, 1:59:44 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: even less debug-info

Location:
trunk/src
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/defs/debug.h

    r5299 r5300  
    5555#define HARD_DEBUG_LEVEL DEBUG
    5656#else /* DEBUG_SPECIAL_MODULE */
    57 // DEFINE MODULES
     57////////////////////
     58// DEFINE MODULES //
     59////////////////////
     60// FRAMEWORK
    5861#define DEBUG_MODULE_ORXONOX            2
    5962#define DEBUG_MODULE_WORLD              2
     63#define DEBUG_MODULE_NETWORK            2
     64
     65// LOADING
     66#define DEBUG_MODULE_LOAD               2
     67#define DEBUG_MODULE_IMPORTER           2
     68
     69// ENGINES
     70#define DEBUG_MODULE_GRAPHICS           2
     71#define DEBUG_MODULE_EVENT              2
     72#define DEBUG_MODULE_FONT               2
     73#define DEBUG_MODULE_PARTICLE           2
     74#define DEBUG_MODULE_PHYSICS            2
     75#define DEBUG_MODULE_GARBAGE_COLLECTOR  2
     76#define DEBUG_MODULE_OBJECT_MANAGER     2
     77#define DEBUG_MODULE_ANIM               2
     78#define DEBUG_MODULE_COLLISON_DETECTION 2
     79#define DEBUG_MODULE_SPATIAL_SEPARATION 2
     80
     81// MISC
     82#define DEBUG_MODULE_TRACK_MANAGER      2
     83#define DEBUG_MODULE_MATH               2
     84#define DEBUG_MODULE_LIGHT              2
     85
    6086#define DEBUG_MODULE_PNODE              2
    6187#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
     88
    7189#define DEBUG_MODULE_PLAYER             2
    7290#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
    8591
    8692#define HARD_DEBUG_LEVEL DEBUG_SPECIAL_MODULE
  • trunk/src/glmenu/glmenu_imagescreen.cc

    r5155 r5300  
    1616*/
    1717
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOAD
    1819
    1920#include "glmenu_imagescreen.h"
     
    2526
    2627CREATE_FACTORY(GLMenuImageScreen);
    27 
    2828
    2929using namespace std;
  • trunk/src/glmenu/glmenu_imagescreen.h

    r5039 r5300  
    11/*!
    22 * @file glmenu_imagescreen.h
    3   * class to display a LoadScreen
    4 */
     3 * class to display a LoadScreen
     4 */
    55
    66#ifndef _GLMENU_IMAGESCREEN_H
  • trunk/src/lib/coord/null_parent.cc

    r5082 r5300  
    1616*/
    1717
    18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NULL_PARENT
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PARENT_NODE
    1919
    2020#include "null_parent.h"
  • trunk/src/lib/event/event_handler.cc

    r5297 r5300  
    110110          this->listeners[i][eventType] = el;
    111111        else
    112           PRINTF(1)("%s of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
     112          PRINTF(2)("%s of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
    113113    }
    114114  else
     
    118118      }
    119119    else
    120       PRINTF(1)("% of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
     120      PRINTF(2)("% of class %s tried to subscribe to event %i @ state %i but this event has already been subscribed\n", el->getName(), el->getClassName(), eventType, state);
    121121}
    122122
  • trunk/src/lib/graphics/importer/objModel.cc

    r5014 r5300  
    7575      strncpy(this->objPath, fileName, len);
    7676      this->objPath[len] = '\0';
    77       PRINTF(1)("Resolved file %s to Path %s.\n", fileName, this->objPath);
     77      PRINTF(4)("Resolved file %s to Path %s.\n", fileName, this->objPath);
    7878    }
    7979  else
     
    9494  if( (stream = fopen (fileName, "r")) == NULL)
    9595    {
    96       printf("Object File Could not be Opened %s\n", fileName);
     96      PRINTF(2)("Object File Could not be Opened %s\n", fileName);
    9797      return false;
    9898    }
     
    145145      else if (!strncmp(buffer, "s ", 2)) //! @todo smoothing groups have to be implemented
    146146        {
    147           PRINTF(2)("smoothing groups not supportet yet. line: %s\n", buffer);
     147          PRINTF(3)("smoothing groups not supportet yet. line: %s\n", buffer);
    148148        }
    149149    }
     
    153153
    154154/**
    155   *  Function to read in a mtl File.
    156   * @param mtlFile The .mtl file to read
    157 
    158     This Function parses all Lines of an mtl File.
    159     The reason for it not to be in the materials-class is,
    160     that a material does not have to be able to read itself in from a File.
    161 
    162 */
     155 * Function to read in a mtl File.
     156 * @param mtlFile The .mtl file to read
     157 *
     158 * This Function parses all Lines of an mtl File.
     159 * The reason for it not to be in the materials-class is,
     160 * that a material does not have to be able to read itself in from a File.
     161 */
    163162bool OBJModel::readMtlLib (const char* mtlFile)
    164163{
     
    170169    {
    171170      PRINTF(2)("MaterialLibrary could not be opened %s\n", fileName);
    172       delete []fileName;
     171      delete[] fileName;
    173172      return false;
    174173    }
  • trunk/src/story_entities/campaign.cc

    r5292 r5300  
    4343  this->setClassID(CL_CAMPAIGN, "Campaign");
    4444
    45   PRINTF(3)("Loading Campaign...\n");
     45  PRINTF(4)("Loading Campaign...\n");
    4646
    4747  assert( root != NULL);
     
    9292  while( element != NULL)
    9393  {
    94     printf("Campaign: Constructor: adding a world\n");
     94    PRINTF(5)("Campaign: Constructor: adding a world\n");
    9595    StoryEntity* created = (StoryEntity*) GameLoader::getInstance()->fabricate(element);
    9696      /*
  • trunk/src/util/loading/game_loader.cc

    r5208 r5300  
    1515   co-programmer: ...
    1616*/
     17
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOAD
    1719
    1820#include "game_loader.h"
  • trunk/src/world_entities/player.cc

    r5212 r5300  
    139139  this->setClassID(CL_PLAYER, "Player");
    140140
    141   PRINTF(1)("PLAYER INIT\n");
     141  PRINTF(4)("PLAYER INIT\n");
    142142  travelSpeed = 15.0;
    143143  bUp = bDown = bLeft = bRight = bAscend = bDescend = false;
  • trunk/src/world_entities/world_entity.cc

    r5285 r5300  
    1515   co-programmer: Christian Meyer
    1616*/
     17#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
    1718
    1819#include "world_entity.h"
Note: See TracChangeset for help on using the changeset viewer.