diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-22 00:49:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-22 00:49:53 +0200 |
commit | 857edca75b49a36d73628bbe9b11850ac6233f94 (patch) | |
tree | 416ce5111e8471a7e162f50c7f1f005761008d2f /src | |
parent | d3c4106dbd1d22b952992eb0c5705ff036a56c96 (diff) | |
download | skyhanni-857edca75b49a36d73628bbe9b11850ac6233f94.tar.gz skyhanni-857edca75b49a36d73628bbe9b11850ac6233f94.tar.bz2 skyhanni-857edca75b49a36d73628bbe9b11850ac6233f94.zip |
Removed: Forge GFS (#2564)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningConfig.java | 6 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/mining/ForgeGfs.kt | 94 |
2 files changed, 0 insertions, 100 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningConfig.java index 5f242ecd5..08c8ec894 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningConfig.java @@ -96,10 +96,4 @@ public class MiningConfig { @ConfigEditorBoolean @FeatureToggle public boolean highlightYourGoldenGoblin = true; - - @Expose - @ConfigOption(name = "Forge GfS", desc = "Get Forge ingredients of a recipe.") - @ConfigEditorBoolean - @FeatureToggle - public boolean forgeGfs = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/ForgeGfs.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/ForgeGfs.kt deleted file mode 100644 index 995198674..000000000 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/ForgeGfs.kt +++ /dev/null @@ -1,94 +0,0 @@ -package at.hannibal2.skyhanni.features.mining - -import at.hannibal2.skyhanni.SkyHanniMod -import at.hannibal2.skyhanni.api.GetFromSackAPI -import at.hannibal2.skyhanni.data.SackAPI -import at.hannibal2.skyhanni.events.GuiContainerEvent -import at.hannibal2.skyhanni.events.InventoryCloseEvent -import at.hannibal2.skyhanni.events.InventoryUpdatedEvent -import at.hannibal2.skyhanni.events.render.gui.ReplaceItemEvent -import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule -import at.hannibal2.skyhanni.utils.CollectionUtils -import at.hannibal2.skyhanni.utils.CollectionUtils.addOrPut -import at.hannibal2.skyhanni.utils.ItemUtils -import at.hannibal2.skyhanni.utils.ItemUtils.getInternalNameOrNull -import at.hannibal2.skyhanni.utils.LorenzUtils -import at.hannibal2.skyhanni.utils.NEUInternalName -import at.hannibal2.skyhanni.utils.PrimitiveItemStack.Companion.makePrimitiveStack -import at.hannibal2.skyhanni.utils.RegexUtils.matches -import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern -import net.minecraft.client.player.inventory.ContainerLocalMenu -import net.minecraftforge.fml.common.eventhandler.SubscribeEvent - -@SkyHanniModule -object ForgeGfs { - - private val patternGroup = RepoPattern.group("mining.forge") - - private val confirmScreenPattern by patternGroup.pattern( - "recipe.confirm", - "Confirm Process", - ) - - private val config get() = SkyHanniMod.feature.mining - - private val gfsFakeItem by lazy { - ItemUtils.createSkull( - displayName = "§aGet items from sacks", - uuid = "75ea8094-5152-4457-8c23-1ad9b3c176c0", - value = "ewogICJ0aW1lc3RhbXAiIDogMTU5MTMxMDU4NTYwOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsC" + - "iAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogI" + - "CJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3" + - "RleHR1cmUvODBhMDc3ZTI0OGQxNDI3NzJlYTgwMDg2NGY4YzU3OGI5ZDM2ODg1YjI5ZGFmODM2YjY0YTcwNjg4MmI2ZWMxMCIKICAgIH0KICB9Cn0=", - "§8(from SkyHanni)", - "§7Click here to try to get all of this", - "§7recipe's ingredients from sacks.", - ) - } - - private var showFakeItem = false - - @SubscribeEvent - fun onInventoryOpen(event: InventoryUpdatedEvent) { - if (!isEnabled()) return - if (!confirmScreenPattern.matches(event.inventoryName)) return - - showFakeItem = true - } - - @SubscribeEvent - fun onInventoryClose(event: InventoryCloseEvent) { - showFakeItem = false - } - - @SubscribeEvent - fun replaceItem(event: ReplaceItemEvent) { - if (event.inventory is ContainerLocalMenu && showFakeItem && event.slot == 53) { - event.replace(gfsFakeItem) - } - } - - @SubscribeEvent - fun onSlotClick(event: GuiContainerEvent.SlotClickEvent) { - if (!isEnabled()) return - if (!showFakeItem || event.slotId != 53) return - - event.cancel() - - val itemMap: MutableMap<NEUInternalName, Int> = LinkedHashMap() - // Search for the first 4 columns only - // Normally would be 3, but the gemstone mixture is the only one that overflows to 4 - - for (i in CollectionUtils.takeColumn(0, 53, 0, 4)) { - val currentItem = event.container.getSlot(i).stack - val currItemInternalName = currentItem.getInternalNameOrNull() ?: continue - if (SackAPI.sackListInternalNames.contains(currItemInternalName.asString())) { - itemMap.addOrPut(currItemInternalName, currentItem.stackSize) - } - } - - GetFromSackAPI.getFromSack(itemMap.map { it.key.makePrimitiveStack(it.value) }) - } - - fun isEnabled() = LorenzUtils.inSkyBlock && config.forgeGfs -} |