Unicopia/src/main/java/com/minelittlepony/unicopia/entity/Ponylike.java

64 lines
1.4 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.entity;
2020-01-16 12:35:46 +01:00
2020-04-15 18:12:00 +02:00
import javax.annotation.Nullable;
import com.minelittlepony.unicopia.Race;
2020-04-15 18:12:00 +02:00
import com.minelittlepony.unicopia.ducks.PonyContainer;
import com.minelittlepony.unicopia.util.NbtSerialisable;
2020-01-16 12:35:46 +01:00
2020-04-15 18:12:00 +02:00
import net.minecraft.entity.Entity;
2020-01-16 12:35:46 +01:00
import net.minecraft.entity.projectile.ProjectileEntity;
import net.minecraft.util.Tickable;
2020-01-16 12:35:46 +01:00
public interface Ponylike<T extends Entity> extends NbtSerialisable, Tickable {
2020-01-16 12:35:46 +01:00
Race getSpecies();
Physics getPhysics();
2020-01-16 12:35:46 +01:00
void setSpecies(Race race);
2020-01-16 12:35:46 +01:00
/**
* Returns true if this player is fully invisible.
* Held items and other effects will be hidden as well.
*/
default boolean isInvisible() {
return false;
}
/**
* Sets whether this player should be invisible.
*/
default void setInvisible(boolean invisible) {
}
/**
2020-01-27 11:05:22 +01:00
* Called at the beginning of an update cycle.
2020-01-16 12:35:46 +01:00
*/
default boolean beforeUpdate() {
return false;
}
2020-01-16 12:35:46 +01:00
/**
2020-01-27 11:05:22 +01:00
* Event triggered when this entity is hit by a projectile.
2020-01-16 12:35:46 +01:00
*/
default boolean onProjectileImpact(ProjectileEntity projectile) {
return false;
}
/**
* Called when this entity jumps
*/
default void onJump() {
}
2020-04-15 18:12:00 +02:00
@Nullable
static <T extends Ponylike<?>> T of(Entity entity) {
2020-04-15 18:12:00 +02:00
return PonyContainer.<Entity, T>of(entity)
.map(PonyContainer::get)
.orElse(null);
}
2020-01-16 12:35:46 +01:00
}