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
|
package cc.polyfrost.oneconfig.hud;
import cc.polyfrost.oneconfig.config.annotations.Exclude;
import cc.polyfrost.oneconfig.config.elements.BasicOption;
import cc.polyfrost.oneconfig.events.EventManager;
import cc.polyfrost.oneconfig.events.event.Stage;
import cc.polyfrost.oneconfig.events.event.TickEvent;
import cc.polyfrost.oneconfig.gui.OneConfigGui;
import cc.polyfrost.oneconfig.gui.elements.config.ConfigSwitch;
import cc.polyfrost.oneconfig.libs.eventbus.Subscribe;
import cc.polyfrost.oneconfig.libs.universal.UMinecraft;
import cc.polyfrost.oneconfig.libs.universal.UScreen;
import cc.polyfrost.oneconfig.renderer.RenderManager;
import net.minecraft.client.gui.GuiChat;
import java.util.ArrayList;
import java.util.List;
public abstract class MultiTextHud extends TextHud implements Cacheable {
private transient int width = 100;
private transient int height;
private transient List<String> cachedStrings = null;
private transient final boolean caching;
public MultiTextHud(boolean enabled) {
this(enabled, 0, 0);
}
public MultiTextHud(boolean enabled, boolean caching) {
this(enabled, 0, 0, caching);
}
public MultiTextHud(boolean enabled, int x, int y) {
this(enabled, x, y, true);
}
public MultiTextHud(boolean enabled, int x, int y, boolean caching) {
super(enabled, x, y);
this.caching = caching;
if (caching) {
EventManager.INSTANCE.register(new TextCacher());
}
}
@Override
public void addCacheOptions(String category, String subcategory, ArrayList<BasicOption> options) {
if (caching) {
try {
System.out.println("AIJSIOJ!!");
options.add(new ConfigSwitch(getClass().getField("cacheText"), this, "Cache Text", category, subcategory, 1));
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
}
}
@Exclude(type = Exclude.ExcludeType.HUD)
public boolean cacheText = true;
@Override
public int getWidth(float scale) {
return (int) (width * scale);
}
@Override
public int getHeight(float scale) {
return (int) (height * scale);
}
@Override
public void draw(int x, int y, float scale) {
if (!showInGuis && UScreen.getCurrentScreen() != null && !(UScreen.getCurrentScreen() instanceof OneConfigGui)) return;
if (!showInChat && UScreen.getCurrentScreen() instanceof GuiChat) return;
if (!showInDebug && UMinecraft.getSettings().showDebugInfo) return;
int textY = y;
width = 0;
for (String line : cachedStrings == null ? getLines() : cachedStrings) {
RenderManager.drawScaledString(line, x, textY, color.getRGB(), RenderManager.TextType.toType(textType), scale);
width = Math.max(width, UMinecraft.getFontRenderer().getStringWidth(line));
textY += 12 * scale;
}
height = (int) ((textY - y) / scale - 3);
}
@Override
public void drawExample(int x, int y, float scale) {
int textY = y;
width = 0;
for (String line : getExampleLines()) {
RenderManager.drawScaledString(line, x, textY, color.getRGB(), RenderManager.TextType.toType(textType), scale);
width = Math.max(width, UMinecraft.getFontRenderer().getStringWidth(line));
textY += 12 * scale;
}
height = (int) ((textY - y) / scale - 3);
}
public abstract List<String> getLines();
public List<String> getExampleLines() {
return getLines();
}
private class TextCacher {
@Subscribe
private void onTick(TickEvent event) {
if (event.stage == Stage.START) {
if (cacheText) {
cachedStrings = getLines();
} else {
cachedStrings = null;
}
}
}
}
}
|