Package mekanism.client.nei

Source Code of mekanism.client.nei.ChemicalOxidizerRecipeHandler$CachedIORecipe

package mekanism.client.nei;

import java.awt.*;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;

import mekanism.api.gas.GasStack;
import mekanism.client.gui.GuiChemicalOxidizer;
import mekanism.client.gui.GuiElement;
import mekanism.client.gui.GuiGasGauge;
import mekanism.client.gui.GuiGauge;
import mekanism.client.gui.GuiProgress;
import mekanism.client.gui.GuiProgress.IProgressInfoHandler;
import mekanism.client.gui.GuiProgress.ProgressBar;
import mekanism.client.gui.GuiSlot;
import mekanism.client.gui.GuiSlot.SlotOverlay;
import mekanism.client.gui.GuiSlot.SlotType;
import mekanism.common.ObfuscatedNames;
import mekanism.common.recipe.RecipeHandler.Recipe;
import mekanism.common.util.MekanismUtils;
import mekanism.common.util.MekanismUtils.ResourceType;

import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.item.ItemStack;

import org.lwjgl.opengl.GL11;

import codechicken.lib.gui.GuiDraw;
import codechicken.nei.NEIClientConfig;
import codechicken.nei.NEIServerUtils;
import codechicken.nei.PositionedStack;
import codechicken.nei.recipe.GuiRecipe;
import codechicken.nei.recipe.TemplateRecipeHandler;

import static codechicken.lib.gui.GuiDraw.changeTexture;
import static codechicken.lib.gui.GuiDraw.drawTexturedModalRect;

public class ChemicalOxidizerRecipeHandler extends BaseRecipeHandler
{
  private int ticksPassed;
 
  public GuiGasGauge gasOutput;

  public static int xOffset = 5;
  public static int yOffset = 12;
 
  @Override
  public void addGuiElements()
  {
    guiElements.add(gasOutput = GuiGasGauge.getDummy(GuiGauge.Type.STANDARD, this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalOxidizer.png"), 133, 13));

    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalOxidizer.png"), 154, 4).with(SlotOverlay.POWER));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalOxidizer.png"), 25, 35));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalOxidizer.png"), 154, 24).with(SlotOverlay.PLUS));

