Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
cn.nukkit.block.BlockCocoa Maven / Gradle / Ivy
package cn.nukkit.block;
import cn.nukkit.Player;
import cn.nukkit.Server;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.blockproperty.IntBlockProperty;
import cn.nukkit.event.block.BlockGrowEvent;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemTool;
import cn.nukkit.item.MinecraftItemID;
import cn.nukkit.level.Level;
import cn.nukkit.level.particle.BoneMealParticle;
import cn.nukkit.math.AxisAlignedBB;
import cn.nukkit.math.BlockFace;
import cn.nukkit.math.SimpleAxisAlignedBB;
import cn.nukkit.utils.Faceable;
import org.jetbrains.annotations.NotNull;
import javax.annotation.Nullable;
import java.util.concurrent.ThreadLocalRandom;
import static cn.nukkit.blockproperty.CommonBlockProperties.DIRECTION;
/**
* @author CreeperFace
* @since 27. 10. 2016
*/
public class BlockCocoa extends BlockTransparentMeta implements Faceable {
@PowerNukkitOnly
@Since("1.5.0.0-PN")
public static final IntBlockProperty AGE = new IntBlockProperty("age", false, 2);
@PowerNukkitOnly
@Since("1.5.0.0-PN")
public static final BlockProperties PROPERTIES = new BlockProperties(DIRECTION, AGE);
protected static final AxisAlignedBB[] EAST = new SimpleAxisAlignedBB[]{new SimpleAxisAlignedBB(0.6875D, 0.4375D, 0.375D, 0.9375D, 0.75D, 0.625D), new SimpleAxisAlignedBB(0.5625D, 0.3125D, 0.3125D, 0.9375D, 0.75D, 0.6875D), new SimpleAxisAlignedBB(0.5625D, 0.3125D, 0.3125D, 0.9375D, 0.75D, 0.6875D)};
protected static final AxisAlignedBB[] WEST = new SimpleAxisAlignedBB[]{new SimpleAxisAlignedBB(0.0625D, 0.4375D, 0.375D, 0.3125D, 0.75D, 0.625D), new SimpleAxisAlignedBB(0.0625D, 0.3125D, 0.3125D, 0.4375D, 0.75D, 0.6875D), new SimpleAxisAlignedBB(0.0625D, 0.3125D, 0.3125D, 0.4375D, 0.75D, 0.6875D)};
protected static final AxisAlignedBB[] NORTH = new SimpleAxisAlignedBB[]{new SimpleAxisAlignedBB(0.375D, 0.4375D, 0.0625D, 0.625D, 0.75D, 0.3125D), new SimpleAxisAlignedBB(0.3125D, 0.3125D, 0.0625D, 0.6875D, 0.75D, 0.4375D), new SimpleAxisAlignedBB(0.3125D, 0.3125D, 0.0625D, 0.6875D, 0.75D, 0.4375D)};
protected static final AxisAlignedBB[] SOUTH = new SimpleAxisAlignedBB[]{new SimpleAxisAlignedBB(0.375D, 0.4375D, 0.6875D, 0.625D, 0.75D, 0.9375D), new SimpleAxisAlignedBB(0.3125D, 0.3125D, 0.5625D, 0.6875D, 0.75D, 0.9375D), new SimpleAxisAlignedBB(0.3125D, 0.3125D, 0.5625D, 0.6875D, 0.75D, 0.9375D)};
protected static final AxisAlignedBB[] ALL = new AxisAlignedBB[12];
public BlockCocoa() {
this(0);
}
public BlockCocoa(int meta) {
super(meta);
}
@Override
public int getId() {
return COCOA;
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@NotNull
@Override
public BlockProperties getProperties() {
return PROPERTIES;
}
@Override
public String getName() {
return "Cocoa";
}
@Override
public double getMinX() {
return this.x + getRelativeBoundingBox().getMinX();
}
@Override
public double getMaxX() {
return this.x + getRelativeBoundingBox().getMaxX();
}
@Override
public double getMinY() {
return this.y + getRelativeBoundingBox().getMinY();
}
@Override
public double getMaxY() {
return this.y + getRelativeBoundingBox().getMaxY();
}
@Override
public double getMinZ() {
return this.z + getRelativeBoundingBox().getMinZ();
}
@Override
public double getMaxZ() {
return this.z + getRelativeBoundingBox().getMaxZ();
}
private AxisAlignedBB getRelativeBoundingBox() {
int damage = this.getDamage();
if (damage > 11) {
this.setDamage(damage = 11);
}
AxisAlignedBB boundingBox = ALL[damage];
if (boundingBox != null) return boundingBox;
AxisAlignedBB[] bbs;
switch (getDamage()) {
case 1:
case 5:
case 9:
bbs = EAST;
break;
case 2:
case 6:
case 10:
bbs = SOUTH;
break;
case 3:
case 7:
case 11:
bbs = WEST;
break;
default:
bbs = NORTH;
break;
}
return ALL[damage] = bbs[this.getDamage() >> 2];
}
@Override
public boolean place(@NotNull Item item, @NotNull Block block, @NotNull Block target, @NotNull BlockFace face, double fx, double fy, double fz, @Nullable Player player) {
if (target.getId() == Block.WOOD && (target.getDamage() & 0x03) == BlockWood.JUNGLE) {
if (face != BlockFace.DOWN && face != BlockFace.UP) {
int[] faces = new int[]{
0,
0,
0,
2,
3,
1,
};
this.setDamage(faces[face.getIndex()]);
this.level.setBlock(block, this, true, true);
return true;
}
}
return false;
}
@Override
public int onUpdate(int type) {
if (type == Level.BLOCK_UPDATE_NORMAL) {
int[] faces = new int[]{
3, 4, 2, 5, 3, 4, 2, 5, 3, 4, 2, 5
};
Block side = this.getSide(BlockFace.fromIndex(faces[this.getDamage()]));
if (side.getId() != Block.WOOD && side.getDamage() != BlockWood.JUNGLE) {
this.getLevel().useBreakOn(this);
return Level.BLOCK_UPDATE_NORMAL;
}
} else if (type == Level.BLOCK_UPDATE_RANDOM) {
if (ThreadLocalRandom.current().nextInt(2) == 1) {
if (this.getGrowthStage() < 2) {
if (!this.grow()) {
return Level.BLOCK_UPDATE_RANDOM;
}
}
} else {
return Level.BLOCK_UPDATE_RANDOM;
}
}
return 0;
}
@Override
public boolean canBeActivated() {
return true;
}
@Override
public boolean onActivate(@NotNull Item item, Player player) {
if (item.isFertilizer()) {
if (this.getGrowthStage() < 2) {
if (!this.grow()) {
return false;
}
this.level.addParticle(new BoneMealParticle(this));
if (player != null && (player.gamemode & 0x01) == 0) {
item.count--;
}
}
return true;
}
return false;
}
@PowerNukkitOnly
public int getGrowthStage() {
return this.getDamage() / 4;
}
@PowerNukkitOnly
public boolean grow() {
Block block = this.clone();
block.setDamage(block.getDamage() + 4);
BlockGrowEvent ev = new BlockGrowEvent(this, block);
Server.getInstance().getPluginManager().callEvent(ev);
return !ev.isCancelled() && this.getLevel().setBlock(this, ev.getNewState(), true, true);
}
@Override
public double getResistance() {
return 15;
}
@Override
public double getHardness() {
return 0.2;
}
@Override
public int getToolType() {
return ItemTool.TYPE_AXE;
}
@PowerNukkitOnly
@Override
public int getWaterloggingLevel() {
return 2;
}
@Override
public boolean canBeFlowedInto() {
return false;
}
@Override
public Item toItem() {
return MinecraftItemID.COCOA_BEANS.get(1);
}
@Override
public Item[] getDrops(Item item) {
return new Item[]{
MinecraftItemID.COCOA_BEANS.get(this.getDamage() >= 8 ? 3 : 1)
};
}
@Override
public BlockFace getBlockFace() {
return BlockFace.fromHorizontalIndex(this.getDamage() & 0x07);
}
@Override
@PowerNukkitOnly
public boolean breaksWhenMoved() {
return true;
}
@Override
@PowerNukkitOnly
public boolean sticksToPiston() {
return false;
}
}