mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:43:39 +00:00
21 lines
594 B
C++
21 lines
594 B
C++
#include "../Platform/stdafx.h"
|
|
#include "BlockReplacements.h"
|
|
#include "../Headers/net.minecraft.world.level.tile.h"
|
|
|
|
byteArray BlockReplacements::replacements = byteArray(256);
|
|
|
|
void BlockReplacements::staticCtor() {
|
|
for (int i = 0; i < 256; i++) {
|
|
uint8_t b = (uint8_t)i;
|
|
if (b != 0 && Tile::tiles[b & 0xff] == NULL) {
|
|
b = 0;
|
|
}
|
|
BlockReplacements::replacements[i] = b;
|
|
}
|
|
}
|
|
|
|
void BlockReplacements::replace(byteArray blocks) {
|
|
for (unsigned int i = 0; i < blocks.length; i++) {
|
|
blocks[i] = replacements[blocks[i] & 0xff];
|
|
}
|
|
} |