diff options
author | tycho <work.tycho@gmail.com> | 2015-05-30 01:18:52 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-30 01:19:20 +0200 |
commit | 4feccaa64af02a7061b60fb17dcedca1e3e3269e (patch) | |
tree | 68c976c8f8a5fe6dad4feb1bc41a0f8b075c7def /src/SpawnPrepare.h | |
parent | Fixed reversed logic in StringToDimension. (diff) | |
download | cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar.gz cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar.bz2 cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar.lz cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar.xz cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.tar.zst cuberite-4feccaa64af02a7061b60fb17dcedca1e3e3269e.zip |
Diffstat (limited to 'src/SpawnPrepare.h')
-rw-r--r-- | src/SpawnPrepare.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/SpawnPrepare.h b/src/SpawnPrepare.h new file mode 100644 index 000000000..bd5c0e0c6 --- /dev/null +++ b/src/SpawnPrepare.h @@ -0,0 +1,47 @@ + +#pragma once + +class cWorld; + + + +/** Generates and lights the spawn area of the world. Runs as a separate thread. */ +class cSpawnPrepare: + public cChunkCoordCallback +{ + +public: + static void PrepareChunks(cWorld & a_World, int a_SpawnChunkX, int a_SpawnChunkZ, int a_PrepareDistance); + +protected: + cWorld & m_World; + int m_SpawnChunkX; + int m_SpawnChunkZ; + int m_PrepareDistance; + + /** The index of the next chunk to be queued in the lighting thread. */ + int m_NextIdx; + + /** The maximum index of the prepared chunks. Queueing stops when m_NextIdx reaches this number. */ + int m_MaxIdx; + + /** Total number of chunks already finished preparing. Preparation finishes when this number reaches m_MaxIdx. */ + int m_NumPrepared; + + /** Event used to signal that the preparation is finished. */ + cEvent m_EvtFinished; + + /** The timestamp of the last progress report emitted. */ + std::chrono::steady_clock::time_point m_LastReportTime; + + /** Number of chunks prepared when the last progress report was emitted. */ + int m_LastReportChunkCount; + + cSpawnPrepare(cWorld & a_World, int a_SpawnChunkX, int a_SpawnChunkZ, int a_PrepareDistance, int a_FirstIdx); + + virtual void Call(int a_ChunkX, int a_ChunkZ) override; + + /** Decodes the index into chunk coords. Provides the specific chunk ordering. */ + void DecodeChunkCoords(int a_Idx, int & a_ChunkX, int & a_ChunkZ); +}; + |