e5a6eadc45
This patch provides common/mekanism/*.java with standardized indentation (tabs) and also removes trailing whitespace.
125 lines
2.6 KiB
Java
125 lines
2.6 KiB
Java
package mekanism.client.nei;
|
|
|
|
import static codechicken.core.gui.GuiDraw.changeTexture;
|
|
import static codechicken.core.gui.GuiDraw.drawTexturedModalRect;
|
|
import static codechicken.core.gui.GuiDraw.gui;
|
|
import mekanism.api.gas.GasStack;
|
|
import mekanism.client.render.MekanismRenderer;
|
|
import net.minecraftforge.fluids.FluidStack;
|
|
import codechicken.nei.recipe.GuiCraftingRecipe;
|
|
import codechicken.nei.recipe.GuiUsageRecipe;
|
|
import codechicken.nei.recipe.TemplateRecipeHandler;
|
|
|
|
public abstract class BaseRecipeHandler extends TemplateRecipeHandler
|
|
{
|
|
public void displayGauge(int length, int xPos, int yPos, int overlayX, int overlayY, int scale, FluidStack fluid, GasStack gas)
|
|
{
|
|
if(fluid == null && gas == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
int start = 0;
|
|
|
|
while(true)
|
|
{
|
|
int renderRemaining = 0;
|
|
|
|
if(scale > 16)
|
|
{
|
|
renderRemaining = 16;
|
|
scale -= 16;
|
|
}
|
|
else {
|
|
renderRemaining = scale;
|
|
scale = 0;
|
|
}
|
|
|
|
changeTexture(MekanismRenderer.getBlocksTexture());
|
|
|
|
if(fluid != null)
|
|
{
|
|
gui.drawTexturedModelRectFromIcon(xPos, yPos + length - renderRemaining - start, fluid.getFluid().getIcon(), 16, 16 - (16 - renderRemaining));
|
|
}
|
|
else if(gas != null)
|
|
{
|
|
gui.drawTexturedModelRectFromIcon(xPos, yPos + length - renderRemaining - start, gas.getGas().getIcon(), 16, 16 - (16 - renderRemaining));
|
|
}
|
|
|
|
start+=16;
|
|
|
|
if(renderRemaining == 0 || scale == 0)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
changeTexture(getGuiTexture());
|
|
drawTexturedModalRect(xPos, yPos, overlayX, overlayY, 16, length+1);
|
|
}
|
|
|
|
/*
|
|
* true = usage, false = recipe
|
|
*/
|
|
public boolean doGasLookup(GasStack stack, boolean type)
|
|
{
|
|
if(stack != null && stack.amount > 0)
|
|
{
|
|
if(type)
|
|
{
|
|
if(!GuiUsageRecipe.openRecipeGui("gas", new Object[] {stack}))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if(!GuiCraftingRecipe.openRecipeGui("gas", new Object[] {stack}))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void displayGauge(int xPos, int yPos, int sizeX, int sizeY, GasStack gas)
|
|
{
|
|
if(gas == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
changeTexture(MekanismRenderer.getBlocksTexture());
|
|
gui.drawTexturedModelRectFromIcon(xPos, yPos, gas.getGas().getIcon(), sizeX, sizeY);
|
|
}
|
|
|
|
/*
|
|
* true = usage, false = recipe
|
|
*/
|
|
public boolean doFluidLookup(FluidStack stack, boolean type)
|
|
{
|
|
if(stack != null && stack.amount > 0)
|
|
{
|
|
if(type)
|
|
{
|
|
if(!GuiUsageRecipe.openRecipeGui("fluid", new Object[] {stack}))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if(!GuiCraftingRecipe.openRecipeGui("fluid", new Object[] {stack}))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|