2013-01-15 23:55:41 +01:00
|
|
|
package com.gmail.nossr50.commands.mc;
|
|
|
|
|
2013-01-16 00:35:21 +01:00
|
|
|
import java.util.Map;
|
|
|
|
|
2013-01-15 23:55:41 +01:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandExecutor;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2013-01-16 00:35:21 +01:00
|
|
|
import com.gmail.nossr50.mcMMO;
|
2013-01-15 23:55:41 +01:00
|
|
|
import com.gmail.nossr50.config.Config;
|
|
|
|
import com.gmail.nossr50.datatypes.SkillType;
|
2013-01-16 00:35:21 +01:00
|
|
|
import com.gmail.nossr50.util.Database;
|
2013-01-15 23:55:41 +01:00
|
|
|
import com.gmail.nossr50.util.Leaderboard;
|
|
|
|
import com.gmail.nossr50.util.Misc;
|
|
|
|
|
|
|
|
public class McrankCommand implements CommandExecutor {
|
|
|
|
|
2013-01-16 00:35:21 +01:00
|
|
|
@Override
|
|
|
|
public boolean onCommand(CommandSender arg0, Command arg1, String arg2, String[] arg3) {
|
|
|
|
//I'm being lazy and making this only work on yourself, I or someone else will make this work on other players in the future :D
|
|
|
|
Leaderboard.updateLeaderboards(); //Make sure the information is up to date
|
|
|
|
|
|
|
|
if(arg0 instanceof Player) {
|
|
|
|
Player player = (Player) arg0;
|
|
|
|
String playerName = player.getName();
|
|
|
|
|
|
|
|
arg0.sendMessage(ChatColor.GOLD + "-=PERSONAL RANKINGS=-");
|
|
|
|
arg0.sendMessage(ChatColor.RED+"TARGET: "+ChatColor.WHITE+playerName);
|
|
|
|
|
|
|
|
if(Config.getInstance().getUseMySQL()) {
|
|
|
|
sqlDisplay(arg0, playerName);
|
|
|
|
} else {
|
|
|
|
flatfileDisplayer(arg0, playerName);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
arg0.sendMessage("Command currently not supported for console.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void flatfileDisplayer(CommandSender sender, String playerName) {
|
|
|
|
for (SkillType skillType : SkillType.values()) {
|
|
|
|
if (skillType.equals(SkillType.ALL))
|
|
|
|
continue; // We want the overall ranking to be at the bottom
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + Misc.getCapitalized(skillType.name()) + ChatColor.GREEN + " - " + ChatColor.GOLD + "Rank " + ChatColor.WHITE + "#" + ChatColor.GREEN + Leaderboard.getPlayerRank(playerName, skillType));
|
|
|
|
}
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + "Overall" + ChatColor.GREEN + " - " + ChatColor.GOLD + "Rank " + ChatColor.WHITE + "#" + ChatColor.GREEN + Leaderboard.getPlayerRank(playerName, SkillType.ALL));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void sqlDisplay(CommandSender sender, String playerName) {
|
|
|
|
Database database = mcMMO.getPlayerDatabase();
|
|
|
|
Map<String, Integer> skills = database.readSQLRank(playerName);
|
|
|
|
for (SkillType skillType : SkillType.values()) {
|
|
|
|
if (skillType.equals(SkillType.ALL))
|
|
|
|
continue; // We want the overall ranking to be at the bottom
|
|
|
|
sender.sendMessage(ChatColor.YELLOW + Misc.getCapitalized(skillType.name()) + ChatColor.GREEN + " - " + ChatColor.GOLD + "Rank " + ChatColor.WHITE + "#" + ChatColor.GREEN + skills.get(skillType.name()));
|
|
|
|
}
|
2013-01-16 01:08:41 +01:00
|
|
|
sender.sendMessage(ChatColor.YELLOW + "Overall" + ChatColor.GREEN + " - " + ChatColor.GOLD + "Rank " + ChatColor.WHITE + "#" + ChatColor.GREEN + skills.get("ALL"));
|
2013-01-16 00:35:21 +01:00
|
|
|
}
|
|
|
|
}
|