PlotSquared/PlotSquared/src/com/intellectualcrafters/plot/commands/Rate.java

73 lines
2.1 KiB
Java
Raw Normal View History

2014-10-02 17:38:31 +02:00
package com.intellectualcrafters.plot.commands;
import org.bukkit.entity.Player;
2014-10-02 17:38:31 +02:00
import com.intellectualcrafters.plot.C;
import com.intellectualcrafters.plot.PlayerFunctions;
import com.intellectualcrafters.plot.Plot;
/**
* Created by Citymonstret on 2014-10-02.
*/
public class Rate extends SubCommand {
/*
* String cmd, String permission, String description, String usage, String
* alias, CommandCategory category
2014-10-02 17:38:31 +02:00
*/
public Rate() {
super("rate", "plots.rate", "Rate the plot", "rate {0-10}", "rt", CommandCategory.ACTIONS);
}
@Override
public boolean execute(Player plr, String... args) {
if (args.length < 1) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_NOT_VALID);
return true;
}
if (!PlayerFunctions.isInPlot(plr)) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.NOT_IN_PLOT);
return true;
}
Plot plot = PlayerFunctions.getCurrentPlot(plr);
if (!plot.hasOwner()) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_NOT_OWNED);
return true;
}
if (plot.getOwner().equals(plr.getUniqueId())) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_NOT_YOUR_OWN);
return true;
}
String arg = args[0];
boolean o = false;
for (char c : arg.toCharArray()) {
if (!Character.isDigit(c)) {
2014-10-02 17:38:31 +02:00
o = true;
break;
}
}
int rating = 0;
if (!o) {
2014-10-02 17:38:31 +02:00
rating = Integer.parseInt(arg);
}
if (o || ((rating < 0) || (rating > 10))) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_NOT_VALID);
return true;
}
// TODO implement check for already rated
2014-10-02 17:38:31 +02:00
boolean rated = false;
if (rated) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_ALREADY_EXISTS, plot.getId().toString());
}
// TODO actually do something...
2014-10-02 17:38:31 +02:00
boolean success = false;
if (success) {
2014-10-02 17:38:31 +02:00
sendMessage(plr, C.RATING_APPLIED, plot.getId().toString());
} else {
sendMessage(plr, C.COMMAND_WENT_WRONG);
}
return true;
}
}