aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt')
-rw-r--r--src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt b/src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt
new file mode 100644
index 0000000..c56560e
--- /dev/null
+++ b/src/main/kotlin/moe/nea/notenoughupdates/util/ScreenUtil.kt
@@ -0,0 +1,37 @@
+package moe.nea.notenoughupdates.util
+
+import moe.nea.notenoughupdates.NotEnoughUpdates
+import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents
+import net.minecraft.client.Minecraft
+import net.minecraft.client.gui.screens.Screen
+
+object ScreenUtil {
+ init {
+ ClientTickEvents.START_CLIENT_TICK.register(::onTick)
+ }
+
+ private fun onTick(minecraft: Minecraft) {
+ if (nextOpenedGui != null) {
+ val p = minecraft.player
+ if (p?.containerMenu != null) {
+ p.closeContainer()
+ }
+ minecraft.setScreen(nextOpenedGui)
+ nextOpenedGui = null
+ }
+ }
+
+ private var nextOpenedGui: Screen? = null
+
+ @Suppress("UnusedReceiverParameter")
+ fun Minecraft.setScreenLater(nextScreen: Screen) {
+ val nog = nextOpenedGui
+ if (nog != null) {
+ NotEnoughUpdates.logger.warn("Setting screen ${nextScreen::class.qualifiedName} to be opened later, but ${nog::class.qualifiedName} is already queued.")
+ return
+ }
+ nextOpenedGui = nextScreen
+ }
+
+
+} \ No newline at end of file