2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemAllToolAA.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-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;
|
2015-09-13 16:41:49 +02:00
|
|
|
|
import ellpeck.actuallyadditions.config.ConfigValues;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-08-28 22:18:46 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-06-12 19:12:06 +02:00
|
|
|
|
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.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.Set;
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class ItemAllToolAA extends ItemTool implements IActAddItemOrBlock{
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-13 16:41:49 +02:00
|
|
|
|
private boolean hasExtraWhitelist(Block block){
|
|
|
|
|
String name = Block.blockRegistry.getNameForObject(block);
|
|
|
|
|
if(name != null){
|
|
|
|
|
for(String list : ConfigValues.paxelExtraMiningWhitelist){
|
|
|
|
|
if(list.equals(name)) return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
|
@Override
|
2015-07-15 05:33:02 +02:00
|
|
|
|
public float getDigSpeed(ItemStack stack, Block block, int meta){
|
2015-09-13 16:41:49 +02:00
|
|
|
|
return this.hasExtraWhitelist(block) || block.getHarvestTool(meta) == null || block.getHarvestTool(meta).isEmpty() || 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-09-13 16:41:49 +02:00
|
|
|
|
return this.hasExtraWhitelist(block) || block.getMaterial().isToolNotRequired() || (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
|
|
|
|
|
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ){
|
2015-10-02 16:48:01 +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-10-02 16:48:01 +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-10-02 16:48:01 +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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
|
else{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@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){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
2015-06-12 19:12:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@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
|
|
|
|
}
|