ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/gui/GuiBooklet.java

177 lines
5.2 KiB
Java
Raw Normal View History

/*
* This file ("GuiBooklet.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2016 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.booklet.gui;
2016-11-10 21:07:15 +01:00
import de.ellpeck.actuallyadditions.api.booklet.internal.GuiBookletBase;
2016-11-11 18:55:32 +01:00
import de.ellpeck.actuallyadditions.mod.inventory.gui.TexturedButton;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2016-11-10 21:07:15 +01:00
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
2016-11-11 16:37:45 +01:00
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import org.lwjgl.input.Keyboard;
import java.io.IOException;
import java.util.List;
@SideOnly(Side.CLIENT)
public abstract class GuiBooklet extends GuiBookletBase{
public static final int BUTTONS_PER_PAGE = 12;
public static final ResourceLocation RES_LOC_GUI = AssetUtil.getBookletGuiLocation("guiBooklet");
public static final ResourceLocation RES_LOC_GADGETS = AssetUtil.getBookletGuiLocation("guiBookletGadgets");
public GuiScreen previousScreen;
2016-11-10 21:07:15 +01:00
protected GuiBookletBase parentPage;
2016-11-11 18:55:32 +01:00
private GuiButton buttonLeft;
private GuiButton buttonRight;
private GuiButton buttonBack;
protected int xSize;
protected int ySize;
protected int guiLeft;
protected int guiTop;
2016-11-10 21:07:15 +01:00
public GuiBooklet(GuiScreen previousScreen, GuiBookletBase parentPage){
this.previousScreen = previousScreen;
this.parentPage = parentPage;
this.xSize = 281;
this.ySize = 180;
}
@Override
public void initGui(){
super.initGui();
this.guiLeft = (this.width-this.xSize)/2;
this.guiTop = (this.height-this.ySize)/2;
2016-11-11 18:55:32 +01:00
if(this.hasPageLeftButton()){
this.buttonLeft = new TexturedButton(RES_LOC_GADGETS, -2000, this.guiLeft-12, this.guiTop+this.ySize-8, 18, 54, 18, 10);
this.buttonList.add(this.buttonLeft);
}
if(this.hasPageRightButton()){
this.buttonRight = new TexturedButton(RES_LOC_GADGETS, -2001, this.guiLeft+this.xSize-6, this.guiTop+this.ySize-8, 0, 54, 18, 10);
this.buttonList.add(this.buttonRight);
}
if(this.hasBackButton()){
this.buttonBack = new TexturedButton(RES_LOC_GADGETS, -2002, this.guiLeft-12, this.guiTop-2, 36, 54, 18, 10);
this.buttonList.add(this.buttonBack);
}
}
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks){
2016-11-11 16:37:45 +01:00
GlStateManager.color(1F, 1F, 1F);
this.mc.getTextureManager().bindTexture(RES_LOC_GUI);
drawModalRectWithCustomSizedTexture(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize, 512, 512);
super.drawScreen(mouseX, mouseY, partialTicks);
}
@Override
public boolean doesGuiPauseGame(){
return false;
}
2016-11-11 18:55:32 +01:00
public boolean hasPageLeftButton(){
return false;
}
public void onPageLeftButtonPressed(){
}
public boolean hasPageRightButton(){
return false;
}
public void onPageRightButtonPressed(){
}
public boolean hasBackButton(){
return false;
}
public void onBackButtonPressed(){
}
@Override
protected void actionPerformed(GuiButton button) throws IOException{
if(this.hasPageLeftButton() && button == this.buttonLeft){
this.onPageLeftButtonPressed();
}
else if(this.hasPageRightButton() && button == this.buttonRight){
this.onPageRightButtonPressed();
}
else if(this.hasBackButton() && button == this.buttonBack){
this.onBackButtonPressed();
}
else{
super.actionPerformed(button);
}
}
@Override
protected void keyTyped(char typedChar, int keyCode) throws IOException{
2016-11-10 21:07:15 +01:00
if(this.previousScreen != null && keyCode == Keyboard.KEY_ESCAPE){
this.mc.displayGuiScreen(this.previousScreen);
}
else{
super.keyTyped(typedChar, keyCode);
}
}
@Override
public void renderScaledAsciiString(String text, int x, int y, int color, boolean shadow, float scale){
StringUtil.renderScaledAsciiString(this.fontRendererObj, text, x, y, color, shadow, scale);
}
@Override
public void renderSplitScaledAsciiString(String text, int x, int y, int color, boolean shadow, float scale, int length){
StringUtil.renderSplitScaledAsciiString(this.fontRendererObj, text, x, y, color, shadow, scale, length);
}
2016-11-10 21:07:15 +01:00
@Override
public List<GuiButton> getButtonList(){
return this.buttonList;
}
2016-11-10 22:06:58 +01:00
@Override
public int getGuiLeft(){
return this.guiLeft;
}
@Override
public int getGuiTop(){
return this.guiTop;
}
@Override
public int getSizeX(){
return this.xSize;
}
@Override
public int getSizeY(){
return this.ySize;
}
}