package com.minelittlepony.unicopia; import java.util.Optional; import java.util.UUID; import org.jetbrains.annotations.Nullable; import net.minecraft.entity.Entity; /** * Interface for things that can be owned by an entity. *

* Ownership is retained so long as the owner is still active. If the owner leaves or dies, the link is broken. * * @param The type of object that owns us. */ public interface Owned { /** * Gets the owner that holds this object. */ @Nullable E getMaster(); /** * Gets the unique entity id of the entity that holds this object. *

* Since {@link Owned#getMaster()} will only return if the owner is loaded, use this to perform checks * in the owner's absence. */ default Optional getMasterId() { return Optional.of(getMaster()).map(Entity::getUuid); } /** * Updates the owner of this object. */ void setMaster(@Nullable E owner); /** * Updated the owner of this object to be the same as another. * * @param sibling */ default void setMaster(Owned sibling) { setMaster(sibling.getMaster()); } default boolean isOwnedBy(@Nullable Object owner) { return owner instanceof Entity e && getMasterId().isPresent() && e.getUuid().equals(getMasterId().get()); } default boolean hasCommonOwner(Owned sibling) { return getMasterId().isPresent() && getMasterId().equals(sibling.getMasterId()); } }