summaryrefslogtreecommitdiffstats
path: root/source/cWorldGenerator_Test.cpp
blob: a484e43ec648d3ec3b91bcee864e032af90ff8b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#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;
}