aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/firmament/mixins/MixinMouse.java
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-10-28 04:07:47 +0200
committernea <nea@nea.moe>2023-10-28 04:07:47 +0200
commitad490f2ea7967cb6bb97cb797b33aa3554de46a5 (patch)
treec45cf7f4b8a6d60399fcc46f793c75bd8387211d /src/main/java/moe/nea/firmament/mixins/MixinMouse.java
parent9e7da2829cdc949d211ef5021131b4a48ddc3054 (diff)
downloadfirmament-ad490f2ea7967cb6bb97cb797b33aa3554de46a5.tar.gz
firmament-ad490f2ea7967cb6bb97cb797b33aa3554de46a5.tar.bz2
firmament-ad490f2ea7967cb6bb97cb797b33aa3554de46a5.zip
Rename mixins after what they do, rather than where they do it
[no changelog] Mixins are now named after what they do, and mixins for the same class that do different things should be in two separate mixins now.
Diffstat (limited to 'src/main/java/moe/nea/firmament/mixins/MixinMouse.java')
-rw-r--r--src/main/java/moe/nea/firmament/mixins/MixinMouse.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/main/java/moe/nea/firmament/mixins/MixinMouse.java b/src/main/java/moe/nea/firmament/mixins/MixinMouse.java
deleted file mode 100644
index 68dda34..0000000
--- a/src/main/java/moe/nea/firmament/mixins/MixinMouse.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
- *
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
-
-package moe.nea.firmament.mixins;
-
-import kotlin.Pair;
-import moe.nea.firmament.features.inventory.SaveCursorPosition;
-import net.minecraft.client.Mouse;
-import org.objectweb.asm.Opcodes;
-import org.spongepowered.asm.mixin.Mixin;
-import org.spongepowered.asm.mixin.Shadow;
-import org.spongepowered.asm.mixin.injection.At;
-import org.spongepowered.asm.mixin.injection.Inject;
-import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
-
-@Mixin(Mouse.class)
-public class MixinMouse {
- @Shadow
- private double x;
-
- @Shadow
- private double y;
-
- @Inject(method = "lockCursor", at = @At(value = "FIELD", opcode = Opcodes.PUTFIELD, target = "Lnet/minecraft/client/Mouse;cursorLocked:Z"))
- public void onLockCursor(CallbackInfo ci) {
- SaveCursorPosition.saveCursorOriginal(x, y);
- }
-
- @Inject(method = "lockCursor", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/util/Window;getHandle()J"))
- public void onLockCursorAfter(CallbackInfo ci) {
- SaveCursorPosition.saveCursorMiddle(x, y);
- }
-
- @Inject(method = "unlockCursor", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/util/Window;getHandle()J"))
- public void onUnlockCursor(CallbackInfo ci) {
- Pair<Double, Double> cursorPosition = SaveCursorPosition.loadCursor(this.x, this.y);
- if (cursorPosition == null) return;
- this.x = cursorPosition.getFirst();
- this.y = cursorPosition.getSecond();
- }
-}