package kr.syeyoung.dungeonsguide.features.impl; import kr.syeyoung.dungeonsguide.SkyblockStatus; import kr.syeyoung.dungeonsguide.e; import kr.syeyoung.dungeonsguide.features.FeatureParameter; import kr.syeyoung.dungeonsguide.features.GuiFeature; import kr.syeyoung.dungeonsguide.features.SimpleFeature; import kr.syeyoung.dungeonsguide.features.listener.GuiOpenListener; import kr.syeyoung.dungeonsguide.features.listener.TickListener; import kr.syeyoung.dungeonsguide.utils.AhUtils; import kr.syeyoung.dungeonsguide.utils.TextUtils; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.GuiScreen; import net.minecraft.client.gui.inventory.GuiChest; import net.minecraft.inventory.ContainerChest; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraftforge.client.event.GuiOpenEvent; import org.lwjgl.opengl.GL11; import java.awt.*; import java.util.Comparator; import java.util.HashMap; import java.util.Set; import java.util.TreeSet; public class FeatureInstaCloseChest extends SimpleFeature implements GuiOpenListener, TickListener { public FeatureInstaCloseChest() { super("Dungeon", "Auto-Close Secret Chest", "Automatically closes Secret Chest as soon as you open it\nCan put item price threshold by clicking edit", "qol.autoclose", false); parameters.put("threshold", new FeatureParameter("threshold", "Price Threshold", "The maximum price of item for chest to be closed. Default 1m", 1000000, "integer")); } SkyblockStatus skyblockStatus = e.getDungeonsGuide().getSkyblockStatus(); private boolean check; @Override public void onGuiOpen(GuiOpenEvent event) { if (!this.isEnabled()) return; if (!skyblockStatus.isOnDungeon()) return; if (!(event.gui instanceof GuiChest)) return; ContainerChest ch = (ContainerChest) ((GuiChest)event.gui).inventorySlots; System.out.println(ch.getLowerChestInventory().getName()); if (!("Large Chest".equals(ch.getLowerChestInventory().getName()) || "Chest".equals(ch.getLowerChestInventory().getName()))) return; check = true; } public static int getPrice(ItemStack itemStack) { if (itemStack == null) return 0; NBTTagCompound compound = itemStack.getTagCompound(); if (compound == null) return 0; if (!compound.hasKey("ExtraAttributes")) return 0; final String id = compound.getCompoundTag("ExtraAttributes").getString("id"); if (id.equals("ENCHANTED_BOOK")) { final NBTTagCompound enchants = compound.getCompoundTag("ExtraAttributes").getCompoundTag("enchantments"); Set keys = enchants.getKeySet(); Set actualKeys = new TreeSet(new Comparator() { public int compare(String o1, String o2) { String id2 = id + "::" + o1 + "-" + enchants.getInteger(o1); AhUtils.AuctionData auctionData = AhUtils.auctions.get(id2); int price1 = (auctionData == null) ? 0 : auctionData.lowestBin; String id3 = id + "::" + o2 + "-" + enchants.getInteger(o2); AhUtils.AuctionData auctionData2 = AhUtils.auctions.get(id3); int price2 = (auctionData2 == null) ? 0 : auctionData2.lowestBin; return (compare2(price1, price2) == 0) ? o1.compareTo(o2) : compare2(price1, price2); } public int compare2(int y, int x) { return (x < y) ? -1 : ((x == y) ? 0 : 1); } }); actualKeys.addAll(keys); int totalLowestPrice = 0; for (String key : actualKeys) { String id2 = id + "::" + key + "-" + enchants.getInteger(key); AhUtils.AuctionData auctionData = AhUtils.auctions.get(id2); totalLowestPrice += auctionData.lowestBin; } return totalLowestPrice; } else { AhUtils.AuctionData auctionData = AhUtils.auctions.get(id); if (auctionData == null) { return 0; } else { if (auctionData.sellPrice == -1 && auctionData.lowestBin != -1) return auctionData.lowestBin; else if (auctionData.sellPrice != -1 && auctionData.lowestBin == -1) return auctionData.sellPrice; else { int ahPrice = auctionData.lowestBin; if (ahPrice > auctionData.sellPrice) return ahPrice; else return auctionData.sellPrice; } } } } @Override public void onTick() { if (!this.isEnabled()) return; if (check) { check = false; GuiScreen screen = Minecraft.getMinecraft().currentScreen; if (screen instanceof GuiChest){ ContainerChest chest = (ContainerChest) ((GuiChest) screen).inventorySlots; IInventory actualChest = chest.getLowerChestInventory(); int priceSum = 0; for (int i = 0; i < actualChest.getSizeInventory(); i++) { priceSum += getPrice(actualChest.getStackInSlot(i)); } int threshold = this.getParameter("threshold").getValue(); if (priceSum < threshold) { Minecraft.getMinecraft().thePlayer.closeScreen(); } } } } }