619ec8b247
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1228 0a769ca7-a7f5-676a-18bf-c427514a06d6
81 lines
1.3 KiB
C++
81 lines
1.3 KiB
C++
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
#include "SimulatorManager.h"
|
|
#include "../World.h"
|
|
|
|
|
|
|
|
|
|
|
|
cSimulatorManager::cSimulatorManager(cWorld & a_World) :
|
|
m_World(a_World),
|
|
m_Ticks(0)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cSimulatorManager::~cSimulatorManager()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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::SimulateChunk(float a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk)
|
|
{
|
|
// m_Ticks has already been increased in Simulate()
|
|
for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
|
|
{
|
|
if ((m_Ticks % itr->second) == 0)
|
|
{
|
|
itr->first->SimulateChunk(a_Dt, a_ChunkX, a_ChunkZ, a_Chunk);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cSimulatorManager::WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk)
|
|
{
|
|
for (cSimulators::iterator itr = m_Simulators.begin(); itr != m_Simulators.end(); ++itr )
|
|
{
|
|
itr->first->WakeUp(a_BlockX, a_BlockY, a_BlockZ, a_Chunk);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cSimulatorManager::RegisterSimulator(cSimulator * a_Simulator, int a_Rate)
|
|
{
|
|
m_Simulators.push_back(std::make_pair(a_Simulator, a_Rate));
|
|
}
|
|
|
|
|
|
|
|
|