mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-26 04:25:15 +01:00
56 lines
1.4 KiB
Java
56 lines
1.4 KiB
Java
package com.gamingmesh.jobs.stuff;
|
|
|
|
import java.util.Iterator;
|
|
import java.util.Map.Entry;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.scoreboard.DisplaySlot;
|
|
|
|
import com.gamingmesh.jobs.JobsPlugin;
|
|
import com.gamingmesh.jobs.config.ConfigManager;
|
|
|
|
public class Scboard {
|
|
|
|
private ConcurrentHashMap<String, Long> timerMap = new ConcurrentHashMap<String, Long>();
|
|
private JobsPlugin plugin;
|
|
|
|
public Scboard() {
|
|
}
|
|
|
|
public Scboard(JobsPlugin plugin) {
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
private void RunScheduler() {
|
|
Iterator<Entry<String, Long>> MeinMapIter = timerMap.entrySet().iterator();
|
|
while (MeinMapIter.hasNext()) {
|
|
Entry<String, Long> Map = MeinMapIter.next();
|
|
|
|
if (System.currentTimeMillis() > Map.getValue() + (ConfigManager.getJobsConfiguration().ToplistInScoreboardInterval * 1000)) {
|
|
Player player = Bukkit.getPlayer(Map.getKey());
|
|
if (player != null) {
|
|
player.getScoreboard().clearSlot(DisplaySlot.SIDEBAR);
|
|
}
|
|
timerMap.remove(Map.getKey());
|
|
}
|
|
}
|
|
|
|
if (timerMap.size() > 0)
|
|
Bukkit.getServer().getScheduler().scheduleSyncDelayedTask(plugin, new Runnable() {
|
|
public void run() {
|
|
RunScheduler();
|
|
return;
|
|
}
|
|
}, 20L);
|
|
return;
|
|
}
|
|
|
|
public void addNew(Player player) {
|
|
timerMap.put(player.getName(), System.currentTimeMillis());
|
|
RunScheduler();
|
|
}
|
|
|
|
}
|