created input, graphics and game namespaces
[physics.git] / src / main.cpp
index 0f186bd..ca17fdf 100644 (file)
 #include "graphics/graphics.h"
 #include "input/inputManager.h"
 
-
-
 /// ***** Private Method Headers *****
+
 void init();
 
 void sighandler( int sig );
 
 void run();
-void cleanUp();
+void clean();
 
 void blockUpdate();
 void updateFPSCounters();
 
-void input();
+void handleInput();
 void update(float);
 void draw();
 
-
-/// ***** MAIN Method *****
-int main()
-{
-    init();
-    run();
-    cleanUp();
-    return 0;
-}
-
-
 /// ***** Private Variables *****
 
 // variable used to determine if it is time to shutdown
@@ -64,31 +52,47 @@ int update_Count, draw_Count;
 long int last_Second;
 
 
-/// ***** Private Methods *****
+/// ***** MAIN Method *****
+int main()
+{
+    init();
+    run();
+    clean();
+    return 0;
+}
+
+/// ***** Initializers/Cleaners *****
+
 void init()
 {
     installSignal();
 
-    graphicsInit();
+    graphics::init();
+
+    game::init();
 
-    gameInit();
+    input::init();
 
 #ifdef DEBUGGING
     cout << "Initialization Complete" << endl;
 #endif
 }
 
-void cleanUp()
+void clean()
 {
 #ifdef DEBUGGING
     cout << "Cleaning up" << endl;
 #endif
 
-    gameClean();
+    input::clean();
 
-    graphicsCleanUp();
+    game::clean();
+
+    graphics::clean();
 }
 
+/// ***** Private Methods *****
+
 void run()
 {
     is_Running = true;
@@ -123,7 +127,7 @@ void blockUpdate()
         // run the updates
         for (int i = 1; i <= iupdate_sum; i++)
         {
-            input();
+            handleInput();
             update(time_step*i / 1000);
         }
         // remove the updates that where run from the sum
@@ -151,13 +155,13 @@ void updateFPSCounters()
     }
 }
 
-void input()
+void handleInput()
 {
-    inputUpdate();
+    input::update();
 
-    gameInput();
+    game::input();
 
-    if(wasReleased(SDLK_ESCAPE))
+    if(input::wasReleased(SDLK_ESCAPE))
         is_Running = false;
 }
 
@@ -165,14 +169,14 @@ void update(float time_step)
 {
     update_Count++;
 
-    gameUpdate(time_step);
+    game::update(time_step);
 }
 
 void draw()
 {
     draw_Count++;
 
-    gameDraw();
+    game::draw();
 
     SDL_GL_SwapBuffers();