mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 06:06:45 +01:00
115 lines
3.5 KiB
Java
115 lines
3.5 KiB
Java
package com.gmail.nossr50.runnables.skills;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Iterator;
|
|
import java.util.Map;
|
|
import java.util.Map.Entry;
|
|
|
|
import org.bukkit.entity.LivingEntity;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.scheduler.BukkitRunnable;
|
|
|
|
import com.gmail.nossr50.locale.LocaleLoader;
|
|
import com.gmail.nossr50.util.skills.CombatUtils;
|
|
import com.gmail.nossr50.util.skills.ParticleEffectUtils;
|
|
|
|
public class BleedTimerTask extends BukkitRunnable {
|
|
private final static int MAX_BLEED_TICKS = 10;
|
|
private static Map<LivingEntity, Integer> bleedList = new HashMap<LivingEntity, Integer>();
|
|
|
|
@Override
|
|
public void run() {
|
|
for (Iterator<Entry<LivingEntity, Integer>> bleedIterator = bleedList.entrySet().iterator(); bleedIterator.hasNext(); ) {
|
|
Entry<LivingEntity, Integer> entry = bleedIterator.next();
|
|
LivingEntity entity = entry.getKey();
|
|
|
|
if (entry.getValue() <= 0 || !entity.isValid()) {
|
|
bleedIterator.remove();
|
|
continue;
|
|
}
|
|
|
|
int damage;
|
|
|
|
if (entity instanceof Player) {
|
|
damage = 1;
|
|
Player player = (Player) entity;
|
|
|
|
if (!player.isOnline()) {
|
|
continue;
|
|
}
|
|
|
|
// Never kill with Bleeding
|
|
if (player.getHealth() - damage > 0) {
|
|
CombatUtils.dealDamage(player, damage);
|
|
ParticleEffectUtils.playBleedEffect(entity);
|
|
}
|
|
|
|
entry.setValue(entry.getValue() - damage);
|
|
|
|
if (entry.getValue() <= 0) {
|
|
player.sendMessage(LocaleLoader.getString("Swords.Combat.Bleeding.Stopped"));
|
|
}
|
|
}
|
|
else {
|
|
damage = 2;
|
|
|
|
// Anticipate the entity's death to prevent CME because of our EntityDeathEvent listener
|
|
if (entity.getHealth() - damage > 0) {
|
|
entry.setValue(entry.getValue() - 1);
|
|
}
|
|
else {
|
|
bleedIterator.remove();
|
|
}
|
|
|
|
CombatUtils.dealDamage(entity, damage);
|
|
ParticleEffectUtils.playBleedEffect(entity);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Instantly Bleed out a LivingEntity
|
|
*
|
|
* @param entity LivingEntity to bleed out
|
|
*/
|
|
public static void bleedOut(LivingEntity entity) {
|
|
if (bleedList.containsKey(entity)) {
|
|
CombatUtils.dealDamage(entity, bleedList.get(entity) * 2);
|
|
bleedList.remove(entity);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a LivingEntity from the bleedList if it is in it
|
|
*
|
|
* @param entity LivingEntity to remove
|
|
*/
|
|
public static void remove(LivingEntity entity) {
|
|
if (bleedList.containsKey(entity)) {
|
|
bleedList.remove(entity);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a LivingEntity to the bleedList if it is not in it.
|
|
*
|
|
* @param entity LivingEntity to add
|
|
* @param ticks Number of bleeding ticks
|
|
*/
|
|
public static void add(LivingEntity entity, int ticks) {
|
|
int newTicks = ticks;
|
|
|
|
if (bleedList.containsKey(entity)) {
|
|
newTicks += bleedList.get(entity);
|
|
bleedList.put(entity, Math.min(newTicks, MAX_BLEED_TICKS));
|
|
}
|
|
else {
|
|
bleedList.put(entity, Math.min(newTicks, MAX_BLEED_TICKS));
|
|
}
|
|
}
|
|
|
|
public static boolean isBleeding(LivingEntity entity) {
|
|
return bleedList.containsKey(entity);
|
|
}
|
|
}
|