Advertisement
Guest User

Untitled

a guest
May 23rd, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.57 KB | None | 0 0
  1. package TechnicianLP.FactorialRevolution.client.inventory.gui;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import org.lwjgl.opengl.GL11;
  6.  
  7. import TechnicianLP.FactorialRevolution.client.inventory.gui.Labels.GuiLabel;
  8. import TechnicianLP.FactorialRevolution.common.Constants;
  9. import TechnicianLP.FactorialRevolution.common.container.ContainerBase;
  10. import TechnicianLP.FactorialRevolution.common.container.Slots.LockedTextSlot;
  11. import TechnicianLP.FactorialRevolution.common.container.Slots.SlotResizable;
  12. import net.minecraft.client.gui.GuiButton;
  13. import net.minecraft.client.gui.inventory.GuiContainer;
  14. import net.minecraft.client.resources.I18n;
  15. import net.minecraft.inventory.Slot;
  16. import net.minecraft.util.ResourceLocation;
  17.  
  18. public abstract class GuiContainerBase<C extends ContainerBase<?>> extends GuiContainer {
  19.  
  20.     protected C container;
  21.     protected boolean drawFakes;
  22.  
  23.     protected static final ResourceLocation backRL = new ResourceLocation(Constants.RESOURCE + "textures/gui/container/inventory.png");
  24.  
  25.     protected ArrayList<GuiLabel> labels;
  26.  
  27.     public GuiContainerBase(C con, boolean draw) {
  28.         super(con);
  29.         container = con;
  30.         drawFakes = draw;
  31.         labels = new ArrayList<GuiLabel>();
  32.     }
  33.  
  34.     @Override
  35.     public void drawScreen(int mouseX, int mouseY, float par_float_3) {
  36.         super.drawScreen(mouseX, mouseY, par_float_3);
  37.     }
  38.  
  39.     @Override
  40.     protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_) {
  41.         int textureSize = 208;
  42.  
  43.         GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
  44.         this.mc.renderEngine.bindTexture(backRL);
  45.         int x = (width - xSize) / 2;
  46.         int y = (height - ySize) / 2;
  47.  
  48.         this.drawTexturedModalRect(x, y, 0, 0, xSize / 2, ySize / 2);
  49.         this.drawTexturedModalRect(x + xSize / 2, y, textureSize - xSize / 2, 0, xSize / 2, ySize / 2);
  50.         this.drawTexturedModalRect(x, y + ySize / 2, 0, textureSize - ySize / 2, xSize / 2, ySize / 2);
  51.         this.drawTexturedModalRect(x + xSize / 2, y + ySize / 2, textureSize - xSize / 2, textureSize - ySize / 2, xSize / 2, ySize / 2);
  52.  
  53.         for (Slot s : container.inventorySlots) {
  54.             int width = 18;
  55.             int height = 18;
  56.             int xPos = s.xDisplayPosition;
  57.             int yPos = s.yDisplayPosition;
  58.  
  59.             if (s instanceof SlotResizable) {
  60.                 SlotResizable sr = (SlotResizable) s;
  61.                 width = sr.width;
  62.                 height = sr.height;
  63.                 xPos = sr.xPos;
  64.                 yPos = sr.yPos;
  65.             }
  66.  
  67.             this.drawTexturedModalRect(x + xPos - 1, y + yPos - 1, textureSize, 0, width / 2, height / 2);
  68.             this.drawTexturedModalRect(x + xPos - 1 + width / 2, y + yPos - 1, textureSize + 18 - width / 2, 0, width / 2, height / 2);
  69.             this.drawTexturedModalRect(x + xPos - 1, y + yPos - 1 + height / 2, textureSize, 18 - height / 2, width / 2, height / 2);
  70.             this.drawTexturedModalRect(x + xPos - 1 + width / 2, y + yPos - 1 + height / 2, textureSize + 18 - width / 2, 18 - height / 2, width / 2, height / 2);
  71.         }
  72.     }
  73.  
  74.     @Override
  75.     protected void drawGuiContainerForegroundLayer(int p_146979_1_, int p_146979_2_) {
  76.         this.fontRendererObj.drawString(I18n.format(container.inventory.getName()), 8, 6, 4210752);
  77.  
  78.         for (GuiLabel l : labels) {
  79.             l.draw(fontRendererObj);
  80.         }
  81.  
  82.         for (LockedTextSlot slot : container.textSlots) {
  83.             String text = slot.getString();
  84.             if (text != null) {
  85.                 itemRender.renderItemOverlayIntoGUI(fontRendererObj, slot.is, slot.xDisplayPosition, slot.yDisplayPosition, slot.getString());
  86.             }
  87.         }
  88.     }
  89.  
  90.     @Override
  91.     protected void actionPerformed(GuiButton button) {
  92.         int mask = 0;
  93.         if (this.isCtrlKeyDown())
  94.             mask += 2;
  95.         if (this.isShiftKeyDown())
  96.             mask += 1;
  97.         container.sendButtonMessage(button.id, -1, mask);
  98.     }
  99.  
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement