Files
cuberite-2a/Tools/QtBiomeVisualiser/QtChunk.cpp
T

42 lines
465 B
C++
Raw Normal View History

2014-09-14 01:32:00 +02:00
#include "Globals.h"
#include "QtChunk.h"
2014-09-14 01:32:00 +02:00
Chunk::Chunk() :
m_IsValid(false)
{
}
2014-10-03 19:41:42 +02:00
void Chunk::setBiomes(const cChunkDef::BiomeMap & a_Biomes)
2014-09-14 01:32:00 +02:00
{
2014-10-28 20:52:04 +01:00
for (size_t idx = 0; idx < ARRAYCOUNT(a_Biomes); ++idx)
{
m_Biomes[idx] = static_cast<short>(a_Biomes[idx]);
}
2014-09-14 01:32:00 +02:00
m_IsValid = true;
}
2014-10-03 19:41:42 +02:00
EMCSBiome Chunk::getBiome(int a_RelX, int a_RelZ)
{
if (!m_IsValid)
{
return biInvalidBiome;
}
2014-10-28 20:52:04 +01:00
return static_cast<EMCSBiome>(m_Biomes[a_RelX + 16 * a_RelZ]);
2014-10-03 19:41:42 +02:00
}