diff options
author | nea <nea@nea.moe> | 2023-05-04 15:24:22 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-04 15:24:22 +0200 |
commit | 857427b0766fe68590589c22e86dbcf1196b4ed5 (patch) | |
tree | f2709a31611bad37be170123ed35b830b0e1f9be /src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt | |
parent | 720cfdd1ed9fc203dd65bbcdc368e124dd35d3cf (diff) | |
download | firmament-857427b0766fe68590589c22e86dbcf1196b4ed5.tar.gz firmament-857427b0766fe68590589c22e86dbcf1196b4ed5.tar.bz2 firmament-857427b0766fe68590589c22e86dbcf1196b4ed5.zip |
Split REI classes
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt b/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt index f4a01fd..e89b007 100644 --- a/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt +++ b/src/main/kotlin/moe/nea/notenoughupdates/rei/NEUReiPlugin.kt @@ -1,23 +1,16 @@ 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 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 { @@ -35,19 +28,7 @@ class NEUReiPlugin : REIClientPlugin { } 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 - }) + registry.registerFocusedStack(SkyblockItemIdFocusedStackProvider) } override fun registerEntries(registry: EntryRegistry) { |