mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-16 09:23:12 +01:00
124 lines
6.1 KiB
Java
124 lines
6.1 KiB
Java
|
package de.ellpeck.naturesaura.items;
|
||
|
|
||
|
import de.ellpeck.naturesaura.NaturesAura;
|
||
|
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
|
||
|
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
|
||
|
import de.ellpeck.naturesaura.packet.PacketHandler;
|
||
|
import de.ellpeck.naturesaura.packet.PacketParticles;
|
||
|
import net.minecraft.entity.Entity;
|
||
|
import net.minecraft.entity.LivingEntity;
|
||
|
import net.minecraft.entity.passive.TameableEntity;
|
||
|
import net.minecraft.entity.player.PlayerEntity;
|
||
|
import net.minecraft.entity.player.ServerPlayerEntity;
|
||
|
import net.minecraft.entity.player.SpawnLocationHelper;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.ActionResultType;
|
||
|
import net.minecraft.util.Hand;
|
||
|
import net.minecraft.util.math.BlockPos;
|
||
|
import net.minecraft.util.math.vector.Vector3d;
|
||
|
import net.minecraft.util.text.TextFormatting;
|
||
|
import net.minecraft.util.text.TranslationTextComponent;
|
||
|
import net.minecraft.world.server.ServerWorld;
|
||
|
import net.minecraftforge.common.MinecraftForge;
|
||
|
import net.minecraftforge.event.entity.living.LivingDeathEvent;
|
||
|
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
|
||
|
import net.minecraftforge.eventbus.api.EventPriority;
|
||
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||
|
|
||
|
import java.util.Optional;
|
||
|
import java.util.UUID;
|
||
|
|
||
|
public class ItemPetReviver extends ItemImpl {
|
||
|
public ItemPetReviver() {
|
||
|
super("pet_reviver");
|
||
|
MinecraftForge.EVENT_BUS.register(new Events());
|
||
|
}
|
||
|
|
||
|
private static class Events {
|
||
|
|
||
|
// we need to use the event since the item doesn't receive the interaction for tamed pets..
|
||
|
@SubscribeEvent
|
||
|
public void onEntityInteract(PlayerInteractEvent.EntityInteractSpecific event) {
|
||
|
Entity target = event.getTarget();
|
||
|
if (!(target instanceof TameableEntity))
|
||
|
return;
|
||
|
if (target.getPersistentData().getBoolean(NaturesAura.MOD_ID + ":pet_reviver"))
|
||
|
return;
|
||
|
ItemStack stack = event.getPlayer().getHeldItem(event.getHand());
|
||
|
if (stack.getItem() != ModItems.PET_REVIVER)
|
||
|
return;
|
||
|
target.getPersistentData().putBoolean(NaturesAura.MOD_ID + ":pet_reviver", true);
|
||
|
stack.shrink(1);
|
||
|
event.setCancellationResult(ActionResultType.SUCCESS);
|
||
|
event.setCanceled(true);
|
||
|
}
|
||
|
|
||
|
// we want to be sure that the pet is really dying, so we want to receive the event last
|
||
|
@SubscribeEvent(priority = EventPriority.LOWEST)
|
||
|
public void onLivingDeath(LivingDeathEvent event) {
|
||
|
LivingEntity entity = event.getEntityLiving();
|
||
|
if (entity.world.isRemote || !(entity instanceof TameableEntity))
|
||
|
return;
|
||
|
TameableEntity tameable = (TameableEntity) entity;
|
||
|
if (!tameable.isTamed() || !tameable.getPersistentData().getBoolean(NaturesAura.MOD_ID + ":pet_reviver"))
|
||
|
return;
|
||
|
|
||
|
// get the overworld, and the overworld's spawn point, by default
|
||
|
ServerWorld spawnWorld = tameable.world.getServer().func_241755_D_();
|
||
|
Vector3d spawn = Vector3d.copyCenteredHorizontally(spawnWorld.func_241135_u_());
|
||
|
|
||
|
// check if the owner is online, and respawn at the bed if they are
|
||
|
LivingEntity owner = tameable.getOwner();
|
||
|
if (owner instanceof ServerPlayerEntity) {
|
||
|
ServerPlayerEntity player = (ServerPlayerEntity) owner;
|
||
|
|
||
|
// I'm not really sure what this means, but I got it from PlayerList.func_232644_a_ haha
|
||
|
BlockPos pos = player.func_241140_K_();
|
||
|
if (pos != null) {
|
||
|
float f = player.func_242109_L();
|
||
|
boolean b = player.func_241142_M_();
|
||
|
Optional<Vector3d> bed = PlayerEntity.func_242374_a((ServerWorld) player.world, pos, f, b, false);
|
||
|
if (bed.isPresent()) {
|
||
|
spawnWorld = (ServerWorld) player.world;
|
||
|
spawn = bed.get();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
PacketHandler.sendToAllAround(tameable.world, tameable.getPosition(), 32, new PacketParticles((float) tameable.getPosX(), (float) tameable.getPosYEye(), (float) tameable.getPosZ(), PacketParticles.Type.PET_REVIVER, 0xc2461d));
|
||
|
|
||
|
TameableEntity spawnedPet = tameable;
|
||
|
if (tameable.world != spawnWorld) {
|
||
|
((ServerWorld) tameable.world).removeEntity(tameable, true);
|
||
|
spawnedPet = (TameableEntity) tameable.getType().create(spawnWorld);
|
||
|
}
|
||
|
// respawn (a copy of) the pet
|
||
|
spawnedPet.copyDataFromOld(tameable);
|
||
|
spawnedPet.setMotion(0, 0, 0);
|
||
|
spawnedPet.setLocationAndAngles(spawn.x, spawn.y, spawn.z, tameable.rotationYaw, tameable.rotationPitch);
|
||
|
while (!spawnWorld.hasNoCollisions(spawnedPet))
|
||
|
spawnedPet.setPosition(spawnedPet.getPosX(), spawnedPet.getPosY() + 1, spawnedPet.getPosZ());
|
||
|
spawnedPet.setHealth(spawnedPet.getMaxHealth());
|
||
|
spawnedPet.getNavigator().clearPath();
|
||
|
// sit down (on the server side!)
|
||
|
spawnedPet.func_233687_w_(true);
|
||
|
spawnedPet.setJumping(false);
|
||
|
spawnedPet.setAttackTarget(null);
|
||
|
if (tameable.world != spawnWorld) {
|
||
|
spawnWorld.addEntity(spawnedPet);
|
||
|
tameable.remove(false);
|
||
|
}
|
||
|
|
||
|
// drain aura
|
||
|
BlockPos auraPos = IAuraChunk.getHighestSpot(spawnWorld, spawnedPet.getPosition(), 35, spawnedPet.getPosition());
|
||
|
IAuraChunk.getAuraChunk(spawnWorld, auraPos).drainAura(auraPos, 200000);
|
||
|
|
||
|
PacketHandler.sendToAllAround(spawnedPet.world, spawnedPet.getPosition(), 32, new PacketParticles((float) spawnedPet.getPosX(), (float) spawnedPet.getPosYEye(), (float) spawnedPet.getPosZ(), PacketParticles.Type.PET_REVIVER, 0x4dba2f));
|
||
|
|
||
|
if (owner instanceof PlayerEntity)
|
||
|
owner.sendMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".pet_reviver", spawnedPet.getDisplayName()).mergeStyle(TextFormatting.ITALIC, TextFormatting.GRAY), UUID.randomUUID());
|
||
|
event.setCanceled(true);
|
||
|
}
|
||
|
}
|
||
|
}
|