gravity working through manager
[physics.git] / src / entityManager.cpp
index f189c7d..850f70f 100644 (file)
@@ -1,25 +1,25 @@
 #include "entityManager.h"
-#include "Entities/Entity.h"
-#include "Entities/Particle.h"
-#include "Entities/PhysicsEntity.h"
+#include "debug.h"
 
 #include <set>
-using std::set;
-
 #include <iostream>
 
+#include "Entities/Entity.h"
+#include "Entities/Particle.h"
+#include "Entities/PhysicsEntity.h"
+
 /// ***** Private Method Headers *****
 void updateParticles(float);
 void updatePhysics(float);
 
 /// ***** Private Variables *****
-typedef set<Particle*> setPart;
+typedef std::set<Particle*> setPart;
 setPart particles_To_Add;
 setPart active_Particles;
 setPart particles_To_Remove;
 bool clearParticles;
 
-typedef set<PhysicsEntity*> setPhys;
+typedef std::set<PhysicsEntity*> setPhys;
 setPhys physics_To_Add;
 setPhys active_Physics;
 setPhys physics_To_Remove;
@@ -27,76 +27,76 @@ bool clearPhysics;
 
 /// ***** Public Methods *****
 
-void entityMInit()
+void manager::init()
 {
 }
-void entityMClean()
+void manager::clean()
 {
 }
 
-void addEntity(Entity* e)
+void manager::add(Entity* e)
 {
     {
-    Particle* p = dynamic_cast<Particle*>(e);
-    if( p != 0 )
-    {
-        particles_To_Add.insert(p);
-        return;
-    }
+        Particle* p = dynamic_cast<Particle*>(e);
+        if( p != 0 )
+        {
+            particles_To_Add.insert(p);
+            return;
+        }
     }
 
     {
-    PhysicsEntity* p = dynamic_cast<PhysicsEntity*>(e);
-    if( p != 0 )
-    {
-        physics_To_Add.insert(p);
-        return;
-    }
+        PhysicsEntity* p = dynamic_cast<PhysicsEntity*>(e);
+        if( p != 0 )
+        {
+            physics_To_Add.insert(p);
+            return;
+        }
     }
 
     std::cerr << "ENTITY TYPE NOT SUPPORTED BY addEntity()!!";
     std::cerr << std::endl;
 }
-void deleteEntity(Entity* e)
+void manager::remove(Entity* e)
 {
     {
-    Particle* p = dynamic_cast<Particle*>(e);
-    if( p != 0 )
-    {
-        particles_To_Remove.insert(p);
-        return;
-    }
+        Particle* p = dynamic_cast<Particle*>(e);
+        if( p != 0 )
+        {
+            particles_To_Remove.insert(p);
+            return;
+        }
     }
 
     {
-    PhysicsEntity* p = dynamic_cast<PhysicsEntity*>(e);
-    if( p != 0 )
-    {
-        physics_To_Remove.insert(p);
-        return;
-    }
+        PhysicsEntity* p = dynamic_cast<PhysicsEntity*>(e);
+        if( p != 0 )
+        {
+            physics_To_Remove.insert(p);
+            return;
+        }
     }
 
     std::cerr << "ENTITY TYPE NOT SUPPORTED BY deleteEntity()!!";
     std::cerr << std::endl;
 }
 
-void clear()
+void manager::clear()
 {
     clearParticles = true;
     clearPhysics = true;
 }
 
-void handleInput()
+void manager::handleInput()
 {
     // TODO
 }
-void updateEntities(float time_step)
+void manager::update(float time_step)
 {
     updateParticles(time_step);
     updatePhysics(time_step);
 }
-void drawEntities()
+void manager::draw()
 {
     // update active Particle*s
     for( setPart::iterator it = active_Particles.begin();
@@ -113,6 +113,7 @@ void drawEntities()
     {
         (*it)->draw();
     }
+
 }
 
 /// ***** Private Methods *****