aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/handlers/ScoreboardHandler.java
blob: e89591beed0f87e35f39605df044bc8c8990cd88 (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
package me.Danker.handlers;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;

import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;

import net.minecraft.client.Minecraft;
import net.minecraft.scoreboard.Score;
import net.minecraft.scoreboard.ScoreObjective;
import net.minecraft.scoreboard.ScorePlayerTeam;
import net.minecraft.scoreboard.Scoreboard;
import net.minecraft.util.StringUtils;

public class ScoreboardHandler {
	
	public static String cleanSB(String scoreboard) {
		char[] nvString = StringUtils.stripControlCodes(scoreboard).toCharArray();
		StringBuilder cleaned = new StringBuilder();
		
		for (char c : nvString) {
			if ((int) c > 20 && (int) c < 127) {
				cleaned.append(c);
			}
		}
		
		return cleaned.toString();
	}
	
	public static List<String> getSidebarLines() {
		List<String> lines = new ArrayList<>();
		Scoreboard scoreboard = Minecraft.getMinecraft().theWorld.getScoreboard();
		if (scoreboard == null) return lines;
		
		ScoreObjective objective = scoreboard.getObjectiveInDisplaySlot(1);
		if (objective == null) return lines;
		
		Collection<Score> scores = scoreboard.getSortedScores(objective);
		List<Score> list = Lists.newArrayList(scores.stream()
				.filter(input -> input != null && input.getPlayerName() != null && !input.getPlayerName()
						.startsWith("#"))
				.collect(Collectors.toList()));
		
		if (list.size() > 15) {
			scores = Lists.newArrayList(Iterables.skip(list, scores.size() - 15));
		} else {
			scores = list;
		}
		
		for (Score score : scores) {
			ScorePlayerTeam team = scoreboard.getPlayersTeam(score.getPlayerName());
			lines.add(ScorePlayerTeam.formatPlayerName(team, score.getPlayerName()));
		}
		
		return lines;
	}
}