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

114 lines
3.7 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.entity;
2020-09-23 17:19:28 +02:00
import com.minelittlepony.unicopia.Affinity;
import com.minelittlepony.unicopia.Race;
import com.minelittlepony.unicopia.ability.magic.Affine;
2020-10-02 09:39:00 +02:00
import com.minelittlepony.unicopia.ability.magic.Levelled;
import com.minelittlepony.unicopia.ability.magic.spell.effect.SpellType;
import com.minelittlepony.unicopia.entity.ai.BreakHeartGoal;
2021-02-20 00:34:30 +01:00
import com.minelittlepony.unicopia.entity.ai.DynamicTargetGoal;
import com.minelittlepony.unicopia.entity.ai.WantItTakeItGoal;
import com.minelittlepony.unicopia.entity.player.PlayerAttributes;
2020-01-16 12:35:46 +01:00
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.SpawnGroup;
import net.minecraft.entity.ai.goal.GoalSelector;
import net.minecraft.entity.attribute.DefaultAttributeContainer;
import net.minecraft.entity.attribute.EntityAttributes;
import net.minecraft.entity.damage.DamageSource;
2020-01-16 12:35:46 +01:00
import net.minecraft.entity.data.DataTracker;
import net.minecraft.entity.data.TrackedData;
import net.minecraft.entity.data.TrackedDataHandlerRegistry;
import net.minecraft.entity.mob.MobEntity;
2021-08-04 15:38:03 +02:00
import net.minecraft.nbt.NbtCompound;
2020-01-16 12:35:46 +01:00
2021-02-14 16:52:56 +01:00
public class Creature extends Living<LivingEntity> {
2020-01-16 12:35:46 +01:00
2021-08-04 15:38:03 +02:00
private static final TrackedData<NbtCompound> EFFECT = DataTracker.registerData(LivingEntity.class, TrackedDataHandlerRegistry.TAG_COMPOUND);
public static final TrackedData<Float> GRAVITY = DataTracker.registerData(LivingEntity.class, TrackedDataHandlerRegistry.FLOAT);
2020-01-16 12:35:46 +01:00
2020-10-02 09:39:00 +02:00
private static final LevelStore LEVELS = Levelled.fixed(0);
2020-01-16 12:35:46 +01:00
public static void boostrap() {}
private final EntityPhysics<LivingEntity> physics;
public Creature(LivingEntity entity) {
2021-02-14 16:52:56 +01:00
super(entity, EFFECT);
physics = new EntityPhysics<>(entity, GRAVITY);
2020-01-16 12:35:46 +01:00
}
public void initAi(GoalSelector goals, GoalSelector targets) {
2021-02-20 00:34:30 +01:00
DynamicTargetGoal targetter = new DynamicTargetGoal((MobEntity)entity);
targets.add(1, targetter);
goals.add(1, new WantItTakeItGoal((MobEntity)entity, targetter));
if (entity.getType().getSpawnGroup() == SpawnGroup.MONSTER) {
2021-02-20 00:34:30 +01:00
goals.add(3, new BreakHeartGoal((MobEntity)entity, targetter));
}
}
public static void registerAttributes(DefaultAttributeContainer.Builder builder) {
builder.add(EntityAttributes.GENERIC_ATTACK_DAMAGE);
builder.add(EntityAttributes.GENERIC_ATTACK_KNOCKBACK);
builder.add(PlayerAttributes.ENTITY_GRAVTY_MODIFIER);
}
@Override
public void tick() {
super.tick();
physics.tick();
}
2020-01-16 12:35:46 +01:00
@Override
public Race getSpecies() {
return Race.HUMAN;
}
@Override
public Physics getPhysics() {
return physics;
}
2020-01-16 12:35:46 +01:00
@Override
public void setSpecies(Race race) {
}
@Override
2020-10-02 09:39:00 +02:00
public LevelStore getLevel() {
return LEVELS;
2020-01-16 12:35:46 +01:00
}
@Override
public boolean subtractEnergyCost(double amount) {
getMaster().damage(DamageSource.MAGIC, (int)amount/2);
return getMaster().getHealth() > 0;
}
2020-01-16 12:35:46 +01:00
@Override
public Affinity getAffinity() {
if (getMaster() instanceof Affine) {
return ((Affine)getMaster()).getAffinity();
2020-01-16 12:35:46 +01:00
}
return Affinity.NEUTRAL;
}
@Override
2021-08-04 15:38:03 +02:00
public void toNBT(NbtCompound compound) {
super.toNBT(compound);
2021-03-03 10:33:23 +01:00
getSpellSlot().get(true).ifPresent(effect -> {
compound.put("effect", SpellType.toNBT(effect));
2021-03-03 10:33:23 +01:00
});
physics.toNBT(compound);
2020-01-16 12:35:46 +01:00
}
@Override
2021-08-04 15:38:03 +02:00
public void fromNBT(NbtCompound compound) {
super.fromNBT(compound);
2020-04-22 16:28:20 +02:00
if (compound.contains("effect")) {
getSpellSlot().put(SpellType.fromNBT(compound.getCompound("effect")));
2020-01-16 12:35:46 +01:00
}
physics.fromNBT(compound);
2020-01-16 12:35:46 +01:00
}
}