ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/misc/GuiAAAchievements.java

65 lines
2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("GuiAAAchievements.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2017-06-17 00:48:49 +02:00
//TODO Achievement GUI?
/*
package de.ellpeck.actuallyadditions.mod.booklet.misc;
2015-08-28 21:17:09 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.achievement.InitAchievements;
2016-01-16 20:06:25 +01:00
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
2015-08-28 21:17:09 +02:00
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.achievement.GuiAchievements;
2016-05-19 20:05:12 +02:00
import net.minecraft.stats.StatisticsManager;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.ReflectionHelper;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import org.lwjgl.input.Keyboard;
import java.io.IOException;
2015-08-28 21:17:09 +02:00
/**
* (Partially excerpted from Botania by Vazkii with permission, thanks!)
2017-06-17 00:48:49 +02:00
*
@SideOnly(Side.CLIENT)
2015-08-28 21:17:09 +02:00
public class GuiAAAchievements extends GuiAchievements{
2016-05-19 20:05:12 +02:00
public GuiAAAchievements(GuiScreen screen, StatisticsManager statistics){
super(screen, statistics);
2016-01-16 20:06:25 +01:00
try{
ReflectionHelper.setPrivateValue(GuiAchievements.class, this, InitAchievements.pageNumber, 20);
}
catch(Exception e){
ModUtil.LOGGER.error("Something went wrong trying to open the Achievements GUI!", e);
}
2015-08-28 21:17:09 +02:00
}
@Override
public void initGui(){
super.initGui();
try{
this.buttonList.remove(1);
}
catch(Exception e){
ModUtil.LOGGER.error("Something went wrong trying to initialize the Achievements GUI!", e);
}
}
@Override
protected void keyTyped(char typedChar, int key) throws IOException{
if(key == Keyboard.KEY_ESCAPE || key == this.mc.gameSettings.keyBindInventory.getKeyCode()){
this.mc.displayGuiScreen(this.parentScreen);
}
2016-11-26 21:32:27 +01:00
else{
super.keyTyped(typedChar, key);
}
2015-08-28 21:17:09 +02:00
}
}
2017-06-17 00:48:49 +02:00
*/