2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("FuelHandler.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-05-20 22:39:43 +02:00
|
|
|
|
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;
|
2015-07-01 21:32:48 +02:00
|
|
|
|
import ellpeck.actuallyadditions.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;
|
|
|
|
|
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 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);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
|
@Override
|
|
|
|
|
public int getBurnTime(ItemStack fuel){
|
|
|
|
|
return getFuelValue(fuel);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|