mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
4e0082ed7d
ACTUALLY closes #97.
127 lines
4.7 KiB
Java
127 lines
4.7 KiB
Java
/*
|
|
* This file ("ItemPotionRing.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.ThePotionRings;
|
|
import de.ellpeck.actuallyadditions.mod.util.IColorProvidingItem;
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
|
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;
|
|
import net.minecraft.potion.Potion;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
import javax.annotation.Nonnull;
|
|
import java.util.List;
|
|
|
|
public class ItemPotionRing extends ItemBase implements IColorProvidingItem{
|
|
|
|
public static final ThePotionRings[] allRings = ThePotionRings.values();
|
|
|
|
private final boolean isAdvanced;
|
|
|
|
public ItemPotionRing(boolean isAdvanced, String name){
|
|
super(name);
|
|
this.setHasSubtypes(true);
|
|
this.setMaxStackSize(1);
|
|
this.isAdvanced = isAdvanced;
|
|
}
|
|
|
|
@Override
|
|
public int getMetadata(int damage){
|
|
return damage;
|
|
}
|
|
|
|
|
|
@Override
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
return stack.getItemDamage() >= allRings.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+allRings[stack.getItemDamage()].name;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("unchecked")
|
|
public void onUpdate(ItemStack stack, World world, Entity player, int par4, boolean par5){
|
|
super.onUpdate(stack, world, player, par4, par5);
|
|
|
|
if(!world.isRemote && stack.getItemDamage() < allRings.length){
|
|
if(player instanceof EntityPlayer){
|
|
EntityPlayer thePlayer = (EntityPlayer)player;
|
|
ItemStack equippedStack = ((EntityPlayer)player).getHeldItemMainhand();
|
|
|
|
ThePotionRings effect = ThePotionRings.values()[stack.getItemDamage()];
|
|
Potion potion = Potion.getPotionById(effect.effectID);
|
|
if(!effect.needsWaitBeforeActivating || !thePlayer.isPotionActive(potion)){
|
|
if(!((ItemPotionRing)stack.getItem()).isAdvanced){
|
|
if(equippedStack != null && stack == equippedStack){
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.normalAmplifier, true, false));
|
|
}
|
|
}
|
|
else{
|
|
thePlayer.addPotionEffect(new PotionEffect(potion, effect.activeTime, effect.advancedAmplifier, true, false));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
public String getItemStackDisplayName(ItemStack stack){
|
|
String standardName = StringUtil.localize(this.getUnlocalizedName()+".name");
|
|
if(stack.getItemDamage() < allRings.length){
|
|
String effect = StringUtil.localize(allRings[stack.getItemDamage()].name);
|
|
return standardName+" "+effect;
|
|
}
|
|
return standardName;
|
|
}
|
|
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
return stack.getItemDamage() >= allRings.length ? EnumRarity.COMMON : allRings[stack.getItemDamage()].rarity;
|
|
}
|
|
|
|
@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));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void registerRendering(){
|
|
for(int i = 0; i < allRings.length; i++){
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), new ModelResourceLocation(this.getRegistryName(), "inventory"));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public IItemColor getColor(){
|
|
return new IItemColor(){
|
|
@Override
|
|
public int getColorFromItemstack(ItemStack stack, int tintIndex){
|
|
return stack.getItemDamage() >= allRings.length ? 0xFFFFFF : allRings[stack.getItemDamage()].color;
|
|
}
|
|
};
|
|
}
|
|
}
|