TechReborn/src/main/java/techreborn/utils/OreDictUtils.java

48 lines
1 KiB
Java
Raw Normal View History

package techreborn.utils;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
2016-03-24 01:39:26 +01:00
public class OreDictUtils
{
2016-03-24 01:39:26 +01:00
public static boolean isOre(Block block, String oreName)
{
return isOre(new ItemStack(Item.getItemFromBlock(block)), oreName);
}
2016-03-24 01:39:26 +01:00
public static boolean isOre(IBlockState state, String oreName)
{
return isOre(
new ItemStack(Item.getItemFromBlock(state.getBlock()), 1, state.getBlock().getMetaFromState(state)),
oreName);
}
2016-03-24 01:39:26 +01:00
public static boolean isOre(Item item, String oreName)
{
return isOre(new ItemStack(item), oreName);
}
2016-03-24 01:39:26 +01:00
public static boolean isOre(ItemStack stack, String oreName)
{
if (stack != null && stack.getItem() != null && oreName != null)
{
2016-02-28 20:18:59 +01:00
int id = OreDictionary.getOreID(oreName);
int[] ids = OreDictionary.getOreIDs(stack);
2016-03-24 01:39:26 +01:00
for (int i : ids)
{
if (id == i)
{
return true;
}
}
}
return false;
}
}