mcMMO/src/main/java/com/gmail/nossr50/datatypes/SkillType.java

132 lines
4.6 KiB
Java
Raw Normal View History

2012-01-09 20:00:13 +01:00
package com.gmail.nossr50.datatypes;
import org.bukkit.entity.Player;
2012-04-26 16:27:57 +02:00
import com.gmail.nossr50.config.Config;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Permissions;
import com.gmail.nossr50.util.Users;
public enum SkillType {
ACROBATICS(Config.getInstance().getLevelCapAcrobatics(), Config.getInstance().getFormulaMultiplierAcrobatics()),
ALL, //This one is just for convenience
ARCHERY(Config.getInstance().getLevelCapArchery(), Config.getInstance().getFormulaMultiplierArchery()),
AXES(AbilityType.SKULL_SPLIITER, Config.getInstance().getLevelCapAxes(), ToolType.AXE, Config.getInstance().getFormulaMultiplierAxes()),
EXCAVATION(AbilityType.GIGA_DRILL_BREAKER, Config.getInstance().getLevelCapExcavation(), ToolType.SHOVEL, Config.getInstance().getFormulaMultiplierExcavation()),
FISHING(Config.getInstance().getLevelCapFishing(), Config.getInstance().getFormulaMultiplierFishing()),
HERBALISM(AbilityType.GREEN_TERRA, Config.getInstance().getLevelCapHerbalism(), ToolType.HOE, Config.getInstance().getFormulaMultiplierHerbalism()),
MINING(AbilityType.SUPER_BREAKER, Config.getInstance().getLevelCapMining(), ToolType.PICKAXE, Config.getInstance().getFormulaMultiplierMining()),
REPAIR(Config.getInstance().getLevelCapRepair(), Config.getInstance().getFormulaMultiplierRepair()),
SWORDS(AbilityType.SERRATED_STRIKES, Config.getInstance().getLevelCapSwords(), ToolType.SWORD, Config.getInstance().getFormulaMultiplierSwords()),
TAMING(Config.getInstance().getLevelCapTaming(), Config.getInstance().getFormulaMultiplierTaming()),
UNARMED(AbilityType.BERSERK, Config.getInstance().getLevelCapUnarmed(), ToolType.FISTS, Config.getInstance().getFormulaMultiplierUnarmed()),
WOODCUTTING(AbilityType.TREE_FELLER, Config.getInstance().getLevelCapWoodcutting(), ToolType.AXE, Config.getInstance().getFormulaMultiplierWoodcutting());
private AbilityType ability;
private int maxLevel;
private ToolType tool;
private double xpModifier;
private SkillType() {
this.ability = null;
this.maxLevel = 0;
this.tool = null;
this.xpModifier = 0;
}
private SkillType(AbilityType ability, int maxLevel, ToolType tool, double xpModifier) {
this.ability = ability;
this.maxLevel = maxLevel;
this.tool = tool;
this.xpModifier = xpModifier;
}
private SkillType(int maxLevel, double xpModifier) {
this(null, maxLevel, null, xpModifier);
}
public AbilityType getAbility() {
return ability;
}
/**
* Get the max level of this skill.
*
* @return the max level of this skill
*/
public int getMaxLevel() {
if (maxLevel > 0) {
return maxLevel;
}
else {
return Integer.MAX_VALUE;
}
}
public ToolType getTool() {
return tool;
}
/**
* Get the base permissions associated with this skill.
*
* @param player The player to check the permissions for
* @return true if the player has permissions, false otherwise
*/
public boolean getPermissions(Player player) {
switch (this) {
case ACROBATICS:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().acrobatics(player);
case ARCHERY:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().archery(player);
case AXES:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().axes(player);
case EXCAVATION:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().excavation(player);
case FISHING:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().fishing(player);
case HERBALISM:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().herbalism(player);
case MINING:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().mining(player);
case REPAIR:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().repair(player);
case SWORDS:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().swords(player);
case TAMING:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().taming(player);
case UNARMED:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().unarmed(player);
case WOODCUTTING:
2012-04-27 11:47:11 +02:00
return Permissions.getInstance().woodcutting(player);
default:
return false;
}
}
2012-03-26 23:31:15 +02:00
public double getXpModifier() {
return xpModifier;
}
2012-03-30 07:32:36 +02:00
/**
* Get the skill level for this skill.
*
* @param player The player to check
* @return
*/
public int getSkillLevel(Player player) {
return Users.getProfile(player).getSkillLevel(this);
}
2012-01-09 20:00:13 +01:00
}