ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/event/ClientEvents.java

238 lines
14 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-07-03 20:57:00 +02:00
* This file ("ClientEvents.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
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.event;
2015-05-04 17:26:50 +02:00
2024-03-02 21:23:08 +01:00
import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.vertex.PoseStack;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
2016-07-03 20:57:00 +02:00
import de.ellpeck.actuallyadditions.mod.blocks.IHudDisplay;
import de.ellpeck.actuallyadditions.mod.config.CommonConfig;
import de.ellpeck.actuallyadditions.mod.data.WorldData;
import de.ellpeck.actuallyadditions.mod.inventory.gui.EnergyDisplay;
2016-07-03 20:57:00 +02:00
import de.ellpeck.actuallyadditions.mod.tile.IEnergyDisplay;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.ChatFormatting;
import net.minecraft.client.Minecraft;
2024-03-02 21:23:08 +01:00
import net.minecraft.client.gui.Font;
2024-03-03 01:20:53 +01:00
import net.minecraft.client.gui.GuiGraphics;
2024-03-02 21:23:08 +01:00
import net.minecraft.network.chat.Component;
2024-03-03 01:20:53 +01:00
import net.minecraft.resources.ResourceLocation;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.phys.BlockHitResult;
import net.minecraft.world.phys.HitResult;
2024-03-04 20:21:48 +01:00
import net.neoforged.api.distmarker.Dist;
import net.neoforged.api.distmarker.OnlyIn;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.neoforge.client.event.RenderGuiOverlayEvent;
import net.neoforged.neoforge.client.gui.overlay.GuiOverlayManager;
import net.neoforged.neoforge.event.TickEvent;
import net.neoforged.neoforge.event.entity.player.ItemTooltipEvent;
2015-05-04 17:26:50 +02:00
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2019-05-02 09:10:29 +02:00
public class ClientEvents {
2015-05-04 17:26:50 +02:00
2024-03-03 01:20:53 +01:00
private static final Component ADVANCED_INFO_TEXT_PRE = Component.literal(" -").withStyle(ChatFormatting.DARK_GRAY);
private static final Component ADVANCED_INFO_HEADER_PRE = Component.literal(" -").withStyle(ChatFormatting.GRAY);
private static EnergyDisplay energyDisplay;
2021-02-27 17:22:03 +01:00
// TODO: [port] the fuck?
@SubscribeEvent
2021-02-27 17:22:03 +01:00
public void onClientTick(TickEvent.ClientTickEvent event) {
if (event.phase == TickEvent.Phase.END) {
2021-02-26 22:15:48 +01:00
Minecraft mc = Minecraft.getInstance();
if (mc.level == null) {
WorldData.clear();
}
}
}
@SubscribeEvent
2019-05-02 09:10:29 +02:00
public void onTooltipEvent(ItemTooltipEvent event) {
// TODO: [port] ADD BACK AS NEEDED
// ItemStack stack = event.getItemStack();
// if (StackUtil.isValid(stack)) {
// //Be da bland
// if (ConfigBoolValues.MOST_BLAND_PERSON_EVER.isEnabled()) {
// ResourceLocation regName = stack.getItem().getRegistryName();
// if (regName != null) {
// if (regName.toString().toLowerCase(Locale.ROOT).contains(ActuallyAdditions.MODID)) {
// if (event.getToolTip().size() > 0) {
// event.getToolTip().set(0, TextFormatting.RESET + TextFormatting.WHITE.toString() + event.getToolTip().get(0));
// }
// }
// }
// }
//
// if (ItemWingsOfTheBats.THE_BAT_BAT.equalsIgnoreCase(stack.getDisplayName()) && stack.getItem() instanceof SwordItem) {
// event.getToolTip().set(0, TextFormatting.GOLD + event.getToolTip().get(0));
// event.getToolTip().add(1, TextFormatting.RED.toString() + TextFormatting.ITALIC + "That's a really bat pun");
// }
// }
//
// //Advanced Item Info
// if (event.getFlags().isAdvanced() && StackUtil.isValid(event.getItemStack())) {
// if (ConfigBoolValues.CTRL_EXTRA_INFO.isEnabled()) {
// if (Screen.hasControlDown()) {
// event.getToolTip().add(Help.Trans("tooltip.", ".extraInfo.desc").mergeStyle(TextFormatting.DARK_GRAY).mergeStyle(TextFormatting.ITALIC).append(new StringTextComponent(":")));
//
// // TODO: [port] come back to this and see if we can re-add it
// //OreDict Names
// // int[] oreIDs = OreDictionary.getOreIDs(event.getItemStack());
// // event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".oredictName.desc") + ":");
// // if (oreIDs.length > 0) {
// // for (int oreID : oreIDs) {
// // event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + OreDictionary.getOreName(oreID));
// // }
// // } else {
// // event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".noOredictNameAvail.desc"));
// // }
//
// //Code Name
// event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".codeName.desc") + ":");
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + Item.REGISTRY.getNameForObject(event.getItemStack().getItem()));
//
// //Base Item's Unlocalized Name
// String baseName = event.getItemStack().getItem().getTranslationKey();
// if (baseName != null) {
// event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".baseUnlocName.desc") + ":");
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + baseName);
// }
//
// //Metadata
// int meta = event.getItemStack().getItemDamage();
// int max = event.getItemStack().getMaxDamage();
// event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".meta.desc") + ":");
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + meta + (max > 0
// ? "/" + max
// : ""));
//
// //Unlocalized Name
// String metaName = event.getItemStack().getItem().getTranslationKey(event.getItemStack());
// if (metaName != null && baseName != null && !metaName.equals(baseName)) {
// event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".unlocName.desc") + ":");
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + metaName);
// }
//
// //NBT
// CompoundNBT compound = event.getItemStack().getTagCompound();
// if (compound != null && !compound.isEmpty()) {
// event.getToolTip().add(ADVANCED_INFO_HEADER_PRE + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".nbt.desc") + ":");
// if (Screen.hasShiftDown()) {
// int limit = ConfigIntValues.CTRL_INFO_NBT_CHAR_LIMIT.getValue();
// String compoundStrg = compound.toString();
// int compoundStrgLength = compoundStrg.length();
//
// String compoundDisplay;
// if (limit > 0 && compoundStrgLength > limit) {
// compoundDisplay = compoundStrg.substring(0, limit) + TextFormatting.GRAY + " (" + (compoundStrgLength - limit) + " more characters...)";
// } else {
// compoundDisplay = compoundStrg;
// }
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + compoundDisplay);
// } else {
// event.getToolTip().add(ADVANCED_INFO_TEXT_PRE + TextFormatting.ITALIC + "[" + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".pressShift.desc") + "]");
// }
// }
//
// //Disabling Info
// event.getToolTip().add(TextFormatting.ITALIC + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".disablingInfo.desc"));
//
// } else {
// if (ConfigBoolValues.CTRL_INFO_FOR_EXTRA_INFO.isEnabled()) {
// event.getToolTip().add(TextFormatting.DARK_GRAY + "" + TextFormatting.ITALIC + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".ctrlForMoreInfo.desc"));
// }
// }
// }
// }
2015-05-04 17:26:50 +02:00
}
2016-07-03 20:57:00 +02:00
@SubscribeEvent
2024-03-03 01:20:53 +01:00
public void onGameOverlay(RenderGuiOverlayEvent.Post event) {
2021-02-27 17:22:03 +01:00
Minecraft minecraft = Minecraft.getInstance();
if (event.getOverlay() == GuiOverlayManager.findOverlay(new ResourceLocation("portal")) && minecraft.screen == null) { //ALL
2024-03-03 01:20:53 +01:00
GuiGraphics guiGraphics = event.getGuiGraphics();
2024-03-02 21:23:08 +01:00
Player player = minecraft.player;
2021-02-27 17:22:03 +01:00
if (player == null) {
return;
}
2024-03-02 21:23:08 +01:00
HitResult posHit = minecraft.hitResult;
Font font = minecraft.font;
ItemStack stack = player.getMainHandItem();
2016-07-03 20:57:00 +02:00
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(stack)) {
if (stack.getItem() instanceof IHudDisplay) {
2024-03-03 01:20:53 +01:00
((IHudDisplay) stack.getItem()).displayHud(guiGraphics, minecraft, player, stack, posHit, event.getWindow());
2016-07-03 20:57:00 +02:00
}
}
2024-03-02 21:23:08 +01:00
if (posHit != null && posHit.getType() == HitResult.Type.BLOCK) {
BlockHitResult rayCast = (BlockHitResult) posHit;
Block blockHit = minecraft.level.getBlockState(rayCast.getBlockPos()).getBlock();
2024-03-02 21:23:08 +01:00
BlockEntity tileHit = minecraft.level.getBlockEntity(rayCast.getBlockPos());
2016-07-03 20:57:00 +02:00
2019-05-02 09:10:29 +02:00
if (blockHit instanceof IHudDisplay) {
2024-03-03 01:20:53 +01:00
((IHudDisplay) blockHit).displayHud(guiGraphics, minecraft, player, stack, posHit, event.getWindow());
2016-07-03 20:57:00 +02:00
}
2024-03-03 01:20:53 +01:00
if (tileHit instanceof TileEntityBase base) {
if (base.isRedstoneToggle()) {
Component component = Component.translatable("info." + ActuallyAdditions.MODID + ".redstoneMode").append(": ")
.append(Component.translatable("info." + ActuallyAdditions.MODID + ".redstoneMode." + (base.isPulseMode
2021-02-26 22:15:48 +01:00
? "pulse"
: "deactivation")).withStyle(ChatFormatting.DARK_RED));
guiGraphics.drawString(font, component, (int) (event.getWindow().getGuiScaledWidth() / 2f + 5), (int) (event.getWindow().getGuiScaledHeight() / 2f + 5), 0xFFFFFF);
2016-07-03 20:57:00 +02:00
Component expl;
2023-11-26 23:10:19 +01:00
if (!stack.isEmpty() && stack.getItem() == CommonConfig.Other.redstoneConfigureItem) {
expl = Component.translatable("info." + ActuallyAdditions.MODID + ".redstoneMode.validItem").withStyle(ChatFormatting.GREEN);
2019-05-02 09:10:29 +02:00
} else {
expl = Component.translatable("info." + ActuallyAdditions.MODID + ".redstoneMode.invalidItem", Component.translatable(CommonConfig.Other.redstoneConfigureItem.asItem().getDescriptionId()).getString()).withStyle(ChatFormatting.GRAY, ChatFormatting.ITALIC);
}
2024-03-03 01:20:53 +01:00
guiGraphics.drawString(font, expl, (int) (event.getWindow().getGuiScaledWidth() / 2f + 5), (int) (event.getWindow().getGuiScaledHeight() / 2f + 15), 0xFFFFFF);
2016-07-03 20:57:00 +02:00
}
}
2024-03-03 01:20:53 +01:00
if (tileHit instanceof IEnergyDisplay display) {
if (!display.needsHoldShift() || player.isShiftKeyDown()) {
2019-05-02 09:10:29 +02:00
if (energyDisplay == null) {
energyDisplay = new EnergyDisplay(0, 0, null);
}
energyDisplay.setData(2, event.getWindow().getGuiScaledHeight() - 96, display.getEnergyStorage(), true, true);
2024-03-03 01:20:53 +01:00
PoseStack matrices = guiGraphics.pose();
2024-03-02 21:23:08 +01:00
matrices.pushPose();
// GlStateManager._color4f(1F, 1F, 1F, 1F);
RenderSystem.setShaderColor(1F, 1F, 1F, 1F);
2024-03-03 01:20:53 +01:00
energyDisplay.draw(guiGraphics);
2024-03-02 21:23:08 +01:00
matrices.popPose();
2016-07-03 20:57:00 +02:00
}
}
}
}
}
/* @SubscribeEvent //TODO someday move the laser rendering to a new system
public void onRenderStage(final RenderLevelStageEvent event) {
if(event.getStage() == RenderLevelStageEvent.Stage.AFTER_SOLID_BLOCKS) {
AssetUtil.renderLaser();
}
}*/
2015-05-04 17:26:50 +02:00
}