diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-24 22:13:49 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-24 22:13:49 +0100 |
commit | a5bb62a327a2b1a69a952caa6a5e089b23c1af38 (patch) | |
tree | 03147c9dcfe4ef6ddfc286c977fb0154f22136df /src/main/java | |
parent | ba619ccebe7a313bac3b59e7f7e2085bb9cb74ee (diff) | |
download | skyhanni-a5bb62a327a2b1a69a952caa6a5e089b23c1af38.tar.gz skyhanni-a5bb62a327a2b1a69a952caa6a5e089b23c1af38.tar.bz2 skyhanni-a5bb62a327a2b1a69a952caa6a5e089b23c1af38.zip |
Code cleanup
Diffstat (limited to 'src/main/java')
3 files changed, 58 insertions, 77 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/core/config/Position.java b/src/main/java/at/hannibal2/skyhanni/config/core/config/Position.java index edaae7d0f..9213408e4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/core/config/Position.java +++ b/src/main/java/at/hannibal2/skyhanni/config/core/config/Position.java @@ -20,6 +20,7 @@ package at.hannibal2.skyhanni.config.core.config; import com.google.gson.annotations.Expose; +import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ScaledResolution; public class Position { @@ -78,8 +79,8 @@ public class Position { return clicked; } - public int getAbsX0(ScaledResolution scaledResolution, int objWidth) { - int width = scaledResolution.getScaledWidth(); + public int getAbsX0(int objWidth) { + int width = new ScaledResolution(Minecraft.getMinecraft()).getScaledWidth(); int ret = x; if (x < 0) { @@ -92,8 +93,8 @@ public class Position { return ret; } - public int getAbsY0(ScaledResolution scaledResolution, int objHeight) { - int height = scaledResolution.getScaledHeight(); + public int getAbsY0(int objHeight) { + int height = new ScaledResolution(Minecraft.getMinecraft()).getScaledHeight(); int ret = y; if (y < 0) { @@ -106,8 +107,8 @@ public class Position { return ret; } - public int moveX(int deltaX, int objWidth, ScaledResolution scaledResolution) { - int screenWidth = scaledResolution.getScaledWidth(); + public int moveX(int deltaX) { + int screenWidth = new ScaledResolution(Minecraft.getMinecraft()).getScaledWidth(); boolean wasPositiveX = this.x >= 0; this.x += deltaX; @@ -131,17 +132,11 @@ public class Position { } } - if (this.x >= 0 && this.x + objWidth / 2 > screenWidth / 2) { - this.x -= screenWidth - objWidth; - } - if (this.x < 0 && this.x + objWidth / 2 <= -screenWidth / 2) { - this.x += screenWidth - objWidth; - } return deltaX; } - public int moveY(int deltaY, int objHeight, ScaledResolution scaledResolution) { - int screenHeight = scaledResolution.getScaledHeight(); + public int moveY(int deltaY) { + int screenHeight = new ScaledResolution(Minecraft.getMinecraft()).getScaledHeight(); boolean wasPositiveY = this.y >= 0; this.y += deltaY; @@ -165,12 +160,6 @@ public class Position { } } - if (this.y >= 0 && this.y - objHeight / 2 > screenHeight / 2) { - this.y -= screenHeight - objHeight; - } - if (this.y < 0 && this.y - objHeight / 2 <= -screenHeight / 2) { - this.y += screenHeight - objHeight; - } return deltaY; } } diff --git a/src/main/java/at/hannibal2/skyhanni/config/core/config/gui/GuiPositionEditor.kt b/src/main/java/at/hannibal2/skyhanni/config/core/config/gui/GuiPositionEditor.kt index 1cbb8a137..4e608ee3b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/core/config/gui/GuiPositionEditor.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/core/config/gui/GuiPositionEditor.kt @@ -40,6 +40,7 @@ class GuiPositionEditor( private var grabbedX = 0 private var grabbedY = 0 private var clickedPos = -1 + private val border = 2 init { val pos = ArrayList<Position>() @@ -59,10 +60,8 @@ class GuiPositionEditor( } override fun drawScreen(unusedX: Int, unusedY: Int, partialTicks: Float) { - val border = 2 var hoveredPos = -1 - val scaledResolution = ScaledResolution(Minecraft.getMinecraft()) var mouseX = Mouse.getX() * width / Minecraft.getMinecraft().displayWidth var mouseY = height - Mouse.getY() * height / Minecraft.getMinecraft().displayHeight - 1 for (i in positions.indices.reversed()) { @@ -71,13 +70,14 @@ class GuiPositionEditor( val elementHeight = position.getDummySize().y val x = position.getAbsX() val y = position.getAbsY() - if (mouseX >= x - border && mouseY >= y - border && mouseX <= x + elementWidth + border * 2 && mouseY <= y + elementHeight + border * 2) { + if (inXY(mouseX, x, mouseY, y, elementWidth, elementHeight)) { hoveredPos = i break } } drawDefaultBackground() + val scaledResolution = ScaledResolution(Minecraft.getMinecraft()) Utils.drawStringCentered( "§cSkyHanni Position Editor", Minecraft.getMinecraft().fontRendererObj, (scaledResolution.scaledWidth / 2).toFloat(), 8f, true, 0xffffff @@ -90,31 +90,28 @@ class GuiPositionEditor( mouseX = Mouse.getX() * width / Minecraft.getMinecraft().displayWidth mouseY = height - Mouse.getY() * height / Minecraft.getMinecraft().displayHeight - 1 for (position in positions) { - var elementWidth = position.getDummySize(true).x - var elementHeight = position.getDummySize(true).y if (position.clicked) { - grabbedX += position.moveX(mouseX - grabbedX, elementWidth, scaledResolution) - grabbedY += position.moveY(mouseY - grabbedY, elementHeight, scaledResolution) + grabbedX += position.moveX(mouseX - grabbedX) + grabbedY += position.moveY(mouseY - grabbedY) } val x = position.getAbsX() val y = position.getAbsY() - elementWidth = position.getDummySize().x - elementHeight = position.getDummySize().y + val elementWidth = position.getDummySize().x + val elementHeight = position.getDummySize().y drawRect(x - border, y - border, x + elementWidth + border * 2, y + elementHeight + border * 2, -0x7fbfbfc0) - - if (hoveredPos == -1) { - hoveredPos = clickedPos - } - if (hoveredPos != -1) { val pos = positions[hoveredPos] - Utils.drawStringCentered("§b" + pos.internalName, Minecraft.getMinecraft().fontRendererObj, - (scaledResolution.scaledWidth / 2).toFloat(), 18f, true, 0xffffff) + Utils.drawStringCentered( + "§b" + pos.internalName, Minecraft.getMinecraft().fontRendererObj, + (scaledResolution.scaledWidth / 2).toFloat(), 18f, true, 0xffffff + ) val location = "§7x: §e${pos.rawX}§7, y: §e${pos.rawY}" - Utils.drawStringCentered(location, Minecraft.getMinecraft().fontRendererObj, - (scaledResolution.scaledWidth / 2).toFloat(), 28f, true, 0xffffff) + Utils.drawStringCentered( + location, Minecraft.getMinecraft().fontRendererObj, + (scaledResolution.scaledWidth / 2).toFloat(), 28f, true, 0xffffff + ) } } GlStateManager.popMatrix() @@ -123,37 +120,42 @@ class GuiPositionEditor( @Throws(IOException::class) override fun mouseClicked(originalX: Int, priginalY: Int, mouseButton: Int) { super.mouseClicked(originalX, priginalY, mouseButton) + if (mouseButton != 0) return - val mouseX: Int - val mouseY: Int - if (mouseButton == 0) { - mouseX = Mouse.getX() * width / Minecraft.getMinecraft().displayWidth - mouseY = height - Mouse.getY() * height / Minecraft.getMinecraft().displayHeight - 1 - for (i in positions.indices.reversed()) { - val position = positions[i] - val elementWidth = position.getDummySize().x - val elementHeight = position.getDummySize().y - val x = position.getAbsX() - val y = position.getAbsY() - if (!position.clicked) { - if (mouseX >= x && mouseY >= y && mouseX <= x + elementWidth && mouseY <= y + elementHeight) { - clickedPos = i - position.clicked = true - grabbedX = mouseX - grabbedY = mouseY - break - } + val mouseX = Mouse.getX() * width / Minecraft.getMinecraft().displayWidth + val mouseY = height - Mouse.getY() * height / Minecraft.getMinecraft().displayHeight - 1 + for (i in positions.indices.reversed()) { + val position = positions[i] + val elementWidth = position.getDummySize().x + val elementHeight = position.getDummySize().y + val x = position.getAbsX() + val y = position.getAbsY() + if (!position.clicked) { + if (inXY(mouseX, x, mouseY, y, elementWidth, elementHeight)) { + clickedPos = i + position.clicked = true + grabbedX = mouseX + grabbedY = mouseY + break } } } } + private fun inXY( + mouseX: Int, + x: Int, + mouseY: Int, + y: Int, + elementWidth: Int, + elementHeight: Int, + ) = + mouseX >= x - border && mouseY >= y - border && mouseX <= x + elementWidth + border * 2 && mouseY <= y + elementHeight + border * 2 + @Throws(IOException::class) override fun keyTyped(typedChar: Char, keyCode: Int) { if (clickedPos != -1) { val position = positions[clickedPos] - val elementWidth = position.getDummySize(true).x - val elementHeight = position.getDummySize(true).y if (keyCode == SkyHanniMod.feature.gui.keyBindReset) { position.set(originalPositions[positions.indexOf(position)]) @@ -169,13 +171,13 @@ class GuiPositionEditor( val shiftHeld = Keyboard.isKeyDown(Keyboard.KEY_LSHIFT) || Keyboard.isKeyDown(Keyboard.KEY_RSHIFT) val dist = if (shiftHeld) 10 else 1 if (keyCode == Keyboard.KEY_DOWN) { - position.moveY(dist, elementHeight, ScaledResolution(Minecraft.getMinecraft())) + position.moveY(dist) } else if (keyCode == Keyboard.KEY_UP) { - position.moveY(-dist, elementHeight, ScaledResolution(Minecraft.getMinecraft())) + position.moveY(-dist) } else if (keyCode == Keyboard.KEY_LEFT) { - position.moveX(-dist, elementWidth, ScaledResolution(Minecraft.getMinecraft())) + position.moveX(-dist) } else if (keyCode == Keyboard.KEY_RIGHT) { - position.moveX(dist, elementWidth, ScaledResolution(Minecraft.getMinecraft())) + position.moveX(dist) } } } @@ -195,14 +197,11 @@ class GuiPositionEditor( var mouseX: Int var mouseY: Int for (position in positions) { - val elementWidth = position.getDummySize(true).x - val elementHeight = position.getDummySize(true).y if (position.clicked) { - val scaledResolution = Utils.pushGuiScale(-1) mouseX = Mouse.getX() * width / Minecraft.getMinecraft().displayWidth mouseY = height - Mouse.getY() * height / Minecraft.getMinecraft().displayHeight - 1 - grabbedX += position.moveX(mouseX - grabbedX, elementWidth, scaledResolution) - grabbedY += position.moveY(mouseY - grabbedY, elementHeight, scaledResolution) + grabbedX += position.moveX(mouseX - grabbedX) + grabbedY += position.moveY(mouseY - grabbedY) Utils.pushGuiScale(-1) } } diff --git a/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt b/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt index b68271c78..4480d0f24 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt @@ -6,7 +6,6 @@ import at.hannibal2.skyhanni.config.core.config.gui.GuiPositionEditor import at.hannibal2.skyhanni.events.GuiRenderEvent import at.hannibal2.skyhanni.utils.LorenzUtils import net.minecraft.client.Minecraft -import net.minecraft.client.gui.ScaledResolution import net.minecraft.client.gui.inventory.GuiChest import net.minecraft.client.gui.inventory.GuiInventory import net.minecraft.client.renderer.GlStateManager @@ -97,15 +96,9 @@ class GuiEditManager { } } - fun Position.getAbsX(): Int { - val width = getDummySize(true).x - return getAbsX0(ScaledResolution(Minecraft.getMinecraft()), width) - } + fun Position.getAbsX() = getAbsX0(getDummySize(true).x) - fun Position.getAbsY(): Int { - val height = getDummySize(true).y - return getAbsY0(ScaledResolution(Minecraft.getMinecraft()), height) - } + fun Position.getAbsY() = getAbsY0(getDummySize(true).y) } } |