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
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 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-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-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2016-03-19 15:10:20 +01:00
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
2015-03-31 20:37:55 +02:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
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;
|
|
|
|
import net.minecraft.world.World;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2016-03-19 15:10:20 +01:00
|
|
|
public class ItemPotionRing extends ItemBase implements IColorProvidingItem{
|
2015-03-31 20:37:55 +02:00
|
|
|
|
|
|
|
public static final ThePotionRings[] allRings = ThePotionRings.values();
|
|
|
|
|
2016-05-19 20:05:12 +02:00
|
|
|
private final boolean isAdvanced;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemPotionRing(boolean isAdvanced, String name){
|
|
|
|
super(name);
|
2015-03-31 20:37:55 +02:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxStackSize(1);
|
|
|
|
this.isAdvanced = isAdvanced;
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-11-23 19:06:07 +01:00
|
|
|
return stack.getItemDamage() >= allRings.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+allRings[stack.getItemDamage()].name;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void onUpdate(ItemStack stack, World world, Entity player, int par4, boolean par5){
|
|
|
|
super.onUpdate(stack, world, player, par4, par5);
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
if(!world.isRemote && stack.getItemDamage() < allRings.length){
|
2015-04-06 15:51:59 +02:00
|
|
|
if(player instanceof EntityPlayer){
|
|
|
|
EntityPlayer thePlayer = (EntityPlayer)player;
|
2016-05-02 07:50:13 +02:00
|
|
|
ItemStack equippedStack = ((EntityPlayer)player).getHeldItemMainhand();
|
2015-04-06 15:51:59 +02:00
|
|
|
|
|
|
|
ThePotionRings effect = ThePotionRings.values()[stack.getItemDamage()];
|
2016-03-18 23:47:22 +01:00
|
|
|
Potion potion = Potion.getPotionById(effect.effectID);
|
|
|
|
if(!effect.needsWaitBeforeActivating || !thePlayer.isPotionActive(potion)){
|
2015-04-06 15:51:59 +02:00
|
|
|
if(!((ItemPotionRing)stack.getItem()).isAdvanced){
|
2015-07-25 11:06:10 +02:00
|
|
|
if(equippedStack != null && stack == equippedStack){
|
2016-03-18 23:47:22 +01:00
|
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.normalAmplifier, true, false));
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
2016-03-18 23:47:22 +01:00
|
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.advancedAmplifier, true, false));
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public String getItemStackDisplayName(ItemStack stack){
|
2015-10-03 10:19:40 +02:00
|
|
|
String standardName = StringUtil.localize(this.getUnlocalizedName()+".name");
|
|
|
|
if(stack.getItemDamage() < allRings.length){
|
2015-10-23 16:48:56 +02:00
|
|
|
String effect = StringUtil.localize(allRings[stack.getItemDamage()].name);
|
2015-10-03 10:19:40 +02:00
|
|
|
return standardName+" "+effect;
|
|
|
|
}
|
|
|
|
return standardName;
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 23:42:42 +01:00
|
|
|
return stack.getItemDamage() >= allRings.length ? EnumRarity.COMMON : allRings[stack.getItemDamage()].rarity;
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
|
|
|
for(int j = 0; j < allRings.length; j++){
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
|
|
|
}
|
2016-01-10 15:29:44 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void registerRendering(){
|
|
|
|
for(int i = 0; i < allRings.length; i++){
|
2016-06-01 00:37:28 +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
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IItemColor getColor(){
|
|
|
|
return new IItemColor(){
|
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public int getColorFromItemstack(ItemStack stack, int tintIndex){
|
2016-03-19 15:10:20 +01:00
|
|
|
return stack.getItemDamage() >= allRings.length ? 0xFFFFFF : allRings[stack.getItemDamage()].color;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|