mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 16:13:51 +00:00
18 lines
570 B
C++
18 lines
570 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{static_cast<unsigned int>(w * h)};
|
|
for (int i = 0; i < w * h; i++) {
|
|
result[i] = Biome::biomes[b[i]]->getTemperatureInt();
|
|
}
|
|
return result;
|
|
}
|