2015-06-12 19:12:06 +02:00
|
|
|
package ellpeck.actuallyadditions.items.tools;
|
2015-07-06 19:52:27 +02:00
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
import cpw.mods.fml.common.eventhandler.Event;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
2015-06-18 13:14:57 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ItemUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.KeyUtil;
|
2015-06-12 19:12:06 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Blocks;
|
2015-07-07 14:32:10 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.ItemTool;
|
2015-06-12 19:12:06 +02:00
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.event.entity.player.UseHoeEvent;
|
2015-07-12 22:05:34 +02:00
|
|
|
import net.minecraftforge.oredict.OreDictionary;
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
import java.util.HashSet;
|
2015-06-12 19:12:06 +02:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public class ItemAllToolAA extends ItemTool implements INameableItem{
|
|
|
|
|
|
|
|
private String name;
|
|
|
|
private EnumRarity rarity;
|
2015-07-12 22:05:34 +02:00
|
|
|
private String repairItem;
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-07-12 22:05:34 +02:00
|
|
|
public ItemAllToolAA(ToolMaterial toolMat, String repairItem, String unlocalizedName, EnumRarity rarity){
|
2015-07-15 05:33:02 +02:00
|
|
|
super(4.0F, toolMat, Sets.newHashSet());
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
this.repairItem = repairItem;
|
|
|
|
this.name = unlocalizedName;
|
|
|
|
this.rarity = rarity;
|
|
|
|
|
|
|
|
this.setMaxDamage(this.getMaxDamage()*4);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-07-15 05:33:02 +02:00
|
|
|
public float getDigSpeed(ItemStack stack, Block block, int meta){
|
|
|
|
return this.getToolClasses(stack).contains(block.getHarvestTool(meta)) ? this.efficiencyOnProperMaterial : 1.0F;
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-07-15 05:33:02 +02:00
|
|
|
public boolean canHarvestBlock(Block block, ItemStack stack){
|
2015-07-20 22:06:08 +02:00
|
|
|
return block == Blocks.snow_layer || block == Blocks.snow || (block == Blocks.obsidian ? this.toolMaterial.getHarvestLevel() == 3 : (block != Blocks.diamond_block && block != Blocks.diamond_ore ? (block != Blocks.emerald_ore && block != Blocks.emerald_block ? (block != Blocks.gold_block && block != Blocks.gold_ore ? (block != Blocks.iron_block && block != Blocks.iron_ore ? (block != Blocks.lapis_block && block != Blocks.lapis_ore ? (block != Blocks.redstone_ore && block != Blocks.lit_redstone_ore ? (block.getMaterial() == Material.rock || (block.getMaterial() == Material.iron || block.getMaterial() == Material.anvil)) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2));
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
2015-06-18 13:14:57 +02:00
|
|
|
if(KeyUtil.isShiftPressed()){
|
2015-07-13 00:30:24 +02:00
|
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".paxel.desc.1"));
|
|
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".paxel.desc.2"));
|
2015-06-18 13:14:57 +02:00
|
|
|
list.add(StatCollector.translateToLocal("tooltip." + ModUtil.MOD_ID_LOWER + ".durability.desc") + ": " + (this.getMaxDamage()-this.getDamage(stack)) + "/" + this.getMaxDamage());
|
|
|
|
}
|
|
|
|
else list.add(ItemUtil.shiftForInfo());
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ){
|
2015-06-18 13:14:57 +02:00
|
|
|
if (!player.canPlayerEdit(x, y, z, side, stack)) return false;
|
2015-06-12 19:12:06 +02:00
|
|
|
else{
|
|
|
|
UseHoeEvent event = new UseHoeEvent(player, stack, world, x, y, z);
|
|
|
|
if(MinecraftForge.EVENT_BUS.post(event)) return false;
|
|
|
|
if(event.getResult() == Event.Result.ALLOW){
|
|
|
|
stack.damageItem(1, player);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Block block = world.getBlock(x, y, z);
|
2015-06-18 13:14:57 +02:00
|
|
|
if(side != 0 && world.getBlock(x, y + 1, z).isAir(world, x, y + 1, z) && (block == Blocks.grass || block == Blocks.dirt)){
|
2015-06-12 19:12:06 +02:00
|
|
|
Block block1 = Blocks.farmland;
|
2015-06-18 13:14:57 +02:00
|
|
|
world.playSoundEffect((double)((float)x + 0.5F), (double)((float)y + 0.5F), (double)((float)z + 0.5F), block1.stepSound.getStepResourcePath(), (block1.stepSound.getVolume() + 1.0F) / 2.0F, block1.stepSound.getPitch() * 0.8F);
|
|
|
|
if (world.isRemote) return true;
|
2015-06-12 19:12:06 +02:00
|
|
|
else{
|
|
|
|
world.setBlock(x, y, z, block1);
|
|
|
|
stack.damageItem(1, player);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean getIsRepairable(ItemStack itemToRepair, ItemStack stack){
|
2015-07-12 22:05:34 +02:00
|
|
|
int[] idsStack = OreDictionary.getOreIDs(stack);
|
|
|
|
for(int id : idsStack){
|
|
|
|
if(OreDictionary.getOreName(id).equals(repairItem)) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return this.rarity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
return this.itemIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER + ":" + this.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@Override
|
|
|
|
public Set<String> getToolClasses(ItemStack stack){
|
2015-07-17 23:22:10 +02:00
|
|
|
HashSet<String> hashSet = new HashSet<String>();
|
2015-06-21 02:28:49 +02:00
|
|
|
hashSet.add("pickaxe");
|
|
|
|
hashSet.add("axe");
|
|
|
|
hashSet.add("shovel");
|
|
|
|
return hashSet;
|
|
|
|
}
|
2015-07-06 19:52:27 +02:00
|
|
|
}
|