2013-01-22 18:43:25 +01:00
|
|
|
package com.gmail.nossr50.skills;
|
2012-05-31 19:50:37 +02:00
|
|
|
|
|
|
|
import java.text.DecimalFormat;
|
|
|
|
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandExecutor;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2013-01-22 18:43:25 +01:00
|
|
|
import com.gmail.nossr50.commands.CommandHelper;
|
2012-05-31 19:50:37 +02:00
|
|
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
|
|
|
import com.gmail.nossr50.locale.LocaleLoader;
|
|
|
|
import com.gmail.nossr50.util.Misc;
|
2013-01-22 04:57:54 +01:00
|
|
|
import com.gmail.nossr50.util.Permissions;
|
2012-05-31 19:50:37 +02:00
|
|
|
import com.gmail.nossr50.util.Users;
|
|
|
|
|
2012-05-31 20:44:54 +02:00
|
|
|
public abstract class SkillCommand implements CommandExecutor {
|
2012-05-31 19:50:37 +02:00
|
|
|
private SkillType skill;
|
|
|
|
private String skillString;
|
|
|
|
private String permission;
|
|
|
|
|
2012-05-31 20:01:47 +02:00
|
|
|
protected Player player;
|
2012-05-31 20:24:55 +02:00
|
|
|
protected PlayerProfile profile;
|
2012-05-31 20:01:47 +02:00
|
|
|
protected float skillValue;
|
2013-01-22 04:57:54 +01:00
|
|
|
protected boolean isLucky;
|
|
|
|
protected boolean hasEndurance;
|
2012-05-31 19:50:37 +02:00
|
|
|
|
2012-05-31 20:01:47 +02:00
|
|
|
protected DecimalFormat percent = new DecimalFormat("##0.00%");
|
2013-01-26 02:13:02 +01:00
|
|
|
protected DecimalFormat decimal = new DecimalFormat("##0.00");
|
2012-05-31 19:50:37 +02:00
|
|
|
|
2012-05-31 20:01:47 +02:00
|
|
|
public SkillCommand(SkillType skill) {
|
2012-05-31 19:50:37 +02:00
|
|
|
this.skill = skill;
|
|
|
|
this.skillString = Misc.getCapitalized(skill.toString());
|
2012-05-31 20:01:47 +02:00
|
|
|
this.permission = "mcmmo.skills." + skillString.toLowerCase();
|
2012-05-31 19:50:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
|
|
if (CommandHelper.noConsoleUsage(sender)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CommandHelper.noCommandPermissions(sender, permission)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
player = (Player) sender;
|
|
|
|
profile = Users.getProfile(player);
|
|
|
|
|
2012-10-31 01:59:58 +01:00
|
|
|
if (profile == null) {
|
|
|
|
sender.sendMessage(LocaleLoader.getString("Commands.DoesNotExist"));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-05 15:57:10 +02:00
|
|
|
skillValue = profile.getSkillLevel(skill);
|
2013-01-22 04:57:54 +01:00
|
|
|
isLucky = Permissions.lucky(player, skill);
|
|
|
|
hasEndurance = (Permissions.activationTwelve(player) || Permissions.activationEight(player) || Permissions.activationFour(player));
|
|
|
|
|
2012-05-31 19:50:37 +02:00
|
|
|
dataCalculations();
|
|
|
|
permissionsCheck();
|
|
|
|
|
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.Header", new Object[] { LocaleLoader.getString(skillString + ".SkillName") }));
|
2013-01-23 22:34:01 +01:00
|
|
|
|
|
|
|
if (!skill.isChildSkill()) {
|
|
|
|
player.sendMessage(LocaleLoader.getString("Commands.XPGain", new Object[] { LocaleLoader.getString("Commands.XPGain." + skillString) }));
|
|
|
|
player.sendMessage(LocaleLoader.getString("Effects.Level", new Object[] { profile.getSkillLevel(skill), profile.getSkillXpLevel(skill), profile.getXpToLevel(skill) }));
|
|
|
|
}
|
2012-05-31 19:50:37 +02:00
|
|
|
|
|
|
|
if (effectsHeaderPermissions()) {
|
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.Header", new Object[] { LocaleLoader.getString("Effects.Effects") }));
|
|
|
|
}
|
|
|
|
|
|
|
|
effectsDisplay();
|
|
|
|
|
|
|
|
if (statsHeaderPermissions()) {
|
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.Header", new Object[] { LocaleLoader.getString("Commands.Stats.Self") }));
|
|
|
|
}
|
|
|
|
|
|
|
|
statsDisplay();
|
|
|
|
|
|
|
|
Page.grabGuidePageForSkill(skill, player, args);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-22 07:52:34 +01:00
|
|
|
protected String calculateRank(int maxLevel, int rankChangeLevel) {
|
|
|
|
if (skillValue >= maxLevel) {
|
|
|
|
return String.valueOf(maxLevel / rankChangeLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
return String.valueOf((int) (skillValue / rankChangeLevel));
|
|
|
|
}
|
|
|
|
|
2013-01-22 06:47:56 +01:00
|
|
|
protected String[] calculateAbilityDisplayValues(double chance) {
|
|
|
|
if (isLucky) {
|
|
|
|
double luckyChance = chance * 1.3333D;
|
|
|
|
|
|
|
|
if (luckyChance >= 100D) {
|
|
|
|
return new String[] { percent.format(chance / 100.0D), percent.format(1.0D) };
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String[] { percent.format(chance / 100.0D), percent.format(luckyChance / 100.0D) };
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String[] { percent.format(chance / 100.0D), null };
|
|
|
|
}
|
|
|
|
|
2013-01-22 04:57:54 +01:00
|
|
|
protected String[] calculateAbilityDisplayValues(int maxBonusLevel, double maxChance) {
|
|
|
|
double abilityChance;
|
|
|
|
|
|
|
|
if (skillValue >= maxBonusLevel) {
|
|
|
|
abilityChance = maxChance;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
abilityChance = (maxChance / maxBonusLevel) * skillValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isLucky) {
|
2013-01-22 06:47:56 +01:00
|
|
|
double luckyChance = abilityChance * 1.3333D;
|
2013-01-22 04:57:54 +01:00
|
|
|
|
|
|
|
if (luckyChance >= 100D) {
|
|
|
|
return new String[] { percent.format(abilityChance / 100.0D), percent.format(1.0D) };
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String[] { percent.format(abilityChance / 100.0D), percent.format(luckyChance / 100.0D) };
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String[] { percent.format(abilityChance / 100.0D), null };
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String[] calculateLengthDisplayValues() {
|
|
|
|
int maxLength = skill.getAbility().getMaxTicks();
|
|
|
|
int length = 2 + (int) (skillValue / Misc.abilityLengthIncreaseLevel);
|
|
|
|
int enduranceLength = 0;
|
|
|
|
|
|
|
|
if (Permissions.activationTwelve(player)) {
|
|
|
|
enduranceLength = length + 12;
|
|
|
|
}
|
|
|
|
else if (Permissions.activationEight(player)) {
|
|
|
|
enduranceLength = length + 8;
|
|
|
|
}
|
|
|
|
else if (Permissions.activationFour(player)) {
|
|
|
|
enduranceLength = length + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxLength != 0) {
|
|
|
|
if (length > maxLength) {
|
|
|
|
length = maxLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enduranceLength > maxLength) {
|
|
|
|
enduranceLength = maxLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new String[] { String.valueOf(length), String.valueOf(enduranceLength) };
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void luckyEffectsDisplay() {
|
|
|
|
if (isLucky) {
|
|
|
|
String perkPrefix = LocaleLoader.getString("MOTD.PerksPrefix");
|
2013-01-26 23:01:55 +01:00
|
|
|
player.sendMessage(perkPrefix + LocaleLoader.getString("Effects.Template", new Object[] { LocaleLoader.getString("Perks.lucky.name"), LocaleLoader.getString("Perks.lucky.desc", new Object[] { SkillTools.localizeSkillName(skill) }) }));
|
2013-01-22 04:57:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-31 19:50:37 +02:00
|
|
|
protected abstract void dataCalculations();
|
|
|
|
|
|
|
|
protected abstract void permissionsCheck();
|
|
|
|
|
|
|
|
protected abstract boolean effectsHeaderPermissions();
|
|
|
|
|
|
|
|
protected abstract void effectsDisplay();
|
|
|
|
|
|
|
|
protected abstract boolean statsHeaderPermissions();
|
|
|
|
|
2012-05-31 20:01:47 +02:00
|
|
|
protected abstract void statsDisplay();
|
2012-05-31 19:50:37 +02:00
|
|
|
}
|