1
0

Some kind of 'template' world generator that right now just generates an all dirt world. You can use this to test new algorithms

git-svn-id: http://mc-server.googlecode.com/svn/trunk@127 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2011-12-26 23:23:05 +00:00
parent eb942797b8
commit 0d8ecbeca1
8 changed files with 78 additions and 24 deletions

View File

@@ -0,0 +1,25 @@
#include "cWorldGenerator_Test.h"
#include "cChunk.h"
#include "BlockID.h"
void cWorldGenerator_Test::GenerateTerrain( cChunk* a_Chunk )
{
char* BlockType = a_Chunk->pGetType();
for(int x = 0; x < 16; x++)
{
for(int z = 0; z < 16; z++)
{
for( int y = 1; y < 128; ++y )
{
unsigned int idx = cChunk::MakeIndex(x, y, z);
BlockType[idx] = E_BLOCK_DIRT;
}
}
}
}
void cWorldGenerator_Test::GenerateFoliage( cChunk* a_Chunk )
{
(void)a_Chunk;
}