aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/firmament/mixins/SaveCursorPositionPatch.java
blob: 3659066f3412053d16c8a8ea67c7d5705b35281a (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
39
40
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 SaveCursorPositionPatch {
	@Shadow
	private double x;

	@Shadow
	private double y;

	@Inject(method = "lockCursor", at = @At(value = "HEAD"))
	public void onLockCursor(CallbackInfo ci) {
		SaveCursorPosition.saveCursorOriginal(x, y);
	}

	@Inject(method = "lockCursor", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/MinecraftClient;getWindow()Lnet/minecraft/client/util/Window;", ordinal = 2))
	public void onLockCursorAfter(CallbackInfo ci) {
		SaveCursorPosition.saveCursorMiddle(x, y);
	}

	@Inject(method = "unlockCursor", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/MinecraftClient;getWindow()Lnet/minecraft/client/util/Window;", ordinal = 2))
	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();
	}
}