aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGrowlingGrizzly <52770460+GrowlingGrizzly@users.noreply.github.com>2024-03-12 08:09:48 -0400
committerGitHub <noreply@github.com>2024-03-12 13:09:48 +0100
commita9221f2203318496c3f692abc82dc7264c3dfed8 (patch)
treefd4ac5606f7ec1c3e01f721f7c7ee403e65f473c /src
parent306d616eae6de1323d23545c49092cb83df8e67a (diff)
downloadNotEnoughUpdates-a9221f2203318496c3f692abc82dc7264c3dfed8.tar.gz
NotEnoughUpdates-a9221f2203318496c3f692abc82dc7264c3dfed8.tar.bz2
NotEnoughUpdates-a9221f2203318496c3f692abc82dc7264c3dfed8.zip
Update equipment cache when right-clicking to equip (#1043)
* Update equipment cache when right-clicking to equip * fix bug & fix infer * Requested changes
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/overlays/EquipmentOverlay.java79
1 files changed, 73 insertions, 6 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/overlays/EquipmentOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/overlays/EquipmentOverlay.java
index d0bf7e8c..3bfb2f47 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/overlays/EquipmentOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/overlays/EquipmentOverlay.java
@@ -45,14 +45,18 @@ import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.ResourceLocation;
+import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.client.event.GuiScreenEvent;
+import net.minecraftforge.event.entity.player.PlayerInteractEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import net.minecraftforge.fml.relauncher.Side;
+import org.apache.commons.lang3.StringUtils;
import org.lwjgl.input.Mouse;
import org.lwjgl.opengl.GL11;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -378,6 +382,65 @@ public class EquipmentOverlay {
}
}
+ private final Map<ItemStack, Integer> itemsToAdd = new HashMap<>();
+
+ @SubscribeEvent
+ public void onClickItem(PlayerInteractEvent event) {
+ if ((event.action != PlayerInteractEvent.Action.RIGHT_CLICK_BLOCK && event.action != PlayerInteractEvent.Action.RIGHT_CLICK_AIR) || Minecraft.getMinecraft().thePlayer.getHeldItem() == null) return;
+
+ ItemStack heldItem = Minecraft.getMinecraft().thePlayer.getHeldItem();
+ List<String> heldItemLore = ItemUtils.getLore(heldItem);
+
+ String itemType = Objects.requireNonNull(StringUtils.substringAfterLast(heldItemLore.get(heldItemLore.size() - 1), " "), "null");
+ if (!Arrays.asList("NECKLACE", "CLOAK", "BELT", "GLOVES", "BRACELET").contains(itemType)) return;
+
+ NEUConfig.HiddenProfileSpecific profileSpecific = NotEnoughUpdates.INSTANCE.config.getProfileSpecific();
+ if (profileSpecific == null) return;
+
+ int slot;
+
+ switch (itemType) {
+ case "NECKLACE":
+ slot = 10;
+ break;
+ case "CLOAK":
+ slot = 19;
+ break;
+ case "BELT":
+ slot = 28;
+ break;
+ case "GLOVES": case "BRACELET":
+ slot = 37;
+ break;
+ default:
+ return;
+ }
+
+ JsonObject currentEquipment = profileSpecific.savedEquipment.get(slot);
+ if (currentEquipment == null) return;
+
+ ItemStack itemInSlot = NotEnoughUpdates.INSTANCE.manager.jsonToStack(currentEquipment.getAsJsonObject(), false);
+ if (itemInSlot != null && itemInSlot.getDisplayName().contains("Empty")) itemsToAdd.put(heldItem, slot);
+ }
+
+ @SubscribeEvent
+ public void onReceiveChatMessage(ClientChatReceivedEvent event) {
+ if (event.type == 2 || !event.message.getUnformattedText().startsWith("You equipped a ") || itemsToAdd.isEmpty()) return;
+
+ for (ItemStack item : itemsToAdd.keySet()) {
+ if (event.message.getUnformattedText().contains(Utils.cleanColour(item.getDisplayName()))) {
+
+ NEUConfig.HiddenProfileSpecific profileSpecific = NotEnoughUpdates.INSTANCE.config.getProfileSpecific();
+ if (profileSpecific == null) return;
+
+ profileSpecific.savedEquipment.put(itemsToAdd.get(item), enrichItemStack(item));
+ profileCache.get(SBInfo.getInstance().currentProfile).put(itemsToAdd.get(item), item);
+ itemsToAdd.remove(item);
+ return;
+ }
+ }
+ }
+
private ItemStack getWardrobeSlot(int armourSlot) {
if (SBInfo.getInstance().currentProfile == null) {
return null;
@@ -399,12 +462,7 @@ public class EquipmentOverlay {
if (isInNamedGui("Your Equipment")) {
ItemStack itemStack = getChestSlotsAsItemStack(armourSlot);
if (itemStack != null) {
- JsonObject itemToSave = NotEnoughUpdates.INSTANCE.manager.getJsonForItem(itemStack);
- if (!itemToSave.has("internalname")) {
- //would crash without internalName when trying to construct the ItemStack again
- itemToSave.add("internalname", new JsonPrimitive("_"));
- }
- profileSpecific.savedEquipment.put(armourSlot, itemToSave);
+ profileSpecific.savedEquipment.put(armourSlot, enrichItemStack(itemStack));
cache.put(armourSlot, itemStack);
return itemStack;
}
@@ -425,6 +483,15 @@ public class EquipmentOverlay {
return null;
}
+ private JsonObject enrichItemStack(ItemStack itemStack) {
+ JsonObject itemToSave = NotEnoughUpdates.INSTANCE.manager.getJsonForItem(itemStack);
+ if (!itemToSave.has("internalname")) {
+ //would crash without internalName when trying to construct the ItemStack again
+ itemToSave.add("internalname", new JsonPrimitive("_"));
+ }
+ return itemToSave;
+ }
+
private boolean wardrobeOpen = false;
private boolean isInNamedGui(String guiName) {