aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/firmament/mixins/MixinMouse.java
blob: 19cdcd2515d27eba7401b119ec65482c015c4f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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();
    }
}