    guiElements.add(new GuiProgress(new IProgressInfoHandler()
    {
      @Override
      public double getProgress()
      {
        return ticksPassed >= 20 ? (ticksPassed - 20) % 20 / 20.0F : 0.0F;
      }
    }, ProgressBar.LARGE_RIGHT, this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalOxidizer.png"), 62, 39));
  }

  @Override
  public String getRecipeName()
  {
    return MekanismUtils.localize("tile.MachineBlock2.ChemicalOxidizer.name");
  }

  @Override
  public String getOverlayIdentifier()
  {
    return "chemicaloxidizer";
  }

  @Override
  public String getGuiTexture()
  {
    return "mekanism:gui/GuiChemicalOxidizer.png";
  }

  @Override
  public Class getGuiClass()
  {
    return GuiChemicalOxidizer.class;
  }

  public String getRecipeId()
  {
    return "mekanism.chemicaloxidizer";
  }

  public Set<Entry<ItemStack, GasStack>> getRecipes()
  {
    return Recipe.CHEMICAL_OXIDIZER.get().entrySet();
  }

  @Override
  public void drawBackground(int i)
  {
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    changeTexture(getGuiTexture());
    drawTexturedModalRect(0, 0, xOffset, yOffset, 147, 62);
   
    for(GuiElement e : guiElements)
    {
      e.renderBackground(0, 0, -xOffset, -yOffset);
    }
  }

  @Override
  public void drawExtras(int i)
  {
    CachedIORecipe recipe = (CachedIORecipe)arecipes.get(i);

    if(recipe.outputStack != null)
    {
      gasOutput.setDummyType(recipe.outputStack.getGas());
      gasOutput.renderScale(0, 0, -xOffset, -yOffset);
    }
  }

  @Override
  public void onUpdate()
  {
    super.onUpdate();

    ticksPassed++;
  }

  @Override
  public void loadTransferRects()
  {
    transferRects.add(new TemplateRecipeHandler.RecipeTransferRect(new Rectangle(64-xOffset, 40-yOffset, 48, 8), getRecipeId(), new Object[0]));
  }

  @Override
  public void loadCraftingRecipes(String outputId, Object... results)
  {
    if(outputId.equals(getRecipeId()))
    {
      for(Map.Entry irecipe : getRecipes())
      {
        arecipes.add(new CachedIORecipe(irecipe));
      }
    }
    else if(outputId.equals("gas") && results.length == 1 && results[0] instanceof GasStack)
    {
      for(Map.Entry<ItemStack, GasStack> irecipe : getRecipes())
      {
        if(((GasStack)results[0]).isGasEqual(irecipe.getValue()))
        {
          arecipes.add(new CachedIORecipe(irecipe));
        }
      }
    }
    else {
      super.loadCraftingRecipes(outputId, results);
    }
  }

  @Override
  public List<String> handleTooltip(GuiRecipe gui, List<String> currenttip, int recipe)
  {
    Point point = GuiDraw.getMousePosition();
    Point offset = gui.getRecipePosition(recipe);

    int xAxis = point.x-(Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiLeft)-offset.x;
    int yAxis = point.y-(Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiTop)-offset.y;

    if(xAxis >= 134-5 && xAxis <= 150-5 && yAxis >= 14-11 && yAxis <= 72-11)
    {
      currenttip.add(((CachedIORecipe)arecipes.get(recipe)).outputStack.getGas().getLocalizedName());
    }

    return super.handleTooltip(gui, currenttip, recipe);
  }

  @Override
  public boolean keyTyped(GuiRecipe gui, char keyChar, int keyCode, int recipe)
  {
    Point point = GuiDraw.getMousePosition();
    Point offset = gui.getRecipePosition(recipe);

    int xAxis = point.x-(Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiLeft)-offset.x;
    int yAxis = point.y-(Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiTop)-offset.y;

    if(xAxis >= 134-5 && xAxis <= 150-5 && yAxis >= 14-11 && yAxis <= 72-11)
    {
      GasStack stack = ((CachedIORecipe)arecipes.get(recipe)).outputStack;

      if(keyCode == NEIClientConfig.getKeyBinding("gui.recipe"))
      {
        if(doGasLookup(stack, false))
        {
          return true;
        }
      }
      else if(keyCode == NEIClientConfig.getKeyBinding("gui.usage"))
      {
        if(doGasLookup(stack, true))
        {
          return true;
        }
      }
    }

    return super.keyTyped(gui, keyChar, keyCode, recipe);
  }

  @Override
  public boolean mouseClicked(GuiRecipe gui, int button, int recipe)
  {
    Point point = GuiDraw.getMousePosition();
    Point offset = gui.getRecipePosition(recipe);

    int xAxis = point.x - (Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiLeft)-offset.x;
    int yAxis = point.y - (Integer)MekanismUtils.getPrivateValue(gui, GuiContainer.class, ObfuscatedNames.GuiContainer_guiTop)-offset.y;

    if(xAxis >= 134-5 && xAxis <= 150-5 && yAxis >= 14-11 && yAxis <= 72-11)
    {
      GasStack stack = ((CachedIORecipe)arecipes.get(recipe)).outputStack;

      if(button == 0)
      {
        if(doGasLookup(stack, false))
        {
          return true;
        }
      }
      else if(button == 1)
      {
        if(doGasLookup(stack, true))
        {
          return true;
        }
      }
    }

    return super.mouseClicked(gui, button, recipe);
  }

  @Override
  public int recipiesPerPage()
  {
    return 2;
  }

  @Override
  public void loadUsageRecipes(ItemStack ingredient)
  {
    for(Map.Entry irecipe : getRecipes())
    {
      if(NEIServerUtils.areStacksSameTypeCrafting((ItemStack)irecipe.getKey(), ingredient))
      {
        arecipes.add(new CachedIORecipe(irecipe));
      }
    }
  }

  public class CachedIORecipe extends TemplateRecipeHandler.CachedRecipe
  {
    public PositionedStack inputStack;
    public GasStack outputStack;

    @Override
    public PositionedStack getIngredient()
    {
      return inputStack;
    }

    @Override
    public PositionedStack getResult()
    {
      return null;
    }

    public CachedIORecipe(ItemStack input, GasStack output)
    {
      inputStack = new PositionedStack(input, 26-xOffset, 36-yOffset);
      outputStack = output;
    }

    public CachedIORecipe(Map.Entry recipe)
    {
      this((ItemStack)recipe.getKey(), (GasStack)recipe.getValue());
    }
  }
}
TOP

Related Classes of mekanism.client.nei.ChemicalOxidizerRecipeHandler$CachedIORecipe

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.