aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-05-04 15:12:56 +0200
committernea <nea@nea.moe>2023-05-04 15:12:56 +0200
commitf2aa75f7c193513215ba4619c66bcc1449b0bc27 (patch)
tree89a8e309ba84c9966eb9e7a7317255984419f0c0 /src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt
parentbfcb02e52bf9c1fbe9f4d544108ffd547c40eba5 (diff)
downloadFirmament-f2aa75f7c193513215ba4619c66bcc1449b0bc27.tar.gz
Firmament-f2aa75f7c193513215ba4619c66bcc1449b0bc27.tar.bz2
Firmament-f2aa75f7c193513215ba4619c66bcc1449b0bc27.zip
Make REI aware of SkyBlock item ids
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt')
-rw-r--r--src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt27
1 files changed, 25 insertions, 2 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt b/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt
index 475a5c9..f4a01fd 100644
--- a/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt
+++ b/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt
@@ -1,15 +1,23 @@
package moe.nea.notenoughupdates.rei
+import dev.architectury.event.CompoundEventResult
import io.github.moulberry.repo.data.NEUItem
+import me.shedaniel.math.Point
import me.shedaniel.rei.api.client.plugins.REIClientPlugin
import me.shedaniel.rei.api.client.registry.entry.EntryRegistry
+import me.shedaniel.rei.api.client.registry.screen.FocusedStackProvider
+import me.shedaniel.rei.api.client.registry.screen.ScreenRegistry
import me.shedaniel.rei.api.common.entry.EntryStack
import me.shedaniel.rei.api.common.entry.type.EntryTypeRegistry
import me.shedaniel.rei.api.common.entry.type.VanillaEntryTypes
-import moe.nea.notenoughupdates.repo.ItemCache.asItemStack
-import moe.nea.notenoughupdates.repo.RepoManager
+import net.minecraft.client.gui.screen.Screen
+import net.minecraft.client.gui.screen.ingame.HandledScreen
import net.minecraft.item.ItemStack
import net.minecraft.util.Identifier
+import moe.nea.notenoughupdates.mixins.accessor.AccessorHandledScreen
+import moe.nea.notenoughupdates.repo.ItemCache.asItemStack
+import moe.nea.notenoughupdates.repo.RepoManager
+import moe.nea.notenoughupdates.util.skyBlockId
class NEUReiPlugin : REIClientPlugin {
@@ -26,6 +34,21 @@ class NEUReiPlugin : REIClientPlugin {
registry.register(SKYBLOCK_ITEM_TYPE_ID, SBItemEntryDefinition)
}
+ override fun registerScreens(registry: ScreenRegistry) {
+ registry.registerFocusedStack(object : FocusedStackProvider {
+ override fun provide(screen: Screen?, mouse: Point?): CompoundEventResult<EntryStack<*>> {
+ if (screen !is HandledScreen<*>) return CompoundEventResult.pass()
+ screen as AccessorHandledScreen
+ val focusedSlot = screen.focusedSlot_NEU ?: return CompoundEventResult.pass()
+ val item = focusedSlot.stack ?: return CompoundEventResult.pass()
+ val skyblockId = item.skyBlockId ?: return CompoundEventResult.pass()
+ val neuItem = RepoManager.getNEUItem(skyblockId) ?: return CompoundEventResult.interrupt(false, null)
+ return CompoundEventResult.interruptTrue(EntryStack.of(SBItemEntryDefinition, neuItem))
+ }
+
+ override fun getPriority(): Double = 1_000_000.0
+ })
+ }
override fun registerEntries(registry: EntryRegistry) {
RepoManager.neuRepo.items?.items?.values?.forEach {