summaryrefslogblamecommitdiffstats
path: root/Tools/QtBiomeVisualiser/QtChunk.cpp
blob: f201ef220da53b971eac2b8cf0e4ca8cdb2711ec (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                    
                    













                        
                                                           
 



                                                                  





                         






                                                 
                                                                      




 
#include "Globals.h"
#include "QtChunk.h"





Chunk::Chunk() :
	m_IsValid(false)
{
}





void Chunk::setBiomes(const cChunkDef::BiomeMap & a_Biomes)
{
	for (size_t idx = 0; idx < ARRAYCOUNT(a_Biomes); ++idx)
	{
		m_Biomes[idx] = static_cast<short>(a_Biomes[idx]);
	}
	m_IsValid = true;
}





EMCSBiome Chunk::getBiome(int a_RelX, int a_RelZ)
{
	if (!m_IsValid)
	{
		return biInvalidBiome;
	}
	return static_cast<EMCSBiome>(m_Biomes[a_RelX + 16 * a_RelZ]);
}