blob: 353d0e8a3af859a1cc579583a3ffd346fe81f252 (
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
|
package de.hysky.skyblocker.skyblock.dwarven;
import de.hysky.skyblocker.config.SkyblockerConfigManager;
import de.hysky.skyblocker.utils.Utils;
import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderContext;
import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents;
import net.minecraft.util.math.BlockPos;
import java.util.*;
import java.util.function.Function;
import java.util.stream.Collectors;
public class CommissionLabels {
private static final Map<String, MiningLocationLabel.dwarvenCategory> DWARVEN_LOCATIONS = Arrays.stream(MiningLocationLabel.dwarvenCategory.values()).collect(Collectors.toMap(MiningLocationLabel.dwarvenCategory::toString, Function.identity()));
private static final Map<String, MiningLocationLabel.glaciteCategory> GLACITE_LOCATIONS = Arrays.stream(MiningLocationLabel.glaciteCategory.values()).collect(Collectors.toMap(MiningLocationLabel.glaciteCategory::toString, Function.identity()));
protected static List<MiningLocationLabel> activeWaypoints = new ArrayList<>();
public static void init() {
WorldRenderEvents.AFTER_TRANSLUCENT.register(CommissionLabels::render);
}
/**
* update the activeWaypoints when there is a change in commissions
* @param newCommissions the new commissions to get the waypoints from
*/
protected static void update(List<String> newCommissions) {
if (!SkyblockerConfigManager.get().locations.dwarvenMines.commissionWaypoints.enabled) {
return;
}
activeWaypoints.clear();
String location = Utils.getIslandArea().substring(2);
//find commission locations in glacite
if (location.equals("Dwarven Base Camp") || location.equals("Glacite Tunnels")) {
for (String commission : newCommissions) {
for (Map.Entry<String, MiningLocationLabel.glaciteCategory> glaciteLocation : GLACITE_LOCATIONS.entrySet()) {
if (commission.contains(glaciteLocation.getKey())) {
MiningLocationLabel.glaciteCategory category = glaciteLocation.getValue();
for (BlockPos gemstoneLocation : category.getLocations()) {
activeWaypoints.add(new MiningLocationLabel(category, gemstoneLocation));
}
}
}
}
//add base waypoint if enabled
if (SkyblockerConfigManager.get().locations.dwarvenMines.commissionWaypoints.showBaseCamp) {
activeWaypoints.add(new MiningLocationLabel(MiningLocationLabel.glaciteCategory.CAMPFIRE, MiningLocationLabel.glaciteCategory.CAMPFIRE.getLocations()[0]));
}
return;
}
//find commission locations in dwarven mines
for (String commission : newCommissions) {
for (Map.Entry<String, MiningLocationLabel.dwarvenCategory> dwarvenLocation : DWARVEN_LOCATIONS.entrySet()) {
if (commission.contains(dwarvenLocation.getKey())) {
MiningLocationLabel.dwarvenCategory category = dwarvenLocation.getValue();
category.isTitanium = commission.contains("Titanium");
activeWaypoints.add(new MiningLocationLabel(category, category.getLocation()));
}
}
}
}
/**
* render all the active waypoints
* @param context render context
*/
private static void render(WorldRenderContext context) {
if (!Utils.isInDwarvenMines() || !SkyblockerConfigManager.get().locations.dwarvenMines.commissionWaypoints.enabled) {
return;
}
for (MiningLocationLabel MiningLocationLabel : activeWaypoints) {
MiningLocationLabel.render(context);
}
}
}
|