2012-05-01 19:58:47 +02:00
|
|
|
package com.gmail.nossr50.skills.gathering;
|
2012-02-07 07:37:41 +01:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2012-03-11 04:21:53 +01:00
|
|
|
import java.util.HashSet;
|
2012-02-07 07:37:41 +01:00
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.List;
|
2012-03-26 17:04:17 +02:00
|
|
|
import java.util.Random;
|
2012-02-07 07:37:41 +01:00
|
|
|
|
2012-03-11 04:21:53 +01:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Material;
|
2012-02-07 07:37:41 +01:00
|
|
|
import org.bukkit.block.Block;
|
2012-03-01 22:50:39 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2012-03-11 04:21:53 +01:00
|
|
|
import org.bukkit.entity.TNTPrimed;
|
2012-02-07 07:37:41 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
|
|
|
import org.bukkit.event.entity.EntityExplodeEvent;
|
|
|
|
import org.bukkit.event.entity.ExplosionPrimeEvent;
|
2012-04-29 00:42:21 +02:00
|
|
|
import org.bukkit.event.player.PlayerInteractEvent;
|
2012-03-01 22:50:39 +01:00
|
|
|
|
2012-06-07 00:02:22 +02:00
|
|
|
import com.gmail.nossr50.mcMMO;
|
2012-11-21 21:49:54 +01:00
|
|
|
import com.gmail.nossr50.config.AdvancedConfig;
|
2012-03-11 04:21:53 +01:00
|
|
|
import com.gmail.nossr50.datatypes.AbilityType;
|
|
|
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
2012-03-01 22:50:39 +01:00
|
|
|
import com.gmail.nossr50.datatypes.SkillType;
|
2012-04-27 11:47:11 +02:00
|
|
|
import com.gmail.nossr50.locale.LocaleLoader;
|
2013-01-01 21:39:58 +01:00
|
|
|
import com.gmail.nossr50.skills.mining.Mining;
|
2012-04-27 11:47:11 +02:00
|
|
|
import com.gmail.nossr50.util.BlockChecks;
|
|
|
|
import com.gmail.nossr50.util.Misc;
|
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-02-07 07:37:41 +01:00
|
|
|
|
2012-03-12 22:28:13 +01:00
|
|
|
public class BlastMining {
|
2012-11-26 01:40:42 +01:00
|
|
|
static AdvancedConfig advancedConfig = AdvancedConfig.getInstance();
|
2012-03-12 22:28:13 +01:00
|
|
|
|
2012-03-26 17:04:17 +02:00
|
|
|
private static Random random = new Random();
|
2012-12-24 22:56:25 +01:00
|
|
|
|
2012-11-26 01:40:42 +01:00
|
|
|
private static int blastMiningRank1 = advancedConfig.getBlastMiningRank1();
|
|
|
|
private static int blastMiningRank2 = advancedConfig.getBlastMiningRank2();
|
|
|
|
private static int blastMiningRank3 = advancedConfig.getBlastMiningRank3();
|
|
|
|
private static int blastMiningRank4 = advancedConfig.getBlastMiningRank4();
|
|
|
|
private static int blastMiningRank5 = advancedConfig.getBlastMiningRank5();
|
|
|
|
private static int blastMiningRank6 = advancedConfig.getBlastMiningRank6();
|
|
|
|
private static int blastMiningRank7 = advancedConfig.getBlastMiningRank7();
|
|
|
|
private static int blastMiningRank8 = advancedConfig.getBlastMiningRank8();
|
2012-03-12 22:28:13 +01:00
|
|
|
/**
|
|
|
|
* Handler for what blocks drop from the explosion.
|
|
|
|
*
|
|
|
|
* @param ores List of ore blocks destroyed by the explosion
|
|
|
|
* @param debris List of non-ore blocks destroyed by the explosion
|
|
|
|
* @param yield Percentage of blocks to drop
|
|
|
|
* @param oreBonus Percentage bonus for ore drops
|
|
|
|
* @param debrisReduction Percentage reduction for non-ore drops
|
|
|
|
* @param extraDrops Number of times to drop each block
|
|
|
|
* @return A list of blocks dropped from the explosion
|
|
|
|
*/
|
2012-03-15 22:29:27 +01:00
|
|
|
private static List<Block> explosionYields(List<Block> ores, List<Block> debris, float yield, float oreBonus, float debrisReduction, int extraDrops) {
|
2012-04-29 01:59:56 +02:00
|
|
|
Iterator<Block> oresIterator = ores.iterator();
|
2012-03-12 22:28:13 +01:00
|
|
|
List<Block> blocksDropped = new ArrayList<Block>();
|
|
|
|
|
2012-04-29 01:59:56 +02:00
|
|
|
while (oresIterator.hasNext()) {
|
|
|
|
Block temp = oresIterator.next();
|
2012-03-12 22:28:13 +01:00
|
|
|
|
2012-03-26 17:04:17 +02:00
|
|
|
if (random.nextFloat() < (yield + oreBonus)) {
|
2012-03-12 22:28:13 +01:00
|
|
|
blocksDropped.add(temp);
|
|
|
|
Mining.miningDrops(temp);
|
|
|
|
|
2012-12-24 22:17:19 +01:00
|
|
|
if (!mcMMO.placeStore.isTrue(temp)) {
|
2012-04-29 01:59:56 +02:00
|
|
|
for (int i = 1 ; i < extraDrops ; i++) {
|
2012-03-12 22:28:13 +01:00
|
|
|
blocksDropped.add(temp);
|
|
|
|
Mining.miningDrops(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-29 01:59:56 +02:00
|
|
|
if (yield - debrisReduction > 0) {
|
|
|
|
Iterator<Block> debrisIterator = debris.iterator();
|
2012-03-12 22:28:13 +01:00
|
|
|
|
2012-04-29 01:59:56 +02:00
|
|
|
while (debrisIterator.hasNext()) {
|
|
|
|
Block temp = debrisIterator.next();
|
2012-03-12 22:28:13 +01:00
|
|
|
|
2012-03-26 17:04:17 +02:00
|
|
|
if (random.nextFloat() < (yield - debrisReduction))
|
2012-03-12 22:28:13 +01:00
|
|
|
Mining.miningDrops(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return blocksDropped;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for explosion drops and XP gain.
|
|
|
|
*
|
|
|
|
* @param player Player triggering the explosion
|
|
|
|
* @param event Event whose explosion is being processed
|
|
|
|
*/
|
2012-03-15 22:29:27 +01:00
|
|
|
public static void dropProcessing(Player player, EntityExplodeEvent event) {
|
2012-10-30 19:46:52 +01:00
|
|
|
if(player == null)
|
|
|
|
return;
|
|
|
|
|
2012-11-21 21:49:54 +01:00
|
|
|
final int RANK_1_LEVEL = blastMiningRank1;
|
|
|
|
final int RANK_2_LEVEL = blastMiningRank2;
|
|
|
|
final int RANK_3_LEVEL = blastMiningRank3;
|
|
|
|
final int RANK_4_LEVEL = blastMiningRank4;
|
|
|
|
final int RANK_5_LEVEL = blastMiningRank5;
|
|
|
|
final int RANK_6_LEVEL = blastMiningRank6;
|
|
|
|
final int RANK_7_LEVEL = blastMiningRank7;
|
|
|
|
final int RANK_8_LEVEL = blastMiningRank8;
|
2012-03-12 22:28:13 +01:00
|
|
|
|
|
|
|
int skillLevel = Users.getProfile(player).getSkillLevel(SkillType.MINING);
|
|
|
|
float yield = event.getYield();
|
|
|
|
List<Block> blocks = event.blockList();
|
|
|
|
Iterator<Block> iterator = blocks.iterator();
|
|
|
|
|
|
|
|
List<Block> ores = new ArrayList<Block>();
|
|
|
|
List<Block> debris = new ArrayList<Block>();
|
|
|
|
List<Block> xp = new ArrayList<Block>();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Block temp = iterator.next();
|
|
|
|
|
2012-05-10 15:54:29 +02:00
|
|
|
if (BlockChecks.isOre(temp)) {
|
2012-03-12 22:28:13 +01:00
|
|
|
ores.add(temp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
debris.add(temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Normal explosion
|
|
|
|
if (skillLevel < RANK_1_LEVEL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.setYield(0);
|
|
|
|
|
|
|
|
//Triple Drops, No debris, +70% ores
|
|
|
|
if (skillLevel >= RANK_8_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .70f, .30f, 3);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Triple Drops, No debris, +65% ores
|
|
|
|
else if (skillLevel >= RANK_7_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .65f, .30f, 3);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Double Drops, No Debris, +60% ores
|
|
|
|
else if (skillLevel >= RANK_6_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .60f, .30f, 2);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Double Drops, No Debris, +55% ores
|
|
|
|
else if (skillLevel >= RANK_5_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .55f, .30f, 2);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//No debris, +50% ores
|
|
|
|
else if (skillLevel >= RANK_4_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .50f, .30f, 1);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//No debris, +45% ores
|
|
|
|
else if (skillLevel >= RANK_3_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .45f, .30f, 1);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//+40% ores, -20% debris
|
|
|
|
else if (skillLevel >= RANK_2_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .40f, .20f, 1);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//+35% ores, -10% debris
|
|
|
|
else if (skillLevel >= RANK_1_LEVEL) {
|
2012-03-15 22:29:27 +01:00
|
|
|
xp = explosionYields(ores, debris, yield, .35f, .10f, 1);
|
2012-03-12 22:28:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (Block block : xp) {
|
2012-12-24 22:17:19 +01:00
|
|
|
if (!mcMMO.placeStore.isTrue(block)) {
|
2012-03-12 22:28:13 +01:00
|
|
|
Mining.miningXP(player, block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increases the blast radius of the explosion.
|
|
|
|
*
|
|
|
|
* @param player Player triggering the explosion
|
|
|
|
* @param event Event whose explosion radius is being changed
|
|
|
|
*/
|
|
|
|
public static void biggerBombs(Player player, ExplosionPrimeEvent event) {
|
2012-10-30 19:46:52 +01:00
|
|
|
if(player == null)
|
|
|
|
return;
|
|
|
|
|
2012-11-21 21:49:54 +01:00
|
|
|
final int RANK_1_LEVEL = blastMiningRank2;
|
|
|
|
final int RANK_2_LEVEL = blastMiningRank4;
|
|
|
|
final int RANK_3_LEVEL = blastMiningRank6;
|
|
|
|
final int RANK_4_LEVEL = blastMiningRank8;
|
2012-03-12 22:28:13 +01:00
|
|
|
|
|
|
|
int skillLevel = Users.getProfile(player).getSkillLevel(SkillType.MINING);
|
|
|
|
float radius = event.getRadius();
|
|
|
|
|
|
|
|
if (skillLevel < RANK_1_LEVEL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skillLevel >= RANK_1_LEVEL) {
|
|
|
|
radius++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skillLevel >= RANK_2_LEVEL) {
|
|
|
|
radius++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skillLevel >= RANK_3_LEVEL) {
|
|
|
|
radius++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skillLevel >= RANK_4_LEVEL) {
|
|
|
|
radius++;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.setRadius(radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decreases damage dealt by the explosion.
|
|
|
|
*
|
|
|
|
* @param player Player triggering the explosion
|
|
|
|
* @param event Event whose explosion damage is being reduced
|
|
|
|
*/
|
|
|
|
public static void demolitionsExpertise(Player player, EntityDamageEvent event) {
|
2012-10-30 19:46:52 +01:00
|
|
|
if(player == null)
|
|
|
|
return;
|
|
|
|
|
2012-11-21 21:49:54 +01:00
|
|
|
final int RANK_1_LEVEL = blastMiningRank4;
|
|
|
|
final int RANK_2_LEVEL = blastMiningRank6;
|
|
|
|
final int RANK_3_LEVEL = blastMiningRank8;
|
2012-03-12 22:28:13 +01:00
|
|
|
|
|
|
|
int skill = Users.getProfile(player).getSkillLevel(SkillType.MINING);
|
|
|
|
int damage = event.getDamage();
|
|
|
|
|
|
|
|
if (skill < RANK_1_LEVEL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skill >= RANK_3_LEVEL) {
|
|
|
|
damage = 0;
|
|
|
|
}
|
|
|
|
else if (skill >= RANK_2_LEVEL) {
|
|
|
|
damage = damage / 2;
|
|
|
|
}
|
|
|
|
else if (skill >= RANK_1_LEVEL) {
|
|
|
|
damage = damage/4;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.setDamage(damage);
|
|
|
|
}
|
2012-02-07 07:37:41 +01:00
|
|
|
|
2012-03-20 03:05:17 +01:00
|
|
|
/**
|
2012-04-29 00:42:21 +02:00
|
|
|
* Detonate TNT for Blast Mining
|
2012-03-20 03:05:17 +01:00
|
|
|
*
|
2012-05-01 01:32:50 +02:00
|
|
|
* @param event The PlayerInteractEvent
|
2012-03-20 03:05:17 +01:00
|
|
|
* @param player Player detonating the TNT
|
|
|
|
* @param plugin mcMMO plugin instance
|
|
|
|
*/
|
2012-06-07 00:02:22 +02:00
|
|
|
public static void detonate(PlayerInteractEvent event, Player player, mcMMO plugin) {
|
2012-10-30 19:46:52 +01:00
|
|
|
if(player == null)
|
|
|
|
return;
|
|
|
|
|
2012-07-03 16:04:04 +02:00
|
|
|
PlayerProfile profile = Users.getProfile(player);
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-07-03 16:04:04 +02:00
|
|
|
if (profile.getSkillLevel(SkillType.MINING) < 125)
|
2012-04-29 00:42:21 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
Block block = event.getClickedBlock();
|
|
|
|
|
|
|
|
if (block == null || block.getType() != Material.TNT) {
|
|
|
|
final byte SNOW = 78;
|
|
|
|
final byte AIR = 0;
|
|
|
|
final int BLOCKS_AWAY = 100;
|
|
|
|
|
|
|
|
HashSet<Byte> transparent = new HashSet<Byte>();
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
transparent.add(SNOW);
|
|
|
|
transparent.add(AIR);
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
block = player.getTargetBlock(transparent, BLOCKS_AWAY);
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
if (block.getType() != Material.TNT) {
|
2012-03-11 04:21:53 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-04-29 00:42:21 +02:00
|
|
|
}
|
|
|
|
else if (block.getType() == Material.TNT) {
|
|
|
|
event.setCancelled(true); // This is the only way I know to avoid the original TNT to be triggered (in case the player is close to it)
|
|
|
|
}
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
if (!Misc.blockBreakSimulate(block, player, true)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final double MAX_DISTANCE_AWAY = 10.0;
|
|
|
|
final int TIME_CONVERSION_FACTOR = 1000;
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
AbilityType ability = AbilityType.BLAST_MINING;
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
/* Check Cooldown */
|
2012-07-03 16:04:04 +02:00
|
|
|
if (!Skills.cooldownOver(profile.getSkillDATS(ability) * TIME_CONVERSION_FACTOR, ability.getCooldown(), player)) {
|
2012-11-13 06:57:57 +01:00
|
|
|
player.sendMessage(LocaleLoader.getString("Skills.TooTired") + ChatColor.YELLOW + " (" + Skills.calculateTimeLeft(profile.getSkillDATS(ability) * TIME_CONVERSION_FACTOR, ability.getCooldown(), player) + "s)");
|
2012-03-11 04:21:53 +01:00
|
|
|
|
2012-04-29 00:42:21 +02:00
|
|
|
return;
|
2012-03-11 04:21:53 +01:00
|
|
|
}
|
2012-04-29 00:42:21 +02:00
|
|
|
|
|
|
|
/* Send message to nearby players */
|
2012-05-01 16:39:50 +02:00
|
|
|
for (Player y : player.getWorld().getPlayers()) {
|
|
|
|
if (y != player && Misc.isNear(player.getLocation(), y.getLocation(), MAX_DISTANCE_AWAY)) {
|
2012-04-29 00:42:21 +02:00
|
|
|
y.sendMessage(ability.getAbilityPlayer(player));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
player.sendMessage(LocaleLoader.getString("Mining.Blast.Boom"));
|
|
|
|
|
|
|
|
/* Create the TNT entity */
|
2012-12-24 22:56:25 +01:00
|
|
|
// TNTPrimed tnt = (TNTPrimed) player.getWorld().spawnEntity(block.getLocation(), EntityType.PRIMED_TNT);
|
2012-04-29 00:42:21 +02:00
|
|
|
TNTPrimed tnt = player.getWorld().spawn(block.getLocation(), TNTPrimed.class);
|
2012-06-06 21:38:44 +02:00
|
|
|
plugin.addToTNTTracker(tnt.getEntityId(), player.getName());
|
2012-04-29 00:42:21 +02:00
|
|
|
tnt.setFuseTicks(0);
|
|
|
|
|
|
|
|
/* Disable the original one */
|
|
|
|
block.setType(Material.AIR);
|
|
|
|
|
2012-07-03 16:04:04 +02:00
|
|
|
profile.setSkillDATS(ability, System.currentTimeMillis()); //Save DATS for Blast Mining
|
|
|
|
profile.setAbilityInformed(ability, false);
|
2012-03-11 04:21:53 +01:00
|
|
|
}
|
2012-03-06 07:48:45 +01:00
|
|
|
}
|