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
|
package de.hysky.skyblocker.skyblock.searchOverlay;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import de.hysky.skyblocker.config.SkyblockerConfigManager;
import de.hysky.skyblocker.utils.Http;
import net.minecraft.block.entity.SignBlockEntity;
import net.minecraft.client.MinecraftClient;
import net.minecraft.network.packet.c2s.play.UpdateSignC2SPacket;
import net.minecraft.text.Text;
import org.jetbrains.annotations.Nullable;
import java.util.*;
public class SearchOverManager {
private static final MinecraftClient CLIENT = MinecraftClient.getInstance();
public static boolean visible = false;
public static String search = "";
private static @Nullable SignBlockEntity Sign = null;
private static boolean SignFront = true;
private static boolean IsAuction;
public static Map<String,String> itemNameLookup = new HashMap<>();
public static List<String> bazaarItems =new ArrayList<>();
public static List<String> auctionItems =new ArrayList<>();
public static String[] suggestionsArray = {};
public static void init() {
//get bazaar items
System.out.println("is there somethin");
try {
String response = Http.sendGetRequest("https://api.hypixel.net/v2/resources/skyblock/items");
System.out.println("response:");
JsonArray items = JsonParser.parseString(response).getAsJsonObject().getAsJsonArray("items");
System.out.println("jsonItem:");
for (JsonElement entry : items) {
if (entry.isJsonObject()) {
JsonObject item = entry.getAsJsonObject();
String itemId = item.get("id").getAsString();
String itemName = item.get("name").getAsString();
itemNameLookup.put(itemId,itemName);
}
}
} catch (Exception e) {
//can not get items skyblock items
}
try (Http.ApiResponse response = Http.sendHypixelRequest("skyblock/bazaar", "")) {
JsonObject products = JsonParser.parseString(response.content()).getAsJsonObject().get("products").getAsJsonObject();
for (Map.Entry<String, JsonElement> entry : products.entrySet()) {
if (entry.getValue().isJsonObject()) {
JsonObject product = entry.getValue().getAsJsonObject();
String name = itemNameLookup.get(product.get("product_id").getAsString()); //todo work with enchants
if (name != null){
bazaarItems.add(name);
}
}
}
} catch (Exception e) {
//can not get items for bazaar search
}
//get auction items
//items not in bazaar? todo work out how to get this (e.g. there are no pets) (there is a can auction flag)
for (String itemName : itemNameLookup.values()){
if (!bazaarItems.contains(itemName)){
auctionItems.add(itemName);
}
}
}
public static void updateSign(SignBlockEntity sign, boolean front, boolean isAuction) {
visible= true;
SignFront = front;
Sign = sign;
IsAuction = isAuction;
search = ""; //todo load form sign data if needed
suggestionsArray = new String[]{};
}
protected static void updateSearch(String newValue) {
search = newValue;
//update the suggestion values
int totalSuggestions = SkyblockerConfigManager.get().general.searchOverlay.maxSuggestions;
suggestionsArray = new String[totalSuggestions];
if (newValue.isBlank() || totalSuggestions == 0) return; //do not search for empty value
if (IsAuction){
suggestionsArray = auctionItems.stream().filter(item -> item.toLowerCase().contains(search.toLowerCase())).limit(totalSuggestions).toList().toArray(suggestionsArray);
}else {
suggestionsArray = bazaarItems.stream().filter(item -> item.toLowerCase().contains(search.toLowerCase())).limit(totalSuggestions).toList().toArray(suggestionsArray);
}
}
protected static String getSuggestion(int index){
if (suggestionsArray.length> index && suggestionsArray[index] != null ){
return suggestionsArray[index];
}else{//there are no suggestions yet
return "";
}
}
protected static void pushSearch() {
//splits text into 2 lines max = 30 chars
StringBuilder line0 = new StringBuilder();
String line1;
if (search.length() <= 15){
line0 = new StringBuilder(search);
line1 = "";
}else {
String[] words = search.split(" ");
for (String word : words){
if (line0.isEmpty()) {
line0 = new StringBuilder(word);
continue;
}
if (line0.length() + word.length() < 14 ){ //max 15 but including space is 14
line0.append(" ").append(word);
}
else {
break;
}
}
line1 = search.substring(line0.length(),Math.min(search.length(),30));
}
// send packet to update sign
if (CLIENT.player != null || Sign != null) {
Text[] messages = Sign.getText(SignFront).getMessages(CLIENT.shouldFilterText());
CLIENT.player.networkHandler.sendPacket(new UpdateSignC2SPacket(Sign.getPos(), SignFront,
line0.toString(),
line1,
messages[2].getString(),
messages[3].getString()
));
}
}
}
|