mcMMO/src/main/java/com/gmail/nossr50/skills/gathering/Mining.java

435 lines
14 KiB
Java
Raw Normal View History

2012-05-01 19:58:47 +02:00
package com.gmail.nossr50.skills.gathering;
2012-01-09 20:00:13 +01:00
2012-03-26 17:04:17 +02:00
import java.util.Random;
2012-03-13 08:31:07 +01:00
import org.bukkit.CoalType;
2012-01-09 20:00:13 +01:00
import org.bukkit.Location;
import org.bukkit.Material;
2012-01-09 20:00:13 +01:00
import org.bukkit.block.Block;
2012-05-18 17:15:30 +02:00
import org.bukkit.enchantments.Enchantment;
2012-01-09 20:00:13 +01:00
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
2012-12-25 07:01:10 +01:00
import org.bukkit.material.MaterialData;
2012-01-09 20:00:13 +01:00
import org.getspout.spoutapi.sound.SoundEffect;
import com.gmail.nossr50.mcMMO;
2012-11-21 21:49:54 +01:00
import com.gmail.nossr50.config.AdvancedConfig;
2012-06-05 16:13:10 +02:00
import com.gmail.nossr50.config.Config;
import com.gmail.nossr50.datatypes.PlayerProfile;
import com.gmail.nossr50.datatypes.SkillType;
import com.gmail.nossr50.datatypes.mods.CustomBlock;
2012-06-05 16:13:10 +02:00
import com.gmail.nossr50.events.fake.FakePlayerAnimationEvent;
2012-03-21 03:33:58 +01:00
import com.gmail.nossr50.spout.SpoutSounds;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Misc;
import com.gmail.nossr50.util.ModChecks;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Permissions;
2012-05-01 19:58:47 +02:00
import com.gmail.nossr50.util.Skills;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Users;
2012-01-09 20:00:13 +01:00
2012-03-26 17:04:17 +02:00
public class Mining {
private static Random random = new Random();
2012-11-26 01:40:42 +01:00
static AdvancedConfig advancedConfig = AdvancedConfig.getInstance();
2012-05-18 17:15:30 +02:00
/**
* Handle double drops when using Silk Touch.
*
* @param block The block to process drops for
*/
private static void silkTouchDrops(Block block) {
2012-07-04 21:35:14 +02:00
Location location = block.getLocation();
2012-05-18 17:15:30 +02:00
Material type = block.getType();
ItemStack item = new ItemStack(type);
Config configInstance = Config.getInstance();
switch (type) {
case ENDER_STONE:
case GOLD_ORE:
case IRON_ORE:
case MOSSY_COBBLESTONE:
case NETHERRACK:
case OBSIDIAN:
case SANDSTONE:
miningDrops(block);
break;
case COAL_ORE:
if (configInstance.getCoalDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
case DIAMOND_ORE:
if (configInstance.getDiamondDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
case GLOWING_REDSTONE_ORE:
case REDSTONE_ORE:
if (configInstance.getRedstoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
case GLOWSTONE:
if (configInstance.getGlowstoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
case LAPIS_ORE:
if (configInstance.getLapisDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
case STONE:
if (configInstance.getStoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
2012-05-18 17:15:30 +02:00
}
break;
2012-12-24 22:56:25 +01:00
case EMERALD_ORE:
if (configInstance.getEmeraldDoubleDropsEnabled()) {
Misc.dropItem(location, item);
}
break;
2012-05-18 17:15:30 +02:00
default:
if (ModChecks.isCustomMiningBlock(block)) {
ItemStack dropItem = (new MaterialData(block.getTypeId(), block.getData())).toItemStack(1);
2012-12-25 07:01:10 +01:00
Misc.dropItem(location, dropItem);
2012-05-18 17:15:30 +02:00
}
break;
}
}
2012-03-13 08:31:07 +01:00
/**
* Drop items from Mining & Blast Mining skills.
*
* @param block The block to process drops for
*/
public static void miningDrops(Block block) {
2012-07-04 21:35:14 +02:00
Location location = block.getLocation();
2012-03-13 08:31:07 +01:00
Material type = block.getType();
ItemStack item = new ItemStack(type);
Config configInstance = Config.getInstance();
2012-03-13 08:31:07 +01:00
switch (type) {
case COAL_ORE:
if (configInstance.getCoalDoubleDropsEnabled()) {
item = (new MaterialData(Material.COAL, CoalType.COAL.getData())).toItemStack(1);
2012-12-25 07:01:10 +01:00
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
2012-03-13 08:31:07 +01:00
break;
case DIAMOND_ORE:
if (configInstance.getDiamondDoubleDropsEnabled()) {
item = new ItemStack(Material.DIAMOND);
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
break;
case ENDER_STONE:
if (configInstance.getEndStoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
2012-03-13 08:31:07 +01:00
break;
case GLOWING_REDSTONE_ORE:
case REDSTONE_ORE:
if (configInstance.getRedstoneDoubleDropsEnabled()) {
item = new ItemStack(Material.REDSTONE);
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, item, 4);
Misc.randomDropItem(location, item, 50);
}
2012-03-13 08:31:07 +01:00
break;
case GLOWSTONE:
if (configInstance.getGlowstoneDoubleDropsEnabled()) {
item = new ItemStack(Material.GLOWSTONE_DUST);
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, item, 2);
Misc.randomDropItems(location, item, 50, 2);
}
break;
case GOLD_ORE:
if (configInstance.getGoldDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
break;
case IRON_ORE:
if (configInstance.getIronDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
2012-03-13 08:31:07 +01:00
break;
case LAPIS_ORE:
if (configInstance.getLapisDoubleDropsEnabled()) {
item = (new MaterialData(Material.INK_SACK, (byte) 0x4)).toItemStack(1);
2012-12-25 07:01:10 +01:00
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, item, 4);
Misc.randomDropItems(location, item, 50, 4);
}
break;
case MOSSY_COBBLESTONE:
if (configInstance.getMossyCobblestoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
break;
case NETHERRACK:
if (configInstance.getNetherrackDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
break;
case OBSIDIAN:
if (configInstance.getObsidianDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
break;
case SANDSTONE:
if (configInstance.getSandstoneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
2012-03-13 08:31:07 +01:00
break;
case STONE:
if (configInstance.getStoneDoubleDropsEnabled()) {
item = new ItemStack(Material.COBBLESTONE);
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, item);
}
2012-03-13 08:31:07 +01:00
break;
2012-12-24 22:56:25 +01:00
case EMERALD_ORE:
if (configInstance.getEmeraldDoubleDropsEnabled()) {
item = new ItemStack(Material.EMERALD);
Misc.dropItem(location, item);
}
break;
2012-03-13 08:31:07 +01:00
default:
if (ModChecks.isCustomMiningBlock(block)) {
CustomBlock customBlock = ModChecks.getCustomBlock(block);
int minimumDropAmount = customBlock.getMinimumDropAmount();
int maximumDropAmount = customBlock.getMaximumDropAmount();
item = ModChecks.getCustomBlock(block).getItemDrop();
if (minimumDropAmount != maximumDropAmount) {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, item, minimumDropAmount);
Misc.randomDropItems(location, item, 50, maximumDropAmount - minimumDropAmount);
}
else {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, item, minimumDropAmount);
}
}
2012-03-13 08:31:07 +01:00
break;
}
2012-01-09 20:00:13 +01:00
}
2012-03-13 08:31:07 +01:00
/**
* Award XP for Mining blocks.
*
* @param player The player to award XP to
* @param block The block to award XP for
*/
public static void miningXP(Player player, Block block) {
2012-07-03 16:04:04 +02:00
PlayerProfile profile = Users.getProfile(player);
2012-03-13 08:31:07 +01:00
Material type = block.getType();
int xp = 0;
2012-06-05 15:57:10 +02:00
2012-03-13 08:31:07 +01:00
switch (type) {
case COAL_ORE:
xp += Config.getInstance().getMiningXPCoalOre();
2012-03-13 08:31:07 +01:00
break;
case DIAMOND_ORE:
xp += Config.getInstance().getMiningXPDiamondOre();
2012-03-13 08:31:07 +01:00
break;
case ENDER_STONE:
xp += Config.getInstance().getMiningXPEndStone();
2012-03-13 08:31:07 +01:00
break;
case GLOWING_REDSTONE_ORE:
case REDSTONE_ORE:
xp += Config.getInstance().getMiningXPRedstoneOre();
2012-03-13 08:31:07 +01:00
break;
case GLOWSTONE:
xp += Config.getInstance().getMiningXPGlowstone();
2012-03-13 08:31:07 +01:00
break;
case GOLD_ORE:
xp += Config.getInstance().getMiningXPGoldOre();
2012-03-13 08:31:07 +01:00
break;
case IRON_ORE:
xp += Config.getInstance().getMiningXPIronOre();
2012-03-13 08:31:07 +01:00
break;
case LAPIS_ORE:
xp += Config.getInstance().getMiningXPLapisOre();
2012-03-13 08:31:07 +01:00
break;
case MOSSY_COBBLESTONE:
xp += Config.getInstance().getMiningXPMossyStone();
2012-03-13 08:31:07 +01:00
break;
case NETHERRACK:
xp += Config.getInstance().getMiningXPNetherrack();
2012-03-13 08:31:07 +01:00
break;
case OBSIDIAN:
xp += Config.getInstance().getMiningXPObsidian();
2012-03-13 08:31:07 +01:00
break;
case SANDSTONE:
xp += Config.getInstance().getMiningXPSandstone();
2012-03-13 08:31:07 +01:00
break;
case STONE:
xp += Config.getInstance().getMiningXPStone();
2012-03-13 08:31:07 +01:00
break;
2012-12-24 22:56:25 +01:00
case EMERALD_ORE:
xp += Config.getInstance().getMiningXPEmeraldOre();
break;
2012-03-13 08:31:07 +01:00
default:
if (ModChecks.isCustomMiningBlock(block)) {
xp += ModChecks.getCustomBlock(block).getXpGain();
}
2012-03-13 08:31:07 +01:00
break;
}
2012-07-03 16:04:04 +02:00
Skills.xpProcessing(player, profile, SkillType.MINING, xp);
2012-03-13 08:31:07 +01:00
}
/**
* Process Mining block drops.
*
* @param player The player mining the block
* @param block The block being broken
*/
public static void miningBlockCheck(Player player, Block block) {
2012-12-24 22:17:19 +01:00
if (mcMMO.placeStore.isTrue(block)) {
2012-03-13 08:31:07 +01:00
return;
}
miningXP(player, block);
2012-11-21 21:49:54 +01:00
final int MAX_BONUS_LEVEL = advancedConfig.getMiningDoubleDropMaxLevel();
2012-11-26 01:40:42 +01:00
int MAX_CHANCE = advancedConfig.getMiningDoubleDropChance();
2012-12-24 22:56:25 +01:00
2012-05-18 17:15:30 +02:00
int skillLevel = Users.getProfile(player).getSkillLevel(SkillType.MINING);
int skillCheck = Misc.skillCheck(skillLevel, MAX_BONUS_LEVEL);
2012-03-13 08:31:07 +01:00
2012-11-21 21:49:54 +01:00
int randomChance = 100;
2012-12-24 22:56:25 +01:00
int chance = (int) (((double) MAX_CHANCE / (double) MAX_BONUS_LEVEL) * skillCheck);
if (player.hasPermission("mcmmo.perks.lucky.mining")) {
randomChance = (int) (randomChance * 0.75);
}
2012-11-21 21:49:54 +01:00
if (chance > random.nextInt(randomChance) && Permissions.getInstance().miningDoubleDrops(player)) {
2012-05-18 17:15:30 +02:00
if (player.getItemInHand().containsEnchantment(Enchantment.SILK_TOUCH)) {
silkTouchDrops(block);
}
else {
miningDrops(block);
2012-03-13 08:31:07 +01:00
}
}
2012-01-09 20:00:13 +01:00
}
2012-03-13 08:31:07 +01:00
/**
* Handle the Super Breaker ability.
*
* @param player The player using the ability
* @param block The block being affected
*/
2012-05-18 17:15:30 +02:00
public static void superBreakerBlockCheck(Player player, Block block) {
2012-03-13 08:31:07 +01:00
Material type = block.getType();
2012-04-27 11:47:11 +02:00
int tier = Misc.getTier(player.getItemInHand());
int durabilityLoss = Config.getInstance().getAbilityToolDamage();
FakePlayerAnimationEvent armswing = new FakePlayerAnimationEvent(player);
2012-03-13 08:31:07 +01:00
if (ModChecks.isCustomMiningBlock(block)) {
if (ModChecks.getCustomBlock(block).getTier() < tier) {
return;
}
2012-12-24 22:17:19 +01:00
if (mcMMO.placeStore.isTrue(block) || Misc.blockBreakSimulate(block, player, true)) {
2012-03-13 08:31:07 +01:00
return;
}
mcMMO.p.getServer().getPluginManager().callEvent(armswing);
2012-03-13 08:31:07 +01:00
Skills.abilityDurabilityLoss(player.getItemInHand(), durabilityLoss);
miningBlockCheck(player, block);
2012-03-13 08:31:07 +01:00
if (mcMMO.spoutEnabled) {
2012-03-21 03:33:58 +01:00
SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
2012-03-13 08:31:07 +01:00
}
}
else {
switch (type) {
case OBSIDIAN:
if (tier < 4) {
return;
}
durabilityLoss = durabilityLoss * 5; //Obsidian needs to do more damage than normal
/* FALL THROUGH */
case DIAMOND_ORE:
case GLOWING_REDSTONE_ORE:
case GOLD_ORE:
case LAPIS_ORE:
case REDSTONE_ORE:
2012-09-07 23:49:00 +02:00
case EMERALD_ORE:
if (tier < 3) {
return;
}
/* FALL THROUGH */
case IRON_ORE:
if (tier < 2) {
return;
}
/* FALL THROUGH */
case COAL_ORE:
case ENDER_STONE:
case GLOWSTONE:
case MOSSY_COBBLESTONE:
case NETHERRACK:
case SANDSTONE:
case STONE:
2012-12-24 22:17:19 +01:00
if (mcMMO.placeStore.isTrue(block) || Misc.blockBreakSimulate(block, player, true)) {
return;
}
mcMMO.p.getServer().getPluginManager().callEvent(armswing);
Skills.abilityDurabilityLoss(player.getItemInHand(), durabilityLoss);
miningBlockCheck(player, block);
if (mcMMO.spoutEnabled) {
SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
}
default:
2012-07-03 03:05:55 +02:00
return;
}
}
2012-01-09 20:00:13 +01:00
}
}