2012-02-16 08:42:35 -05:00
|
|
|
|
2011-12-31 16:08:23 -05:00
|
|
|
#ifndef __C_CHUNK_INL_H__
|
|
|
|
#define __C_CHUNK_INL_H__
|
|
|
|
|
|
|
|
#ifndef MAX
|
|
|
|
# define MAX(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#endif
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-31 16:08:23 -05:00
|
|
|
__C_CHUNK_INLINE__
|
2012-05-25 03:18:52 -04:00
|
|
|
void cChunk::SpreadLightOfBlock(NIBBLETYPE * a_LightBuffer, int a_X, int a_Y, int a_Z, char a_Falloff)
|
2011-12-31 16:08:23 -05:00
|
|
|
{
|
2012-03-14 16:56:09 -04:00
|
|
|
unsigned char CurrentLight = cChunkDef::GetNibble( a_LightBuffer, a_X, a_Y, a_Z );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X-1, a_Y, a_Z, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X-1, a_Y, a_Z ), MAX(0,CurrentLight-a_Falloff) ) );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X+1, a_Y, a_Z, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X+1, a_Y, a_Z ), MAX(0,CurrentLight-a_Falloff) ) );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X, a_Y-1, a_Z, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X, a_Y-1, a_Z ), MAX(0,CurrentLight-a_Falloff) ) );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X, a_Y+1, a_Z, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X, a_Y+1, a_Z ), MAX(0,CurrentLight-a_Falloff) ) );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X, a_Y, a_Z-1, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X, a_Y, a_Z-1 ), MAX(0,CurrentLight-a_Falloff) ) );
|
|
|
|
cChunkDef::SetNibble( a_LightBuffer, a_X, a_Y, a_Z+1, MAX(cChunkDef::GetNibble( a_LightBuffer, a_X, a_Y, a_Z+1 ), MAX(0,CurrentLight-a_Falloff) ) );
|
2012-03-05 11:41:57 -05:00
|
|
|
MarkDirty();
|
2011-12-31 16:08:23 -05:00
|
|
|
}
|
|
|
|
|
2012-02-16 08:42:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-03-13 16:26:36 -04:00
|
|
|
#endif
|
2012-02-16 08:42:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|