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"
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
2012-02-17 12:56:25 -05:00
/** This is really only a placeholder to be used in places where we need to "make up" a chunk's Y coord.
It will help us when the new chunk format comes out and we need to patch everything up for compatibility .
*/
# define ZERO_CHUNK_Y 0
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 cBlockEntity ;
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 ;
typedef std : : list < cBlockEntity * > cBlockEntityList ;
2012-02-08 07:36:54 -05:00
2012-02-21 11:27:30 -05:00
2012-02-16 08:42:35 -05:00
/** Interface class used for getting data out of a chunk using the GetAllData() function.
Implementation must use the pointers immediately and NOT store any of them for later use
*/
class cChunkDataCallback
{
public :
/// Called once to export blockdata
virtual void BlockData ( const char * a_Data ) = 0 ;
/// Called for each entity in the chunk
virtual void Entity ( cEntity * a_Entity ) = 0 ;
/// Called for each blockentity in the chunk
virtual void BlockEntity ( cBlockEntity * a_Entity ) = 0 ;
} ;
2012-02-08 07:36:54 -05:00
2012-02-20 11:39:00 -05:00
/** Interface class used for comparing clients of two chunks.
Used primarily for entity moving while both chunks are locked .
*/
class cClientDiffCallback
{
public :
/// Called for clients that are in Chunk1 and not in Chunk2,
virtual void Removed ( cClientHandle * a_Client ) = 0 ;
/// Called for clients that are in Chunk2 and not in Chunk1.
virtual void Added ( cClientHandle * a_Client ) = 0 ;
} ;
2012-02-18 15:10:57 -05:00
struct sSetBlock
{
int x , y , z ;
int ChunkX , ChunkZ ;
char BlockType , BlockMeta ;
sSetBlock ( int a_X , int a_Y , int a_Z , char a_BlockType , char a_BlockMeta ) ; // absolute block position
} ;
typedef std : : list < sSetBlock > sSetBlockList ;
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.)
2011-10-03 14:41:19 -04:00
class cChunk
{
public :
2012-02-18 14:18:16 -05:00
static const int c_NumBlocks = 16 * 128 * 16 ;
static const int c_BlockDataSize = c_NumBlocks * 2 + ( c_NumBlocks / 2 ) ; // 2.5 * numblocks
2012-02-21 11:27:30 -05:00
cChunk ( int a_X , int a_Y , int a_Z , cChunkMap * a_ChunkMap , cWorld * a_World ) ;
2011-10-03 14:41:19 -04:00
~ cChunk ( ) ;
2012-02-13 16:47:03 -05:00
bool IsValid ( void ) const { return m_IsValid ; } // Returns true if the chunk is valid (loaded / generated)
void SetValid ( bool a_SendToClients = true ) ; // Also wakes up all clients attached to this chunk to let them finish logging in
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-13 16:47:03 -05:00
bool CanUnload ( void ) ;
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
/// Gets all chunk data, calls the a_Callback's methods for each data type
void GetAllData ( cChunkDataCallback * a_Callback ) ;
/// Sets all chunk data
void SetAllData ( const char * a_BlockData , cEntityList & a_Entities , cBlockEntityList & a_BlockEntities ) ;
2012-02-18 14:18:16 -05:00
/// Copies m_BlockData into a_Blocks, only the block types
void GetBlocks ( char a_Blocks [ cChunk : : c_NumBlocks ] ) ;
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-02-21 10:18:02 -05:00
void SendTo ( cClientHandle * a_Client ) ;
2011-10-03 14:41:19 -04:00
void SetBlock ( int a_X , int a_Y , int a_Z , char a_BlockType , char a_BlockMeta ) ;
2012-02-18 15:10:57 -05:00
void FastSetBlock ( int a_RelX , int a_RelY , int a_RelZ , char a_BlockType , char a_BlockMeta ) ; // Doesn't force block updates on neighbors, use for simple changes such as grass growing etc.
2011-10-03 14:41:19 -04:00
char GetBlock ( int a_X , int a_Y , int a_Z ) ;
char GetBlock ( int a_BlockIdx ) ;
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
inline void RecalculateLighting ( ) { m_bCalculateLighting = true ; } // Recalculate lighting next tick
void SpreadLight ( char * a_LightBuffer ) ;
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
2012-02-14 16:09:14 -05:00
// Loaded(blockdata, lightdata, blockentities, entities),
// Generated(blockdata, lightdata, blockentities, entities),
// GetBlockData(blockdatadest) etc.
2011-10-03 14:41:19 -04:00
char * pGetBlockData ( ) { return m_BlockData ; }
char * pGetType ( ) { return m_BlockType ; }
char * pGetMeta ( ) { return m_BlockMeta ; }
char * pGetLight ( ) { return m_BlockLight ; }
char * pGetSkyLight ( ) { return m_BlockSkyLight ; }
2012-02-13 16:47:03 -05:00
void CopyBlockDataFrom ( const char * a_NewBlockData ) ; // Copies all blockdata, recalculates heightmap (used by chunk loaders)
2012-02-14 16:09:14 -05:00
2011-10-03 14:41:19 -04:00
char GetLight ( char * a_Buffer , int a_BlockIdx ) ;
char GetLight ( char * a_Buffer , int x , int y , int z ) ;
void SetLight ( char * a_Buffer , int a_BlockIdx , char a_Light ) ;
void SetLight ( char * a_Buffer , int x , int y , int z , char light ) ;
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 ) ;
2011-12-26 04:09:47 -05:00
inline static unsigned int MakeIndex ( int x , int y , int z )
2011-12-25 21:39:43 -05:00
{
if ( x < 16 & & x > - 1 & & y < 128 & & y > - 1 & & z < 16 & & z > - 1 )
2012-02-14 16:09:14 -05:00
{
2011-12-25 21:39:43 -05:00
return y + ( z * 128 ) + ( x * 128 * 16 ) ;
2012-02-14 16:09:14 -05:00
}
2011-12-25 21:39:43 -05:00
return 0 ;
}
2012-02-16 08:42:35 -05:00
inline void MarkDirty ( void )
{
m_IsDirty = true ;
m_IsSaving = false ;
}
2011-10-03 14:41:19 -04:00
private :
2012-02-20 11:39:00 -05:00
friend class cChunkMap ;
2012-02-13 16:47:03 -05:00
bool m_IsValid ; // True if the chunk is loaded / generated
2012-02-16 08:42:35 -05:00
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-13 16:47:03 -05:00
cCriticalSection m_CSBlockLists ;
std : : map < unsigned int , int > m_ToTickBlocks ;
std : : vector < unsigned int > m_PendingSendBlocks ;
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
bool m_bCalculateLighting ;
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
char m_BlockData [ c_BlockDataSize ] ; // Chunk data ready to be compressed and sent
char * m_BlockType ; // Pointers to an element in m_BlockData
char * m_BlockMeta ; // += NumBlocks
char * m_BlockLight ; // += NumBlocks/2
char * m_BlockSkyLight ; // += NumBlocks/2
2012-02-13 16:47:03 -05:00
unsigned char m_HeightMap [ 16 * 16 ] ;
2011-10-03 14:41:19 -04:00
unsigned int m_BlockTickNum ;
unsigned int m_BlockTickX , m_BlockTickY , m_BlockTickZ ;
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 ) ;
void SpreadLightOfBlock ( char * a_LightBuffer , int a_X , int a_Y , int a_Z , char a_Falloff ) ;
void SpreadLightOfBlockX ( char * a_LightBuffer , int a_X , int a_Y , int a_Z ) ;
void SpreadLightOfBlockY ( char * a_LightBuffer , int a_X , int a_Y , int a_Z ) ;
void SpreadLightOfBlockZ ( char * a_LightBuffer , int a_X , int a_Y , int a_Z ) ;
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 ; }
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 ;
class cChunkCoords
{
public :
int m_ChunkX ;
2012-02-17 12:56:25 -05:00
int m_ChunkY ;
2012-02-13 16:47:03 -05:00
int m_ChunkZ ;
2012-02-17 12:56:25 -05:00
cChunkCoords ( int a_ChunkX , int a_ChunkY , int a_ChunkZ ) : m_ChunkX ( a_ChunkX ) , m_ChunkY ( a_ChunkY ) , m_ChunkZ ( a_ChunkZ ) { }
2012-02-13 16:47:03 -05:00
bool operator = = ( const cChunkCoords & a_Other )
{
2012-02-17 12:56:25 -05:00
return ( ( m_ChunkX = = a_Other . m_ChunkX ) & & ( m_ChunkY = = a_Other . m_ChunkY ) & & ( m_ChunkZ = = a_Other . m_ChunkZ ) ) ;
2012-02-13 16:47:03 -05:00
}
} ;
typedef std : : list < cChunkCoords > cChunkCoordsList ;
2012-02-08 14:49:57 -05:00
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