aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/dulkirfabric/features
diff options
context:
space:
mode:
authoringlettronald <inglettronald@gmail.com>2023-06-11 22:57:55 -0500
committeringlettronald <inglettronald@gmail.com>2023-06-11 22:57:55 -0500
commit8ade4e173a03fcb3080025d11c6e51f5976f3ccc (patch)
tree2adce93925feb17af340dfb53bc79f6bd159a2ca /src/main/kotlin/com/dulkirfabric/features
parenta30fcadbeed2997ad1607d488ba7548c799a6033 (diff)
downloadDulkirMod-Fabric-8ade4e173a03fcb3080025d11c6e51f5976f3ccc.tar.gz
DulkirMod-Fabric-8ade4e173a03fcb3080025d11c6e51f5976f3ccc.tar.bz2
DulkirMod-Fabric-8ade4e173a03fcb3080025d11c6e51f5976f3ccc.zip
wip
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/features')
-rw-r--r--src/main/kotlin/com/dulkirfabric/features/RenderBoxTest.kt2
-rw-r--r--src/main/kotlin/com/dulkirfabric/features/TooltipImpl.kt60
2 files changed, 61 insertions, 1 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/features/RenderBoxTest.kt b/src/main/kotlin/com/dulkirfabric/features/RenderBoxTest.kt
index 6a0c048..af76c44 100644
--- a/src/main/kotlin/com/dulkirfabric/features/RenderBoxTest.kt
+++ b/src/main/kotlin/com/dulkirfabric/features/RenderBoxTest.kt
@@ -12,7 +12,7 @@ object RenderBoxTest {
fun onRender(event: WorldRenderLastEvent) {
WorldRenderUtils.drawBox(
event.context, Box(0.0, 0.0, 0.0, 1.0, 1.0, 1.0),
- Color(255, 255, 255, 255), 3f, true
+ Color(255, 255, 255, 255), 10f, true
)
}
} \ No newline at end of file
diff --git a/src/main/kotlin/com/dulkirfabric/features/TooltipImpl.kt b/src/main/kotlin/com/dulkirfabric/features/TooltipImpl.kt
new file mode 100644
index 0000000..100b880
--- /dev/null
+++ b/src/main/kotlin/com/dulkirfabric/features/TooltipImpl.kt
@@ -0,0 +1,60 @@
+package com.dulkirfabric.features
+
+import com.dulkirfabric.DulkirModFabric.mc
+import com.dulkirfabric.events.ClientTickEvent
+import com.dulkirfabric.events.MouseScrollEvent
+import meteordevelopment.orbit.EventHandler
+import net.minecraft.client.MinecraftClient
+import net.minecraft.client.util.InputUtil
+import org.joml.Vector2i
+import org.joml.Vector2ic
+import org.lwjgl.glfw.GLFW
+
+object TooltipImpl {
+
+ var scaleBuffer = 1f
+ var horizontalBuffer = 0.0
+ var verticalBuffer = 0.0
+
+ var tickScale = 0f
+ var tickHorizontal = 0
+ var tickVertical = 0
+
+ var prevTickX = 0
+ var prevTickY = 0
+
+ fun calculatePos(v: Vector2ic): Vector2ic {
+ // calculate the position of the tooltip based on the scroll amount
+ val partialTicks = MinecraftClient.getInstance().tickDelta
+ val newVec = v.add(prevTickX + ((tickHorizontal - prevTickX) * partialTicks).toInt(),
+ prevTickY + ((tickVertical - prevTickY) * partialTicks).toInt(), Vector2i())
+ return newVec
+ }
+
+ fun applyScale() {
+
+ }
+
+ @EventHandler
+ fun onTick(event: ClientTickEvent) {
+ // flushes the buffer to a scroll amount this tick, will be interpolated in calculatePos
+ prevTickX = tickHorizontal
+ prevTickY = tickVertical
+ tickHorizontal = horizontalBuffer.toInt()
+ tickVertical = verticalBuffer.toInt()
+ tickScale = scaleBuffer
+ }
+
+ @EventHandler
+ fun onScroll(event: MouseScrollEvent) {
+ if (event.verticalScrollAmount == 0.0) return
+ val handle = MinecraftClient.getInstance().window.handle
+ if (InputUtil.isKeyPressed(handle, GLFW.GLFW_KEY_LEFT_SHIFT)) {
+ horizontalBuffer += (mc.window.width / 192) * event.verticalScrollAmount
+ } else if (InputUtil.isKeyPressed(handle, GLFW.GLFW_KEY_LEFT_CONTROL)) {
+ scaleBuffer += .1f * event.verticalScrollAmount.toFloat()
+ } else {
+ verticalBuffer += (mc.window.height / 108) * event.verticalScrollAmount
+ }
+ }
+} \ No newline at end of file