mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 16:23:36 +00:00
20 lines
540 B
C++
20 lines
540 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "../../Headers/net.minecraft.world.level.biome.h"
|
|
#include "../../Headers/net.minecraft.world.level.newbiome.layer.h"
|
|
|
|
TemperatureLayer::TemperatureLayer(std::shared_ptr<Layer> parent) : Layer(0)
|
|
{
|
|
this->parent = parent;
|
|
}
|
|
|
|
intArray TemperatureLayer::getArea(int xo, int yo, int w, int h)
|
|
{
|
|
intArray b = parent->getArea(xo, yo, w, h);
|
|
|
|
intArray result = IntCache::allocate(w * h);
|
|
for (int i = 0; i < w * h; i++)
|
|
{
|
|
result[i] = Biome::biomes[b[i]]->getTemperatureInt();
|
|
}
|
|
return result;
|
|
} |