mcMMO/src/main/java/com/gmail/nossr50/skills/runnables/BleedTimer.java

182 lines
5.5 KiB
Java
Raw Normal View History

package com.gmail.nossr50.skills.runnables;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
2013-02-04 17:40:09 +01:00
import org.bukkit.Effect;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import com.gmail.nossr50.mcMMO;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.skills.utilities.CombatTools;
2013-02-20 16:40:47 +01:00
import com.gmail.nossr50.util.ParticleEffectUtils;
2012-04-27 11:47:11 +02:00
public class BleedTimer implements Runnable {
private final static int MAX_BLEED_TICKS = 10;
private static Map<LivingEntity, Integer> bleedList = new HashMap<LivingEntity, Integer>();
private static Map<LivingEntity, Integer> bleedAddList = new HashMap<LivingEntity, Integer>();
private static List<LivingEntity> bleedRemoveList = new ArrayList<LivingEntity>();
private static boolean lock = false;
@Override
public void run() {
updateBleedList();
bleedSimulate();
}
private void bleedSimulate() {
lock = true;
for (Entry<LivingEntity, Integer> entry : bleedList.entrySet()) {
LivingEntity entity = entry.getKey();
if (entry.getValue() <= 0 || entity.isDead()) {
remove(entity);
break;
2012-03-21 03:51:02 +01:00
}
// Player bleed simulation
if (entity instanceof Player) {
Player player = (Player) entity;
if (!player.isOnline()) {
continue;
}
//Never kill with Bleeding
2012-05-01 23:49:11 +02:00
if (player.getHealth() - 1 > 0) {
CombatTools.dealDamage(player, 1);
2013-02-20 16:40:47 +01:00
ParticleEffectUtils.playBleedEffect(player);
}
entry.setValue(entry.getValue() - 1);
2012-04-01 06:11:57 +02:00
if (entry.getValue() <= 0) {
2012-04-27 11:47:11 +02:00
player.sendMessage(LocaleLoader.getString("Swords.Combat.Bleeding.Stopped"));
}
}
// Bleed monsters/animals
2012-03-21 03:51:02 +01:00
else {
CombatTools.dealDamage(entity, 2);
entry.setValue(entry.getValue() - 1);
2013-02-04 17:40:09 +01:00
entity.getWorld().playEffect(entity.getEyeLocation(), Effect.STEP_SOUND, Material.REDSTONE_WIRE);
}
}
// Unlock list now that we are done
lock = false;
}
private void updateBleedList() {
2012-03-21 03:51:02 +01:00
if (lock) {
mcMMO.p.getLogger().warning("mcBleedTimer attempted to update the bleedList but the list was locked!");
}
2012-03-21 03:51:02 +01:00
else {
bleedList.keySet().removeAll(bleedRemoveList);
bleedRemoveList.clear();
2012-03-21 03:51:02 +01:00
bleedList.putAll(bleedAddList);
bleedAddList.clear();
}
}
/**
* Instantly Bleed out a LivingEntity
2012-06-05 15:57:10 +02:00
*
* @param entity LivingEntity to bleed out
*/
public static void bleedOut(LivingEntity entity) {
if (bleedList.containsKey(entity)) {
CombatTools.dealDamage(entity, bleedList.get(entity) * 2);
bleedList.remove(entity);
2012-12-24 22:56:25 +01:00
}
}
/**
* Remove a LivingEntity from the bleedList if it is in it
2012-06-05 15:57:10 +02:00
*
* @param entity LivingEntity to remove
*/
public static void remove(LivingEntity entity) {
2012-03-21 03:51:02 +01:00
if (lock) {
if (!bleedRemoveList.contains(entity)) {
bleedRemoveList.add(entity);
}
}
2012-03-21 03:51:02 +01:00
else {
if (bleedList.containsKey(entity)) {
bleedList.remove(entity);
}
}
}
/**
2012-03-21 03:51:02 +01:00
* Add a LivingEntity to the bleedList if it is not in it.
*
* @param entity LivingEntity to add
2012-05-01 01:32:50 +02:00
* @param ticks Number of bleeding ticks
*/
public static void add(LivingEntity entity, int ticks) {
int newTicks = ticks;
2012-03-21 03:51:02 +01:00
if (lock) {
if (bleedAddList.containsKey(entity)) {
newTicks += bleedAddList.get(entity);
2012-05-01 01:32:50 +02:00
if (newTicks > MAX_BLEED_TICKS) {
newTicks = MAX_BLEED_TICKS;
}
bleedAddList.put(entity, newTicks);
}
else {
if (newTicks > MAX_BLEED_TICKS) {
newTicks = MAX_BLEED_TICKS;
}
bleedAddList.put(entity, newTicks);
}
}
2012-03-21 03:51:02 +01:00
else {
if (bleedList.containsKey(entity)) {
newTicks += bleedList.get(entity);
2012-05-01 01:32:50 +02:00
if (newTicks > MAX_BLEED_TICKS) {
newTicks = MAX_BLEED_TICKS;
}
bleedList.put(entity, newTicks);
// Need to find a better way to ensure that the entity stays in bleedList
// when some ticks are added but already marked for removal.
// Suggestion: Why not use Iterator.remove() and drop the lock boolean?
if (bleedRemoveList.contains(entity)) {
bleedRemoveList.remove(entity);
}
}
else {
if (newTicks > MAX_BLEED_TICKS) {
newTicks = MAX_BLEED_TICKS;
}
bleedList.put(entity, newTicks);
}
}
}
/**
* Check to see if a LivingEntity is in the bleedList
2012-06-05 15:57:10 +02:00
*
* @param entity LivingEntity to check if in the bleedList
* @return true if in the list, false if not
*/
public static boolean contains(LivingEntity entity) {
return (bleedList.containsKey(entity) || bleedAddList.containsKey(entity));
}
}