cn.nukkit.entity.passive.EntityBee 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.entity.passive;
import cn.nukkit.Player;
import cn.nukkit.api.Since;
import cn.nukkit.block.Block;
import cn.nukkit.block.BlockBeehive;
import cn.nukkit.block.BlockFlower;
import cn.nukkit.blockentity.BlockEntityBeehive;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
import java.util.Arrays;
import java.util.Optional;
/**
* @author joserobjr
*/
@Since("1.1.1.0-PN")
public class EntityBee extends EntityAnimal {
@Since("1.1.1.0-PN")
public static final int NETWORK_ID = 122;
private int beehiveTimer = 600;
@Since("1.1.1.0-PN")
public EntityBee(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
public int getNetworkId() {
return NETWORK_ID;
}
@Override
public float getWidth() {
if (this.isBaby()) {
return 0.35f;
}
return 0.7f;
}
@Override
public float getHeight() {
if (this.isBaby()) {
return 0.30f;
}
return 0.6f;
}
@Since("1.1.1.0-PN")
public boolean getHasNectar() {
return false;
}
@Since("1.1.1.0-PN")
public void setHasNectar(boolean hasNectar) {
}
@Since("1.1.1.0-PN")
public boolean isAngry() {
return false;
}
@Since("1.1.1.0-PN")
public void setAngry(boolean angry) {
}
@Override
public boolean onUpdate(int currentTick) {
if (--beehiveTimer <= 0) {
BlockEntityBeehive closestBeehive = null;
double closestDistance = Double.MAX_VALUE;
Optional flower = Arrays.stream(level.getCollisionBlocks(getBoundingBox().grow(4, 4, 4), false, true))
.filter(block -> block instanceof BlockFlower)
.findFirst();
for (Block collisionBlock : level.getCollisionBlocks(getBoundingBox().grow(1.5, 1.5, 1.5))) {
if (collisionBlock instanceof BlockBeehive) {
BlockEntityBeehive beehive = ((BlockBeehive) collisionBlock).getOrCreateBlockEntity();
double distance;
if(beehive.getOccupantsCount() < 4 && (distance = beehive.distanceSquared(this)) < closestDistance) {
closestBeehive = beehive;
closestDistance = distance;
}
}
}
if (closestBeehive != null) {
BlockEntityBeehive.Occupant occupant = closestBeehive.addOccupant(this);
if (flower.isPresent()) {
occupant.setTicksLeftToStay(2400);
occupant.setHasNectar(true);
}
}
}
return true;
}
@Override
protected void initEntity() {
super.initEntity();
this.setMaxHealth(10);
}
@Since("1.1.1.0-PN")
public void nectarDelivered(BlockEntityBeehive blockEntityBeehive) {
}
@Since("1.1.1.0-PN")
public void leftBeehive(BlockEntityBeehive blockEntityBeehive) {
}
@Since("1.1.1.0-PN")
public void setAngry(Player player) {
}
}