From 99c9b2e11d17b9c0d0fa9e62119ed3d13f96beda Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Thu, 18 Oct 2012 13:39:42 +0000 Subject: Reverted previous commit, chose a different solution, much cleaner. git-svn-id: http://mc-server.googlecode.com/svn/trunk@975 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/ChunkDef.h | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'source/ChunkDef.h') diff --git a/source/ChunkDef.h b/source/ChunkDef.h index 44103e659..db3bf4740 100644 --- a/source/ChunkDef.h +++ b/source/ChunkDef.h @@ -106,20 +106,17 @@ enum EMCSBiome class cChunkDef { public: - enum - { - Width = 16, - Height = 256, - NumBlocks = Width * Height * Width, - BlockDataSize = NumBlocks * 2 + (NumBlocks / 2), // 2.5 * numblocks - - // Offsets to individual components in the joined blockdata array - MetaOffset = NumBlocks, - LightOffset = MetaOffset + NumBlocks / 2, - SkyLightOffset = LightOffset + NumBlocks / 2, - - INDEX_OUT_OF_RANGE = 0xffffffff, - } ; + static const int Width = 16; + static const int Height = 256; + static const int NumBlocks = Width * Height * Width; + static const int BlockDataSize = NumBlocks * 2 + (NumBlocks / 2); // 2.5 * numblocks + + // Offsets to individual components in the joined blockdata array + static const int MetaOffset = NumBlocks; + static const int LightOffset = MetaOffset + NumBlocks / 2; + static const int SkyLightOffset = LightOffset + NumBlocks / 2; + + static const unsigned int INDEX_OUT_OF_RANGE = 0xffffffff; /// The type used for any heightmap operations and storage; idx = x + Width * z typedef HEIGHTTYPE HeightMap[Width * Width]; -- cgit v1.2.3