TechReborn/src/main/java/techreborn/client/gui/GuiLesu.java

61 lines
2.5 KiB
Java
Raw Normal View History

2015-06-14 17:42:03 +02:00
package techreborn.client.gui;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;
import techreborn.client.container.ContainerLesu;
import techreborn.tiles.lesu.TileLesu;
import java.awt.*;
public class GuiLesu extends GuiContainer {
private static final ResourceLocation texture = new ResourceLocation(
"techreborn", "textures/gui/aesu.png");
TileLesu aesu;
ContainerLesu containerLesu;
public GuiLesu(EntityPlayer player,
TileLesu tileaesu) {
2015-06-14 17:42:03 +02:00
super(new ContainerLesu(tileaesu, player));
this.xSize = 156;
this.ySize = 200;
aesu = tileaesu;
this.containerLesu = (ContainerLesu) this.inventorySlots;
2015-06-14 17:42:03 +02:00
}
@Override
protected void drawGuiContainerBackgroundLayer(float p_146976_1_,
int p_146976_2_, int p_146976_3_) {
2015-06-14 17:42:03 +02:00
this.mc.getTextureManager().bindTexture(texture);
int k = (this.width - this.xSize) / 2;
int l = (this.height - this.ySize) / 2;
this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
}
protected void drawGuiContainerForegroundLayer(int p_146979_1_,
int p_146979_2_) {
2015-06-14 17:42:03 +02:00
this.fontRendererObj.drawString(StatCollector.translateToLocal("tile.techreborn.lesu.name"), 40, 10, Color.WHITE.getRGB());
this.fontRendererObj.drawString(GetEUString(containerLesu.euOut) + "/t", 10, 20, Color.WHITE.getRGB());
this.fontRendererObj.drawString(GetEUString(containerLesu.storedEu), 10, 30, Color.WHITE.getRGB());
this.fontRendererObj.drawString(GetEUString(containerLesu.euChange) + " change", 10, 40, Color.WHITE.getRGB());
this.fontRendererObj.drawString(containerLesu.connectedBlocks + " blocks", 10, 50, Color.WHITE.getRGB());
this.fontRendererObj.drawString(GetEUString(containerLesu.euStorage) + " max", 10, 60, Color.WHITE.getRGB());
2015-06-14 17:42:03 +02:00
}
private String GetEUString(double euValue) {
if (euValue >= 1000000) {
double tenX = Math.round(euValue / 100000);
return Double.toString(tenX / 10.0).concat(" m EU");
} else if (euValue >= 1000) {
double tenX = Math.round(euValue / 100);
return Double.toString(tenX / 10.0).concat(" k EU");
} else {
return Double.toString(Math.floor(euValue)).concat(" EU");
}
}
2015-06-14 17:42:03 +02:00
}