-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Favorite Power Stones (#2002)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Cal <cwolfson58@gmail.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
- Loading branch information
1 parent
7d4567c
commit 93229bf
Showing
4 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
src/main/java/at/hannibal2/skyhanni/features/inventory/FavoritePowerStone.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package at.hannibal2.skyhanni.features.inventory | ||
|
||
import at.hannibal2.skyhanni.SkyHanniMod | ||
import at.hannibal2.skyhanni.data.MaxwellAPI | ||
import at.hannibal2.skyhanni.data.ProfileStorageData | ||
import at.hannibal2.skyhanni.events.GuiContainerEvent | ||
import at.hannibal2.skyhanni.events.InventoryCloseEvent | ||
import at.hannibal2.skyhanni.events.InventoryOpenEvent | ||
import at.hannibal2.skyhanni.events.InventoryUpdatedEvent | ||
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule | ||
import at.hannibal2.skyhanni.utils.ItemUtils.name | ||
import at.hannibal2.skyhanni.utils.KeyboardManager | ||
import at.hannibal2.skyhanni.utils.LorenzColor | ||
import at.hannibal2.skyhanni.utils.LorenzUtils | ||
import at.hannibal2.skyhanni.utils.RenderUtils.highlight | ||
import at.hannibal2.skyhanni.utils.StringUtils.removeColor | ||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent | ||
|
||
@SkyHanniModule | ||
object FavoritePowerStone { | ||
|
||
private val config get() = SkyHanniMod.feature.inventory | ||
private val storage get() = ProfileStorageData.profileSpecific | ||
|
||
private var highlightedSlots = setOf<Int>() | ||
private var inInventory = false | ||
|
||
@SubscribeEvent | ||
fun onBackgroundDrawn(event: GuiContainerEvent.BackgroundDrawnEvent) { | ||
if (!isEnabled() || !inInventory) return | ||
|
||
highlightedSlots.forEach { event.gui.inventorySlots.inventorySlots[it] highlight LorenzColor.AQUA } | ||
} | ||
|
||
@SubscribeEvent | ||
fun onSlotClick(event: GuiContainerEvent.SlotClickEvent) { | ||
if (!isEnabled() || !KeyboardManager.isShiftKeyDown() || !inInventory) return | ||
|
||
val displayName = event.item?.name?.removeColor()?.trim() ?: return | ||
val power = MaxwellAPI.getPowerByNameOrNull(displayName) ?: return | ||
|
||
if (power in MaxwellAPI.favoritePowers) { | ||
MaxwellAPI.favoritePowers -= power | ||
highlightedSlots -= event.slotId | ||
} else { | ||
MaxwellAPI.favoritePowers += power | ||
highlightedSlots += event.slotId | ||
} | ||
|
||
event.cancel() | ||
} | ||
|
||
@SubscribeEvent | ||
fun onInventoryOpen(event: InventoryOpenEvent) { | ||
if (!isEnabled() || !MaxwellAPI.isThaumaturgyInventory(event.inventoryName)) return | ||
|
||
inInventory = true | ||
} | ||
|
||
@SubscribeEvent | ||
fun onInventoryUpdated(event: InventoryUpdatedEvent) { | ||
if (!isEnabled() || !inInventory) return | ||
|
||
highlightedSlots = event.inventoryItems | ||
.filter { (_, item) -> item.displayName.removeColor() in MaxwellAPI.favoritePowers } | ||
.keys | ||
} | ||
|
||
@SubscribeEvent | ||
fun onInventoryClose(event: InventoryCloseEvent) { | ||
inInventory = false | ||
} | ||
|
||
private fun isEnabled() = LorenzUtils.inSkyBlock && storage != null && config.favoritePowerStone | ||
} |