ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemHairBall.java

88 lines
3.9 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemHairyBall.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-05-07 16:36:29 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
2016-07-03 20:57:00 +02:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
2018-01-29 09:28:12 +01:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigIntValues;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
2021-03-01 21:30:45 +01:00
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.passive.OcelotEntity;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
2015-05-07 16:36:29 +02:00
import net.minecraft.item.ItemStack;
2021-02-26 22:15:48 +01:00
import net.minecraft.util.*;
2015-05-07 16:36:29 +02:00
import net.minecraft.world.World;
2016-07-03 20:57:00 +02:00
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.LivingEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
2016-07-03 20:57:00 +02:00
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
2021-02-26 22:15:48 +01:00
import java.util.Random;
import java.util.UUID;
public class ItemHairBall extends ItemBase {
2019-02-27 19:53:05 +01:00
private final UUID KittyVanCatUUID = UUID.fromString("681d4e20-10ef-40c9-a0a5-ba2f1995ef44");
public ItemHairBall() {
2021-03-01 21:30:45 +01:00
super();
// TODO: [port] move this.
2016-07-03 20:57:00 +02:00
MinecraftForge.EVENT_BUS.register(this);
}
2015-05-07 16:36:29 +02:00
2016-07-03 20:57:00 +02:00
@SubscribeEvent
2019-05-02 09:10:29 +02:00
public void livingUpdateEvent(LivingEvent.LivingUpdateEvent event) {
2016-07-03 20:57:00 +02:00
//Ocelots dropping Hair Balls
2019-05-02 09:10:29 +02:00
if (ConfigBoolValues.DO_CAT_DROPS.isEnabled() && event.getEntityLiving() != null && event.getEntityLiving().world != null && !event.getEntityLiving().world.isRemote) {
if (event.getEntityLiving() instanceof OcelotEntity && catIsTamedReflection((OcelotEntity) event.getEntityLiving()) || event.getEntityLiving() instanceof PlayerEntity && event.getEntityLiving().getUniqueID().equals(this.KittyVanCatUUID)) {
2019-05-02 09:10:29 +02:00
if (event.getEntityLiving().world.rand.nextInt(ConfigIntValues.FUR_CHANCE.getValue()) == 0) {
ItemEntity item = new ItemEntity(event.getEntityLiving().world, event.getEntityLiving().getPosX() + 0.5, event.getEntityLiving().getPosY() + 0.5, event.getEntityLiving().getPosZ() + 0.5, new ItemStack(ActuallyItems.HAIRY_BALL.get()));
2021-03-01 21:30:45 +01:00
event.getEntityLiving().world.addEntity(item);
2019-02-27 19:53:05 +01:00
}
}
2016-07-03 20:57:00 +02:00
}
}
public static boolean catIsTamedReflection(OcelotEntity entity) {
try {
Method isTrusting = OcelotEntity.class.getDeclaredMethod("isTrusting");
return (boolean) isTrusting.invoke(entity);
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
e.printStackTrace();
}
return false;
}
2015-05-07 16:36:29 +02:00
@Override
2021-02-26 22:15:48 +01:00
public ActionResult<ItemStack> onItemRightClick(World world, PlayerEntity player, Hand hand) {
2016-11-19 21:11:17 +01:00
ItemStack stack = player.getHeldItem(hand);
2019-05-02 09:10:29 +02:00
if (!world.isRemote) {
2016-11-02 19:36:32 +01:00
ItemStack returnItem = this.getRandomReturnItem(world.rand);
2019-05-02 09:10:29 +02:00
if (!player.inventory.addItemStackToInventory(returnItem)) {
ItemEntity entityItem = new ItemEntity(player.world, player.getPosX(), player.getPosY(), player.getPosZ(), returnItem);
entityItem.setPickupDelay(0);
2021-03-01 21:30:45 +01:00
player.world.addEntity(entityItem);
2015-05-07 16:36:29 +02:00
}
stack.shrink(1);
2016-03-18 23:47:22 +01:00
world.playSound(null, player.getPosX(), player.getPosY(), player.getPosZ(), SoundEvents.ENTITY_ITEM_PICKUP, SoundCategory.PLAYERS, 0.2F, world.rand.nextFloat() * 0.1F + 0.9F);
2015-05-07 16:36:29 +02:00
}
return ActionResult.resultSuccess(stack);
2015-05-07 16:36:29 +02:00
}
2019-05-02 09:10:29 +02:00
public ItemStack getRandomReturnItem(Random rand) {
2016-11-02 19:36:32 +01:00
return WeightedRandom.getRandomItem(rand, ActuallyAdditionsAPI.BALL_OF_FUR_RETURN_ITEMS).returnItem.copy();
2015-05-07 16:36:29 +02:00
}
}