package com.minelittlepony.unicopia.entity; import java.util.Optional; import java.util.UUID; import java.util.function.Consumer; import org.jetbrains.annotations.Nullable; import com.minelittlepony.unicopia.util.NbtSerialisable; import net.minecraft.entity.Entity; import net.minecraft.nbt.NbtCompound; import net.minecraft.nbt.NbtElement; import net.minecraft.server.world.ServerWorld; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; public class EntityReference implements NbtSerialisable { private Optional uuid = Optional.empty(); private int clientId; private Optional pos = Optional.empty(); public EntityReference() {} public EntityReference(T entity) { set(entity); } public EntityReference(NbtCompound nbt) { fromNBT(nbt); } public void copyFrom(EntityReference other) { uuid = other.uuid; clientId = other.clientId; pos = other.pos; } public void set(@Nullable T entity) { if (entity != null) { uuid = Optional.of(entity.getUuid()); clientId = entity.getId(); pos = Optional.of(entity.getPos()); } else { uuid = Optional.empty(); clientId = 0; pos = Optional.empty(); } } public Optional getId() { return uuid; } /** * Gets the position the last known position of the assigned entity. */ public Optional getPosition() { return pos; } public boolean isPresent(World world) { return getOrEmpty(world).isPresent(); } public void ifPresent(World world, Consumer consumer) { getOrEmpty(world).ifPresent(consumer); } @Nullable public T get(World world) { return getOrEmpty(world).orElse(null); } @SuppressWarnings("unchecked") public Optional getOrEmpty(World world) { if (uuid.isPresent() && world instanceof ServerWorld) { return uuid.map(((ServerWorld)world)::getEntity).map(e -> (T)e).filter(this::checkReference); } if (clientId != 0) { return Optional.ofNullable((T)world.getEntityById(clientId)).filter(this::checkReference); } return Optional.empty(); } private boolean checkReference(Entity e) { pos = Optional.of(e.getPos()); return !e.isRemoved(); } @Override public void toNBT(NbtCompound tag) { uuid.ifPresent(uuid -> tag.putUuid("uuid", uuid)); pos.ifPresent(p -> tag.put("pos", NbtSerialisable.writeVector(p))); tag.putInt("clientId", clientId); } @Override public void fromNBT(NbtCompound tag) { uuid = tag.containsUuid("uuid") ? Optional.of(tag.getUuid("uuid")) : Optional.empty(); pos = tag.contains("pos") ? Optional.ofNullable(NbtSerialisable.readVector(tag.getList("pos", NbtElement.DOUBLE_TYPE))) : Optional.empty(); clientId = tag.getInt("clientId"); } }