aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/utils/InputHandler.java
blob: 809e55c3c9fb3490530108b0b680c9c671a2a435 (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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
 * This file is part of OneConfig.
 * OneConfig - Next Generation Config Library for Minecraft: Java Edition
 * Copyright (C) 2021, 2022 Polyfrost.
 *   <https://polyfrost.cc> <https://github.com/Polyfrost/>
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 *   OneConfig is licensed under the terms of version 3 of the GNU Lesser
 * General Public License as published by the Free Software Foundation, AND
 * under the Additional Terms Applicable to OneConfig, as published by Polyfrost,
 * either version 1.0 of the Additional Terms, or (at your option) any later
 * version.
 *
 *   This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 * License.  If not, see <https://www.gnu.org/licenses/>. You should
 * have also received a copy of the Additional Terms Applicable
 * to OneConfig, as published by Polyfrost. If not, see
 * <https://polyfrost.cc/legal/oneconfig/additional-terms>
 */

package cc.polyfrost.oneconfig.utils;

import cc.polyfrost.oneconfig.libs.universal.UResolution;
import cc.polyfrost.oneconfig.platform.Platform;
import cc.polyfrost.oneconfig.renderer.scissor.Scissor;
import cc.polyfrost.oneconfig.utils.gui.GuiUtils;

import java.util.ArrayList;

/**
 * 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 class InputHandler {
    private final ArrayList<Scissor> blockScissors = new ArrayList<>();
    private double scaleX = 1d;
    private double scaleY = 1d;

    /**
     * Push a scale for the input utils to use
     *
     * @param scaleX X scale
     * @param scaleY Y scale
     */
    public void scale(double scaleX, double scaleY) {
        this.scaleX = scaleX;
        this.scaleY = scaleY;
    }

    /**
     * Reset the scale input utils uses
     */
    public void resetScale() {
        scaleX = 1d;
        scaleY = 1d;
    }


    /**
     * 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 boolean isAreaHovered(float x, float y, float width, float height, boolean ignoreBlock) {
        float mouseX = mouseX();
        float mouseY = mouseY();
        return (ignoreBlock || blockScissors.size() == 0 || !shouldBlock(mouseX, mouseY)) && mouseX > x && mouseY > y && mouseX < x + width && mouseY < y + height;
    }

    /**
     * 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 boolean isAreaHovered(float x, float y, float width, float height) {
        return isAreaHovered(x, y, width, height, false);
    }

    /**
     * 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
     * @return true if the mouse is clicked and is over the region, false if not
     * @see InputHandler#isAreaHovered(float, float, float, float)
     */
    public boolean isAreaClicked(float x, float y, float width, float height, boolean ignoreBlock) {
        return isAreaHovered(x, y, width, height, ignoreBlock) && isClicked(false);
    }

    /**
     * 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 InputHandler#isAreaClicked(float, float, float, float, boolean)
     */
    public boolean isAreaClicked(float x, float y, float width, float height) {
        return isAreaClicked(x, y, width, height, false);
    }

    /**
     * Checks whether the mouse is clicked or not.
     *
     * @param ignoreBlock if true, will ignore
     * @return true if the mouse is clicked, false if not
     */
    public boolean isClicked(boolean ignoreBlock) {
        return GuiUtils.wasMouseDown() && !Platform.getMousePlatform().isButtonDown(0) && (ignoreBlock || blockScissors.size() == 0 || !shouldBlock(mouseX(), mouseY()));
    }

    /**
     * Checks whether the mouse is clicked or not.
     *
     * @return true if the mouse is clicked, false if not
     * @see InputHandler#isClicked(boolean)
     */
    public boolean isClicked() {
        return isClicked(false);
    }

    /**
     * @param button The button
     * @return If the button is down
     */
    public boolean isMouseDown(int button) {
        return Platform.getMousePlatform().isButtonDown(button);
    }

    /**
     * @return If the left mouse button is down
     */
    public boolean isMouseDown() {
        return isMouseDown(0);
    }

    /**
     * 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 float mouseX() {
        return (float) (Platform.getMousePlatform().getMouseX() / scaleX);
    }

    /**
     * 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 float mouseY() {
        return (float) ((UResolution.getWindowHeight() - Math.abs(Platform.getMousePlatform().getMouseY())) / scaleY);
    }

    /**
     * Block all clicks outside an area
     *
     * @param x      X coordinate
     * @param y      Y coordinate
     * @param width  Width
     * @param height Height
     */
    public Scissor blockInputArea(float x, float y, float width, float height) {
        Scissor scissor = new Scissor(new Scissor(x, y, width, height));
        blockScissors.add(scissor);
        return scissor;
    }

    /**
     * Should be used if there is something above other components and you don't want it clicking trough
     */
    public Scissor blockAllInput() {
        return blockInputArea(0, 0, 1920, 1080);
    }

    /**
     * Stop blocking an area from being interacted with
     *
     * @param scissor The scissor area
     */
    public void stopBlock(Scissor scissor) {
        blockScissors.remove(scissor);
    }

    /**
     * Clears all blocking areas
     */
    public void stopBlockingInput() {
        blockScissors.clear();
    }

    /**
     * Whether clicks are blocked
     *
     * @return true if clicks are blocked, false if not
     */
    public boolean isBlockingInput() {
        return blockScissors.size() > 0;
    }

    private boolean shouldBlock(float x, float y) {
        for (Scissor block : blockScissors) {
            if (block.isInScissor(x, y)) return true;
        }
        return false;
    }
}