summaryrefslogtreecommitdiffstats
path: root/source/Simulator/SimulatorManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Simulator/SimulatorManager.cpp')
-rw-r--r--source/Simulator/SimulatorManager.cpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/source/Simulator/SimulatorManager.cpp b/source/Simulator/SimulatorManager.cpp
new file mode 100644
index 000000000..1ab7a51b5
--- /dev/null
+++ b/source/Simulator/SimulatorManager.cpp
@@ -0,0 +1,67 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "SimulatorManager.h"
+
+
+
+
+
+cSimulatorManager::cSimulatorManager()
+{
+
+}
+
+
+
+
+
+cSimulatorManager::~cSimulatorManager()
+{
+ for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
+ {
+ delete *itr;
+ } // for itr - m_Simulators[]
+}
+
+
+
+
+
+void cSimulatorManager::Simulate( float a_Dt )
+{
+ m_Ticks++;
+ for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
+ {
+ if(m_Ticks % (*itr)->second == 0)
+ (*itr)->first->Simulate(a_Dt);
+ }
+}
+
+
+
+
+
+void cSimulatorManager::WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ)
+{
+ for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
+ {
+ (*itr)->first->WakeUp(a_BlockX, a_BlockY, a_BlockZ);
+ }
+}
+
+
+
+
+
+void cSimulatorManager::RegisterSimulator(cSimulator *a_Simulator, short a_Rate)
+{
+ //TODO needs some checking
+ std::pair<cSimulator *, short> *Pair = new std::pair<cSimulator *, short>(a_Simulator, a_Rate);
+
+ m_Simulators.push_back(Pair);
+}
+
+
+
+