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
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-19 11:36:17 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-07-06 19:52:27 +02:00
|
|
|
|
2016-01-08 20:51:03 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
|
2016-03-19 11:36:17 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemToolAA;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2015-06-12 19:12:06 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-03-19 11:36:17 +01:00
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
2015-06-12 19:12:06 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Blocks;
|
2016-03-18 18:38:39 +01:00
|
|
|
import net.minecraft.init.Items;
|
2015-07-07 14:32:10 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.EnumActionResult;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.EnumHand;
|
2016-01-08 20:51:03 +01:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2015-06-12 19:12:06 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
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")
|
2016-03-19 11:36:17 +01:00
|
|
|
public class ItemAllToolAA extends ItemToolAA implements IItemColor{
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-10-25 23:19:01 +01:00
|
|
|
private int color;
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
public ItemAllToolAA(ToolMaterial toolMat, String repairItem, String unlocalizedName, EnumRarity rarity, int color){
|
2016-03-19 11:36:17 +01:00
|
|
|
super(4.0F, -2F, toolMat, repairItem, unlocalizedName, rarity, new HashSet<Block>());
|
|
|
|
this.color = color;
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
2015-12-31 15:05:27 +01:00
|
|
|
public ItemAllToolAA(ToolMaterial toolMat, ItemStack repairItem, String unlocalizedName, EnumRarity rarity, int color){
|
2016-03-19 11:36:17 +01:00
|
|
|
super(4.0F, -2F, toolMat, repairItem, unlocalizedName, rarity, new HashSet<Block>());
|
2015-10-25 23:19:01 +01:00
|
|
|
this.color = color;
|
2015-12-19 10:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
protected void registerRendering(){
|
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this), new ResourceLocation(ModUtil.MOD_ID_LOWER, "itemPaxel"));
|
|
|
|
ActuallyAdditions.proxy.addRenderVariant(this, new ResourceLocation(ModUtil.MOD_ID_LOWER, "itemPaxel"));
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public EnumActionResult onItemUse(ItemStack stack, EntityPlayer playerIn, World worldIn, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ){
|
|
|
|
return Items.iron_hoe.onItemUse(stack, playerIn, worldIn, pos, hand, side, hitX, hitY, hitZ);
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public boolean canHarvestBlock(IBlockState state, ItemStack stack){
|
|
|
|
|
|
|
|
return this.hasExtraWhitelist(state.getBlock()) || state.getBlock().getMaterial(state).isToolNotRequired() || (state.getBlock() == Blocks.snow_layer || state.getBlock()== Blocks.snow || (state.getBlock()== Blocks.obsidian ? this.toolMaterial.getHarvestLevel() >= 3 : (state.getBlock()!= Blocks.diamond_block && state.getBlock()!= Blocks.diamond_ore ? (state.getBlock()!= Blocks.emerald_ore && state.getBlock()!= Blocks.emerald_block? (state.getBlock()!= Blocks.gold_block&& state.getBlock()!= Blocks.gold_ore ? (state.getBlock()!= Blocks.iron_block&& state.getBlock()!= Blocks.iron_ore ? (state.getBlock()!= Blocks.lapis_block&& state.getBlock()!= Blocks.lapis_ore ? (state.getBlock()!= Blocks.redstone_ore && state.getBlock()!= Blocks.lit_redstone_ore ? (state.getBlock().getMaterial(state) == Material.rock || (state.getBlock().getMaterial(state) == Material.iron || state.getBlock().getMaterial(state) == 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
|
|
|
}
|
|
|
|
|
2015-10-03 22:13:57 +02:00
|
|
|
private boolean hasExtraWhitelist(Block block){
|
2016-01-07 21:41:28 +01:00
|
|
|
String name = block.getRegistryName();
|
2015-10-03 22:13:57 +02:00
|
|
|
if(name != null){
|
|
|
|
for(String list : ConfigValues.paxelExtraMiningWhitelist){
|
|
|
|
if(list.equals(name)){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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-10-03 10:19:40 +02:00
|
|
|
|
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public float getStrVsBlock(ItemStack stack, IBlockState state){
|
2016-01-07 21:41:28 +01:00
|
|
|
return this.hasExtraWhitelist(state.getBlock()) || state.getBlock().getHarvestTool(state) == null || state.getBlock().getHarvestTool(state).isEmpty() || this.getToolClasses(stack).contains(state.getBlock().getHarvestTool(state)) ? this.efficiencyOnProperMaterial : 1.0F;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2016-03-19 11:36:17 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getColorFromItemstack(ItemStack stack, int tintIndex){
|
|
|
|
return tintIndex > 0 ? this.color : 0xFFFFFF;
|
|
|
|
}
|
2015-07-06 19:52:27 +02:00
|
|
|
}
|