mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 00:37:59 +01:00
111 lines
2.6 KiB
Java
111 lines
2.6 KiB
Java
package com.minelittlepony.gui;
|
|
|
|
import java.io.IOException;
|
|
|
|
import com.mumfrey.liteloader.modconfig.ConfigPanel;
|
|
import com.mumfrey.liteloader.modconfig.ConfigPanelHost;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
|
|
/**
|
|
* A GuiScreen that doubles as a liteloader panel. What is this madness!?
|
|
*/
|
|
public abstract class SettingsPanel extends GameGui implements ConfigPanel {
|
|
|
|
private boolean isInPanel = false;
|
|
|
|
private int contentHeight;
|
|
|
|
@Override
|
|
public String getPanelTitle() {
|
|
return format(getTitle());
|
|
}
|
|
|
|
@Override
|
|
public int getContentHeight() {
|
|
return contentHeight + 40;
|
|
}
|
|
|
|
@Override
|
|
protected <T extends GuiButton> T addButton(T button) {
|
|
if (button.y > contentHeight) {
|
|
contentHeight = button.y;
|
|
}
|
|
return super.addButton(button);
|
|
}
|
|
|
|
@Override
|
|
public void onPanelShown(ConfigPanelHost host) {
|
|
mc = Minecraft.getMinecraft();
|
|
width = host.getWidth();
|
|
buttonList.clear();
|
|
initGui();
|
|
isInPanel = true;
|
|
}
|
|
|
|
@Override
|
|
public void onPanelResize(ConfigPanelHost host) {
|
|
width = host.getWidth();
|
|
buttonList.clear();
|
|
initGui();
|
|
}
|
|
|
|
@Override
|
|
public void onPanelHidden() {
|
|
isInPanel = false;
|
|
onGuiClosed();
|
|
}
|
|
|
|
@Override
|
|
public void onTick(ConfigPanelHost host) {
|
|
updateScreen();
|
|
}
|
|
|
|
@Override
|
|
public void drawPanel(ConfigPanelHost host, int mouseX, int mouseY, float partialTicks) {
|
|
drawScreen(mouseX, mouseY, partialTicks);
|
|
}
|
|
|
|
@Override
|
|
public void mousePressed(ConfigPanelHost host, int mouseX, int mouseY, int mouseButton) {
|
|
try {
|
|
mouseClicked(mouseX, mouseY, mouseButton);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void mouseReleased(ConfigPanelHost host, int mouseX, int mouseY, int mouseButton) {
|
|
mouseReleased(mouseX, mouseY, mouseButton);
|
|
}
|
|
|
|
@Override
|
|
public void mouseMoved(ConfigPanelHost host, int mouseX, int mouseY) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void keyPressed(ConfigPanelHost host, char keyChar, int keyCode) {
|
|
try {
|
|
keyTyped(keyChar, keyCode);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void drawWorldBackground(int tint) {
|
|
if (!isInPanel) {
|
|
super.drawWorldBackground(tint);
|
|
}
|
|
}
|
|
|
|
protected boolean mustScroll() {
|
|
return isInPanel;
|
|
}
|
|
|
|
protected abstract String getTitle();
|
|
}
|