ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/recipe/FuelHandler.java
Ellpeck 2c6bcd72cf -Phantom Booster
-Coffee Machine
-Paxels
2015-06-12 19:12:06 +02:00

64 lines
2.1 KiB
Java

package ellpeck.actuallyadditions.recipe;
import cpw.mods.fml.common.IFuelHandler;
import cpw.mods.fml.common.registry.GameRegistry;
import ellpeck.actuallyadditions.blocks.InitBlocks;
import ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
import ellpeck.actuallyadditions.items.InitItems;
import ellpeck.actuallyadditions.items.metalists.TheMiscItems;
import ellpeck.actuallyadditions.util.Util;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import org.apache.commons.lang3.tuple.Pair;
import java.util.HashMap;
@SuppressWarnings("unused")
public class FuelHandler implements IFuelHandler{
private static HashMap<Pair<Item, Integer>, Integer> fuelList = new HashMap<Pair<Item, Integer>, Integer>();
public static void setFuelValues(){
addFuel(InitItems.itemMisc, TheMiscItems.TINY_CHAR.ordinal(), 200);
addFuel(InitItems.itemMisc, TheMiscItems.TINY_COAL.ordinal(), 200);
addFuel(InitBlocks.blockMisc, TheMiscBlocks.CHARCOAL_BLOCK.ordinal(), 16000);
}
public static void init(){
Util.logInfo("Initializing Fuelstuffs...");
GameRegistry.registerFuelHandler(new FuelHandler());
setFuelValues();
}
@Override
public int getBurnTime(ItemStack fuel){
return getFuelValue(fuel);
}
private static void addFuel(Item item, int metadata, int value){
fuelList.put(Pair.of(item, metadata), value);
}
private static void addFuel(Block block, int metadata, int value){
addFuel(Item.getItemFromBlock(block), metadata, value);
}
private static int getFuelValue(ItemStack stack){
if(stack != null && stack.getItem() != null){
Pair<Item, Integer> pair = Pair.of(stack.getItem(), stack.getItemDamage());
if(fuelList.containsKey(pair)){
return fuelList.get(pair);
}
else{
pair = Pair.of(stack.getItem(), 0);
if(fuelList.containsKey(pair)){
return fuelList.get(pair);
}
}
}
return 0;
}
}