package mekanism.client.jei.machine.other; import java.util.List; import mekanism.client.jei.BaseRecipeCategory; import mekanism.common.recipe.machines.ThermalEvaporationRecipe; import mezz.jei.api.IGuiHelper; import mezz.jei.api.gui.IDrawable; import mezz.jei.api.gui.IGuiFluidStackGroup; import mezz.jei.api.gui.IRecipeLayout; import mezz.jei.api.gui.ITickTimer; import mezz.jei.api.gui.ITooltipCallback; import mezz.jei.api.recipe.IRecipeWrapper; import net.minecraft.client.Minecraft; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fluids.FluidStack; public class ThermalEvaporationRecipeCategory extends BaseRecipeCategory { public IGuiHelper guiHelper; public IDrawable background; public IDrawable fluidOverlay; public ThermalEvaporationRecipe tempRecipe; public ITickTimer timer; public ThermalEvaporationRecipeCategory(IGuiHelper helper) { super("mekanism:gui/nei/GuiThermalEvaporationController.png", "thermal_evaporation_plant", "gui.thermalEvaporationController.short", null); guiHelper = helper; timer = helper.createTickTimer(20, 20, false); xOffset = 3; yOffset = 12; background = guiHelper.createDrawable(new ResourceLocation(guiTexture), xOffset, yOffset, 170, 62); fluidOverlay = guiHelper.createDrawable(new ResourceLocation(guiTexture), 176, 0, 16, 59); } @Override public void drawExtras(Minecraft minecraft) { super.drawExtras(minecraft); drawTexturedRect(49-xOffset, 64-yOffset, 176, 59, 78, 8); } @Override public IDrawable getBackground() { return background; } @Override public void setRecipe(IRecipeLayout recipeLayout, IRecipeWrapper recipeWrapper) { if(recipeWrapper instanceof ThermalEvaporationRecipeWrapper) { tempRecipe = ((ThermalEvaporationRecipeWrapper)recipeWrapper).recipe; } IGuiFluidStackGroup fluidStacks = recipeLayout.getFluidStacks(); fluidStacks.init(0, true, 7-xOffset, 14-yOffset, 16, 58, tempRecipe.getInput().ingredient.amount, false, fluidOverlay); fluidStacks.init(1, false, 153-xOffset, 14-yOffset, 16, 58, tempRecipe.getOutput().output.amount, false, fluidOverlay); fluidStacks.set(0, recipeWrapper.getFluidInputs()); fluidStacks.set(1, recipeWrapper.getFluidOutputs()); fluidStacks.addTooltipCallback(new ITooltipCallback<FluidStack>() { @Override public void onTooltip(int slotIndex, boolean input, FluidStack ingredient, List<String> tooltip) { tooltip.remove(1); } }); } }