2588f5a605
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1227 0a769ca7-a7f5-676a-18bf-c427514a06d6
47 lines
540 B
C++
47 lines
540 B
C++
|
|
// cSimulatorManager.h
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Simulator.h"
|
|
|
|
|
|
|
|
|
|
|
|
// fwd: Chunk.h
|
|
class cChunk;
|
|
|
|
|
|
|
|
|
|
|
|
class cSimulatorManager
|
|
{
|
|
public:
|
|
cSimulatorManager(void);
|
|
~cSimulatorManager();
|
|
|
|
void Simulate(float a_Dt);
|
|
void WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk);
|
|
|
|
void RegisterSimulator(cSimulator * a_Simulator, int a_Rate); // Takes ownership of the simulator object!
|
|
|
|
protected:
|
|
|
|
typedef std::vector <std::pair<cSimulator *, int> > cSimulators;
|
|
|
|
cSimulators m_Simulators;
|
|
long long m_Ticks;
|
|
};
|
|
|
|
|
|
|
|
|