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
|
/*
* Copyright (C) 2022 NotEnoughUpdates contributors
*
* This file is part of NotEnoughUpdates.
*
* NotEnoughUpdates is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* NotEnoughUpdates 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
* along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
*/
package io.github.moulberry.notenoughupdates.infopanes;
import io.github.moulberry.notenoughupdates.NEUManager;
import io.github.moulberry.notenoughupdates.NEUOverlay;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import io.github.moulberry.notenoughupdates.core.BackgroundBlur;
import net.minecraft.client.gui.Gui;
import net.minecraft.client.gui.ScaledResolution;
import java.awt.*;
import java.util.concurrent.CompletableFuture;
public abstract class InfoPane extends Gui {
final NEUOverlay overlay;
final NEUManager manager;
public InfoPane(NEUOverlay overlay, NEUManager manager) {
this.overlay = overlay;
this.manager = manager;
}
public void reset() {}
public void tick() {}
public abstract void render(
int width, int height, Color bg, Color fg, ScaledResolution scaledresolution, int mouseX,
int mouseY
);
public abstract void mouseInput(int width, int height, int mouseX, int mouseY, boolean mouseDown);
public void mouseInputOutside() {}
public abstract boolean keyboardInput();
public void renderDefaultBackground(int width, int height, Color bg) {
int paneWidth = (int) (width / 3 * overlay.getWidthMult());
int rightSide = (int) (width * overlay.getInfoPaneOffsetFactor());
int leftSide = rightSide - paneWidth;
int boxLeft = leftSide + overlay.getBoxPadding() - 5;
int boxRight = rightSide - overlay.getBoxPadding() + 5;
BackgroundBlur.renderBlurredBackground(NotEnoughUpdates.INSTANCE.config.itemlist.bgBlurFactor,
width, height,
boxLeft, overlay.getBoxPadding() - 5,
boxRight - boxLeft, height - overlay.getBoxPadding() * 2 + 10, true
);
drawRect(boxLeft, overlay.getBoxPadding() - 5, boxRight,
height - overlay.getBoxPadding() + 5, bg.getRGB()
);
}
public static CompletableFuture<? extends InfoPane> create(
NEUOverlay overlay, NEUManager manager, String infoType,
String name, String internalName, String infoText
) {
switch (infoType.intern()) {
case "WIKI_URL":
return HTMLInfoPane.createFromWikiUrl(overlay, manager, name, infoText);
case "WIKI":
return CompletableFuture.completedFuture(
HTMLInfoPane.createFromWikiText(overlay, manager, name, internalName, infoText, false));
case "HTML":
return CompletableFuture.completedFuture(
new HTMLInfoPane(overlay, manager, name, internalName, infoText, false));
default:
return CompletableFuture.completedFuture(
new TextInfoPane(overlay, manager, name, infoText));
}
}
}
|