4jcraft/Minecraft.World/WorldGen/Layers/DownfallLayer.cpp
2026-03-25 02:47:51 -05:00

19 lines
559 B
C++

#include "../../Platform/stdafx.h"
#include "../../Headers/net.minecraft.world.level.biome.h"
#include "../../Headers/net.minecraft.world.level.newbiome.layer.h"
DownfallLayer::DownfallLayer(std::shared_ptr<Layer> parent) : Layer(0) {
this->parent = parent;
}
intArray DownfallLayer::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]]->getDownfallInt();
}
return result;
}