2018-10-13 20:35:18 +02:00
|
|
|
package de.ellpeck.naturesaura.events;
|
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
import baubles.api.BaubleType;
|
2018-10-19 14:35:25 +02:00
|
|
|
import baubles.api.BaublesApi;
|
2018-10-13 20:35:18 +02:00
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
2018-10-20 21:19:08 +02:00
|
|
|
import de.ellpeck.naturesaura.aura.Capabilities;
|
2018-10-21 12:51:13 +02:00
|
|
|
import de.ellpeck.naturesaura.aura.chunk.AuraChunk;
|
|
|
|
import de.ellpeck.naturesaura.aura.container.IAuraContainer;
|
2018-10-20 21:19:08 +02:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityNatureAltar;
|
2018-10-19 14:35:25 +02:00
|
|
|
import de.ellpeck.naturesaura.compat.Compat;
|
2018-10-14 17:46:00 +02:00
|
|
|
import de.ellpeck.naturesaura.items.ModItems;
|
2018-10-13 20:35:18 +02:00
|
|
|
import de.ellpeck.naturesaura.particles.ParticleHandler;
|
|
|
|
import de.ellpeck.naturesaura.particles.ParticleMagic;
|
2018-10-18 19:08:15 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2018-10-13 20:35:18 +02:00
|
|
|
import net.minecraft.client.Minecraft;
|
2018-10-18 19:08:15 +02:00
|
|
|
import net.minecraft.client.gui.Gui;
|
2018-10-14 17:46:00 +02:00
|
|
|
import net.minecraft.client.gui.ScaledResolution;
|
2018-10-18 19:08:15 +02:00
|
|
|
import net.minecraft.client.renderer.GlStateManager;
|
|
|
|
import net.minecraft.client.resources.I18n;
|
2018-10-14 17:46:00 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2018-10-18 19:08:15 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2018-10-14 17:46:00 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2018-10-18 19:08:15 +02:00
|
|
|
import net.minecraft.util.math.MathHelper;
|
2018-10-13 20:35:18 +02:00
|
|
|
import net.minecraft.util.text.TextFormatting;
|
|
|
|
import net.minecraftforge.client.event.RenderGameOverlayEvent;
|
2018-10-14 17:46:00 +02:00
|
|
|
import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType;
|
2018-10-13 20:35:18 +02:00
|
|
|
import net.minecraftforge.client.event.RenderWorldLastEvent;
|
|
|
|
import net.minecraftforge.client.event.TextureStitchEvent;
|
|
|
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
|
|
import net.minecraftforge.fml.common.gameevent.TickEvent.ClientTickEvent;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2018-10-21 12:51:13 +02:00
|
|
|
import org.apache.commons.lang3.mutable.MutableInt;
|
2018-10-13 20:35:18 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public class ClientEvents {
|
|
|
|
|
2018-10-20 21:19:08 +02:00
|
|
|
public static final ResourceLocation OVERLAYS = new ResourceLocation(NaturesAura.MOD_ID, "textures/gui/overlays.png");
|
2018-10-18 19:08:15 +02:00
|
|
|
|
2018-10-13 20:35:18 +02:00
|
|
|
@SubscribeEvent
|
|
|
|
public void onDebugRender(RenderGameOverlayEvent.Text event) {
|
2018-10-21 12:51:13 +02:00
|
|
|
Minecraft mc = Minecraft.getMinecraft();
|
|
|
|
if (mc.gameSettings.showDebugInfo) {
|
2018-10-13 20:35:18 +02:00
|
|
|
String prefix = TextFormatting.GREEN + "[" + NaturesAura.MOD_NAME + "]" + TextFormatting.RESET + " ";
|
|
|
|
List<String> left = event.getLeft();
|
|
|
|
left.add("");
|
2018-10-26 20:25:21 +02:00
|
|
|
left.add(prefix + "Particles: " + ParticleHandler.getParticleAmount());
|
2018-10-21 12:51:13 +02:00
|
|
|
|
2018-10-26 20:25:21 +02:00
|
|
|
if (mc.player.capabilities.isCreativeMode) {
|
|
|
|
left.add(prefix + "Aura:");
|
|
|
|
MutableInt amount = new MutableInt(AuraChunk.DEFAULT_AURA);
|
|
|
|
MutableInt spots = new MutableInt();
|
|
|
|
AuraChunk.getSpotsInArea(mc.world, mc.player.getPosition(), 15, ((blockPos, drainSpot) -> {
|
|
|
|
spots.increment();
|
|
|
|
amount.add(drainSpot.intValue());
|
|
|
|
left.add(prefix + drainSpot.intValue() + " @ " + blockPos.getX() + " " + blockPos.getY() + " " + blockPos.getZ());
|
|
|
|
}));
|
|
|
|
left.add(prefix + "Total: " + amount.intValue() + " in " + spots.intValue() + " spots");
|
|
|
|
}
|
2018-10-13 20:35:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onRenderLast(RenderWorldLastEvent event) {
|
|
|
|
ParticleHandler.renderParticles(event.getPartialTicks());
|
|
|
|
}
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onTextureStitch(TextureStitchEvent event) {
|
2018-10-13 20:45:32 +02:00
|
|
|
event.getMap().registerSprite(ParticleMagic.TEXTURE);
|
2018-10-13 20:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onClientTick(ClientTickEvent event) {
|
2018-10-13 20:45:32 +02:00
|
|
|
Minecraft mc = Minecraft.getMinecraft();
|
2018-10-13 20:35:18 +02:00
|
|
|
if (!mc.isGamePaused()) {
|
|
|
|
ParticleHandler.updateParticles();
|
|
|
|
}
|
|
|
|
if (mc.world == null) {
|
|
|
|
ParticleHandler.clearParticles();
|
|
|
|
}
|
|
|
|
}
|
2018-10-14 17:46:00 +02:00
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onOverlayRender(RenderGameOverlayEvent.Post event) {
|
|
|
|
Minecraft mc = Minecraft.getMinecraft();
|
2018-10-20 21:19:08 +02:00
|
|
|
if (event.getType() == ElementType.ALL) {
|
2018-10-14 17:46:00 +02:00
|
|
|
ScaledResolution res = event.getResolution();
|
|
|
|
if (mc.player != null) {
|
|
|
|
ItemStack stack = mc.player.getHeldItemMainhand();
|
2018-10-20 21:19:08 +02:00
|
|
|
if (mc.currentScreen == null) {
|
|
|
|
if (!stack.isEmpty() && stack.getItem() == ModItems.EYE || Compat.baubles && BaublesApi.isBaubleEquipped(mc.player, ModItems.EYE) >= 0) {
|
|
|
|
GlStateManager.pushMatrix();
|
|
|
|
mc.getTextureManager().bindTexture(OVERLAYS);
|
|
|
|
|
|
|
|
GlStateManager.color(0.8F, 0.25F, 0.25F);
|
2018-10-21 12:51:13 +02:00
|
|
|
float totalPercentage = AuraChunk.getAuraInArea(mc.world, mc.player.getPosition(), 15) / (AuraChunk.DEFAULT_AURA * 2F);
|
|
|
|
int tHeight = MathHelper.ceil(MathHelper.clamp(totalPercentage, 0F, 1F) * 50);
|
2018-10-20 21:19:08 +02:00
|
|
|
if (tHeight < 50)
|
2018-10-21 12:51:13 +02:00
|
|
|
Gui.drawModalRectWithCustomSizedTexture(3, 10, 6, 12, 6, 50 - tHeight, 256, 256);
|
2018-10-20 21:19:08 +02:00
|
|
|
if (tHeight > 0)
|
2018-10-21 12:51:13 +02:00
|
|
|
Gui.drawModalRectWithCustomSizedTexture(3, 10 + 50 - tHeight, 0, 12 + 50 - tHeight, 6, tHeight, 256, 256);
|
2018-10-20 21:19:08 +02:00
|
|
|
|
|
|
|
if (mc.objectMouseOver != null) {
|
|
|
|
BlockPos pos = mc.objectMouseOver.getBlockPos();
|
|
|
|
if (pos != null) {
|
|
|
|
TileEntity tile = mc.world.getTileEntity(pos);
|
|
|
|
if (tile != null && tile.hasCapability(Capabilities.auraContainer, null)) {
|
|
|
|
IAuraContainer container = tile.getCapability(Capabilities.auraContainer, null);
|
|
|
|
|
|
|
|
IBlockState state = mc.world.getBlockState(pos);
|
|
|
|
ItemStack blockStack = state.getBlock().getPickBlock(state, mc.objectMouseOver, mc.world, pos, mc.player);
|
|
|
|
this.drawContainerInfo(container, mc, res, 25, blockStack.getDisplayName());
|
|
|
|
|
|
|
|
if (tile instanceof TileEntityNatureAltar) {
|
|
|
|
ItemStack tileStack = ((TileEntityNatureAltar) tile).getItemHandler(null).getStackInSlot(0);
|
|
|
|
if (!tileStack.isEmpty() && tileStack.hasCapability(Capabilities.auraContainer, null)) {
|
|
|
|
IAuraContainer stackContainer = tileStack.getCapability(Capabilities.auraContainer, null);
|
|
|
|
this.drawContainerInfo(stackContainer, mc, res, 45, tileStack.getDisplayName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-18 19:08:15 +02:00
|
|
|
|
2018-10-21 18:39:46 +02:00
|
|
|
if (totalPercentage > 1F)
|
|
|
|
mc.fontRenderer.drawString("+", 10F, 9.5F, 0xBB3333, true);
|
|
|
|
if (totalPercentage < 0F)
|
|
|
|
mc.fontRenderer.drawString("-", 10F, 53.5F, 0xBB3333, true);
|
2018-10-18 19:08:15 +02:00
|
|
|
|
2018-10-20 21:19:08 +02:00
|
|
|
float scale = 0.75F;
|
|
|
|
GlStateManager.scale(scale, scale, scale);
|
|
|
|
mc.fontRenderer.drawString(I18n.format("info." + NaturesAura.MOD_ID + ".aura_in_area"), 3 / scale, 3 / scale, 0xBB3333, true);
|
2018-10-18 19:08:15 +02:00
|
|
|
|
2018-10-22 11:23:48 +02:00
|
|
|
GlStateManager.color(1F, 1F, 1F);
|
2018-10-20 21:19:08 +02:00
|
|
|
GlStateManager.popMatrix();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
this.displayAuraCache(mc, res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-20 21:19:08 +02:00
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
private void displayAuraCache(Minecraft mc, ScaledResolution res) {
|
|
|
|
ItemStack stack = ItemStack.EMPTY;
|
2018-10-20 21:19:08 +02:00
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
if (Compat.baubles) {
|
|
|
|
ItemStack slot = BaublesApi.getBaublesHandler(mc.player).getStackInSlot(BaubleType.BELT.getValidSlots()[0]);
|
|
|
|
if (!slot.isEmpty() && slot.getItem() == ModItems.AURA_CACHE) {
|
|
|
|
stack = slot;
|
|
|
|
}
|
|
|
|
}
|
2018-10-20 21:19:08 +02:00
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
if (stack.isEmpty()) {
|
|
|
|
for (int i = 0; i < mc.player.inventory.getSizeInventory(); i++) {
|
|
|
|
ItemStack slot = mc.player.inventory.getStackInSlot(i);
|
|
|
|
if (!slot.isEmpty() && slot.getItem() == ModItems.AURA_CACHE) {
|
|
|
|
stack = slot;
|
|
|
|
break;
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-20 22:13:00 +02:00
|
|
|
|
|
|
|
if (!stack.isEmpty()) {
|
|
|
|
IAuraContainer container = stack.getCapability(Capabilities.auraContainer, null);
|
|
|
|
int width = MathHelper.ceil(container.getStoredAura() / (float) container.getMaxAura() * 80);
|
2018-10-24 15:07:37 +02:00
|
|
|
int x = res.getScaledWidth() / 2 - 173 - (mc.player.getHeldItemOffhand().isEmpty() ? 0 : 29);
|
2018-10-20 22:13:00 +02:00
|
|
|
int y = res.getScaledHeight() - 8;
|
|
|
|
|
|
|
|
GlStateManager.pushMatrix();
|
2018-10-22 11:23:48 +02:00
|
|
|
|
2018-10-20 22:13:00 +02:00
|
|
|
int color = container.getAuraColor();
|
|
|
|
GlStateManager.color((color >> 16 & 255) / 255F, (color >> 8 & 255) / 255F, (color & 255) / 255F);
|
|
|
|
mc.getTextureManager().bindTexture(OVERLAYS);
|
|
|
|
if (width < 80)
|
|
|
|
Gui.drawModalRectWithCustomSizedTexture(x + width, y, width, 0, 80 - width, 6, 256, 256);
|
|
|
|
if (width > 0)
|
|
|
|
Gui.drawModalRectWithCustomSizedTexture(x, y, 0, 6, width, 6, 256, 256);
|
|
|
|
|
|
|
|
float scale = 0.75F;
|
|
|
|
GlStateManager.scale(scale, scale, scale);
|
|
|
|
String s = stack.getDisplayName();
|
|
|
|
mc.fontRenderer.drawString(s, (x + 80) / scale - mc.fontRenderer.getStringWidth(s), (y - 7) / scale, color, true);
|
2018-10-22 11:23:48 +02:00
|
|
|
|
|
|
|
GlStateManager.color(1F, 1F, 1F);
|
2018-10-20 22:13:00 +02:00
|
|
|
GlStateManager.popMatrix();
|
|
|
|
}
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|
2018-10-20 21:19:08 +02:00
|
|
|
|
|
|
|
private void drawContainerInfo(IAuraContainer container, Minecraft mc, ScaledResolution res, int yOffset, String name) {
|
|
|
|
int color = container.getAuraColor();
|
|
|
|
GlStateManager.color((color >> 16 & 255) / 255F, (color >> 8 & 255) / 255F, (color & 255) / 255F);
|
|
|
|
|
|
|
|
int x = res.getScaledWidth() / 2 - 40;
|
|
|
|
int y = res.getScaledHeight() / 2 + yOffset;
|
|
|
|
int width = MathHelper.ceil(container.getStoredAura() / (float) container.getMaxAura() * 80);
|
|
|
|
|
|
|
|
mc.getTextureManager().bindTexture(OVERLAYS);
|
|
|
|
if (width < 80)
|
|
|
|
Gui.drawModalRectWithCustomSizedTexture(x + width, y, width, 0, 80 - width, 6, 256, 256);
|
|
|
|
if (width > 0)
|
|
|
|
Gui.drawModalRectWithCustomSizedTexture(x, y, 0, 6, width, 6, 256, 256);
|
|
|
|
|
|
|
|
mc.fontRenderer.drawString(name, x + 40 - mc.fontRenderer.getStringWidth(name) / 2F, y - 9, color, true);
|
|
|
|
}
|
2018-10-13 20:35:18 +02:00
|
|
|
}
|