summaryrefslogtreecommitdiffstats
path: root/source/cWorldGenerator_Test.cpp
blob: 37ac9025ce8a86c507934daf8060612a853d439e (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
33
34
35
36
37

#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(int a_ChunkX, int a_ChunkY, int a_ChunkZ, char * a_BlockData)
{
	memset(a_BlockData, E_BLOCK_DIRT, cChunk::c_NumBlocks);
	for(int x = 0; x < cChunk::c_ChunkWidth; x++) 
	{
		for(int z = 0; z < cChunk::c_ChunkWidth; z++)
		{
			a_BlockData[MakeIndex(x, 0, z)] = E_BLOCK_BEDROCK;
		}
	}
}





void cWorldGenerator_Test::GenerateFoliage(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
{
	(void)a_ChunkX;
	(void)a_ChunkY;
	(void)a_ChunkZ;
}