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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
package cc.polyfrost.oneconfig.utils;
import cc.polyfrost.oneconfig.gui.OneConfigGui;
import cc.polyfrost.oneconfig.libs.universal.UResolution;
import org.lwjgl.input.Mouse;
/**
* Various utility methods for input.
* <p>
* All values returned from this class are not scaled to Minecraft's GUI scale.
* For scaled values, see {@link cc.polyfrost.oneconfig.libs.universal.UMouse}.
* </p>
*/
public final class InputUtils {
private static boolean blockClicks = false;
/**
* function to determine weather the mouse is currently over a specific region. Uses the current nvgScale to fix to any scale.
*
* @return true if mouse is over region, false if not.
*/
public static boolean isAreaHovered(int x, int y, int width, int height) {
int mouseX = mouseX();
int mouseY = mouseY();
return mouseX > x && mouseY > y && mouseX < x + width && mouseY < y + height;
}
/**
* Checks whether the mouse is currently over a specific region and clicked.
*
* @param x the x position of the region
* @param y the y position of the region
* @param width the width of the region
* @param height the height of the region
* @param ignoreBlock if true, will ignore {@link InputUtils#blockClicks(boolean)}
* @return true if the mouse is clicked and is over the region, false if not
* @see InputUtils#isAreaHovered(int, int, int, int)
*/
public static boolean isAreaClicked(int x, int y, int width, int height, boolean ignoreBlock) {
return isAreaHovered(x, y, width, height) && isClicked(ignoreBlock);
}
/**
* Checks whether the mouse is currently over a specific region and clicked.
*
* @param x the x position of the region
* @param y the y position of the region
* @param width the width of the region
* @param height the height of the region
* @return true if the mouse is clicked and is over the region, false if not
* @see InputUtils#isAreaClicked(int, int, int, int, boolean)
*/
public static boolean isAreaClicked(int x, int y, int width, int height) {
return isAreaClicked(x, y, width, height, false);
}
/**
* Checks whether the mouse is clicked or not.
*
* @param ignoreBlock if true, will ignore {@link InputUtils#blockClicks(boolean)}
* @return true if the mouse is clicked, false if not
*/
public static boolean isClicked(boolean ignoreBlock) {
return OneConfigGui.INSTANCE != null && OneConfigGui.INSTANCE.mouseDown && !Mouse.isButtonDown(0) && (!blockClicks || ignoreBlock);
}
/**
* Checks whether the mouse is clicked or not.
*
* @return true if the mouse is clicked, false if not
* @see InputUtils#isClicked(boolean)
*/
public static boolean isClicked() {
return isClicked(false);
}
/**
* Gets the current mouse X position.
* <p>
* All values returned from this class are not scaled to Minecraft's GUI scale.
* For scaled values, see {@link cc.polyfrost.oneconfig.libs.universal.UMouse}.
* </p>
*
* @return the current mouse X position
*/
public static int mouseX() {
if (OneConfigGui.INSTANCE == null) return Mouse.getX();
return (int) (Mouse.getX() / OneConfigGui.INSTANCE.getScaleFactor());
}
/**
* Gets the current mouse Y position.
* <p>
* All values returned from this class are not scaled to Minecraft's GUI scale.
* For scaled values, see {@link cc.polyfrost.oneconfig.libs.universal.UMouse}.
* </p>
*
* @return the current mouse Y position
*/
public static int mouseY() {
if (OneConfigGui.INSTANCE == null) return UResolution.getWindowHeight() - Math.abs(Mouse.getY());
return (int) ((UResolution.getWindowHeight() - Math.abs(Mouse.getY())) / OneConfigGui.INSTANCE.getScaleFactor());
}
/**
* Should be used if there is something above other components and you don't want it clicking trough
*/
public static void blockClicks(boolean value) {
blockClicks = value;
}
/**
* Whether clicks are blocked
*
* @return true if clicks are blocked, false if not
*/
public static boolean isBlockingClicks() {
return blockClicks;
}
}
|