package net.minecraftforge.client.event; import java.util.ArrayList; import net.minecraft.client.gui.ScaledResolution; import net.minecraftforge.event.Cancelable; import net.minecraftforge.event.Event; @Cancelable public class RenderGameOverlayEvent extends Event { public static enum ElementType { ALL, HELMET, PORTAL, CROSSHAIRS, BOSSHEALTH, ARMOR, HEALTH, FOOD, AIR, HOTBAR, EXPERIENCE, TEXT } public final float partialTicks; public final ScaledResolution resolution; public final int mouseX; public final int mouseY; public final ElementType type; public RenderGameOverlayEvent(float partialTicks, ScaledResolution resolution, int mouseX, int mouseY) { this.partialTicks = partialTicks; this.resolution = resolution; this.mouseX = mouseX; this.mouseY = mouseY; this.type = null; } private RenderGameOverlayEvent(RenderGameOverlayEvent parent, ElementType type) { this.partialTicks = parent.partialTicks; this.resolution = parent.resolution; this.mouseX = parent.mouseX; this.mouseY = parent.mouseY; this.type = type; } public static class Pre extends RenderGameOverlayEvent { public Pre(RenderGameOverlayEvent parent, ElementType type) { super(parent, type); } } public static class Post extends RenderGameOverlayEvent { public Post(RenderGameOverlayEvent parent, ElementType type) { super(parent, type); } @Override public boolean isCancelable(){ return false; } } public static class Text extends Pre { public final ArrayList<String> left; public final ArrayList<String> right; public Text(RenderGameOverlayEvent parent, ArrayList<String> left, ArrayList<String> right) { super(parent, ElementType.TEXT); this.left = left; this.right = right; } } }