ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/recipe/FuelHandler.java

73 lines
2.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("FuelHandler.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.recipe;
2015-05-20 22:39:43 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
import de.ellpeck.actuallyadditions.mod.blocks.metalists.TheMiscBlocks;
import de.ellpeck.actuallyadditions.mod.items.InitItems;
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
2015-05-20 22:39:43 +02:00
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.common.IFuelHandler;
import net.minecraftforge.fml.common.registry.GameRegistry;
2015-05-20 22:39:43 +02:00
import org.apache.commons.lang3.tuple.Pair;
import java.util.HashMap;
public class FuelHandler implements IFuelHandler{
private static HashMap<Pair<Item, Integer>, Integer> fuelList = new HashMap<Pair<Item, Integer>, Integer>();
public static void init(){
2015-07-01 21:32:48 +02:00
ModUtil.LOGGER.info("Initializing Fuelstuffs...");
2015-05-20 22:39:43 +02:00
GameRegistry.registerFuelHandler(new FuelHandler());
setFuelValues();
}
2015-10-03 10:19:40 +02:00
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);
}
2015-05-20 22:39:43 +02:00
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;
}
2016-02-01 20:39:11 +01:00
@Override
public int getBurnTime(ItemStack fuel){
return getFuelValue(fuel);
}
2015-05-20 22:39:43 +02:00
}