cleaned up the library
authorPatrik Gornicz <Gornicz.P@gmail.com>
Sat, 16 May 2009 17:54:34 +0000 (13:54 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Sat, 16 May 2009 18:02:38 +0000 (14:02 -0400)
inc/Autolock.h
inc/Mutex.h
inc/Vector2.h
inc/debug.h
inc/mathw.h
src/Vector2.cpp
src/debug.cpp
src/locks/Mutex.cpp
src/mathw.cpp

index f845f1e..c18b590 100644 (file)
@@ -19,6 +19,7 @@
 #ifndef AUTOLOCK_H
 #define AUTOLOCK_H
 
+
 namespace pg
 {
 
@@ -45,6 +46,5 @@ namespace pg
 
 } // namespace pg
 
-/// ***** Header Methods *****
 
 #endif // AUTOLOCK_H
index 4ba02e5..aa17d98 100644 (file)
@@ -21,6 +21,7 @@
 
 class SDL_mutex;
 
+
 namespace pg
 {
 
@@ -33,7 +34,7 @@ namespace pg
         ~Mutex();
 
         void init();
-        void clean();
+        void deinit();
 
         bool IsValid();
 
@@ -52,4 +53,5 @@ namespace pg
 
 } // namespace pg
 
+
 #endif // MUTEX_H
index 96cfc28..fefd0fe 100644 (file)
@@ -19,9 +19,9 @@
 #define VECTOR2_H
 
 #include <string>
-
 using std::string;
 
+
 namespace pg
 {
 
@@ -71,4 +71,5 @@ namespace pg
 
 } // namespace pg
 
+
 #endif // VECTOR2_H
index f6ea414..676cb6b 100644 (file)
 #ifndef DEBUG_H
 #define DEBUG_H
 
-#include <iostream>
-using std::cout;
-using std::cerr;
-using std::endl;
 
 namespace pg
 {
 
-    void DPF(int level, const char* pstr);
-
     namespace debug
     {
         void init();
-        void clean();
+        void deinit();
     }
 
-    void DASSERT(bool fBreak);
+    void DASSERT(bool fAssert);
+    void DPF(int iLevel, const char* pstr);
 
 } // namespace pg
 
-// comment out when not debugging
-#define DEBUGGING
-
 
 #endif // DEBUG_H
index 3034f35..9adddfb 100644 (file)
 #ifndef MATHW_H
 #define MATHW_H
 
-#include <math.h>
-#include "Vector2.h"
-
 
 namespace pg
 {
 
+    class Vector2;
+
     /// ***** Public Variables *****
 
     static const float PI = 3.1415926535897;
index 5f2fcd8..67ad8fc 100644 (file)
@@ -18,6 +18,8 @@
 #include "Vector2.h"
 #include "debug.h"
 
+#include <math.h>
+
 #include "mathw.h"
 
 using namespace pg;
index 603bbe2..f96795c 100644 (file)
@@ -29,11 +29,12 @@ using std::endl;
 
 using namespace pg;
 
+
 /// ***** Public Methods *****
 
 Mutex muDPF;
 
-void pg::DPF(int level, const char* pstr)
+void pg::DPF(int iLevel, const char* pstr)
 {
     Autolock lock(muDPF);
 
@@ -45,14 +46,14 @@ void pg::debug::init()
     muDPF.init();
 }
 
-void pg::debug::clean()
+void pg::debug::deinit()
 {
-    muDPF.clean();
+    muDPF.deinit();
 }
 
-void pg::DASSERT(bool fBreak)
+void pg::DASSERT(bool fAssert)
 {
-    assert(fBreak);
+    assert(fAssert);
 }
 
 /// ***** Private Methods *****
index 2668669..c419b86 100644 (file)
@@ -37,7 +37,7 @@ void Mutex::init()
 {
     m_pSDL_mutex = SDL_CreateMutex();
 }
-void Mutex::clean()
+void Mutex::deinit()
 {
     SDL_DestroyMutex(m_pSDL_mutex);
     m_pSDL_mutex = NULL;
index e83af5a..60e70d3 100644 (file)
  */
 
 #include "mathw.h"
+#include "debug.h"
+
+#include <math.h>
+
+#include "Vector2.h"
 
 using namespace pg;