123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- package com.gmail.nossr50.skills.smelting;
- import java.util.ArrayList;
- import java.util.List;
- import org.bukkit.ChatColor;
- import org.bukkit.Material;
- import org.bukkit.Sound;
- import org.bukkit.block.BlockState;
- import org.bukkit.entity.Player;
- import org.bukkit.event.inventory.FurnaceBurnEvent;
- import org.bukkit.inventory.FurnaceRecipe;
- import org.bukkit.inventory.ItemStack;
- import org.bukkit.inventory.meta.ItemMeta;
- import com.gmail.nossr50.mcMMO;
- import com.gmail.nossr50.config.Config;
- import com.gmail.nossr50.datatypes.player.McMMOPlayer;
- import com.gmail.nossr50.datatypes.skills.SecondaryAbility;
- import com.gmail.nossr50.datatypes.skills.SkillType;
- import com.gmail.nossr50.datatypes.skills.XPGainReason;
- import com.gmail.nossr50.events.skills.secondaryabilities.SecondaryAbilityWeightedActivationCheckEvent;
- import com.gmail.nossr50.locale.LocaleLoader;
- import com.gmail.nossr50.skills.SkillManager;
- import com.gmail.nossr50.skills.mining.Mining;
- import com.gmail.nossr50.skills.smelting.Smelting.Tier;
- import com.gmail.nossr50.util.BlockUtils;
- import com.gmail.nossr50.util.EventUtils;
- import com.gmail.nossr50.util.Misc;
- import com.gmail.nossr50.util.Permissions;
- import com.gmail.nossr50.util.adapter.SoundAdapter;
- import com.gmail.nossr50.util.skills.ParticleEffectUtils;
- import com.gmail.nossr50.util.skills.SkillUtils;
- public class SmeltingManager extends SkillManager {
- public SmeltingManager(McMMOPlayer mcMMOPlayer) {
- super(mcMMOPlayer, SkillType.SMELTING);
- }
- public boolean canUseFluxMining(BlockState blockState) {
- return getSkillLevel() >= Smelting.fluxMiningUnlockLevel && BlockUtils.affectedByFluxMining(blockState) && Permissions.secondaryAbilityEnabled(getPlayer(), SecondaryAbility.FLUX_MINING) && !mcMMO.getPlaceStore().isTrue(blockState);
- }
- public boolean isSecondSmeltSuccessful() {
- return Permissions.secondaryAbilityEnabled(getPlayer(), SecondaryAbility.SECOND_SMELT) && SkillUtils.activationSuccessful(SecondaryAbility.SECOND_SMELT, getPlayer(), getSkillLevel(), activationChance);
- }
- /**
- * Process the Flux Mining ability.
- *
- * @param blockState The {@link BlockState} to check ability activation for
- * @return true if the ability was successful, false otherwise
- */
- public boolean processFluxMining(BlockState blockState) {
- Player player = getPlayer();
- SecondaryAbilityWeightedActivationCheckEvent event = new SecondaryAbilityWeightedActivationCheckEvent(getPlayer(), SecondaryAbility.FLUX_MINING, Smelting.fluxMiningChance / activationChance);
- mcMMO.p.getServer().getPluginManager().callEvent(event);
- if ((event.getChance() * activationChance) > Misc.getRandom().nextInt(activationChance)) {
- ItemStack item = null;
- switch (blockState.getType()) {
- case IRON_ORE:
- item = new ItemStack(Material.IRON_INGOT);
- break;
- case GOLD_ORE:
- item = new ItemStack(Material.GOLD_INGOT);
- break;
- default:
- break;
- }
- if (item == null) {
- return false;
- }
-
- if (!EventUtils.simulateBlockBreak(blockState.getBlock(), player, true)) {
- return false;
- }
- // We need to distribute Mining XP here, because the block break event gets cancelled
- applyXpGain(Mining.getBlockXp(blockState), XPGainReason.PVE);
- SkillUtils.handleDurabilityChange(getPlayer().getInventory().getItemInMainHand(), Config.getInstance().getAbilityToolDamage());
- Misc.dropItems(blockState.getLocation(), item, isSecondSmeltSuccessful() ? 2 : 1);
- blockState.setType(Material.AIR);
- if (Config.getInstance().getFluxPickaxeSoundEnabled()) {
- player.playSound(blockState.getLocation(), SoundAdapter.FIZZ, Misc.FIZZ_VOLUME, Misc.getFizzPitch());
- }
- ParticleEffectUtils.playFluxEffect(blockState.getLocation());
- return true;
- }
- return false;
- }
- public static ItemStack getFluxPickaxe(Material material, int amount) {
- ItemStack itemStack = new ItemStack(material, amount);
- ItemMeta itemMeta = itemStack.getItemMeta();
- itemMeta.setDisplayName(ChatColor.GOLD + LocaleLoader.getString("Item.FluxPickaxe.Name"));
- List<String> itemLore = itemMeta.hasLore() ? itemMeta.getLore() : new ArrayList<String>();
- itemLore.add("mcMMO Item");
- itemLore.add(LocaleLoader.getString("Item.FluxPickaxe.Lore.1"));
- itemLore.add(LocaleLoader.getString("Item.FluxPickaxe.Lore.2", Smelting.fluxMiningUnlockLevel));
- itemMeta.setLore(itemLore);
- itemStack.setItemMeta(itemMeta);
- return itemStack;
- }
- public static FurnaceRecipe getFluxPickaxeRecipe(Material material) {
- return new FurnaceRecipe(getFluxPickaxe(material, 1), material);
- }
- /**
- * Increases burn time for furnace fuel.
- *
- * @param burnTime The initial burn time from the {@link FurnaceBurnEvent}
- */
- public int fuelEfficiency(int burnTime) {
- double burnModifier = 1 + (((double) getSkillLevel() / Smelting.burnModifierMaxLevel) * Smelting.burnTimeMultiplier);
- return (int) (burnTime * burnModifier);
- }
- public ItemStack smeltProcessing(ItemStack smelting, ItemStack result) {
- applyXpGain(Smelting.getResourceXp(smelting), XPGainReason.PVE);
- if (isSecondSmeltSuccessful()) {
- ItemStack newResult = result.clone();
- newResult.setAmount(result.getAmount() + 1);
- return newResult;
- }
- return result;
- }
- public int vanillaXPBoost(int experience) {
- return experience * getVanillaXpMultiplier();
- }
- /**
- * Gets the vanilla XP multiplier
- *
- * @return the vanilla XP multiplier
- */
- public int getVanillaXpMultiplier() {
- int skillLevel = getSkillLevel();
- for (Tier tier : Tier.values()) {
- if (skillLevel >= tier.getLevel()) {
- return tier.getVanillaXPBoostModifier();
- }
- }
- return 1;
- }
- }
|