2012-02-08 07:36:54 -05:00
2011-10-03 14:41:19 -04:00
# pragma once
2012-02-13 16:47:03 -05:00
# include "cEntity.h"
2012-03-14 16:56:09 -04:00
# include "ChunkDef.h"
2012-02-13 16:47:03 -05:00
2011-12-31 16:08:23 -05:00
# define C_CHUNK_USE_INLINE 1
// Do not touch
# if C_CHUNK_USE_INLINE
2012-02-13 16:47:03 -05:00
# define __C_CHUNK_INLINE__ inline
2011-12-31 16:08:23 -05:00
# else
2012-02-13 16:47:03 -05:00
# define __C_CHUNK_INLINE__
2011-12-31 16:08:23 -05:00
# endif
2012-02-13 16:47:03 -05:00
2011-10-03 14:41:19 -04:00
namespace Json
{
class Value ;
} ;
2012-02-08 07:36:54 -05:00
2011-10-30 20:52:20 -04:00
class cWorld ;
2011-10-03 14:41:19 -04:00
class cFurnaceEntity ;
class cPacket ;
class cClientHandle ;
class cServer ;
2012-02-08 07:36:54 -05:00
class MTRand ;
2012-02-13 16:47:03 -05:00
class cPlayer ;
2012-02-21 11:27:30 -05:00
class cChunkMap ;
2012-02-13 16:47:03 -05:00
typedef std : : list < cClientHandle * > cClientHandleList ;
2012-02-18 15:10:57 -05:00
2012-02-23 16:21:37 -05:00
// This class is not to be used directly
// Instead, call actions on cChunkMap (such as cChunkMap::SetBlock() etc.)
2012-03-14 16:56:09 -04:00
class cChunk :
public cChunkDef // The inheritance is "misused" here only to inherit the functions and constants defined in cChunkDef
2011-10-03 14:41:19 -04:00
{
public :
2012-04-10 07:22:11 -04:00
cChunk ( int a_ChunkX , int a_ChunkY , int a_ChunkZ , cChunkMap * a_ChunkMap , cWorld * a_World ) ;
2011-10-03 14:41:19 -04:00
~ cChunk ( ) ;
2012-05-25 03:18:52 -04:00
bool IsValid ( void ) const { return m_IsValid ; } // Returns true if the chunk block data is valid (loaded / generated)
2012-04-10 07:22:11 -04:00
void SetValid ( void ) ; // Also wakes up any calls to cChunkMap::GetHeight()
void MarkRegenerating ( void ) ; // Marks all clients attached to this chunk as wanting this chunk
2012-02-16 08:42:35 -05:00
bool IsDirty ( void ) const { return m_IsDirty ; } // Returns true if the chunk has changed since it was last saved
2012-02-28 07:11:14 -05:00
bool HasLoadFailed ( void ) const { return m_HasLoadFailed ; } // Returns true if the chunk failed to load and hasn't been generated since then
2012-02-13 16:47:03 -05:00
bool CanUnload ( void ) ;
2012-02-16 08:42:35 -05:00
2012-05-25 03:18:52 -04:00
bool IsLightValid ( void ) const { return m_IsLightValid ; }
2012-02-16 08:42:35 -05:00
/*
To save a chunk , the WSSchema must :
1. Mark the chunk as being saved ( MarkSaving ( ) )
2. Get the chunk ' s data using GetAllData ( )
3. Mark the chunk as saved ( MarkSaved ( ) )
If anywhere inside this sequence another thread mmodifies the chunk , the chunk will not get marked as saved in MarkSaved ( )
*/
void MarkSaving ( void ) ; // Marks the chunk as being saved.
void MarkSaved ( void ) ; // Marks the chunk as saved, if it didn't change from the last call to MarkSaving()
void MarkLoaded ( void ) ; // Marks the chunk as freshly loaded. Fails if the chunk is already valid
2012-02-28 07:11:14 -05:00
void MarkLoadFailed ( void ) ; // Marks the chunk as failed to load. Ignored is the chunk is already valid
2012-02-16 08:42:35 -05:00
/// Gets all chunk data, calls the a_Callback's methods for each data type
2012-03-09 08:42:28 -05:00
void GetAllData ( cChunkDataCallback & a_Callback ) ;
2012-02-16 08:42:35 -05:00
/// Sets all chunk data
2012-03-14 16:56:09 -04:00
void SetAllData (
2012-05-25 03:18:52 -04:00
const BLOCKTYPE * a_BlockTypes ,
const NIBBLETYPE * a_BlockMeta ,
const NIBBLETYPE * a_BlockLight ,
const NIBBLETYPE * a_BlockSkyLight ,
2012-03-14 16:56:09 -04:00
const cChunkDef : : HeightMap * a_HeightMap ,
2012-05-25 03:18:52 -04:00
const cChunkDef : : BiomeMap & a_BiomeMap ,
2012-03-14 16:56:09 -04:00
cEntityList & a_Entities ,
cBlockEntityList & a_BlockEntities
) ;
2012-05-25 03:18:52 -04:00
void SetLight (
const cChunkDef : : BlockNibbles & a_BlockLight ,
const cChunkDef : : BlockNibbles & a_SkyLight
) ;
2012-03-14 16:56:09 -04:00
/// Copies m_BlockData into a_BlockTypes, only the block types
void GetBlockTypes ( BLOCKTYPE * a_BlockTypes ) ;
/// Copies entire block data into a_BlockData, the entire 4 arrays (Type, Meta, Light, SkyLight)
void GetBlockData ( BLOCKTYPE * a_BlockData ) ;
2012-02-18 14:18:16 -05:00
2012-02-16 08:42:35 -05:00
/// Returns true if there is a block entity at the coords specified
bool HasBlockEntityAt ( int a_BlockX , int a_BlockY , int a_BlockZ ) ;
2012-02-20 11:39:00 -05:00
2012-02-26 11:15:09 -05:00
/// Sets or resets the internal flag that prevents chunk from being unloaded
void Stay ( bool a_Stay = true ) ;
2012-02-08 07:36:54 -05:00
void Tick ( float a_Dt , MTRand & a_TickRandom ) ;
2011-10-03 14:41:19 -04:00
2011-10-30 20:52:20 -04:00
int GetPosX ( ) { return m_PosX ; }
int GetPosY ( ) { return m_PosY ; }
int GetPosZ ( ) { return m_PosZ ; }
2012-02-16 08:42:35 -05:00
cWorld * GetWorld ( ) { return m_World ; }
2011-10-03 14:41:19 -04:00
2012-03-05 11:41:57 -05:00
// OBSOLETE void SendTo( cClientHandle * a_Client );
2011-10-03 14:41:19 -04:00
2012-05-25 03:18:52 -04:00
void SetBlock ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE a_BlockType , NIBBLETYPE a_BlockMeta ) ;
// SetBlock() does a lot of work (heightmap, tickblocks, blockentities) so a BlockIdx version doesn't make sense
void SetBlock ( const Vector3i & a_RelBlockPos , BLOCKTYPE a_BlockType , NIBBLETYPE a_BlockMeta ) { SetBlock ( a_RelBlockPos . x , a_RelBlockPos . y , a_RelBlockPos . z , a_BlockType , a_BlockMeta ) ; }
2012-03-14 16:56:09 -04:00
void FastSetBlock ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE a_BlockType , BLOCKTYPE a_BlockMeta ) ; // Doesn't force block updates on neighbors, use for simple changes such as grass growing etc.
BLOCKTYPE GetBlock ( int a_X , int a_Y , int a_Z ) ;
BLOCKTYPE GetBlock ( int a_BlockIdx ) ;
2012-06-07 07:57:51 -04:00
void GetBlockTypeMeta ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE & a_BlockType , NIBBLETYPE & a_BlockMeta ) ;
2012-02-13 16:47:03 -05:00
2012-05-25 03:18:52 -04:00
EMCSBiome GetBiomeAt ( int a_RelX , int a_RelZ ) const { return cChunkDef : : GetBiome ( m_BiomeMap , a_RelX , a_RelZ ) ; }
2012-02-13 16:47:03 -05:00
void CollectPickupsByPlayer ( cPlayer * a_Player ) ;
void UpdateSign ( int a_PosX , int a_PosY , int a_PosZ , const AString & a_Line1 , const AString & a_Line2 , const AString & a_Line3 , const AString & a_Line4 ) ; // Also sends update packets to all clients in the chunk
2011-10-03 14:41:19 -04:00
2012-02-18 12:53:22 -05:00
int GetHeight ( int a_X , int a_Z ) ;
2011-10-03 14:41:19 -04:00
void SendBlockTo ( int a_X , int a_Y , int a_Z , cClientHandle * a_Client ) ;
2012-02-21 10:18:02 -05:00
/// Adds a client to the chunk; returns true if added, false if already there
bool AddClient ( cClientHandle * a_Client ) ;
2012-02-16 12:45:26 -05:00
void RemoveClient ( cClientHandle * a_Client ) ;
bool HasClient ( cClientHandle * a_Client ) ;
bool HasAnyClients ( void ) ; // Returns true if theres any client in the chunk; false otherwise
2011-10-03 14:41:19 -04:00
2012-02-20 11:39:00 -05:00
void AddEntity ( cEntity * a_Entity ) ;
2012-02-13 16:47:03 -05:00
void RemoveEntity ( cEntity * a_Entity ) ;
2012-02-15 09:22:44 -05:00
void UseBlockEntity ( cPlayer * a_Player , int a_X , int a_Y , int a_Z ) ; // [x, y, z] in world block coords
2011-10-03 14:41:19 -04:00
2012-02-13 16:47:03 -05:00
void CalculateLighting ( ) ; // Recalculate right now
void CalculateHeightmap ( ) ;
2011-10-03 14:41:19 -04:00
// Broadcasts to all clients that have loaded this chunk
2012-02-13 16:47:03 -05:00
void Broadcast ( const cPacket & a_Packet , cClientHandle * a_Exclude = NULL ) { Broadcast ( & a_Packet , a_Exclude ) ; }
void Broadcast ( const cPacket * a_Packet , cClientHandle * a_Exclude = NULL ) ;
2011-10-03 14:41:19 -04:00
2011-12-22 16:36:24 -05:00
void PositionToWorldPosition ( int a_ChunkX , int a_ChunkY , int a_ChunkZ , int & a_X , int & a_Y , int & a_Z ) ;
2012-03-09 19:25:05 -05:00
Vector3i PositionToWorldPosition ( const Vector3i & a_InChunkPos ) { return PositionToWorldPosition ( a_InChunkPos . x , a_InChunkPos . y , a_InChunkPos . z ) ; }
Vector3i PositionToWorldPosition ( int a_ChunkX , int a_ChunkY , int a_ChunkZ ) ;
2011-12-22 16:36:24 -05:00
2012-02-16 08:42:35 -05:00
inline void MarkDirty ( void )
{
m_IsDirty = true ;
m_IsSaving = false ;
}
2012-03-14 16:56:09 -04:00
2012-05-30 17:29:51 -04:00
/// Sets the blockticking to start at the specified block. Only one blocktick may be set, second call overwrites the first call
inline void SetNextBlockTick ( int a_RelX , int a_RelY , int a_RelZ )
{
m_BlockTickX = a_RelX ;
m_BlockTickY = a_RelY ;
m_BlockTickZ = a_RelZ ;
}
2012-05-29 10:59:43 -04:00
inline NIBBLETYPE GetMeta ( int a_RelX , int a_RelY , int a_RelZ ) { return cChunkDef : : GetNibble ( m_BlockMeta , a_RelX , a_RelY , a_RelZ ) ; }
inline NIBBLETYPE GetMeta ( int a_BlockIdx ) { return cChunkDef : : GetNibble ( m_BlockMeta , a_BlockIdx ) ; }
inline void SetMeta ( int a_RelX , int a_RelY , int a_RelZ , NIBBLETYPE a_Meta ) { cChunkDef : : SetNibble ( m_BlockMeta , a_RelX , a_RelY , a_RelZ , a_Meta ) ; }
2011-10-03 14:41:19 -04:00
2012-05-25 03:18:52 -04:00
inline NIBBLETYPE GetLight ( int a_RelX , int a_RelY , int a_RelZ ) { return cChunkDef : : GetNibble ( m_BlockLight , a_RelX , a_RelY , a_RelZ ) ; }
inline NIBBLETYPE GetSkyLight ( int a_RelX , int a_RelY , int a_RelZ ) { return cChunkDef : : GetNibble ( m_BlockSkyLight , a_RelX , a_RelY , a_RelZ ) ; }
2012-03-16 11:52:26 -04:00
2011-10-03 14:41:19 -04:00
private :
2012-02-20 11:39:00 -05:00
friend class cChunkMap ;
2012-05-25 03:18:52 -04:00
bool m_IsValid ; // True if the chunk is loaded / generated
bool m_IsLightValid ; // True if the blocklight and skylight are calculated
bool m_IsDirty ; // True if the chunk has changed since it was last saved
bool m_IsSaving ; // True if the chunk is being saved
2012-02-28 07:11:14 -05:00
bool m_HasLoadFailed ; // True if chunk failed to load and hasn't been generated yet since then
2012-02-13 16:47:03 -05:00
2012-03-14 16:56:09 -04:00
cCriticalSection m_CSBlockLists ;
std : : deque < unsigned int > m_ToTickBlocks ;
std : : vector < unsigned int > m_PendingSendBlocks ;
2012-02-13 16:47:03 -05:00
2012-02-23 16:21:37 -05:00
// A critical section is not needed, because all chunk access is protected by its parent ChunkMap's csLayers
cClientHandleList m_LoadedByClient ;
cClientHandleList m_UnloadQuery ;
2012-02-13 16:47:03 -05:00
cEntityList m_Entities ;
cBlockEntityList m_BlockEntities ;
2012-02-26 11:15:09 -05:00
/// Number of times the chunk has been requested to stay (by various cChunkStay objects); if zero, the chunk can be unloaded
int m_StayCount ;
2011-10-03 14:41:19 -04:00
int m_PosX , m_PosY , m_PosZ ;
2012-02-21 11:27:30 -05:00
cWorld * m_World ;
cChunkMap * m_ChunkMap ;
2011-10-03 14:41:19 -04:00
2012-03-14 16:56:09 -04:00
// TODO: Make these pointers and don't allocate what isn't needed
2012-05-25 03:18:52 -04:00
BLOCKTYPE m_BlockTypes [ cChunkDef : : NumBlocks ] ;
NIBBLETYPE m_BlockMeta [ cChunkDef : : NumBlocks / 2 ] ;
NIBBLETYPE m_BlockLight [ cChunkDef : : NumBlocks / 2 ] ;
NIBBLETYPE m_BlockSkyLight [ cChunkDef : : NumBlocks / 2 ] ;
2011-10-03 14:41:19 -04:00
2012-03-14 16:56:09 -04:00
cChunkDef : : HeightMap m_HeightMap ;
2012-05-25 03:18:52 -04:00
cChunkDef : : BiomeMap m_BiomeMap ;
2011-10-03 14:41:19 -04:00
2012-05-30 15:35:57 -04:00
int m_BlockTickX , m_BlockTickY , m_BlockTickZ ;
2011-10-03 14:41:19 -04:00
2012-02-13 16:47:03 -05:00
void RemoveBlockEntity ( cBlockEntity * a_BlockEntity ) ;
void AddBlockEntity ( cBlockEntity * a_BlockEntity ) ;
cBlockEntity * GetBlockEntity ( int a_X , int a_Y , int a_Z ) ;
2012-03-09 19:25:05 -05:00
cBlockEntity * GetBlockEntity ( const Vector3i & a_BlockPos ) { return GetBlockEntity ( a_BlockPos . x , a_BlockPos . y , a_BlockPos . z ) ; }
2012-02-13 16:47:03 -05:00
2012-05-25 03:18:52 -04:00
void SpreadLightOfBlock ( NIBBLETYPE * a_LightBuffer , int a_X , int a_Y , int a_Z , char a_Falloff ) ;
2012-02-13 16:47:03 -05:00
2012-02-16 08:42:35 -05:00
void CreateBlockEntities ( void ) ;
2012-02-20 11:39:00 -05:00
// Makes a copy of the list
cClientHandleList GetAllClients ( void ) const { return m_LoadedByClient ; }
2012-03-14 16:56:09 -04:00
2012-06-07 15:06:27 -04:00
/// Checks the block scheduled for checking in m_ToTickBlocks[]
void CheckBlocks ( void ) ;
void TickBlocks ( MTRand & a_TickRandom ) ;
2012-06-06 16:54:58 -04:00
void TickGrass ( int a_RelX , int a_RelY , int a_RelZ , MTRand & a_TickRandom ) ;
2012-05-29 10:59:43 -04:00
void TickMelonPumpkin ( int a_RelX , int a_RelY , int a_RelZ , int a_BlockIdx , BLOCKTYPE a_BlockType , MTRand & a_TickRandom ) ;
2012-05-30 11:40:53 -04:00
void TickFarmland ( int a_RelX , int a_RelY , int a_RelZ ) ;
2012-05-29 10:59:43 -04:00
2012-06-07 17:07:21 -04:00
/// Grows a melon or a pumpkin next to the block specified (assumed to be the stem)
void GrowMelonPumpkin ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE a_BlockType , MTRand & a_Random ) ;
2012-05-29 10:59:43 -04:00
/// Same as GetBlock(), but relative coords needn't be in this chunk (uses m_ChunkMap in such a case); returns true on success; only usable in Tick()
bool UnboundedRelGetBlock ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE & a_BlockType , NIBBLETYPE & a_BlockMeta ) ;
/// Same as SetBlock(), but relative coords needn't be in this chunk (uses m_ChunkMap in such a case); returns true on success; only usable in Tick()
bool UnboundedRelSetBlock ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE a_BlockType , NIBBLETYPE a_BlockMeta ) ;
/// Same as FastSetBlock(), but relative coords needn't be in this chunk (uses m_ChunkMap in such a case); returns true on success; only usable in Tick()
bool UnboundedRelFastSetBlock ( int a_RelX , int a_RelY , int a_RelZ , BLOCKTYPE a_BlockType , NIBBLETYPE a_BlockMeta ) ;
2011-12-31 16:08:23 -05:00
} ;
2012-02-23 16:02:38 -05:00
typedef cChunk * cChunkPtr ;
2012-02-13 16:47:03 -05:00
typedef std : : list < cChunkPtr > cChunkPtrList ;
2011-12-31 16:08:23 -05:00
# if C_CHUNK_USE_INLINE
2012-02-13 16:47:03 -05:00
# include "cChunk.inl.h"
# endif