2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemSpecialDrop.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
package ellpeck.actuallyadditions.items;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-03-07 12:51:28 +01:00
|
|
|
|
import ellpeck.actuallyadditions.items.metalists.TheSpecialDrops;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-04-06 15:51:59 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-03-29 16:07:43 +02:00
|
|
|
|
import net.minecraft.entity.item.EntityXPOrb;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.util.IIcon;
|
2015-03-29 16:07:43 +02:00
|
|
|
|
import net.minecraft.world.World;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class ItemSpecialDrop extends Item implements IActAddItemOrBlock{
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
|
public static final int SOLID_XP_AMOUNT = 8;
|
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
|
public static final TheSpecialDrops[] allDrops = TheSpecialDrops.values();
|
|
|
|
|
public IIcon[] textures = new IIcon[allDrops.length];
|
|
|
|
|
|
|
|
|
|
public ItemSpecialDrop(){
|
|
|
|
|
this.setHasSubtypes(true);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
|
@Override
|
|
|
|
|
public IIcon getIconFromDamage(int par1){
|
|
|
|
|
return par1 >= textures.length ? null : textures[par1];
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-29 16:07:43 +02:00
|
|
|
|
@Override
|
|
|
|
|
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
|
|
|
|
|
if(!world.isRemote){
|
|
|
|
|
if(stack.getItemDamage() == TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal()){
|
2015-06-12 19:12:06 +02:00
|
|
|
|
if(!player.isSneaking()){
|
|
|
|
|
world.spawnEntityInWorld(new EntityXPOrb(world, player.posX+0.5, player.posY+0.5, player.posZ+0.5, SOLID_XP_AMOUNT));
|
2015-10-03 10:16:18 +02:00
|
|
|
|
if(!player.capabilities.isCreativeMode){
|
|
|
|
|
stack.stackSize--;
|
|
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
world.spawnEntityInWorld(new EntityXPOrb(world, player.posX+0.5, player.posY+0.5, player.posZ+0.5, SOLID_XP_AMOUNT*stack.stackSize));
|
2015-10-03 10:16:18 +02:00
|
|
|
|
if(!player.capabilities.isCreativeMode){
|
|
|
|
|
stack.stackSize = 0;
|
|
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
}
|
2015-03-29 16:07:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return stack;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
|
return damage;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
|
|
|
return this.getUnlocalizedName()+(stack.getItemDamage() >= allDrops.length ? " ERROR!" : allDrops[stack.getItemDamage()].getName());
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
|
return stack.getItemDamage() >= allDrops.length ? EnumRarity.common : allDrops[stack.getItemDamage()].rarity;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
|
|
|
|
for(int j = 0; j < allDrops.length; j++){
|
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
|
for(int i = 0; i < textures.length; i++){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+allDrops[i].getName());
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
|
|
|
|
return "itemSpecial";
|
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|