2015-01-05 04:32:01 +01:00
|
|
|
From 9321311de10cf1a9733b0bcd2c644777a10d038e Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <git@md-5.net>
|
|
|
|
Date: Thu, 17 Apr 2014 19:22:22 +1000
|
|
|
|
Subject: [PATCH] Expand team API to allow arbitrary strings.
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftTeam.java b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftTeam.java
|
2014-12-19 00:33:08 +01:00
|
|
|
index ecbf66b..7dd6138 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftTeam.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftTeam.java
|
2014-12-19 00:33:08 +01:00
|
|
|
@@ -118,6 +118,19 @@ final class CraftTeam extends CraftScoreboardComponent implements Team {
|
2014-07-21 22:46:54 +02:00
|
|
|
return players.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Spigot start
|
|
|
|
+ @Override
|
|
|
|
+ public Set<String> getEntries() throws IllegalStateException {
|
|
|
|
+ CraftScoreboard scoreboard = checkState();
|
|
|
|
+
|
|
|
|
+ ImmutableSet.Builder<String> entries = ImmutableSet.builder();
|
|
|
|
+ for (Object o : team.getPlayerNameSet()){
|
|
|
|
+ entries.add(o.toString());
|
|
|
|
+ }
|
|
|
|
+ return entries.build();
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
+
|
|
|
|
public int getSize() throws IllegalStateException {
|
|
|
|
CraftScoreboard scoreboard = checkState();
|
|
|
|
|
2014-12-19 00:33:08 +01:00
|
|
|
@@ -126,28 +139,50 @@ final class CraftTeam extends CraftScoreboardComponent implements Team {
|
2014-07-21 22:46:54 +02:00
|
|
|
|
|
|
|
public void addPlayer(OfflinePlayer player) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
Validate.notNull(player, "OfflinePlayer cannot be null");
|
|
|
|
+ // Spigot Start
|
|
|
|
+ addEntry(player.getName());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void addEntry(String entry) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
+ Validate.notNull(entry, "Entry cannot be null");
|
|
|
|
CraftScoreboard scoreboard = checkState();
|
|
|
|
|
|
|
|
- scoreboard.board.addPlayerToTeam(player.getName(), team.getName());
|
|
|
|
+ scoreboard.board.addPlayerToTeam(entry, team.getName());
|
|
|
|
+ // Spigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean removePlayer(OfflinePlayer player) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
Validate.notNull(player, "OfflinePlayer cannot be null");
|
|
|
|
+ // Spigot start
|
|
|
|
+ return removeEntry(player.getName());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public boolean removeEntry(String entry) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
+ Validate.notNull(entry, "Entry cannot be null");
|
|
|
|
CraftScoreboard scoreboard = checkState();
|
|
|
|
|
|
|
|
- if (!team.getPlayerNameSet().contains(player.getName())) {
|
|
|
|
+ if (!team.getPlayerNameSet().contains(entry)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
- scoreboard.board.removePlayerFromTeam(player.getName(), team);
|
|
|
|
+ scoreboard.board.removePlayerFromTeam(entry, team);
|
|
|
|
+ // Spigot end
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasPlayer(OfflinePlayer player) throws IllegalArgumentException, IllegalStateException {
|
|
|
|
Validate.notNull(player, "OfflinePlayer cannot be null");
|
|
|
|
+ // Spigot start
|
|
|
|
+ return hasEntry(player.getName());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public boolean hasEntry(String entry) throws IllegalArgumentException, IllegalStateException {
|
|
|
|
+ Validate.notNull("Entry cannot be null");
|
|
|
|
+
|
|
|
|
CraftScoreboard scoreboard = checkState();
|
|
|
|
|
|
|
|
- return team.getPlayerNameSet().contains(player.getName());
|
|
|
|
+ return team.getPlayerNameSet().contains(entry);
|
|
|
|
+ // Spigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-19 00:33:08 +01:00
|
|
|
@@ -188,26 +223,4 @@ final class CraftTeam extends CraftScoreboardComponent implements Team {
|
|
|
|
throw new IllegalArgumentException("Unknown visibility level " + visibility);
|
|
|
|
}
|
2014-11-28 02:17:45 +01:00
|
|
|
}
|
|
|
|
-
|
|
|
|
- // Spigot start
|
|
|
|
- @Override
|
|
|
|
- public Set<String> getEntries() throws IllegalStateException {
|
|
|
|
- throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public void addEntry(String entry) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
- throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public boolean removeEntry(String entry) throws IllegalStateException, IllegalArgumentException {
|
|
|
|
- throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public boolean hasEntry(String entry) throws IllegalArgumentException, IllegalStateException {
|
|
|
|
- throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
- }
|
|
|
|
- // Spigot end
|
|
|
|
}
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|