- Timestamp:
- May 19, 2006, 3:07:09 PM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/debug.h
r7711 r7729 35 35 36 36 // DEFINE ERROR MODES 37 #define NO038 #define ERR 139 #define WARN 240 #define INFO 341 #define DEBUG 442 #define vDEBUG 537 #define ORX_NONE 0 38 #define ORX_ERR 1 39 #define ORX_WARN 2 40 #define ORX_INFO 3 41 #define ORX_DEBUG 4 42 #define ORX_vDEBUG 5 43 43 44 44 extern int verbose; … … 46 46 //definitions 47 47 #ifndef MODULAR_DEBUG 48 #define HARD_DEBUG_LEVEL DEBUG48 #define HARD_DEBUG_LEVEL ORX_DEBUG 49 49 #define SOFT_DEBUG_LEVEL verbose 50 50 #else /* MODULAR_DEBUG */ … … 103 103 /// PRINTF: prints with filename and linenumber /// 104 104 /////////////////////////////////////////////////// 105 #define PRINTF NOPRINTF0106 #define PRINTF ERR PRINTF1107 #define PRINTF WARN PRINTF2108 #define PRINTF INFO PRINTF3109 #define PRINTF DEBUG PRINTF4110 #define PRINTF VDEBUG PRINTF5111 112 #if DEBUG <= 3105 #define PRINTFORX_NONE PRINTF0 106 #define PRINTFORX_ERR PRINTF1 107 #define PRINTFORX_WARN PRINTF2 108 #define PRINTFORX_INFO PRINTF3 109 #define PRINTFORX_DEBUG PRINTF4 110 #define PRINTFORX_VDEBUG PRINTF5 111 112 #if DEBUG_LEVEL <= 3 113 113 #define PRINTF(x) PRINT(x) 114 114 #endif … … 122 122 123 123 #ifndef PRINTF 124 #ifdef DEBUG124 #ifdef ORX_DEBUG 125 125 126 126 #define PRINTF(x) \ 127 127 PRINTF ## x 128 128 129 #if HARD_DEBUG_LEVEL >= ERR129 #if HARD_DEBUG_LEVEL >= ORX_ERR 130 130 #define PRINTF1 \ 131 if (SOFT_DEBUG_LEVEL >= ERR) \131 if (SOFT_DEBUG_LEVEL >= ORX_ERR) \ 132 132 printf("(EE)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC 133 133 #else 134 #define PRINTF1 if ( NO)135 #endif 136 137 #if HARD_DEBUG_LEVEL >= WARN134 #define PRINTF1 if (ORX_NONE) 135 #endif 136 137 #if HARD_DEBUG_LEVEL >= ORX_WARN 138 138 #define PRINTF2 \ 139 if (SOFT_DEBUG_LEVEL >= WARN) \139 if (SOFT_DEBUG_LEVEL >= ORX_WARN) \ 140 140 printf("(WW)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC 141 141 142 142 #else 143 #define PRINTF2 if ( NO)144 #endif 145 146 #if HARD_DEBUG_LEVEL >= INFO143 #define PRINTF2 if (ORX_NONE) 144 #endif 145 146 #if HARD_DEBUG_LEVEL >= ORX_INFO 147 147 #define PRINTF3 \ 148 if (SOFT_DEBUG_LEVEL >= INFO) \148 if (SOFT_DEBUG_LEVEL >= ORX_INFO) \ 149 149 printf("(II)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC 150 150 #else 151 #define PRINTF3 if ( NO)152 #endif 153 154 #if HARD_DEBUG_LEVEL >= DEBUG151 #define PRINTF3 if (ORX_NONE) 152 #endif 153 154 #if HARD_DEBUG_LEVEL >= ORX_DEBUG 155 155 #define PRINTF4 \ 156 if (SOFT_DEBUG_LEVEL >= DEBUG) \156 if (SOFT_DEBUG_LEVEL >= ORX_DEBUG) \ 157 157 printf("(DD)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC 158 158 #else 159 #define PRINTF4 if ( NO)160 #endif 161 162 #if HARD_DEBUG_LEVEL >= vDEBUG159 #define PRINTF4 if (ORX_NONE) 160 #endif 161 162 #if HARD_DEBUG_LEVEL >= ORX_vDEBUG 163 163 #define PRINTF5 \ 164 if (SOFT_DEBUG_LEVEL >= vDEBUG) \164 if (SOFT_DEBUG_LEVEL >= ORX_vDEBUG) \ 165 165 printf("(VD)::%s:%d:", __FILE__, __LINE__) && PRINT_EXEC 166 166 #else 167 #define PRINTF5 if ( NO)168 #endif 169 170 #else 171 #define PRINTF(x) if ( NO)167 #define PRINTF5 if (ORX_NONE) 168 #endif 169 170 #else 171 #define PRINTF(x) if (ORX_NONE) 172 172 #endif 173 173 … … 179 179 /// PRINT: just prints output as is /// 180 180 /////////////////////////////////////////////////// 181 #define PRINT NOPRINT0182 #define PRINT ERR PRINT1183 #define PRINT WARN PRINT2184 #define PRINT INFO PRINT3185 #define PRINT DEBUG PRINT4186 #define PRINT VDEBUG PRINT5187 188 #ifdef DEBUG 181 #define PRINTORX_NONE PRINT0 182 #define PRINTORX_ERR PRINT1 183 #define PRINTORX_WARN PRINT2 184 #define PRINTORX_INFO PRINT3 185 #define PRINTORX_DEBUG PRINT4 186 #define PRINTORX_vDEBUG PRINT5 187 188 #ifdef DEBUG_LEVEL 189 189 #define PRINT(x) \ 190 190 PRINT ## x 191 191 192 #if HARD_DEBUG_LEVEL >= ERR192 #if HARD_DEBUG_LEVEL >= ORX_ERR 193 193 #define PRINT1 \ 194 if (SOFT_DEBUG_LEVEL >= ERR) \194 if (SOFT_DEBUG_LEVEL >= ORX_ERR) \ 195 195 PRINT_EXEC 196 196 #else 197 #define PRINT1 if ( NO)198 #endif 199 200 #if HARD_DEBUG_LEVEL >= WARN197 #define PRINT1 if (ORX_NONE) 198 #endif 199 200 #if HARD_DEBUG_LEVEL >= ORX_WARN 201 201 #define PRINT2 \ 202 if (SOFT_DEBUG_LEVEL >= WARN) \202 if (SOFT_DEBUG_LEVEL >= ORX_WARN) \ 203 203 PRINT_EXEC 204 204 205 205 #else 206 #define PRINT2 if ( NO)207 #endif 208 209 #if HARD_DEBUG_LEVEL >= INFO206 #define PRINT2 if (ORX_NONE) 207 #endif 208 209 #if HARD_DEBUG_LEVEL >= ORX_INFO 210 210 #define PRINT3 \ 211 if (SOFT_DEBUG_LEVEL >= INFO) \211 if (SOFT_DEBUG_LEVEL >= ORX_INFO) \ 212 212 PRINT_EXEC 213 213 #else 214 #define PRINT3 if ( NO)215 #endif 216 217 #if HARD_DEBUG_LEVEL >= DEBUG214 #define PRINT3 if (ORX_NONE) 215 #endif 216 217 #if HARD_DEBUG_LEVEL >= ORX_DEBUG 218 218 #define PRINT4 \ 219 if (SOFT_DEBUG_LEVEL >= DEBUG) \219 if (SOFT_DEBUG_LEVEL >= ORX_DEBUG) \ 220 220 PRINT_EXEC 221 221 #else 222 #define PRINT4 if ( NO)223 #endif 224 225 #if HARD_DEBUG_LEVEL >= vDEBUG222 #define PRINT4 if (ORX_NONE) 223 #endif 224 225 #if HARD_DEBUG_LEVEL >= ORX_vDEBUG 226 226 #define PRINT5 \ 227 if (SOFT_DEBUG_LEVEL >= vDEBUG) \227 if (SOFT_DEBUG_LEVEL >= ORX_vDEBUG) \ 228 228 PRINT_EXEC 229 229 #else 230 #define PRINT5 if ( NO)231 #endif 232 233 234 #else 235 #define PRINT(x) if ( NO)230 #define PRINT5 if (ORX_NONE) 231 #endif 232 233 234 #else 235 #define PRINT(x) if (ORX_NONE) 236 236 #endif 237 237 … … 244 244 /// COUT: just prints output as is with std::cout /// 245 245 //////////////////////////////////////////////////////// 246 #define COUT NOCOUT0247 #define COUT ERR COUT1248 #define COUT WARN COUT2249 #define COUT INFO COUT3250 #define COUT DEBUG COUT4251 #define COUT VDEBUG COUT5252 253 #ifdef DEBUG 246 #define COUTORX_NONE COUT0 247 #define COUTORX_ERR COUT1 248 #define COUTORX_WARN COUT2 249 #define COUTORX_INFO COUT3 250 #define COUTORX_DEBUG COUT4 251 #define COUTORX_vDEBUG COUT5 252 253 #ifdef DEBUG_LEVEL 254 254 #define COUT(x) \ 255 255 COUT ## x 256 256 257 #if HARD_DEBUG_LEVEL >= ERR257 #if HARD_DEBUG_LEVEL >= ORX_ERR 258 258 #define COUT1 \ 259 if (SOFT_DEBUG_LEVEL >= ERR) \260 COUT_EXEC 261 #else 262 #define COUT1 if ( NO)\263 COUT_EXEC 264 #endif 265 266 #if HARD_DEBUG_LEVEL >= WARN259 if (SOFT_DEBUG_LEVEL >= ORX_ERR) \ 260 COUT_EXEC 261 #else 262 #define COUT1 if (ORX_NONE)\ 263 COUT_EXEC 264 #endif 265 266 #if HARD_DEBUG_LEVEL >= ORX_WARN 267 267 #define COUT2 \ 268 if (SOFT_DEBUG_LEVEL >= WARN) \269 COUT_EXEC 270 271 #else 272 #define COUT2 if ( NO) \273 COUT_EXEC 274 #endif 275 276 #if HARD_DEBUG_LEVEL >= INFO268 if (SOFT_DEBUG_LEVEL >= ORX_WARN) \ 269 COUT_EXEC 270 271 #else 272 #define COUT2 if (ORX_NONE) \ 273 COUT_EXEC 274 #endif 275 276 #if HARD_DEBUG_LEVEL >= ORX_INFO 277 277 #define COUT3 \ 278 if (SOFT_DEBUG_LEVEL >= INFO) \279 COUT_EXEC 280 #else 281 #define COUT3 if ( NO) \282 COUT_EXEC 283 #endif 284 285 #if HARD_DEBUG_LEVEL >= DEBUG278 if (SOFT_DEBUG_LEVEL >= ORX_INFO) \ 279 COUT_EXEC 280 #else 281 #define COUT3 if (ORX_NONE) \ 282 COUT_EXEC 283 #endif 284 285 #if HARD_DEBUG_LEVEL >= ORX_DEBUG 286 286 #define COUT4 \ 287 if (SOFT_DEBUG_LEVEL >= DEBUG) \288 COUT_EXEC 289 #else 290 #define COUT4 if ( NO) \291 COUT_EXEC 292 #endif 293 294 #if HARD_DEBUG_LEVEL >= vDEBUG287 if (SOFT_DEBUG_LEVEL >= ORX_DEBUG) \ 288 COUT_EXEC 289 #else 290 #define COUT4 if (ORX_NONE) \ 291 COUT_EXEC 292 #endif 293 294 #if HARD_DEBUG_LEVEL >= ORX_vDEBUG 295 295 #define COUT5 \ 296 if (SOFT_DEBUG_LEVEL >= vDEBUG) \296 if (SOFT_DEBUG_LEVEL >= ORX_vDEBUG) \ 297 297 COUT_EXEC 298 298 #else 299 #define COUT5 if ( NO) \300 COUT_EXEC 301 #endif 302 303 304 #else 305 #define COUT(x) if ( NO) \299 #define COUT5 if (ORX_NONE) \ 300 COUT_EXEC 301 #endif 302 303 304 #else 305 #define COUT(x) if (ORX_NONE) \ 306 306 COUT_EXEC 307 307 #endif -
trunk/src/lib/graphics/importer/primitive_model.cc
r6912 r7729 34 34 { 35 35 switch (type) 36 36 { 37 37 default: 38 38 case PRIM_CUBE: … … 51 51 this->planeModel(size, detail); 52 52 break; 53 53 } 54 54 this->finalize(); 55 55 } … … 79 79 // defining the Vertices 80 80 for (float i = 0; i < df *2.0; i+=1.0) 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 81 { 82 float vi = i/df * PI; 83 for (float j = -df / 2.0 +1.0; j <= df / 2.0; j+=1.0 *df/(df+1.0)) 84 { 85 float vj = j/df *PI; 86 this->addVertexNormal(cos(vi) * cos(vj), 87 sin(vj), 88 sin(vi) * cos(vj)); 89 90 this->addVertex(size * cos(vi) * cos(vj), 91 size * sin(vj), 92 size * sin(vi) * cos(vj)); 93 94 this->addVertexTexture( i / (df *2.0), 95 (j-1.0)/(df)+.5); 96 } 97 } 98 98 this->addVertex(0, -size, 0); 99 99 this->addVertexNormal(0, -1, 0); … … 106 106 unsigned int v1, v2, v3, v4; 107 107 for (int i = 0; i <= detail * 2 -1; i++) 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 108 { 109 for (int j = 0; j <= detail; j++) 110 { 111 112 v1 = i*detail + j-1; 113 v4 = i*detail + j; 114 115 if (i == detail*2 -1) 116 { 117 v2 = j-1; 118 v3 = j; 119 } 120 else 121 { 122 v2 = (i+1)*detail + j-1; 123 v3 = (i+1)*detail + j; 124 } 125 126 if (j == 0) 127 { 128 v1 = this->getVertexCount() - 2; 129 this->addFace(3, VERTEX_TEXCOORD_NORMAL, v1, v1, v1, v3, v3, v3, v4, v4, v4); 130 } 131 else if (j == detail) 132 { 133 v3 = this->getVertexCount()-1; 134 this->addFace(3, VERTEX_TEXCOORD_NORMAL, v1, v1, v1, v2, v2, v2, v3, v3, v3); 135 } 136 else 137 this->addFace(4, VERTEX_TEXCOORD_NORMAL, v1, v1, v1, v2, v2, v2, v3, v3, v3, v4, v4, v4); 138 } 139 } 140 140 } 141 141 /** … … 150 150 // defining Points of the Cylinder. 151 151 for (float phi = 0.0; phi < 2.0*PI; phi += 2.0*PI/(float)detail) 152 153 154 155 156 152 { 153 this->addVertex(size*cos(phi), size*sin(phi), -size); 154 this->addVertex(size*cos(phi), size*sin(phi), size); 155 count ++; 156 } 157 157 this->addVertex(0, 0, -size); 158 158 this->addVertex(0, 0, size); 159 159 160 160 if (count != detail) 161 { 161 162 PRINTF(1)("calculation error, count should be %d but is %d.\n", detail, count); 162 163 } 163 164 // adding Faces 164 165 for (int i = 0; i < detail-1; i++) 165 166 167 168 169 170 171 172 173 174 175 166 { 167 int p1, p2, p3, p4; 168 p1 = 2*i; 169 p2 = 2*i+1; 170 p3 = 2*i+3; 171 p4 = 2*i+2; 172 // something is wrong here 173 this->addFace(4, VERTEX_ONLY, p1, p2, p3, p4); 174 this->addFace(3, VERTEX_ONLY, p4, p1, 2*detail); 175 this->addFace(3, VERTEX_ONLY, p2, p3, 2*detail+1); 176 } 176 177 // caps 177 178 this->addFace(4, VERTEX_ONLY, 2*detail-2, 2*detail-1, 1, 0); … … 195 196 // defining the Vertices 196 197 for (float i = 0; i < df; i+=1.0) 197 198 199 200 201 202 198 { 199 float vi = i/df *2.0*PI; 200 this->addVertex(size* sin(vi), 201 -size, 202 size* cos(vi)); 203 } 203 204 204 205 //defining Faces 205 206 for (int i = 0; i < detail; i++) 206 207 208 209 210 211 212 213 214 215 207 { 208 unsigned int v1, v2; 209 v1 = i+2; 210 if (i == detail -1) 211 v2 = 2; 212 else 213 v2 = i+3; 214 this->addFace(3, VERTEX_ONLY, 0, v1, v2); 215 this->addFace(3, VERTEX_ONLY, 1, v1, v2); 216 } 216 217 } 217 218 … … 226 227 for (int i = 0; i < detail; i++) 227 228 for (int j = 0; j < detail; j++) 228 229 230 231 232 233 234 229 { 230 this->addVertex(((float)i/(float)(detail-1) -.5)*size, 231 0, 232 ((float)j/(float)(detail-1) -.5)*size); 233 this->addVertexTexture((float)i/(float)(detail-1), 234 (float)j/(float)(detail-1)); 235 } 235 236 //defining Faces 236 237 unsigned int v1, v2, v3, v4; 237 238 for (int i = 0; i < detail-1; i++) 238 239 for (int j = 0; j < detail-1; j++) 239 240 241 242 243 244 245 246 } 240 { 241 v1 = i*detail + j; 242 v2 = (i+1)*detail + j; 243 v3 = (i+1)*detail + (j+1); 244 v4 = i*detail + (j+1); 245 this->addFace(4, VERTEX_TEXCOORD, v1, v1, v2, v2, v3, v3, v4, v4); 246 } 247 } -
trunk/src/lib/gui/gtk_gui/gui_exec.cc
r7661 r7729 76 76 #ifdef DEBUG 77 77 verboseMode = new Menu(CONFIG_NAME_VERBOSE_MODE, "nothing", 78 #if DEBUG >=178 #if DEBUG_LEVEL >=1 79 79 "error", 80 80 #endif 81 #if DEBUG >=281 #if DEBUG_LEVEL >=2 82 82 "warning", 83 83 #endif 84 #if DEBUG >=384 #if DEBUG_LEVEL >=3 85 85 "info", 86 86 #endif 87 #if DEBUG >=487 #if DEBUG_LEVEL >=4 88 88 "debug", 89 89 #endif 90 #if DEBUG >=590 #if DEBUG_LEVEL >=5 91 91 "heavydebug", 92 92 #endif … … 95 95 verboseMode->setDescription("Sets the Output Mode", "This Enables Outbug messages\n" 96 96 "0: nothing will be displayed, but stuff one cannot do without (eg.GUI)\n" 97 #if DEBUG >=197 #if DEBUG_LEVEL >=1 98 98 "1: error: outputs all the above and errors" 99 99 #endif 100 #if DEBUG >=2100 #if DEBUG_LEVEL >=2 101 101 "2: warning: outputs all the above plus warnings" 102 102 #endif 103 #if DEBUG >=3103 #if DEBUG_LEVEL >=3 104 104 "3: info: outputs all the above plus Information" 105 105 #endif 106 #if DEBUG >=4106 #if DEBUG_LEVEL >=4 107 107 "4: debug: displays all the above plus debug information" 108 108 #endif 109 #if DEBUG >=5109 #if DEBUG_LEVEL >=5 110 110 "5: heavydebug: displays all the above plus heavy debug information: WARNING: the game will run very slow with this." 111 111 #endif -
trunk/src/lib/parser/ini_parser/ini_parser.cc
r7676 r7729 28 28 #endif 29 29 30 #ifdef DEBUG 30 #ifdef DEBUG_LEVEL 31 31 #include "../../../defs/debug.h" 32 32 #else 33 33 #define PRINTF(x) printf 34 #define PRINT(x) printf 34 35 #endif 35 36 -
trunk/src/lib/shell/shell_buffer.cc
r7375 r7729 103 103 104 104 SDL_mutexP(ShellBuffer::bufferMutex); 105 #if DEBUG < 3105 #if DEBUG_LEVEL < 3 106 106 if (ShellBuffer::singletonRef == NULL) 107 107 #endif 108 108 vprintf(line, arguments); 109 #if DEBUG < 3109 #if DEBUG_LEVEL < 3 110 110 else 111 111 #else … … 180 180 181 181 /** 182 * displays some nice output from the Shell182 * @brief displays some nice output from the Shell 183 183 */ 184 184 void ShellBuffer::debug() const -
trunk/src/lib/shell/shell_input.cc
r7676 r7729 44 44 45 45 this->inputLine = ""; 46 this->historyIT = this->history.begin();46 this->historyIT = ShellInput::history.begin(); 47 47 this->setHistoryLength(50); 48 48 this->historyScrolling = false; … … 65 65 } 66 66 67 std::list<std::string> ShellInput::history; 68 67 69 /** 68 70 * @brief standard deconstructor 69 71 */ 70 72 ShellInput::~ShellInput () 71 {}73 {} 72 74 73 75 /** … … 173 175 174 176 // adding the new Command to the History 175 this->history.push_back(this->inputLine); 177 if (history.back() != this->inputLine) 178 this->history.push_back(this->inputLine); 176 179 if (this->history.size() > this->historyLength) 177 180 { -
trunk/src/lib/shell/shell_input.h
r7458 r7729 69 69 Uint16 pressedKey; //!< the pressed key that will be repeated. 70 70 71 st d::list<std::string>history; //!< The history of given commands.71 static std::list<std::string> history; //!< The history of given commands. 72 72 std::list<std::string>::iterator historyIT; //!< The locator that tells us, where we are in the history. 73 73 unsigned int historyLength; //!< The maximum length of the InputHistory. -
trunk/src/lib/sound/ogg_player.cc
r7460 r7729 290 290 291 291 alSourceQueueBuffers(this->source, 2, this->buffers); 292 if (DEBUG >= 3)292 if (DEBUG_LEVEL >= 3) 293 293 SoundEngine::checkError("OggPlayer::playback()::alSourceQueueBuffers", __LINE__); 294 294 295 295 alSourcePlay(this->source); 296 if (DEBUG >= 3)296 if (DEBUG_LEVEL >= 3) 297 297 SoundEngine::checkError("OggPlayer::playback()::alSourcePlay", __LINE__); 298 298 SDL_mutexV(this->musicMutex); … … 329 329 330 330 alGetSourcei(source, AL_BUFFERS_PROCESSED, &processed); 331 if (DEBUG >= 3)331 if (DEBUG_LEVEL >= 3) 332 332 SoundEngine::checkError("OggPlayer::update()::alGetSourceI", __LINE__); 333 333 … … 337 337 338 338 alSourceUnqueueBuffers(source, 1, &buffer); 339 if (DEBUG >= 3)339 if (DEBUG_LEVEL >= 3) 340 340 SoundEngine::checkError("OggPlayer::update()::unqueue", __LINE__); 341 341 … … 343 343 344 344 alSourceQueueBuffers(source, 1, &buffer); 345 if (DEBUG >= 3)345 if (DEBUG_LEVEL >= 3) 346 346 SoundEngine::checkError("OggPlayer::update()::queue", __LINE__); 347 347 } … … 380 380 381 381 alBufferData(buffer, format, pcm, size, vorbisInfo->rate); 382 if (DEBUG >= 3)382 if (DEBUG_LEVEL >= 3) 383 383 SoundEngine::checkError("OggPlayer::stream()::BUFFER", __LINE__); 384 384 … … 448 448 449 449 ///////////////////// 450 // DEBUG FUNCTIONS //450 // DEBUG_LEVEL FUNCTIONS // 451 451 ///////////////////// 452 452 /** -
trunk/src/lib/sound/sound_engine.cc
r7460 r7729 223 223 int play = 0x000; 224 224 alGetSourcei(source->getID(), AL_SOURCE_STATE, &play); 225 if (DEBUG > 2)225 if (DEBUG_LEVEL > 2) 226 226 SoundEngine::checkError("SoundEngine::update() Play", __LINE__); 227 227 if(play == AL_PLAYING) … … 233 233 source->getNode()->getAbsCoor().y, 234 234 source->getNode()->getAbsCoor().z); 235 if (DEBUG > 2)235 if (DEBUG_LEVEL > 2) 236 236 SoundEngine::checkError("SoundEngine::update() Set Source Position", __LINE__); 237 237 alSource3f(source->getID(), AL_VELOCITY, … … 239 239 source->getNode()->getVelocity().y, 240 240 source->getNode()->getVelocity().z); 241 if (DEBUG > 2)241 if (DEBUG_LEVEL > 2) 242 242 SoundEngine::checkError("SoundEngine::update() Set Source Velocity", __LINE__); 243 243 } -
trunk/src/lib/sound/sound_source.cc
r7460 r7729 124 124 alSourcePlay(this->sourceID); 125 125 126 if (DEBUG >= 3)126 if (DEBUG_LEVEL >= 3) 127 127 SoundEngine::checkError("Play Source", __LINE__); 128 128 this->bPlay = true; … … 151 151 this->bPlay = true; 152 152 153 if (DEBUG >= 3)153 if (DEBUG_LEVEL >= 3) 154 154 SoundEngine::checkError("Play Source", __LINE__); 155 155 } … … 165 165 { 166 166 alSourceStop(this->sourceID); 167 if (DEBUG >= 3)167 if (DEBUG_LEVEL >= 3) 168 168 SoundEngine::checkError("StopSource", __LINE__); 169 169 alSourcei(this->sourceID, AL_BUFFER, 0); … … 181 181 { 182 182 alSourcePause(this->sourceID); 183 if (DEBUG >= 3)183 if (DEBUG_LEVEL >= 3) 184 184 SoundEngine::checkError("Pause Source", __LINE__); 185 185 } … … 193 193 alSourceRewind(this->sourceID); 194 194 195 if (DEBUG >= 3)195 if (DEBUG_LEVEL >= 3) 196 196 SoundEngine::checkError("Rewind Source", __LINE__); 197 197 } … … 208 208 alSourcef(this->sourceID, AL_ROLLOFF_FACTOR, rolloffFactor); 209 209 210 if (DEBUG >= 3)210 if (DEBUG_LEVEL >= 3) 211 211 SoundEngine::checkError("Set Source Rolloff-factor", __LINE__); 212 212 } -
trunk/src/orxonox.cc
r7721 r7729 507 507 if (showGui || (!File("./orxonox.conf").isFile() && 508 508 !File(DEFAULT_CONFIG_FILE).isFile()) 509 #if DEBUG <3 // developers do not need to see the GUI, when orxonox fails509 #if DEBUG_LEVEL <= 3 // developers do not need to see the GUI, when orxonox fails 510 510 || ResourceManager::isFile(DEFAULT_LOCK_FILE) 511 511 #endif -
trunk/src/world_entities/weapons/weapon.cc
r7460 r7729 396 396 bool Weapon::execute() 397 397 { 398 #if DEBUG > 4398 #if DEBUG_LEVEL > 4 399 399 PRINTF(4)("trying to execute action %s\n", actionToChar(this->requestedAction)); 400 400 this->debug();
Note: See TracChangeset
for help on using the changeset viewer.