2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.mixin;
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
2020-04-24 17:10:45 +02:00
|
|
|
import org.spongepowered.asm.mixin.injection.ModifyVariable;
|
2020-01-27 11:05:22 +01:00
|
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
2020-01-16 12:35:46 +01:00
|
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
|
|
|
2020-04-15 18:12:00 +02:00
|
|
|
import com.minelittlepony.unicopia.ducks.PonyContainer;
|
2020-06-26 11:44:47 +02:00
|
|
|
import com.minelittlepony.unicopia.equine.Ponylike;
|
|
|
|
import com.minelittlepony.unicopia.equine.player.Pony;
|
2020-01-16 12:35:46 +01:00
|
|
|
import com.mojang.datafixers.util.Either;
|
|
|
|
|
2020-04-23 23:44:31 +02:00
|
|
|
import net.minecraft.entity.EntityDimensions;
|
|
|
|
import net.minecraft.entity.EntityPose;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.entity.ItemEntity;
|
|
|
|
import net.minecraft.entity.LivingEntity;
|
2020-06-26 11:44:47 +02:00
|
|
|
import net.minecraft.entity.attribute.DefaultAttributeContainer;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.Unit;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
2020-01-27 11:05:22 +01:00
|
|
|
import net.minecraft.world.GameMode;
|
2020-05-05 18:48:12 +02:00
|
|
|
import net.minecraft.world.World;
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
@Mixin(PlayerEntity.class)
|
2020-04-24 17:10:45 +02:00
|
|
|
abstract class MixinPlayerEntity extends LivingEntity implements PonyContainer<Pony> {
|
2020-01-16 12:35:46 +01:00
|
|
|
private MixinPlayerEntity() { super(null, null); }
|
|
|
|
|
|
|
|
@Override
|
2020-05-10 17:18:45 +02:00
|
|
|
public Ponylike<?> create() {
|
|
|
|
return new Pony((PlayerEntity)(Object)this);
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|
|
|
|
|
2020-04-24 17:10:45 +02:00
|
|
|
@ModifyVariable(method = "handleFallDamage(FF)Z",
|
2020-01-16 12:35:46 +01:00
|
|
|
at = @At("HEAD"),
|
2020-04-24 17:10:45 +02:00
|
|
|
ordinal = 0,
|
|
|
|
argsOnly = true)
|
2020-01-16 12:35:46 +01:00
|
|
|
private float onHandleFallDamage(float distance) {
|
2020-04-15 18:12:00 +02:00
|
|
|
return get().onImpact(distance);
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|
|
|
|
|
2020-06-26 11:44:47 +02:00
|
|
|
@Inject(method = "createPlayerAttributes()Lnet/minecraft/entity/attribute/DefaultAttributeContainer$Builder;", at = @At("RETURN"))
|
|
|
|
private static void onCreateAttributes(CallbackInfoReturnable<DefaultAttributeContainer.Builder> info) {
|
|
|
|
Pony.registerAttributes(info.getReturnValue());
|
|
|
|
}
|
|
|
|
|
2020-05-31 23:14:12 +02:00
|
|
|
@Inject(method = "eatFood(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;)Lnet/minecraft/item/ItemStack;",
|
2020-05-05 18:48:12 +02:00
|
|
|
at = @At("HEAD"))
|
|
|
|
public void onEatFood(World world, ItemStack stack, CallbackInfoReturnable<ItemStack> info) {
|
|
|
|
if (stack.isFood()) {
|
|
|
|
get().onEat(stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 12:35:46 +01:00
|
|
|
@Inject(method = "trySleep(Lnet/minecraft/util/math/BlockPos;)Lcom/mojang/datafixers/util/Either;",
|
|
|
|
at = @At("HEAD"),
|
|
|
|
cancellable = true)
|
|
|
|
private void onTrySleep(BlockPos pos, CallbackInfoReturnable<Either<PlayerEntity.SleepFailureReason, Unit>> info) {
|
|
|
|
if (!world.isClient) {
|
2020-04-15 18:12:00 +02:00
|
|
|
Either<PlayerEntity.SleepFailureReason, Unit> result = get().trySleep(pos);
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
result.ifLeft(reason -> info.setReturnValue(result));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Inject(method = "dropItem(Lnet/minecraft/item/ItemStack;ZZ)Lnet/minecraft/entity/ItemEntity;",
|
2020-04-26 16:48:48 +02:00
|
|
|
at = @At("RETURN"))
|
|
|
|
private void onDropItem(ItemStack itemStack_1, boolean scatter, boolean retainOwnership, CallbackInfoReturnable<ItemEntity> info) {
|
|
|
|
PonyContainer.of(info.getReturnValue()).ifPresent(container -> {
|
|
|
|
container.get().setSpecies(get().getSpecies());
|
2020-01-16 12:35:46 +01:00
|
|
|
});
|
|
|
|
}
|
2020-01-27 11:05:22 +01:00
|
|
|
|
|
|
|
@Inject(method = "setGameMode(Lnet/minecraft/world/GameMode;)V",
|
|
|
|
at = @At("RETURN"))
|
2020-04-23 23:44:31 +02:00
|
|
|
private void onSetGameMode(GameMode mode, CallbackInfo info) {
|
2020-04-15 18:12:00 +02:00
|
|
|
get().setSpecies(get().getSpecies());
|
2020-05-10 17:18:45 +02:00
|
|
|
get().setDirty();
|
2020-01-27 11:05:22 +01:00
|
|
|
}
|
2020-04-23 23:44:31 +02:00
|
|
|
|
|
|
|
@Inject(method = "getActiveEyeHeight(Lnet/minecraft/entity/EntityPose;Lnet/minecraft/entity/EntityDimensions;)F",
|
|
|
|
at = @At("RETURN"),
|
|
|
|
cancellable = true)
|
|
|
|
private void onGetActiveEyeHeight(EntityPose pose, EntityDimensions dimensions, CallbackInfoReturnable<Float> info) {
|
2020-05-10 17:18:45 +02:00
|
|
|
info.setReturnValue(get().getMotion().getDimensions().getActiveEyeHeight(info.getReturnValue()));
|
2020-04-24 17:10:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Inject(method = "getDimensions(Lnet/minecraft/entity/EntityPose;)Lnet/minecraft/entity/EntityDimensions;",
|
|
|
|
at = @At("RETURN"),
|
|
|
|
cancellable = true)
|
|
|
|
public void onGetDimensions(EntityPose pose, CallbackInfoReturnable<EntityDimensions> info) {
|
2020-05-10 17:18:45 +02:00
|
|
|
info.setReturnValue(get().getMotion().getDimensions().getDimensions(pose, info.getReturnValue()));
|
2020-04-23 23:44:31 +02:00
|
|
|
}
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|