All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.level.format.updater.StemStrippedUpdater Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy