e5a6eadc45
This patch provides common/mekanism/*.java with standardized indentation (tabs) and also removes trailing whitespace.
76 lines
1.8 KiB
Java
76 lines
1.8 KiB
Java
package mekanism.client.nei;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
import mekanism.api.ListUtils;
|
|
import mekanism.api.gas.Gas;
|
|
import mekanism.api.gas.GasRegistry;
|
|
import mekanism.client.gui.GuiChemicalInjectionChamber;
|
|
import mekanism.common.recipe.RecipeHandler.Recipe;
|
|
import mekanism.common.util.MekanismUtils;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.oredict.OreDictionary;
|
|
|
|
public class ChemicalInjectionChamberRecipeHandler extends AdvancedMachineRecipeHandler
|
|
{
|
|
@Override
|
|
public String getRecipeName()
|
|
{
|
|
return MekanismUtils.localize("nei.chemicalInjectionChamber");
|
|
}
|
|
|
|
@Override
|
|
public String getRecipeId()
|
|
{
|
|
return "mekanism.chemicalinjectionchamber";
|
|
}
|
|
|
|
@Override
|
|
public String getOverlayIdentifier()
|
|
{
|
|
return "chemicalinjectionchamber";
|
|
}
|
|
|
|
@Override
|
|
public Set getRecipes()
|
|
{
|
|
return Recipe.CHEMICAL_INJECTION_CHAMBER.get().entrySet();
|
|
}
|
|
|
|
@Override
|
|
public String getGuiTexture()
|
|
{
|
|
return "mekanism:gui/GuiChemicalInjectionChamber.png";
|
|
}
|
|
|
|
@Override
|
|
public List<ItemStack> getFuelStacks(Gas gasType)
|
|
{
|
|
if(gasType == GasRegistry.getGas("sulfuricAcid"))
|
|
{
|
|
List<ItemStack> fuels = OreDictionary.getOres("dustSulfur");
|
|
fuels.add(MekanismUtils.getFullGasTank(GasRegistry.getGas("sulfuricAcid")));
|
|
return fuels;
|
|
}
|
|
else if(gasType == GasRegistry.getGas("water"))
|
|
{
|
|
return ListUtils.asList(MekanismUtils.getFullGasTank(GasRegistry.getGas("water")));
|
|
}
|
|
else if(gasType == GasRegistry.getGas("hydrogenChloride"))
|
|
{
|
|
List<ItemStack> fuels = OreDictionary.getOres("dustSalt");
|
|
fuels.add(MekanismUtils.getFullGasTank(GasRegistry.getGas("hydrogenChloride")));
|
|
return fuels;
|
|
}
|
|
|
|
return new ArrayList<ItemStack>();
|
|
}
|
|
|
|
@Override
|
|
public Class getGuiClass()
|
|
{
|
|
return GuiChemicalInjectionChamber.class;
|
|
}
|
|
}
|