2013-03-01 06:52:01 +01:00
|
|
|
package com.gmail.nossr50.util.skills;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.enchantments.Enchantment;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import org.bukkit.inventory.PlayerInventory;
|
|
|
|
import org.bukkit.inventory.meta.ItemMeta;
|
|
|
|
import org.bukkit.plugin.PluginManager;
|
|
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
import org.bukkit.potion.PotionEffectType;
|
|
|
|
import org.getspout.spoutapi.SpoutManager;
|
|
|
|
import org.getspout.spoutapi.player.SpoutPlayer;
|
|
|
|
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
import com.gmail.nossr50.config.AdvancedConfig;
|
|
|
|
import com.gmail.nossr50.config.Config;
|
|
|
|
import com.gmail.nossr50.config.HiddenConfig;
|
|
|
|
import com.gmail.nossr50.config.spout.SpoutConfig;
|
2013-03-03 17:06:05 +01:00
|
|
|
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
2013-03-01 06:52:01 +01:00
|
|
|
import com.gmail.nossr50.datatypes.player.PlayerProfile;
|
|
|
|
import com.gmail.nossr50.datatypes.skills.AbilityType;
|
|
|
|
import com.gmail.nossr50.datatypes.skills.SkillType;
|
|
|
|
import com.gmail.nossr50.datatypes.skills.ToolType;
|
|
|
|
import com.gmail.nossr50.events.experience.McMMOPlayerLevelUpEvent;
|
|
|
|
import com.gmail.nossr50.events.fake.FakeBlockBreakEvent;
|
|
|
|
import com.gmail.nossr50.events.fake.FakeBlockDamageEvent;
|
|
|
|
import com.gmail.nossr50.events.fake.FakePlayerAnimationEvent;
|
|
|
|
import com.gmail.nossr50.locale.LocaleLoader;
|
|
|
|
import com.gmail.nossr50.util.ItemUtils;
|
|
|
|
import com.gmail.nossr50.util.Misc;
|
|
|
|
import com.gmail.nossr50.util.ModUtils;
|
|
|
|
import com.gmail.nossr50.util.Permissions;
|
|
|
|
import com.gmail.nossr50.util.StringUtils;
|
|
|
|
import com.gmail.nossr50.util.player.UserManager;
|
|
|
|
import com.gmail.nossr50.util.spout.SpoutUtils;
|
|
|
|
|
|
|
|
public class SkillUtils {
|
2013-03-07 05:00:37 +01:00
|
|
|
private static int enchantBuff = AdvancedConfig.getInstance().getEnchantBuff();
|
|
|
|
|
2013-03-01 06:52:01 +01:00
|
|
|
public static int handleFoodSkills(Player player, SkillType skill, int eventFoodLevel, int baseLevel, int maxLevel, int rankChange) {
|
|
|
|
int skillLevel = UserManager.getPlayer(player).getProfile().getSkillLevel(skill);
|
|
|
|
|
|
|
|
int currentFoodLevel = player.getFoodLevel();
|
|
|
|
int foodChange = eventFoodLevel - currentFoodLevel;
|
|
|
|
|
|
|
|
for (int i = baseLevel; i <= maxLevel; i += rankChange) {
|
|
|
|
if (skillLevel >= i) {
|
|
|
|
foodChange++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return currentFoodLevel + foodChange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks to see if the cooldown for an item or ability is expired.
|
|
|
|
*
|
|
|
|
* @param oldTime The time the ability or item was last used
|
|
|
|
* @param cooldown The amount of time that must pass between uses
|
|
|
|
* @param player The player whose cooldown is being checked
|
|
|
|
* @return true if the cooldown is over, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean cooldownOver(long oldTime, int cooldown, Player player) {
|
|
|
|
long currentTime = System.currentTimeMillis();
|
|
|
|
int adjustedCooldown = PerksUtils.handleCooldownPerks(player, cooldown);
|
|
|
|
|
|
|
|
if (currentTime - oldTime >= (adjustedCooldown * Misc.TIME_CONVERSION_FACTOR)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate the time remaining until the cooldown expires.
|
|
|
|
*
|
|
|
|
* @param deactivatedTimeStamp Time of deactivation
|
|
|
|
* @param cooldown The length of the cooldown
|
|
|
|
* @return the number of seconds remaining before the cooldown expires
|
|
|
|
*/
|
|
|
|
public static int calculateTimeLeft(long deactivatedTimeStamp, int cooldown, Player player) {
|
|
|
|
return (int) (((deactivatedTimeStamp + (PerksUtils.handleCooldownPerks(player, cooldown) * Misc.TIME_CONVERSION_FACTOR)) - System.currentTimeMillis()) / Misc.TIME_CONVERSION_FACTOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a message to the player when the cooldown expires.
|
|
|
|
*
|
2013-03-03 17:06:05 +01:00
|
|
|
* @param mcMMOPlayer The player to send a message to
|
2013-03-01 06:52:01 +01:00
|
|
|
* @param ability The ability to watch cooldowns for
|
|
|
|
*/
|
2013-03-03 17:06:05 +01:00
|
|
|
public static void watchCooldown(McMMOPlayer mcMMOPlayer, AbilityType ability) {
|
|
|
|
Player player = mcMMOPlayer.getPlayer();
|
|
|
|
|
|
|
|
if (!mcMMOPlayer.getAbilityInformed(ability) && cooldownOver(mcMMOPlayer.getProfile().getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR, ability.getCooldown(), player)) {
|
|
|
|
mcMMOPlayer.setAbilityInformed(ability, true);
|
2013-03-01 06:52:01 +01:00
|
|
|
player.sendMessage(ability.getAbilityRefresh());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process activating abilities & readying the tool.
|
|
|
|
*
|
|
|
|
* @param player The player using the ability
|
|
|
|
* @param skill The skill the ability is tied to
|
|
|
|
*/
|
|
|
|
public static void activationCheck(Player player, SkillType skill) {
|
|
|
|
if (Config.getInstance().getAbilitiesOnlyActivateWhenSneaking() && !player.isSneaking()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
McMMOPlayer mcMMOPlayer = UserManager.getPlayer(player);
|
2013-03-01 06:52:01 +01:00
|
|
|
AbilityType ability = skill.getAbility();
|
|
|
|
ToolType tool = skill.getTool();
|
|
|
|
ItemStack inHand = player.getItemInHand();
|
|
|
|
|
|
|
|
if (ModUtils.isCustomTool(inHand) && !ModUtils.getToolFromItemStack(inHand).isAbilityEnabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (!mcMMOPlayer.getAbilityUse()) {
|
2013-03-01 06:52:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
for (AbilityType abilityType : AbilityType.values()) {
|
|
|
|
if (mcMMOPlayer.getAbilityMode(abilityType)) {
|
2013-03-01 06:52:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
PlayerProfile playerProfile = mcMMOPlayer.getProfile();
|
|
|
|
|
2013-03-01 06:52:01 +01:00
|
|
|
/*
|
|
|
|
* Woodcutting & Axes need to be treated differently.
|
|
|
|
* Basically the tool always needs to ready and we check to see if the cooldown is over when the user takes action
|
|
|
|
*/
|
2013-03-03 17:06:05 +01:00
|
|
|
if (ability.getPermissions(player) && tool.inHand(inHand) && !mcMMOPlayer.getToolPreparationMode(tool)) {
|
2013-03-01 06:52:01 +01:00
|
|
|
if (skill != SkillType.WOODCUTTING && skill != SkillType.AXES) {
|
2013-03-03 17:06:05 +01:00
|
|
|
if (!mcMMOPlayer.getAbilityMode(ability) && !cooldownOver(playerProfile.getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR, ability.getCooldown(), player)) {
|
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.TooTired", calculateTimeLeft(playerProfile.getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR, ability.getCooldown(), player)));
|
2013-03-01 06:52:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config.getInstance().getAbilityMessagesEnabled()) {
|
|
|
|
player.sendMessage(tool.getRaiseTool());
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
mcMMOPlayer.setToolPreparationATS(tool, System.currentTimeMillis());
|
|
|
|
mcMMOPlayer.setToolPreparationMode(tool, true);
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Monitors various things relating to skill abilities.
|
|
|
|
*
|
2013-03-03 17:06:05 +01:00
|
|
|
* @param mcMMOPlayer The player using the skill
|
2013-03-01 06:52:01 +01:00
|
|
|
* @param profile The profile of the player
|
|
|
|
* @param curTime The current system time
|
|
|
|
* @param skill The skill being monitored
|
|
|
|
*/
|
2013-03-03 17:06:05 +01:00
|
|
|
public static void monitorSkill(McMMOPlayer mcMMOPlayer, long curTime, SkillType skill) {
|
2013-03-01 06:52:01 +01:00
|
|
|
final int FOUR_SECONDS = 4000;
|
|
|
|
ToolType tool = skill.getTool();
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (mcMMOPlayer.getToolPreparationMode(tool) && curTime - (mcMMOPlayer.getToolPreparationATS(tool) * Misc.TIME_CONVERSION_FACTOR) >= FOUR_SECONDS) {
|
|
|
|
mcMMOPlayer.setToolPreparationMode(tool, false);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
if (Config.getInstance().getAbilityMessagesEnabled()) {
|
2013-03-03 17:06:05 +01:00
|
|
|
mcMMOPlayer.getPlayer().sendMessage(tool.getLowerTool());
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
AbilityType ability = skill.getAbility();
|
|
|
|
Player player = mcMMOPlayer.getPlayer();
|
|
|
|
|
2013-03-01 06:52:01 +01:00
|
|
|
if (ability.getPermissions(player)) {
|
2013-03-03 17:06:05 +01:00
|
|
|
if (mcMMOPlayer.getAbilityMode(ability) && (mcMMOPlayer.getProfile().getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR) <= curTime) {
|
2013-03-01 06:52:01 +01:00
|
|
|
if (ability == AbilityType.BERSERK) {
|
|
|
|
player.setCanPickupItems(true);
|
|
|
|
}
|
|
|
|
else if (ability == AbilityType.SUPER_BREAKER || ability == AbilityType.GIGA_DRILL_BREAKER) {
|
|
|
|
handleAbilitySpeedDecrease(player);
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
mcMMOPlayer.setAbilityMode(ability, false);
|
|
|
|
mcMMOPlayer.setAbilityInformed(ability, false);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
ParticleEffectUtils.playAbilityDisabledEffect(player);
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (mcMMOPlayer.useChatNotifications()) {
|
2013-03-01 06:52:01 +01:00
|
|
|
player.sendMessage(ability.getAbilityOff());
|
|
|
|
}
|
|
|
|
|
|
|
|
sendSkillMessage(player, ability.getAbilityPlayerOff(player));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check the XP of a skill.
|
|
|
|
*
|
|
|
|
* @param skillType The skill to check
|
|
|
|
* @param player The player whose skill to check
|
|
|
|
* @param profile The profile of the player whose skill to check
|
|
|
|
*/
|
|
|
|
public static void xpCheckSkill(SkillType skillType, Player player, PlayerProfile profile) {
|
|
|
|
int skillups = 0;
|
|
|
|
int xpRemoved = 0;
|
|
|
|
|
|
|
|
if (profile.getSkillXpLevel(skillType) >= profile.getXpToLevel(skillType)) {
|
2013-03-07 14:53:13 +01:00
|
|
|
McMMOPlayer mcMMOPlayer = UserManager.getPlayer(player);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
while (profile.getSkillXpLevel(skillType) >= profile.getXpToLevel(skillType)) {
|
2013-03-07 14:53:13 +01:00
|
|
|
if ((skillType.getMaxLevel() >= profile.getSkillLevel(skillType) + 1) && (Config.getInstance().getPowerLevelCap() >= mcMMOPlayer.getPowerLevel() + 1)) {
|
2013-03-01 06:52:01 +01:00
|
|
|
int xp = profile.getXpToLevel(skillType);
|
|
|
|
xpRemoved += xp;
|
|
|
|
|
|
|
|
profile.removeXp(skillType, xp);
|
|
|
|
skillups++;
|
|
|
|
profile.skillUp(skillType, 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
profile.addLevels(skillType, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
McMMOPlayerLevelUpEvent eventToFire = new McMMOPlayerLevelUpEvent(player, skillType, skillups);
|
|
|
|
mcMMO.p.getServer().getPluginManager().callEvent(eventToFire);
|
|
|
|
|
|
|
|
if (eventToFire.isCancelled()) {
|
|
|
|
profile.modifySkill(skillType, profile.getSkillLevel(skillType) - skillups);
|
|
|
|
profile.setSkillXpLevel(skillType, profile.getSkillXpLevel(skillType) + xpRemoved);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
String capitalized = StringUtils.getCapitalized(skillType.toString());
|
|
|
|
|
|
|
|
/* Spout Stuff */
|
|
|
|
if (mcMMO.spoutEnabled) {
|
|
|
|
SpoutPlayer spoutPlayer = SpoutManager.getPlayer(player);
|
|
|
|
|
|
|
|
if (spoutPlayer != null && spoutPlayer.isSpoutCraftEnabled()) {
|
|
|
|
SpoutUtils.levelUpNotification(skillType, spoutPlayer);
|
|
|
|
|
|
|
|
/* Update custom titles */
|
|
|
|
if (SpoutConfig.getInstance().getShowPowerLevel()) {
|
|
|
|
spoutPlayer.setTitle(LocaleLoader.getString("Spout.Title", spoutPlayer.getName(), UserManager.getPlayer(player).getPowerLevel()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
player.sendMessage(LocaleLoader.getString(capitalized + ".Skillup", skillups, profile.getSkillLevel(skillType)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
player.sendMessage(LocaleLoader.getString(capitalized + ".Skillup", skillups, profile.getSkillLevel(skillType)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mcMMO.spoutEnabled) {
|
|
|
|
SpoutPlayer spoutPlayer = SpoutManager.getPlayer(player);
|
|
|
|
|
|
|
|
if (spoutPlayer != null && spoutPlayer.isSpoutCraftEnabled()) {
|
|
|
|
if (SpoutConfig.getInstance().getXPBarEnabled()) {
|
|
|
|
profile.getSpoutHud().updateXpBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the given string represents a valid skill
|
|
|
|
*
|
|
|
|
* @param skillName The name of the skill to check
|
|
|
|
* @return true if this is a valid skill, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean isSkill(String skillName) {
|
|
|
|
if (!Config.getInstance().getLocale().equalsIgnoreCase("en_US")) {
|
|
|
|
return isLocalizedSkill(skillName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SkillType.getSkill(skillName) != null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isLocalizedSkill(String skillName) {
|
|
|
|
for (SkillType skill : SkillType.values()) {
|
|
|
|
if (skillName.equalsIgnoreCase(LocaleLoader.getString(StringUtils.getCapitalized(skill.toString()) + ".SkillName"))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getSkillName(SkillType skill) {
|
|
|
|
if (!Config.getInstance().getLocale().equalsIgnoreCase("en_US")) {
|
|
|
|
return StringUtils.getCapitalized(LocaleLoader.getString(StringUtils.getCapitalized(skill.toString()) + ".SkillName"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return StringUtils.getCapitalized(skill.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the player has any combat skill permissions.
|
|
|
|
*
|
|
|
|
* @param player The player to check permissions for
|
|
|
|
* @return true if the player has combat skills, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean hasCombatSkills(Player player) {
|
|
|
|
if (Permissions.skillEnabled(player, SkillType.AXES)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.ARCHERY)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.SWORDS)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.TAMING)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.UNARMED)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the player has any gathering skill permissions.
|
|
|
|
*
|
|
|
|
* @param player The player to check permissions for
|
|
|
|
* @return true if the player has gathering skills, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean hasGatheringSkills(Player player) {
|
|
|
|
if (Permissions.skillEnabled(player, SkillType.EXCAVATION)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.FISHING)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.HERBALISM)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.MINING)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.WOODCUTTING)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the player has any misc skill permissions.
|
|
|
|
*
|
|
|
|
* @param player The player to check permissions for
|
|
|
|
* @return true if the player has misc skills, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean hasMiscSkills(Player player) {
|
|
|
|
if (Permissions.skillEnabled(player, SkillType.ACROBATICS)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.SMELTING)
|
|
|
|
|| Permissions.skillEnabled(player, SkillType.REPAIR)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check to see if an ability can be activated.
|
|
|
|
*
|
2013-03-03 17:06:05 +01:00
|
|
|
* @param mcMMOPlayer The player activating the ability
|
2013-03-01 06:52:01 +01:00
|
|
|
* @param type The skill the ability is based on
|
|
|
|
*/
|
2013-03-03 17:06:05 +01:00
|
|
|
public static void abilityCheck(McMMOPlayer mcMMOPlayer, SkillType type) {
|
2013-03-01 06:52:01 +01:00
|
|
|
ToolType tool = type.getTool();
|
|
|
|
AbilityType ability = type.getAbility();
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
mcMMOPlayer.setToolPreparationMode(tool, false);
|
|
|
|
|
|
|
|
Player player = mcMMOPlayer.getPlayer();
|
|
|
|
PlayerProfile playerProfile = mcMMOPlayer.getProfile();
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Axes and Woodcutting are odd because they share the same tool.
|
|
|
|
* We show them the too tired message when they take action.
|
|
|
|
*/
|
|
|
|
if (type == SkillType.WOODCUTTING || type == SkillType.AXES) {
|
2013-03-03 17:06:05 +01:00
|
|
|
if (!mcMMOPlayer.getAbilityMode(ability) && !cooldownOver(playerProfile.getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR, ability.getCooldown(), player)) {
|
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.TooTired", calculateTimeLeft(playerProfile.getSkillDATS(ability) * Misc.TIME_CONVERSION_FACTOR, ability.getCooldown(), player)));
|
2013-03-01 06:52:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (!mcMMOPlayer.getAbilityMode(ability) && cooldownOver(playerProfile.getSkillDATS(ability), ability.getCooldown(), player)) {
|
|
|
|
int ticks = PerksUtils.handleActivationPerks(player, 2 + (playerProfile.getSkillLevel(type) / AdvancedConfig.getInstance().getAbilityLength()), ability.getMaxTicks());
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
ParticleEffectUtils.playAbilityEnabledEffect(player);
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (mcMMOPlayer.useChatNotifications()) {
|
2013-03-01 06:52:01 +01:00
|
|
|
player.sendMessage(ability.getAbilityOn());
|
|
|
|
}
|
|
|
|
|
|
|
|
SkillUtils.sendSkillMessage(player, ability.getAbilityPlayer(player));
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
playerProfile.setSkillDATS(ability, System.currentTimeMillis() + (ticks * Misc.TIME_CONVERSION_FACTOR));
|
|
|
|
mcMMOPlayer.setAbilityMode(ability, true);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
if (ability == AbilityType.BERSERK) {
|
|
|
|
player.setCanPickupItems(false);
|
|
|
|
}
|
|
|
|
else if (ability == AbilityType.SUPER_BREAKER || ability == AbilityType.GIGA_DRILL_BREAKER) {
|
|
|
|
handleAbilitySpeedIncrease(player);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check to see if ability should be triggered.
|
|
|
|
*
|
|
|
|
* @param player The player using the ability
|
|
|
|
* @param block The block modified by the ability
|
|
|
|
* @param ability The ability to check
|
|
|
|
* @return true if the ability should activate, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean triggerCheck(Player player, Block block, AbilityType ability) {
|
|
|
|
boolean activate = true;
|
|
|
|
|
|
|
|
switch (ability) {
|
|
|
|
case BERSERK:
|
|
|
|
case LEAF_BLOWER:
|
|
|
|
if (!ability.blockCheck(block.getState())) {
|
|
|
|
activate = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!blockBreakSimulate(block, player, true)) {
|
|
|
|
activate = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIGA_DRILL_BREAKER:
|
|
|
|
case SUPER_BREAKER:
|
|
|
|
case GREEN_TERRA:
|
|
|
|
if (!ability.blockCheck(block.getState())) {
|
|
|
|
activate = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
activate = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return activate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void sendSkillMessage(Player player, String message) {
|
|
|
|
for (Player otherPlayer : player.getWorld().getPlayers()) {
|
|
|
|
if (otherPlayer != player && Misc.isNear(player.getLocation(), otherPlayer.getLocation(), Misc.SKILL_MESSAGE_MAX_SENDING_DISTANCE)) {
|
|
|
|
otherPlayer.sendMessage(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void handleAbilitySpeedIncrease(Player player) {
|
|
|
|
if (HiddenConfig.getInstance().useEnchantmentBuffs()) {
|
|
|
|
ItemStack heldItem = player.getItemInHand();
|
|
|
|
|
|
|
|
if (heldItem == null || heldItem.getType() == Material.AIR) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int efficiencyLevel = heldItem.getEnchantmentLevel(Enchantment.DIG_SPEED);
|
|
|
|
ItemMeta itemMeta = heldItem.getItemMeta();
|
|
|
|
List<String> itemLore = new ArrayList<String>();
|
|
|
|
|
|
|
|
if (itemMeta.hasLore()) {
|
|
|
|
itemLore = itemMeta.getLore();
|
|
|
|
}
|
|
|
|
|
|
|
|
itemLore.add("mcMMO Ability Tool");
|
2013-03-07 05:00:37 +01:00
|
|
|
itemMeta.addEnchant(Enchantment.DIG_SPEED, efficiencyLevel + enchantBuff, true);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
itemMeta.setLore(itemLore);
|
|
|
|
heldItem.setItemMeta(itemMeta);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int duration = 0;
|
|
|
|
int amplifier = 0;
|
|
|
|
|
|
|
|
if (player.hasPotionEffect(PotionEffectType.FAST_DIGGING)) {
|
|
|
|
for (PotionEffect effect : player.getActivePotionEffects()) {
|
|
|
|
if (effect.getType() == PotionEffectType.FAST_DIGGING) {
|
|
|
|
duration = effect.getDuration();
|
|
|
|
amplifier = effect.getAmplifier();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
McMMOPlayer mcMMOPlayer = UserManager.getPlayer(player);
|
2013-03-01 06:52:01 +01:00
|
|
|
int ticks = 0;
|
|
|
|
|
2013-03-03 17:06:05 +01:00
|
|
|
if (mcMMOPlayer.getAbilityMode(AbilityType.SUPER_BREAKER)) {
|
|
|
|
ticks = ((int) (mcMMOPlayer.getProfile().getSkillDATS(AbilityType.SUPER_BREAKER) - System.currentTimeMillis())) / Misc.TIME_CONVERSION_FACTOR;
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
2013-03-03 17:06:05 +01:00
|
|
|
else if (mcMMOPlayer.getAbilityMode(AbilityType.GIGA_DRILL_BREAKER)) {
|
|
|
|
ticks = ((int) (mcMMOPlayer.getProfile().getSkillDATS(AbilityType.GIGA_DRILL_BREAKER) - System.currentTimeMillis())) / Misc.TIME_CONVERSION_FACTOR;
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PotionEffect abilityBuff = new PotionEffect(PotionEffectType.FAST_DIGGING, duration + ticks, amplifier + 10);
|
|
|
|
player.addPotionEffect(abilityBuff, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void handleAbilitySpeedDecrease(Player player) {
|
|
|
|
if (HiddenConfig.getInstance().useEnchantmentBuffs()) {
|
|
|
|
PlayerInventory playerInventory = player.getInventory();
|
|
|
|
|
|
|
|
for (int i = 0; i < playerInventory.getContents().length; i++) {
|
|
|
|
ItemStack item = playerInventory.getItem(i);
|
|
|
|
playerInventory.setItem(i, removeAbilityBuff(item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
player.removePotionEffect(PotionEffectType.FAST_DIGGING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ItemStack removeAbilityBuff(ItemStack item) {
|
|
|
|
if (item == null || item.getType() == Material.AIR) {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ItemUtils.isPickaxe(item) && !ItemUtils.isShovel(item)) {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.containsEnchantment(Enchantment.DIG_SPEED)) {
|
|
|
|
ItemMeta itemMeta = item.getItemMeta();
|
|
|
|
|
|
|
|
if (itemMeta.hasLore()) {
|
|
|
|
List<String> itemLore = itemMeta.getLore();
|
|
|
|
|
|
|
|
if (itemLore.remove("mcMMO Ability Tool")) {
|
|
|
|
int efficiencyLevel = item.getEnchantmentLevel(Enchantment.DIG_SPEED);
|
|
|
|
|
2013-03-07 05:00:37 +01:00
|
|
|
if (efficiencyLevel <= enchantBuff) {
|
2013-03-01 06:52:01 +01:00
|
|
|
itemMeta.removeEnchant(Enchantment.DIG_SPEED);
|
|
|
|
}
|
|
|
|
else {
|
2013-03-07 05:00:37 +01:00
|
|
|
itemMeta.addEnchant(Enchantment.DIG_SPEED, efficiencyLevel - enchantBuff, true);
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
itemMeta.setLore(itemLore);
|
|
|
|
item.setItemMeta(itemMeta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simulate a block break event.
|
|
|
|
*
|
|
|
|
* @param block The block to break
|
|
|
|
* @param player The player breaking the block
|
|
|
|
* @param shouldArmSwing true if an armswing event should be fired, false otherwise
|
|
|
|
* @return true if the event wasn't cancelled, false otherwise
|
|
|
|
*/
|
|
|
|
public static boolean blockBreakSimulate(Block block, Player player, Boolean shouldArmSwing) {
|
|
|
|
PluginManager pluginManger = mcMMO.p.getServer().getPluginManager();
|
|
|
|
|
|
|
|
// Support for NoCheat
|
|
|
|
if (shouldArmSwing) {
|
|
|
|
pluginManger.callEvent(new FakePlayerAnimationEvent(player));
|
|
|
|
}
|
|
|
|
|
|
|
|
FakeBlockDamageEvent damageEvent = new FakeBlockDamageEvent(player, block, player.getItemInHand(), true);
|
|
|
|
pluginManger.callEvent(damageEvent);
|
|
|
|
|
|
|
|
FakeBlockBreakEvent breakEvent = new FakeBlockBreakEvent(block, player);
|
|
|
|
pluginManger.callEvent(breakEvent);
|
|
|
|
|
|
|
|
if (!damageEvent.isCancelled() && !breakEvent.isCancelled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean activationSuccessful(Player player, SkillType skill, double maxChance, int maxLevel) {
|
|
|
|
int skillLevel = UserManager.getPlayer(player).getProfile().getSkillLevel(skill);
|
|
|
|
int activationChance = PerksUtils.handleLuckyPerks(player, skill);
|
|
|
|
double chance = (maxChance / maxLevel) * Math.min(skillLevel, maxLevel);
|
|
|
|
|
|
|
|
return chance > Misc.getRandom().nextInt(activationChance);
|
|
|
|
}
|
|
|
|
|
2013-03-04 15:40:03 +01:00
|
|
|
public static boolean activationSuccessful(int skillLevel, int activationChance, double maxChance, int maxLevel) {
|
|
|
|
return ((maxChance / maxLevel) * Math.min(skillLevel, maxLevel)) > Misc.getRandom().nextInt(activationChance);
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean treasureDropSuccessful(double dropChance, int activationChance) {
|
|
|
|
return dropChance > Misc.getRandom().nextDouble() * activationChance;
|
|
|
|
}
|
|
|
|
}
|