use of com.gmail.stefvanschiedev.buildinggame.utils.ChunkCoordinates in project buildinggame by stefvanschie.
the class UpdateLoadedSigns method onChunkLoad.
/**
* Handles updating signs when a chunk loads.
*
* @param event the fired event
* @since 10.0.3
*/
@EventHandler
public void onChunkLoad(@NotNull ChunkLoadEvent event) {
Chunk chunk = event.getChunk();
SignManager.getInstance().updateSigns(new ChunkCoordinates(chunk.getX(), chunk.getZ()));
}
use of com.gmail.stefvanschiedev.buildinggame.utils.ChunkCoordinates in project buildinggame by stefvanschie.
the class SignManager method setup.
/**
* Loads/Reloads all signs
*
* @since 2.1.0
*/
public void setup() {
YamlConfiguration config = SettingsManager.getInstance().getConfig();
YamlConfiguration signs = SettingsManager.getInstance().getSigns();
for (Arena arena : ArenaManager.getInstance().getArenas()) {
arena.clearSigns();
}
randomJoinSigns.clear();
leaveSigns.clear();
statSigns.clear();
spectateSigns.clear();
for (var string : signs.getKeys(false)) {
int x = signs.getInt(string + ".x");
int y = signs.getInt(string + ".y");
int z = signs.getInt(string + ".z");
var blockPos = new PotentialBlockPosition(() -> Bukkit.getWorld(signs.getString(string + ".world")), x, y, z);
ChunkCoordinates chunkCoordinates = blockPos.getChunkCoordinates();
if (!signs.contains(string + ".type"))
signs.set(string + ".type", "join");
switch(signs.getString(string + ".type")) {
case "join":
var arena = ArenaManager.getInstance().getArena(signs.getString(string + ".arena"));
if (arena == null) {
randomJoinSigns.putIfAbsent(chunkCoordinates, new HashSet<>());
randomJoinSigns.get(chunkCoordinates).add(blockPos);
continue;
}
arena.addSign(blockPos);
if (config.getBoolean("debug"))
Main.getInstance().getLogger().info("Found join sign for arena " + arena.getName());
break;
case "leave":
leaveSigns.putIfAbsent(chunkCoordinates, new HashSet<>());
leaveSigns.get(chunkCoordinates).add(blockPos);
if (config.getBoolean("debug"))
Main.getInstance().getLogger().info("Found leave sign");
break;
case "stat":
statSigns.add(new StatSign(blockPos, StatType.valueOf(signs.getString(string + ".stat")), Integer.parseInt(signs.getString(string + ".number"))));
if (config.getBoolean("debug"))
Main.getInstance().getLogger().info("Found stat sign");
break;
case "spectate":
UUID uuid = UUID.fromString(signs.getString(string + ".player"));
spectateSigns.putIfAbsent(chunkCoordinates, new HashSet<>());
spectateSigns.get(chunkCoordinates).add(new SpectateSign(blockPos, Bukkit.getOfflinePlayer(uuid)));
if (config.getBoolean("debug"))
Main.getInstance().getLogger().info("Found spectate sign");
break;
}
}
if (config.getBoolean("signs.glass-colors-enabled")) {
config.getConfigurationSection("signs.glass-colors").getKeys(false).forEach(key -> {
try {
if (config.isInt("signs.glass-colors." + key))
gameStatesColor.put(GameState.valueOf(key.toUpperCase(Locale.getDefault())), DyeColor.values()[config.getInt("signs.glass-colors." + key)]);
else
gameStatesColor.put(GameState.valueOf(key.toUpperCase(Locale.getDefault())), DyeColor.valueOf(config.getString("signs.glass-colors." + key)));
} catch (IllegalArgumentException e) {
// catch IllegalArgumentException for the easy of your clients.
Main.getInstance().getLogger().warning("Wrong parameter in config at: sign.glass-colors." + key + '.');
}
});
}
updateSigns();
SettingsManager.getInstance().save();
}
Aggregations