2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemPotionRing.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-03-31 20:37:55 +02:00
|
|
|
|
2016-06-06 21:27:09 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.misc.IDisplayStandItem;
|
2016-01-10 15:29:44 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.ThePotionRings;
|
2016-03-19 15:10:20 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.IColorProvidingItem;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2017-07-28 03:17:50 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2016-03-19 15:10:20 +01:00
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
2017-06-17 00:48:49 +02:00
|
|
|
import net.minecraft.client.util.ITooltipFlag;
|
2015-03-31 20:37:55 +02:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.entity.Entity;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2015-03-31 20:37:55 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.potion.Potion;
|
2015-03-31 20:37:55 +02:00
|
|
|
import net.minecraft.potion.PotionEffect;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.NonNullList;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
2016-11-22 00:11:58 +01:00
|
|
|
import net.minecraft.util.math.MathHelper;
|
2015-03-31 20:37:55 +02:00
|
|
|
import net.minecraft.world.World;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.OnlyIn;
|
|
|
|
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemPotionRing extends ItemBase implements IColorProvidingItem, IDisplayStandItem {
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static final ThePotionRings[] ALL_RINGS = ThePotionRings.values();
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2016-11-22 00:11:58 +01:00
|
|
|
public static final int MAX_BLAZE = 800;
|
2016-05-19 20:05:12 +02:00
|
|
|
private final boolean isAdvanced;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemPotionRing(boolean isAdvanced, String name) {
|
2015-12-03 20:15:07 +01:00
|
|
|
super(name);
|
2015-03-31 20:37:55 +02:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxStackSize(1);
|
|
|
|
this.isAdvanced = isAdvanced;
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public static int getStoredBlaze(ItemStack stack) {
|
|
|
|
if (!StackUtil.isValid(stack) || !stack.hasTagCompound()) {
|
2016-11-26 21:32:27 +01:00
|
|
|
return 0;
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-11-26 21:32:27 +01:00
|
|
|
return stack.getTagCompound().getInteger("Blaze");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public static void setStoredBlaze(ItemStack stack, int amount) {
|
|
|
|
if (StackUtil.isValid(stack)) {
|
|
|
|
if (!stack.hasTagCompound()) {
|
2021-02-26 22:15:48 +01:00
|
|
|
stack.setTagCompound(new CompoundNBT());
|
2016-11-26 21:32:27 +01:00
|
|
|
}
|
|
|
|
stack.getTagCompound().setInteger("Blaze", amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getMetadata(int damage) {
|
2015-10-03 10:19:40 +02:00
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
2016-11-22 00:11:58 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public double getDurabilityForDisplay(ItemStack stack) {
|
|
|
|
double diff = MAX_BLAZE - getStoredBlaze(stack);
|
|
|
|
return diff / MAX_BLAZE;
|
2016-11-22 00:11:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getRGBDurabilityForDisplay(ItemStack stack) {
|
2016-11-22 18:26:29 +01:00
|
|
|
int curr = getStoredBlaze(stack);
|
2019-05-02 09:10:29 +02:00
|
|
|
return MathHelper.hsvToRGB(Math.max(0.0F, (float) curr / MAX_BLAZE) / 3.0F, 1.0F, 1.0F);
|
2016-11-22 00:11:58 +01:00
|
|
|
}
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public String getTranslationKey(ItemStack stack) {
|
2021-02-26 22:15:48 +01:00
|
|
|
return stack.getItemDamage() >= ALL_RINGS.length
|
|
|
|
? StringUtil.BUGGED_ITEM_NAME
|
|
|
|
: this.getTranslationKey() + ALL_RINGS[stack.getItemDamage()].name;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 00:11:58 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean showDurabilityBar(ItemStack itemStack) {
|
2016-11-22 00:11:58 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void onUpdate(ItemStack stack, World world, Entity player, int par4, boolean par5) {
|
2015-03-31 20:37:55 +02:00
|
|
|
super.onUpdate(stack, world, player, par4, par5);
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!world.isRemote && stack.getItemDamage() < ALL_RINGS.length) {
|
2021-02-26 22:15:48 +01:00
|
|
|
if (player instanceof PlayerEntity) {
|
|
|
|
PlayerEntity thePlayer = (PlayerEntity) player;
|
2016-11-22 00:11:58 +01:00
|
|
|
|
|
|
|
int storedBlaze = getStoredBlaze(stack);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (storedBlaze > 0) {
|
2016-11-22 00:11:58 +01:00
|
|
|
ItemStack equippedStack = thePlayer.getHeldItemMainhand();
|
|
|
|
ItemStack offhandStack = thePlayer.getHeldItemOffhand();
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.effectEntity(thePlayer, stack, StackUtil.isValid(equippedStack) && stack == equippedStack || StackUtil.isValid(offhandStack) && stack == offhandStack)) {
|
|
|
|
if (world.getTotalWorldTime() % 10 == 0) {
|
|
|
|
setStoredBlaze(stack, storedBlaze - 1);
|
2016-11-22 00:11:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-22 00:11:58 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged) {
|
2016-11-22 00:11:58 +01:00
|
|
|
return slotChanged || !ItemStack.areItemsEqual(oldStack, newStack);
|
|
|
|
}
|
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public String getItemStackDisplayName(ItemStack stack) {
|
|
|
|
if (Util.isClient()) {
|
|
|
|
String standardName = StringUtil.localize(this.getTranslationKey() + ".name");
|
|
|
|
if (stack.getItemDamage() < ALL_RINGS.length) {
|
2019-02-27 19:53:05 +01:00
|
|
|
String effect = StringUtil.localize(ALL_RINGS[stack.getItemDamage()].name);
|
2019-05-02 09:10:29 +02:00
|
|
|
return standardName + " " + effect;
|
2019-02-27 19:53:05 +01:00
|
|
|
}
|
|
|
|
return standardName;
|
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
String standardName = StringUtil.localizeIllegallyOnTheServerDontUseMePls(this.getTranslationKey() + ".name");
|
|
|
|
if (stack.getItemDamage() < ALL_RINGS.length) {
|
2019-02-27 19:53:05 +01:00
|
|
|
String effect = StringUtil.localizeIllegallyOnTheServerDontUseMePls(ALL_RINGS[stack.getItemDamage()].name);
|
2019-05-02 09:10:29 +02:00
|
|
|
return standardName + " " + effect;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
return standardName;
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2021-02-26 22:15:48 +01:00
|
|
|
return stack.getItemDamage() >= ALL_RINGS.length
|
|
|
|
? EnumRarity.COMMON
|
|
|
|
: ALL_RINGS[stack.getItemDamage()].rarity;
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
|
2016-06-10 21:52:37 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-05-02 09:10:29 +02:00
|
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list) {
|
|
|
|
if (this.isInCreativeTab(tab)) {
|
|
|
|
for (int j = 0; j < ALL_RINGS.length; j++) {
|
2017-06-17 00:48:49 +02:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
|
|
|
|
ItemStack full = new ItemStack(this, 1, j);
|
|
|
|
setStoredBlaze(full, MAX_BLAZE);
|
|
|
|
list.add(full);
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-10 15:29:44 +01:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
protected void registerRendering() {
|
|
|
|
for (int i = 0; i < ALL_RINGS.length; i++) {
|
2018-05-10 11:38:58 +02:00
|
|
|
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), "inventory");
|
2016-01-10 15:29:44 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-19 15:10:20 +01:00
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-05-02 09:10:29 +02:00
|
|
|
public IItemColor getItemColor() {
|
2021-02-26 22:15:48 +01:00
|
|
|
return (stack, tintIndex) -> stack.getItemDamage() >= ALL_RINGS.length
|
|
|
|
? 0xFFFFFF
|
|
|
|
: ALL_RINGS[stack.getItemDamage()].color;
|
2016-03-19 15:10:20 +01:00
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean update(ItemStack stack, TileEntity tile, int elapsedTicks) {
|
|
|
|
boolean advanced = ((ItemPotionRing) stack.getItem()).isAdvanced;
|
2021-02-26 22:15:48 +01:00
|
|
|
int range = advanced
|
|
|
|
? 48
|
|
|
|
: 16;
|
2019-05-02 09:10:29 +02:00
|
|
|
List<EntityLivingBase> entities = tile.getWorld().getEntitiesWithinAABB(EntityLivingBase.class, new AxisAlignedBB(tile.getPos().getX() - range, tile.getPos().getY() - range, tile.getPos().getZ() - range, tile.getPos().getX() + range, tile.getPos().getY() + range, tile.getPos().getZ() + range));
|
|
|
|
if (entities != null && !entities.isEmpty()) {
|
|
|
|
if (advanced) {
|
2016-06-06 21:27:09 +02:00
|
|
|
//Give all entities the effect
|
2019-05-02 09:10:29 +02:00
|
|
|
for (EntityLivingBase entity : entities) {
|
2016-06-06 21:27:09 +02:00
|
|
|
this.effectEntity(entity, stack, true);
|
|
|
|
}
|
|
|
|
return true;
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-06-06 21:27:09 +02:00
|
|
|
Potion potion = Potion.getPotionById(ThePotionRings.values()[stack.getItemDamage()].effectID);
|
2019-05-02 09:10:29 +02:00
|
|
|
for (EntityLivingBase entity : entities) {
|
|
|
|
if (entity.isPotionActive(potion)) {
|
2016-06-06 21:27:09 +02:00
|
|
|
//Sometimes make the effect switch to someone else
|
2019-05-02 09:10:29 +02:00
|
|
|
if (tile.getWorld().rand.nextInt(100) <= 0) {
|
2016-06-06 21:29:21 +02:00
|
|
|
entity.removePotionEffect(potion);
|
2016-06-06 21:27:09 +02:00
|
|
|
break;
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-06-06 21:27:09 +02:00
|
|
|
//Continue giving the entity that already has the potion effect the effect
|
|
|
|
//Otherwise, it will randomly switch around to other entities
|
|
|
|
this.effectEntity(entity, stack, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Give the effect to someone new if no one had it or it randomly switched
|
|
|
|
Collections.shuffle(entities);
|
|
|
|
this.effectEntity(entities.get(0), stack, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getUsePerTick(ItemStack stack, TileEntity tile, int elapsedTicks) {
|
2016-06-06 21:27:09 +02:00
|
|
|
return 325;
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
private boolean effectEntity(EntityLivingBase thePlayer, ItemStack stack, boolean canUseBasic) {
|
2016-06-06 21:27:09 +02:00
|
|
|
ThePotionRings effect = ThePotionRings.values()[stack.getItemDamage()];
|
|
|
|
Potion potion = Potion.getPotionById(effect.effectID);
|
|
|
|
PotionEffect activeEffect = thePlayer.getActivePotionEffect(potion);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!effect.needsWaitBeforeActivating || activeEffect == null || activeEffect.getDuration() <= 1) {
|
|
|
|
if (!((ItemPotionRing) stack.getItem()).isAdvanced) {
|
|
|
|
if (canUseBasic) {
|
2016-06-06 21:27:09 +02:00
|
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.normalAmplifier, true, false));
|
2016-11-22 00:11:58 +01:00
|
|
|
return true;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-06-06 21:27:09 +02:00
|
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.advancedAmplifier, true, false));
|
2016-11-22 00:11:58 +01:00
|
|
|
return true;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-22 00:11:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void addInformation(ItemStack stack, @Nullable World playerIn, List<String> tooltip, ITooltipFlag advanced) {
|
2016-11-22 00:11:58 +01:00
|
|
|
super.addInformation(stack, playerIn, tooltip, advanced);
|
2019-05-02 09:10:29 +02:00
|
|
|
tooltip.add(String.format("%d/%d %s", getStoredBlaze(stack), MAX_BLAZE, StringUtil.localize("item." + ActuallyAdditions.MODID + ".item_misc_ring.storage")));
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|