more debug changes
authorPatrik Gornicz <Gornicz.P@gmail.com>
Sun, 16 Nov 2008 00:25:40 +0000 (19:25 -0500)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Sun, 16 Nov 2008 00:25:40 +0000 (19:25 -0500)
src/collisionManager.cpp
src/config/reader.cpp
src/debug.cpp
src/debug.h
src/entityManager.cpp
src/game.cpp
src/graphics/graphics.cpp
src/main.cpp

index 3327ebb..39f6396 100644 (file)
@@ -81,9 +81,7 @@ void applyCollisionAt(PhysicsEntity* p1, PhysicsEntity* p2)
         return;
     }
 
-#ifdef WARNINGS
-    cerr << "ENTITY TYPE NOT SUPPORTED BY applyCollisionAt()!!" << endl;
-#endif
+    DPF(0, "ENTITY TYPE NOT SUPPORTED BY applyCollisionAt()!!");
 }
 
 void applyCollisionAt(Ball* b1, Ball* b2)
index 4e27d93..f3dbdd1 100644 (file)
 #include "../debug.h"
 
 #include <iostream>
+using std::cerr;
+using std::cout;
+using std::endl;
+
 #include <fstream>
 #include <string>
 
index 8c13cbe..148db98 100644 (file)
 
 #include "debug.h"
 
-/// ***** Private Method Headers *****
-/// ***** Private Variables *****
+#include <iostream>
+using std::cerr;
+using std::cout;
+using std::endl;
 
 /// ***** Public Methods *****
 
 void DPF(int level, const char* pstr)
 {
-  cout << pstr << endl;
+  //cout << pstr << endl;
 }
 
 /// ***** Private Methods *****
index d1bc04d..1fb0131 100644 (file)
 #ifndef DEBUG_H
 #define DEBUG_H
 
-#include <iostream>
-using std::cerr;
-using std::cout;
-using std::endl;
-
+void DPF(int level, const char* pstr);
 
 // comment out when not debugging
 #define DEBUGGING
@@ -31,10 +27,7 @@ using std::endl;
 #define WARNINGS
 
 // comment out to prevent FPS and UPS printing
-#define FPSUPS
-
-
-void DPF(int level, const char* pstr);
+//#define FPSUPS
 
 
 #endif // DEBUG_H
index 0707dfe..bae30ae 100644 (file)
@@ -77,9 +77,7 @@ void manager::add(Entity* e)
         }
     }
 
-#ifdef WARNINGS
-    cerr << "ENTITY TYPE NOT SUPPORTED BY addEntity()!!" << endl;
-#endif
+    DPF(0, "ENTITY TYPE NOT SUPPORTED BY addEntity()!!");
 }
 void manager::remove(Entity* e)
 {
@@ -101,9 +99,7 @@ void manager::remove(Entity* e)
         }
     }
 
-#ifdef WARNINGS
-    cerr << "ENTITY TYPE NOT SUPPORTED BY deleteEntity()!!" << endl;
-#endif
+    DPF(0, "ENTITY TYPE NOT SUPPORTED BY deleteEntity()!!");
 }
 
 void manager::handleInput()
index 929f6b5..08f9530 100644 (file)
@@ -65,9 +65,7 @@ void game::init()
 
     effect::init();
 
-#ifdef DEBUGGING
-    cout << "World Created" << endl;
-#endif
+    DPF(0, "World Created");
 }
 
 void game::clean()
index d5148c1..17c2e38 100644 (file)
 
 #include "../mathw.h"
 
+#include <iostream>
+using std::cerr;
+using std::cout;
+using std::endl;
+
 
 /// ***** Private Method Headers *****
 
index 84964d2..a9984f6 100644 (file)
@@ -117,9 +117,7 @@ void init()
 
 void clean()
 {
-#ifdef DEBUGGING
-    cout << "Cleaning up" << endl;
-#endif
+    DPF(0, "Cleaning up");
 
     cfg::clean();