diff options
Diffstat (limited to 'source/cSimulatorManager.cpp')
-rw-r--r-- | source/cSimulatorManager.cpp | 134 |
1 files changed, 67 insertions, 67 deletions
diff --git a/source/cSimulatorManager.cpp b/source/cSimulatorManager.cpp index 0663e5fe6..0d7ef356d 100644 --- a/source/cSimulatorManager.cpp +++ b/source/cSimulatorManager.cpp @@ -1,67 +1,67 @@ -
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "cSimulatorManager.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_X, int a_Y, int a_Z)
-{
- for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
- {
- (*itr)->first->WakeUp(a_X, a_Y, a_Z);
- }
-}
-
-
-
-
-
-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);
-}
-
-
-
-
+ +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "cSimulatorManager.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_X, int a_Y, int a_Z) +{ + for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr ) + { + (*itr)->first->WakeUp(a_X, a_Y, a_Z); + } +} + + + + + +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); +} + + + + |