cn.nukkit.level.format.updater.StemStrippedUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.level.format.updater;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.block.BlockID;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.blockstate.BlockState;
import cn.nukkit.level.format.ChunkSection;
import static cn.nukkit.blockproperty.CommonBlockProperties.DEPRECATED;
import static cn.nukkit.blockproperty.CommonBlockProperties.PILLAR_AXIS;
/**
* @author joserobjr
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public class StemStrippedUpdater implements Updater {
private final ChunkSection section;
private final BlockProperties oldProperties = new BlockProperties(PILLAR_AXIS, DEPRECATED);
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public StemStrippedUpdater(ChunkSection section) {
this.section = section;
}
@Override
public boolean update(int offsetX, int offsetY, int offsetZ, int x, int y, int z, BlockState state) {
switch (state.getBlockId()) {
case BlockID.STRIPPED_WARPED_HYPHAE:
case BlockID.STRIPPED_WARPED_STEM:
case BlockID.STRIPPED_CRIMSON_HYPHAE:
case BlockID.STRIPPED_CRIMSON_STEM:
break;
default:
return false;
}
int currentStorage = state.getExactIntStorage();
if (oldProperties.getIntValue(currentStorage, DEPRECATED.getName()) == 0) {
return false;
}
int newStorage = oldProperties.setIntValue(currentStorage, DEPRECATED.getName(), 0);
section.setBlockState(x, y, z, state.withData(newStorage));
return true;
}
}