cn.nukkit.block.BlockBanner 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.block;
import cn.nukkit.Player;
import cn.nukkit.api.PowerNukkitDifference;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockentity.BlockEntity;
import cn.nukkit.blockentity.BlockEntityBanner;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemID;
import cn.nukkit.item.ItemTool;
import cn.nukkit.level.Level;
import cn.nukkit.math.AxisAlignedBB;
import cn.nukkit.math.BlockFace;
import cn.nukkit.math.NukkitMath;
import cn.nukkit.nbt.tag.CompoundTag;
import cn.nukkit.nbt.tag.IntTag;
import cn.nukkit.nbt.tag.ListTag;
import cn.nukkit.nbt.tag.Tag;
import cn.nukkit.utils.BlockColor;
import cn.nukkit.utils.DyeColor;
import cn.nukkit.utils.Faceable;
import cn.nukkit.utils.MainLogger;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* @author PetteriM1
*/
@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Implements BlockEntityHolder only in PowerNukkit")
public class BlockBanner extends BlockTransparentMeta implements Faceable, BlockEntityHolder {
public BlockBanner() {
this(0);
}
public BlockBanner(int meta) {
super(meta);
}
@Override
public int getId() {
return STANDING_BANNER;
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@Nonnull
@Override
public String getBlockEntityType() {
return BlockEntity.BANNER;
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@Nonnull
@Override
public Class extends BlockEntityBanner> getBlockEntityClass() {
return BlockEntityBanner.class;
}
@Override
public double getHardness() {
return 1;
}
@Override
public double getResistance() {
return 5;
}
@Override
public int getToolType() {
return ItemTool.TYPE_AXE;
}
@Override
public String getName() {
return "Banner";
}
@Override
protected AxisAlignedBB recalculateBoundingBox() {
return null;
}
@Override
public boolean canPassThrough() {
return true;
}
@PowerNukkitOnly
@Override
public int getWaterloggingLevel() {
return 1;
}
@Override
public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block target, @Nonnull BlockFace face, double fx, double fy, double fz, @Nullable Player player) {
if (face == BlockFace.DOWN) {
return false;
}
Block layer0 = level.getBlock(this, 0);
Block layer1 = level.getBlock(this, 1);
if (face == BlockFace.UP) {
this.setDamage(NukkitMath.floorDouble(((player.yaw + 180) * 16 / 360) + 0.5) & 0x0f);
if (!this.getLevel().setBlock(block, this, true)) {
return false;
}
} else {
this.setDamage(face.getIndex());
if (!this.getLevel().setBlock(block, Block.get(BlockID.WALL_BANNER, this.getDamage()), true)) {
return false;
}
}
CompoundTag nbt = BlockEntity.getDefaultCompound(this, BlockEntity.BANNER)
.putInt("Base", item.getDamage() & 0xf);
Tag type = item.getNamedTagEntry("Type");
if (type instanceof IntTag) {
nbt.put("Type", type);
}
Tag patterns = item.getNamedTagEntry("Patterns");
if (patterns instanceof ListTag) {
nbt.put("Patterns", patterns);
}
try {
createBlockEntity(nbt);
return true;
} catch (Exception e) {
MainLogger.getLogger().warning("Failed to create the block entity "+getBlockEntityType()+" at "+getLocation(), e);
level.setBlock(layer0, 0, layer0, true);
level.setBlock(layer0, 1, layer1, true);
return false;
}
}
@Override
public int onUpdate(int type) {
if (type == Level.BLOCK_UPDATE_NORMAL) {
if (this.down().getId() == Block.AIR) {
this.getLevel().useBreakOn(this);
return Level.BLOCK_UPDATE_NORMAL;
}
}
return 0;
}
@Override
public Item toItem() {
BlockEntityBanner banner = getBlockEntity();
Item item = Item.get(ItemID.BANNER);
if (banner != null) {
item.setDamage(banner.getBaseColor() & 0xf);
int type = banner.namedTag.getInt("Type");
if (type > 0) {
item.setNamedTag((item.hasCompoundTag() ? item.getNamedTag() : new CompoundTag())
.putInt("Type", type));
}
ListTag patterns = banner.namedTag.getList("Patterns", CompoundTag.class);
if (patterns.size() > 0) {
item.setNamedTag((item.hasCompoundTag() ? item.getNamedTag() : new CompoundTag())
.putList(patterns));
}
}
return item;
}
@Override
public BlockFace getBlockFace() {
return BlockFace.fromHorizontalIndex(this.getDamage() & 0x7);
}
@Override
public boolean breaksWhenMoved() {
return true;
}
@Override
public BlockColor getColor() {
return this.getDyeColor().getColor();
}
public DyeColor getDyeColor() {
if (this.level != null) {
BlockEntityBanner blockEntity = getBlockEntity();
if (blockEntity != null) {
return blockEntity.getDyeColor();
}
}
return DyeColor.WHITE;
}
}