-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support copying nerd stats from item list
- Loading branch information
Showing
4 changed files
with
40 additions
and
35 deletions.
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
35 changes: 35 additions & 0 deletions
35
src/main/kotlin/moe/nea/firmament/util/HoveredItemStack.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,35 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2023 Linnea Gräf <[email protected]> | ||
* | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
package moe.nea.firmament.util | ||
|
||
import me.shedaniel.math.impl.PointHelper | ||
import me.shedaniel.rei.api.client.REIRuntime | ||
import me.shedaniel.rei.api.client.gui.widgets.Slot | ||
import me.shedaniel.rei.api.client.registry.screen.ScreenRegistry | ||
import net.minecraft.client.gui.Element | ||
import net.minecraft.client.gui.ParentElement | ||
import net.minecraft.client.gui.screen.ingame.HandledScreen | ||
import net.minecraft.item.ItemStack | ||
import moe.nea.firmament.mixins.accessor.AccessorHandledScreen | ||
|
||
|
||
val HandledScreen<*>.focusedItemStack: ItemStack? | ||
get() { | ||
this as AccessorHandledScreen | ||
val vanillaSlot = this.focusedSlot_Firmament?.stack | ||
if (vanillaSlot != null) return vanillaSlot | ||
val focusedSlot = ScreenRegistry.getInstance().getFocusedStack(this, PointHelper.ofMouse()) | ||
if (focusedSlot != null) return focusedSlot.cheatsAs().value | ||
var baseElement: Element? = REIRuntime.getInstance().overlay.orElse(null) | ||
val mx = PointHelper.getMouseFloatingX() | ||
val my = PointHelper.getMouseFloatingY() | ||
while (true) { | ||
if (baseElement is Slot) return baseElement.currentEntry.cheatsAs().value | ||
if (baseElement !is ParentElement) return null | ||
baseElement = baseElement.hoveredElement(mx, my).orElse(null) | ||
} | ||
} |