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
|
package com.thatgravyboat.skyblockhud.handlers;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.thatgravyboat.skyblockhud.SkyblockHud;
import com.thatgravyboat.skyblockhud.textures.Textures;
import com.thatgravyboat.skyblockhud.utils.Utils;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.Gui;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.client.resources.IResourceManagerReloadListener;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.client.event.RenderGameOverlayEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
public class NpcDialogue implements IResourceManagerReloadListener {
public static final Pattern NPC_DIALOGUE_REGEX = Pattern.compile("\\[NPC] (.*): (.*)");
private static final Gson gson = new GsonBuilder().create();
private static final Map<String, ResourceLocation> NPCS = new HashMap<>();
private static boolean showDialogue = false;
private static int ticks = 0;
private static final Queue<String> DIALOGUE = new ArrayDeque<>();
private static String currentNpc = "Unknown";
private static String currentDialogue = null;
@SubscribeEvent
public void onTick(TickEvent.ClientTickEvent event) {
if (event.phase.equals(TickEvent.Phase.START) || SkyblockHud.config.misc.hideDialogueBox) return;
if (showDialogue) ticks++; else ticks = 0;
if (showDialogue && ticks % 60 == 0) {
currentDialogue = DIALOGUE.poll();
if (currentDialogue == null) {
showDialogue = false;
currentNpc = "Unknown";
}
}
}
@SubscribeEvent
public void onChat(ClientChatReceivedEvent event) {
if (event.type != 2 && !SkyblockHud.config.misc.hideDialogueBox) {
String message = Utils.removeColor(event.message.getUnformattedText());
if (message.toLowerCase(Locale.ENGLISH).startsWith("[npc]")) {
Matcher matcher = NPC_DIALOGUE_REGEX.matcher(message);
if (matcher.find()) {
showDialogue = true;
event.setCanceled(true);
currentNpc = matcher.group(1);
if (currentDialogue != null) {
DIALOGUE.add(matcher.group(2));
} else {
currentDialogue = matcher.group(2);
}
}
}
}
}
@SubscribeEvent
public void renderOverlay(RenderGameOverlayEvent.Post event) {
if (Utils.overlayShouldRender(event.type, SkyblockHud.hasSkyblockScoreboard(), showDialogue, !SkyblockHud.config.misc.hideDialogueBox)) {
Minecraft mc = Minecraft.getMinecraft();
mc.renderEngine.bindTexture(Textures.texture.dialogue);
GlStateManager.color(1.0f, 1.0f, 1.0f, 1.0f);
int x = SkyblockHud.config.misc.dialoguePos.getAbsX(event.resolution, 182) - 91;
int y = SkyblockHud.config.misc.dialoguePos.getAbsY(event.resolution, 68);
Gui.drawModalRectWithCustomSizedTexture(x, y, 0, 0, 182, 68, 256, 256);
String npcID = currentNpc.toLowerCase(Locale.ENGLISH).replace(" ", "_");
if (NPCS.containsKey(npcID)) {
mc.renderEngine.bindTexture(NPCS.get(npcID));
Gui.drawModalRectWithCustomSizedTexture(x + 4, y + 4, 0, 0, 32, 60, 128, 128);
}
FontRenderer font = mc.fontRendererObj;
font.drawString(currentNpc, x + 40, y + 10, 0xffffff);
List<String> text = font.listFormattedStringToWidth(currentDialogue, 160);
for (int i = 0; i < text.size(); i++) {
Utils.drawStringScaled(text.get(i), font, x + 40, y + 10 + font.FONT_HEIGHT + 6 + (i * font.FONT_HEIGHT + 3), false, 0xffffff, 0.75f);
}
}
}
@Override
public void onResourceManagerReload(IResourceManager resourceManager) {
NPCS.clear();
try {
ResourceLocation npcs = new ResourceLocation("skyblockhud:data/npc_textures.json");
InputStream is = resourceManager.getResource(npcs).getInputStream();
try (BufferedReader reader = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8))) {
for (JsonElement npc : gson.fromJson(reader, JsonObject.class).getAsJsonArray("npcs")) {
JsonObject npcObject = npc.getAsJsonObject();
String npcName = npcObject.get("name").getAsString();
ResourceLocation rl = new ResourceLocation(npcObject.get("texture").getAsString());
NPCS.put(npcName.toLowerCase(Locale.ENGLISH).replace(" ", "_"), rl);
}
}
} catch (Exception ignored) {}
}
}
|