Minestom/src/main/java/net/minestom/server/entity/EntityCreature.java

323 lines
11 KiB
Java
Raw Normal View History

2020-04-24 03:25:58 +02:00
package net.minestom.server.entity;
2019-08-10 08:44:35 +02:00
2020-05-30 01:39:52 +02:00
import net.minestom.server.attribute.Attribute;
2020-04-24 03:25:58 +02:00
import net.minestom.server.collision.CollisionUtils;
import net.minestom.server.entity.pathfinding.EntityPathFinder;
2020-05-28 19:15:55 +02:00
import net.minestom.server.event.entity.EntityAttackEvent;
import net.minestom.server.event.item.ArmorEquipEvent;
import net.minestom.server.item.ItemStack;
2020-04-24 03:25:58 +02:00
import net.minestom.server.network.packet.server.play.*;
import net.minestom.server.network.player.PlayerConnection;
import net.minestom.server.utils.BlockPosition;
import net.minestom.server.utils.Position;
import net.minestom.server.utils.Vector;
import net.minestom.server.utils.chunk.ChunkUtils;
2020-05-23 04:20:01 +02:00
import net.minestom.server.utils.item.ItemStackUtils;
2020-05-15 18:03:28 +02:00
import net.minestom.server.utils.time.TimeUnit;
2019-08-10 08:44:35 +02:00
2020-04-09 14:25:42 +02:00
import java.util.LinkedList;
import java.util.function.Consumer;
2019-08-10 08:44:35 +02:00
2020-04-09 14:25:42 +02:00
public abstract class EntityCreature extends LivingEntity {
2020-03-29 20:58:30 +02:00
2020-04-09 14:25:42 +02:00
private EntityPathFinder pathFinder = new EntityPathFinder(this);
private LinkedList<BlockPosition> blockPositions;
private Position targetPosition;
2020-03-29 20:58:30 +02:00
// Equipments
private ItemStack mainHandItem;
private ItemStack offHandItem;
private ItemStack helmet;
private ItemStack chestplate;
private ItemStack leggings;
private ItemStack boots;
2020-04-09 14:25:42 +02:00
public EntityCreature(EntityType entityType, Position spawnPosition) {
super(entityType, spawnPosition);
2020-05-23 04:20:01 +02:00
this.mainHandItem = ItemStack.getAirItem();
this.offHandItem = ItemStack.getAirItem();
this.helmet = ItemStack.getAirItem();
this.chestplate = ItemStack.getAirItem();
this.leggings = ItemStack.getAirItem();
this.boots = ItemStack.getAirItem();
2020-05-25 19:54:36 +02:00
heal();
2019-08-10 08:44:35 +02:00
}
2019-08-24 20:34:01 +02:00
@Override
public void update(long time) {
super.update(time);
2020-04-09 14:25:42 +02:00
// Path finding
pathProgress();
2019-08-24 20:34:01 +02:00
}
2020-05-24 19:59:50 +02:00
/**
* @param x X movement offset
* @param y Y movement offset
* @param z Z movement offset
* @param updateView should the entity move its head toward the position?
*/
2019-08-30 01:17:46 +02:00
public void move(float x, float y, float z, boolean updateView) {
2019-08-21 16:50:52 +02:00
Position position = getPosition();
Position newPosition = new Position();
2020-04-22 19:09:57 +02:00
// Calculate collisions boxes
onGround = CollisionUtils.handlePhysics(this, new Vector(x, y, z), newPosition, new Vector());
2020-04-22 19:09:57 +02:00
// Refresh target position
2020-05-24 19:59:50 +02:00
float newX = newPosition.getX();
float newY = newPosition.getY();
float newZ = newPosition.getZ();
2019-08-11 13:57:23 +02:00
2020-02-11 16:48:06 +01:00
// Creatures cannot move in unload chunk
2019-08-27 20:49:11 +02:00
if (ChunkUtils.isChunkUnloaded(getInstance(), newX, newZ))
2019-08-11 13:57:23 +02:00
return;
2019-08-29 02:15:52 +02:00
float lastYaw = position.getYaw();
float radians = (float) Math.atan2(newZ - position.getZ(), newX - position.getX());
float yaw = (float) (radians * (180.0 / Math.PI)) - 90;
float pitch = position.getPitch(); // TODO
2020-06-01 18:57:16 +02:00
final short deltaX = (short) ((newX * 32 - position.getX() * 32) * 128);
final short deltaY = (short) ((newY * 32 - position.getY() * 32) * 128);
final short deltaZ = (short) ((newZ * 32 - position.getZ() * 32) * 128);
2020-02-11 16:48:06 +01:00
2019-08-30 01:17:46 +02:00
if (updateView) {
2020-02-11 16:48:06 +01:00
EntityPositionAndRotationPacket entityPositionAndRotationPacket = new EntityPositionAndRotationPacket();
entityPositionAndRotationPacket.entityId = getEntityId();
entityPositionAndRotationPacket.deltaX = deltaX;
entityPositionAndRotationPacket.deltaY = deltaY;
entityPositionAndRotationPacket.deltaZ = deltaZ;
entityPositionAndRotationPacket.yaw = yaw;
entityPositionAndRotationPacket.pitch = pitch;
entityPositionAndRotationPacket.onGround = isOnGround();
sendPacketToViewers(entityPositionAndRotationPacket);
2019-08-30 01:17:46 +02:00
} else {
2020-02-11 16:48:06 +01:00
EntityPositionPacket entityPositionPacket = new EntityPositionPacket();
entityPositionPacket.entityId = getEntityId();
entityPositionPacket.deltaX = deltaX;
entityPositionPacket.deltaY = deltaY;
entityPositionPacket.deltaZ = deltaZ;
entityPositionPacket.onGround = isOnGround();
sendPacketToViewers(entityPositionPacket);
2019-08-30 01:17:46 +02:00
}
2019-08-29 02:15:52 +02:00
if (lastYaw != yaw) {
2020-05-27 20:55:33 +02:00
setView(yaw, pitch);
2019-08-29 02:15:52 +02:00
}
2019-08-11 13:57:23 +02:00
refreshPosition(newX, newY, newZ);
2019-08-29 02:15:52 +02:00
}
@Override
public void spawn() {
}
2019-08-24 20:34:01 +02:00
@Override
2019-08-21 16:50:52 +02:00
public void kill() {
2020-04-05 10:15:21 +02:00
super.kill();
// Needed for proper death animation (wait for it to finish before destroying the entity)
2020-05-15 18:03:28 +02:00
scheduleRemove(1000, TimeUnit.MILLISECOND);
2019-08-11 13:57:23 +02:00
}
2019-08-19 17:04:19 +02:00
@Override
public boolean addViewer(Player player) {
boolean result = super.addViewer(player);
2020-05-29 02:11:41 +02:00
if (!result)
return false;
2019-08-10 08:44:35 +02:00
PlayerConnection playerConnection = player.getPlayerConnection();
EntityPacket entityPacket = new EntityPacket();
entityPacket.entityId = getEntityId();
2020-02-09 15:34:09 +01:00
2020-03-29 20:58:30 +02:00
SpawnLivingEntityPacket spawnLivingEntityPacket = new SpawnLivingEntityPacket();
spawnLivingEntityPacket.entityId = getEntityId();
spawnLivingEntityPacket.entityUuid = getUuid();
spawnLivingEntityPacket.entityType = getEntityType();
spawnLivingEntityPacket.position = getPosition();
spawnLivingEntityPacket.headPitch = 0;
2020-02-09 15:34:09 +01:00
2019-08-10 08:44:35 +02:00
playerConnection.sendPacket(entityPacket);
2020-03-29 20:58:30 +02:00
playerConnection.sendPacket(spawnLivingEntityPacket);
playerConnection.sendPacket(getVelocityPacket());
2020-02-11 16:48:06 +01:00
playerConnection.sendPacket(getMetadataPacket());
// Equipments synchronization
syncEquipments(playerConnection);
if (hasPassenger()) {
playerConnection.sendPacket(getPassengersPacket());
}
return result;
2019-08-10 08:44:35 +02:00
}
2020-04-09 14:25:42 +02:00
@Override
public ItemStack getItemInMainHand() {
return mainHandItem;
}
@Override
public void setItemInMainHand(ItemStack itemStack) {
2020-05-23 04:20:01 +02:00
this.mainHandItem = ItemStackUtils.notNull(itemStack);
syncEquipment(EntityEquipmentPacket.Slot.MAIN_HAND);
}
@Override
public ItemStack getItemInOffHand() {
return offHandItem;
}
@Override
public void setItemInOffHand(ItemStack itemStack) {
2020-05-23 04:20:01 +02:00
this.offHandItem = ItemStackUtils.notNull(itemStack);
syncEquipment(EntityEquipmentPacket.Slot.OFF_HAND);
}
@Override
public ItemStack getHelmet() {
return helmet;
}
@Override
public void setHelmet(ItemStack itemStack) {
2020-05-06 22:42:04 +02:00
this.helmet = getEquipmentItem(itemStack, ArmorEquipEvent.ArmorSlot.HELMET);
syncEquipment(EntityEquipmentPacket.Slot.HELMET);
}
@Override
public ItemStack getChestplate() {
return chestplate;
}
@Override
public void setChestplate(ItemStack itemStack) {
2020-05-06 22:42:04 +02:00
this.chestplate = getEquipmentItem(itemStack, ArmorEquipEvent.ArmorSlot.CHESTPLATE);
syncEquipment(EntityEquipmentPacket.Slot.CHESTPLATE);
}
@Override
public ItemStack getLeggings() {
return leggings;
}
@Override
public void setLeggings(ItemStack itemStack) {
2020-05-06 22:42:04 +02:00
this.leggings = getEquipmentItem(itemStack, ArmorEquipEvent.ArmorSlot.LEGGINGS);
syncEquipment(EntityEquipmentPacket.Slot.LEGGINGS);
}
@Override
public ItemStack getBoots() {
return boots;
}
@Override
public void setBoots(ItemStack itemStack) {
2020-05-06 22:42:04 +02:00
this.boots = getEquipmentItem(itemStack, ArmorEquipEvent.ArmorSlot.BOOTS);
syncEquipment(EntityEquipmentPacket.Slot.BOOTS);
}
2020-05-28 19:15:55 +02:00
/**
* Call a {@link EntityAttackEvent} with this entity as the source and {@code target} as the target
*
* @param target the entity target
*/
public void attack(Entity target) {
EntityAttackEvent attackEvent = new EntityAttackEvent(this, target);
callEvent(EntityAttackEvent.class, attackEvent);
}
2020-04-09 14:25:42 +02:00
public void jump(float height) {
// FIXME magic value
Vector velocity = new Vector(0, height * 5, 0);
setVelocity(velocity);
2020-04-09 14:25:42 +02:00
}
public void setPathTo(Position position, int maxCheck, Consumer<Boolean> resultConsumer) {
pathFinder.getPath(position, maxCheck, blockPositions -> {
2020-04-25 23:06:16 +02:00
if (blockPositions == null || blockPositions.isEmpty()) {
2020-04-23 01:26:45 +02:00
// Didn't find path
if (resultConsumer != null)
resultConsumer.accept(false);
2020-04-23 01:26:45 +02:00
return;
}
blockPositions.pollFirst(); // Remove first entry (where the entity is)
2020-04-09 14:25:42 +02:00
this.blockPositions = blockPositions;
setNextPathPosition();
if (resultConsumer != null)
resultConsumer.accept(true);
2020-04-09 14:25:42 +02:00
});
}
public void setPathTo(Position position, int maxCheck) {
setPathTo(position, maxCheck, null);
}
public void setPathTo(Position position) {
setPathTo(position, 1000, null);
}
2020-05-24 19:59:50 +02:00
/**
* Used to move the entity toward {@code direction} in the X and Z axis
2020-05-24 19:59:50 +02:00
* Gravity is still applied but the entity will not attempt to jump
*
* @param direction the targeted position
* @param speed define how far the entity will move
*/
2020-04-09 14:25:42 +02:00
public void moveTowards(Position direction, float speed) {
float radians = (float) Math.atan2(direction.getZ() - position.getZ(), direction.getX() - position.getX());
float speedX = (float) (Math.cos(radians) * speed);
float speedZ = (float) (Math.sin(radians) * speed);
move(speedX, 0, speedZ, true);
}
private void setNextPathPosition() {
BlockPosition blockPosition = blockPositions.pollFirst();
if (blockPosition == null) {
this.blockPositions = null;
this.targetPosition = null;
return;
}
2020-04-23 01:26:45 +02:00
this.targetPosition = blockPosition.toPosition();//.add(0.5f, 0, 0.5f);
if (blockPosition.getY() > getPosition().getY())
jump(1);
2020-04-09 14:25:42 +02:00
}
2020-05-06 22:42:04 +02:00
private void pathProgress() {
if (blockPositions != null) {
if (targetPosition != null) {
float distance = getPosition().getDistance(targetPosition);
//System.out.println("test: "+distance);
if (distance < 1f) {
setNextPathPosition();
pathProgress();
//System.out.println("END TARGET");
} else {
moveTowards(targetPosition, getAttributeValue(Attribute.MOVEMENT_SPEED));
//System.out.println("MOVE TOWARD " + targetPosition);
}
}
}
}
2020-05-06 22:42:04 +02:00
private ItemStack getEquipmentItem(ItemStack itemStack, ArmorEquipEvent.ArmorSlot armorSlot) {
2020-05-23 04:20:01 +02:00
itemStack = ItemStackUtils.notNull(itemStack);
2020-05-14 18:59:01 +02:00
ArmorEquipEvent armorEquipEvent = new ArmorEquipEvent(this, itemStack, armorSlot);
2020-05-06 22:42:04 +02:00
callEvent(ArmorEquipEvent.class, armorEquipEvent);
return armorEquipEvent.getArmorItem();
}
2019-08-10 08:44:35 +02:00
}