2019-11-25 06:29:25 +00:00
|
|
|
package com.burnedkirby.TurnBasedMinecraft.common;
|
2018-08-28 06:13:14 +00:00
|
|
|
|
2019-11-25 06:29:25 +00:00
|
|
|
import com.burnedkirby.TurnBasedMinecraft.common.networking.PacketBattleInfo;
|
|
|
|
import com.burnedkirby.TurnBasedMinecraft.common.networking.PacketBattleMessage;
|
2022-05-17 05:47:42 +00:00
|
|
|
import net.minecraft.resources.ResourceKey;
|
|
|
|
import net.minecraft.server.level.ServerPlayer;
|
2023-12-29 08:20:14 +00:00
|
|
|
import net.minecraft.world.InteractionHand;
|
2022-05-17 05:47:42 +00:00
|
|
|
import net.minecraft.world.damagesource.DamageSource;
|
2022-06-08 10:22:45 +00:00
|
|
|
import net.minecraft.world.effect.MobEffects;
|
2022-05-17 05:47:42 +00:00
|
|
|
import net.minecraft.world.entity.Entity;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
|
|
import net.minecraft.world.entity.Mob;
|
|
|
|
import net.minecraft.world.entity.monster.Creeper;
|
|
|
|
import net.minecraft.world.entity.player.Player;
|
|
|
|
import net.minecraft.world.item.*;
|
|
|
|
import net.minecraft.world.level.Level;
|
2023-12-29 08:20:14 +00:00
|
|
|
import net.neoforged.neoforge.common.CreativeModeTabRegistry;
|
|
|
|
import net.neoforged.neoforge.network.PacketDistributor;
|
2018-08-29 06:09:44 +00:00
|
|
|
|
2022-05-17 05:47:42 +00:00
|
|
|
import java.util.*;
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
2018-08-28 06:13:14 +00:00
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
public class Battle {
|
2018-08-29 06:09:44 +00:00
|
|
|
private final int id;
|
|
|
|
private Map<Integer, Combatant> sideA;
|
|
|
|
private Map<Integer, Combatant> sideB;
|
2018-09-04 06:21:49 +00:00
|
|
|
private Map<Integer, Combatant> players;
|
|
|
|
private PriorityQueue<Combatant> turnOrderQueue;
|
2018-09-27 07:44:28 +00:00
|
|
|
private Queue<Combatant> sideAEntryQueue;
|
|
|
|
private Queue<Combatant> sideBEntryQueue;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-08-29 06:09:44 +00:00
|
|
|
private State state;
|
2018-09-04 06:21:49 +00:00
|
|
|
private AtomicInteger playerCount;
|
|
|
|
private AtomicInteger undecidedCount;
|
2018-09-10 05:59:56 +00:00
|
|
|
private long lastInstant;
|
|
|
|
private long timer;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2022-07-21 03:57:10 +00:00
|
|
|
private boolean timerForever;
|
|
|
|
|
2018-09-06 08:08:36 +00:00
|
|
|
private boolean isServer;
|
|
|
|
private boolean battleEnded;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-10-17 09:28:47 +00:00
|
|
|
private BattleManager battleManager;
|
2018-10-27 08:34:02 +00:00
|
|
|
|
|
|
|
private Random random;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-10-19 08:18:02 +00:00
|
|
|
public String debugLog; // TODO remove after freeze bug has been found
|
2019-11-29 04:47:39 +00:00
|
|
|
|
2022-05-17 05:47:42 +00:00
|
|
|
private ResourceKey<Level> dimension;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public enum State {
|
2018-09-10 05:59:56 +00:00
|
|
|
DECISION(0),
|
|
|
|
ACTION(1),
|
|
|
|
DECISION_PLAYER_READY(2);
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-10 05:59:56 +00:00
|
|
|
private int value;
|
|
|
|
private static Map<Integer, State> map = new HashMap<Integer, State>();
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
State(int value) {
|
2018-09-10 05:59:56 +00:00
|
|
|
this.value = value;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public int getValue() {
|
2018-09-10 05:59:56 +00:00
|
|
|
return value;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
static {
|
|
|
|
for (State state : State.values()) {
|
2018-09-10 05:59:56 +00:00
|
|
|
map.put(state.value, state);
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public static State valueOf(int stateType) {
|
2018-09-10 05:59:56 +00:00
|
|
|
return map.get(stateType);
|
|
|
|
}
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public enum Decision {
|
2018-08-29 06:09:44 +00:00
|
|
|
UNDECIDED(0),
|
|
|
|
ATTACK(1),
|
|
|
|
DEFEND(2),
|
|
|
|
FLEE(3),
|
2018-09-11 06:15:31 +00:00
|
|
|
USE_ITEM(4),
|
2020-11-18 06:52:54 +00:00
|
|
|
SWITCH_ITEM(5),
|
|
|
|
CREEPER_WAIT(6),
|
|
|
|
CREEPER_EXPLODE(7);
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-08-29 06:09:44 +00:00
|
|
|
private int value;
|
|
|
|
private static Map<Integer, Decision> map = new HashMap<Integer, Decision>();
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
Decision(int value) {
|
2018-08-29 06:09:44 +00:00
|
|
|
this.value = value;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public int getValue() {
|
2018-08-29 06:09:44 +00:00
|
|
|
return value;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
static {
|
|
|
|
for (Decision decision : Decision.values()) {
|
2018-08-29 06:09:44 +00:00
|
|
|
map.put(decision.value, decision);
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public static Decision valueOf(int decisionType) {
|
2018-08-29 06:09:44 +00:00
|
|
|
return map.get(decisionType);
|
|
|
|
}
|
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
public Battle(BattleManager battleManager, int id, Collection<Entity> sideA, Collection<Entity> sideB, boolean isServer, ResourceKey<Level> dimension) {
|
2018-10-17 09:28:47 +00:00
|
|
|
this.battleManager = battleManager;
|
2018-09-06 08:08:36 +00:00
|
|
|
this.isServer = isServer;
|
2018-08-28 06:13:14 +00:00
|
|
|
this.id = id;
|
2018-10-26 09:10:09 +00:00
|
|
|
this.sideA = new ConcurrentHashMap<Integer, Combatant>();
|
|
|
|
this.sideB = new ConcurrentHashMap<Integer, Combatant>();
|
|
|
|
players = new ConcurrentHashMap<Integer, Combatant>();
|
2018-09-04 06:21:49 +00:00
|
|
|
turnOrderQueue = new PriorityQueue<Combatant>(new Combatant.CombatantComparator());
|
2018-09-27 07:44:28 +00:00
|
|
|
sideAEntryQueue = new ArrayDeque<Combatant>();
|
|
|
|
sideBEntryQueue = new ArrayDeque<Combatant>();
|
2018-09-04 06:21:49 +00:00
|
|
|
playerCount = new AtomicInteger(0);
|
|
|
|
undecidedCount = new AtomicInteger(0);
|
2018-10-27 08:34:02 +00:00
|
|
|
random = new Random();
|
2019-11-29 04:47:39 +00:00
|
|
|
this.dimension = dimension;
|
2022-06-10 07:57:48 +00:00
|
|
|
if (sideA != null) {
|
|
|
|
for (Entity e : sideA) {
|
2019-11-28 07:32:34 +00:00
|
|
|
EntityInfo entityInfo;
|
|
|
|
try {
|
2021-05-21 05:44:31 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getCustomEntityInfoReference(e.getCustomName().getString());
|
2022-06-10 07:57:48 +00:00
|
|
|
} catch (NullPointerException exception) {
|
2019-11-28 07:32:34 +00:00
|
|
|
entityInfo = null;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null) {
|
2018-10-26 04:35:20 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null && !(e instanceof Player) && TurnBasedMinecraftMod.proxy.isServerRunning()) {
|
2018-09-04 06:21:49 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Combatant newCombatant = new Combatant(e, entityInfo);
|
2018-09-05 06:54:06 +00:00
|
|
|
newCombatant.isSideA = true;
|
2018-09-17 06:49:10 +00:00
|
|
|
newCombatant.battleID = getId();
|
2021-05-21 05:44:31 +00:00
|
|
|
this.sideA.put(e.getId(), newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (e instanceof Player) {
|
2018-09-04 06:21:49 +00:00
|
|
|
newCombatant.recalcSpeedOnCompare = true;
|
|
|
|
playerCount.incrementAndGet();
|
2021-05-21 05:44:31 +00:00
|
|
|
players.put(e.getId(), newCombatant);
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
newCombatant.x = e.getX();
|
|
|
|
newCombatant.z = e.getZ();
|
2022-05-17 05:47:42 +00:00
|
|
|
newCombatant.yaw = e.getXRot();
|
|
|
|
newCombatant.pitch = e.getYRot();
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (sideB != null) {
|
|
|
|
for (Entity e : sideB) {
|
2019-11-28 07:32:34 +00:00
|
|
|
EntityInfo entityInfo;
|
|
|
|
try {
|
2021-05-21 05:44:31 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getCustomEntityInfoReference(e.getCustomName().getString());
|
2022-06-10 07:57:48 +00:00
|
|
|
} catch (NullPointerException exception) {
|
2019-11-28 07:32:34 +00:00
|
|
|
entityInfo = null;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null) {
|
2018-10-26 04:35:20 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null && !(e instanceof Player) && TurnBasedMinecraftMod.proxy.isServerRunning()) {
|
2018-09-04 06:21:49 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Combatant newCombatant = new Combatant(e, entityInfo);
|
2018-09-05 06:54:06 +00:00
|
|
|
newCombatant.isSideA = false;
|
2018-09-17 06:49:10 +00:00
|
|
|
newCombatant.battleID = getId();
|
2021-05-21 05:44:31 +00:00
|
|
|
this.sideB.put(e.getId(), newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (e instanceof Player) {
|
2018-09-04 06:21:49 +00:00
|
|
|
newCombatant.recalcSpeedOnCompare = true;
|
|
|
|
playerCount.incrementAndGet();
|
2021-05-21 05:44:31 +00:00
|
|
|
players.put(e.getId(), newCombatant);
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
newCombatant.x = e.getX();
|
|
|
|
newCombatant.z = e.getZ();
|
2022-05-17 05:47:42 +00:00
|
|
|
newCombatant.yaw = e.getXRot();
|
|
|
|
newCombatant.pitch = e.getYRot();
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
if (isServer) {
|
|
|
|
for (Combatant c : this.sideA.values()) {
|
|
|
|
if (c.entityInfo != null) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id, c.entityInfo.category);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (c.entity instanceof Player) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id, "player");
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id);
|
2018-10-18 04:43:26 +00:00
|
|
|
}
|
2018-09-27 09:09:40 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : this.sideB.values()) {
|
|
|
|
if (c.entityInfo != null) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id, c.entityInfo.category);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (c.entity instanceof Player) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id, "player");
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, c.entity.getId(), 0, id);
|
2018-10-18 04:43:26 +00:00
|
|
|
}
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-10 05:59:56 +00:00
|
|
|
lastInstant = System.nanoTime();
|
2018-08-29 06:09:44 +00:00
|
|
|
state = State.DECISION;
|
2018-09-04 06:21:49 +00:00
|
|
|
undecidedCount.set(playerCount.get());
|
2018-09-28 08:45:32 +00:00
|
|
|
timer = TurnBasedMinecraftMod.proxy.getConfig().getDecisionDurationNanos();
|
2022-07-21 03:57:10 +00:00
|
|
|
timerForever = TurnBasedMinecraftMod.proxy.getConfig().isBattleDecisionDurationForever();
|
2018-09-06 08:08:36 +00:00
|
|
|
battleEnded = false;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-06 08:08:36 +00:00
|
|
|
notifyPlayersBattleInfo();
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
public int getId() {
|
2018-08-28 06:13:14 +00:00
|
|
|
return id;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Entity getCombatantEntity(int entityID) {
|
2018-09-06 08:08:36 +00:00
|
|
|
Combatant c = sideA.get(entityID);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (c != null) {
|
2018-09-06 08:08:36 +00:00
|
|
|
return c.entity;
|
|
|
|
}
|
|
|
|
c = sideB.get(entityID);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (c != null) {
|
2018-09-06 08:08:36 +00:00
|
|
|
return c.entity;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public boolean hasCombatant(int entityID) {
|
|
|
|
for (Combatant c : sideAEntryQueue) {
|
|
|
|
if (c.entity.getId() == entityID) {
|
2019-11-29 04:59:41 +00:00
|
|
|
return true;
|
2018-10-18 05:47:40 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideBEntryQueue) {
|
|
|
|
if (c.entity.getId() == entityID) {
|
2019-11-29 04:59:41 +00:00
|
|
|
return true;
|
2018-10-18 05:47:40 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
return sideA.containsKey(entityID) || sideB.containsKey(entityID);
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public boolean hasCombatantInSideA(int entityID) {
|
|
|
|
for (Combatant c : sideAEntryQueue) {
|
|
|
|
if (c.entity.getId() == entityID) {
|
2019-11-29 04:59:41 +00:00
|
|
|
return true;
|
2018-10-18 05:47:40 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
return sideA.containsKey(entityID);
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public void addCombatantToSideA(Entity e) {
|
2019-11-28 07:32:34 +00:00
|
|
|
EntityInfo entityInfo;
|
|
|
|
try {
|
2021-05-21 05:44:31 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getCustomEntityInfoReference(e.getCustomName().getString());
|
2022-06-10 07:57:48 +00:00
|
|
|
} catch (NullPointerException exception) {
|
2019-11-28 07:32:34 +00:00
|
|
|
entityInfo = null;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null) {
|
2018-10-26 04:35:20 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
|
|
|
}
|
|
|
|
|
2022-09-02 10:46:26 +00:00
|
|
|
if (isServer && entityInfo == null && !(e instanceof Player) && TurnBasedMinecraftMod.proxy.isServerRunning()) {
|
2018-09-04 06:21:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Combatant newCombatant = new Combatant(e, entityInfo);
|
2018-09-05 06:54:06 +00:00
|
|
|
newCombatant.isSideA = true;
|
2018-09-17 06:49:10 +00:00
|
|
|
newCombatant.battleID = getId();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (isServer) {
|
2019-11-29 04:59:41 +00:00
|
|
|
sideAEntryQueue.add(newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideA.put(e.getId(), newCombatant);
|
2018-09-27 07:44:28 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (e instanceof Player) {
|
2018-09-04 06:21:49 +00:00
|
|
|
newCombatant.recalcSpeedOnCompare = true;
|
|
|
|
playerCount.incrementAndGet();
|
2021-05-21 05:44:31 +00:00
|
|
|
players.put(e.getId(), newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (state == State.DECISION) {
|
2018-09-04 06:21:49 +00:00
|
|
|
undecidedCount.incrementAndGet();
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
newCombatant.x = e.getX();
|
|
|
|
newCombatant.z = e.getZ();
|
2022-05-17 05:47:42 +00:00
|
|
|
newCombatant.yaw = e.getXRot();
|
|
|
|
newCombatant.pitch = e.getYRot();
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (isServer) {
|
|
|
|
if (newCombatant.entityInfo != null) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id, newCombatant.entityInfo.category);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (newCombatant.entity instanceof Player) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id, "player");
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id);
|
2018-10-18 04:43:26 +00:00
|
|
|
}
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
notifyPlayersBattleInfo();
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public void addCombatantToSideB(Entity e) {
|
2019-11-28 07:32:34 +00:00
|
|
|
EntityInfo entityInfo;
|
|
|
|
try {
|
2021-05-21 05:44:31 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getCustomEntityInfoReference(e.getCustomName().getString());
|
2022-06-10 07:57:48 +00:00
|
|
|
} catch (NullPointerException exception) {
|
2019-11-28 07:32:34 +00:00
|
|
|
entityInfo = null;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entityInfo == null) {
|
2018-10-26 04:35:20 +00:00
|
|
|
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
|
|
|
}
|
|
|
|
|
2022-09-02 10:46:26 +00:00
|
|
|
if (isServer && entityInfo == null && !(e instanceof Player) && TurnBasedMinecraftMod.proxy.isServerRunning()) {
|
2018-09-04 06:21:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Combatant newCombatant = new Combatant(e, entityInfo);
|
2018-09-05 06:54:06 +00:00
|
|
|
newCombatant.isSideA = false;
|
2018-09-17 06:49:10 +00:00
|
|
|
newCombatant.battleID = getId();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (isServer) {
|
2019-11-29 04:59:41 +00:00
|
|
|
sideBEntryQueue.add(newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideB.put(e.getId(), newCombatant);
|
2018-09-27 07:44:28 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (e instanceof Player) {
|
2018-09-04 06:21:49 +00:00
|
|
|
newCombatant.recalcSpeedOnCompare = true;
|
|
|
|
playerCount.incrementAndGet();
|
2021-05-21 05:44:31 +00:00
|
|
|
players.put(e.getId(), newCombatant);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (state == State.DECISION) {
|
2018-09-04 06:21:49 +00:00
|
|
|
undecidedCount.incrementAndGet();
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
newCombatant.x = e.getX();
|
|
|
|
newCombatant.z = e.getZ();
|
2022-05-17 05:47:42 +00:00
|
|
|
newCombatant.yaw = e.getXRot();
|
|
|
|
newCombatant.pitch = e.getYRot();
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (isServer) {
|
|
|
|
if (newCombatant.entityInfo != null) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id, newCombatant.entityInfo.category);
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (newCombatant.entity instanceof Player) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id, "player");
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ENTERED, newCombatant.entity.getId(), 0, id);
|
2018-10-18 04:43:26 +00:00
|
|
|
}
|
2018-09-14 05:14:10 +00:00
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
notifyPlayersBattleInfo();
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public void clearCombatants() {
|
2018-08-29 06:09:44 +00:00
|
|
|
sideA.clear();
|
|
|
|
sideB.clear();
|
2018-09-27 09:09:40 +00:00
|
|
|
sideAEntryQueue.clear();
|
|
|
|
sideBEntryQueue.clear();
|
2018-08-30 07:15:20 +00:00
|
|
|
players.clear();
|
2018-09-04 06:21:49 +00:00
|
|
|
playerCount.set(0);
|
|
|
|
undecidedCount.set(0);
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Collection<Combatant> getSideA() {
|
2018-08-29 06:09:44 +00:00
|
|
|
return sideA.values();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Collection<Combatant> getSideB() {
|
2018-08-29 06:09:44 +00:00
|
|
|
return sideB.values();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Set<Map.Entry<Integer, Combatant>> getSideAEntrySet() {
|
2018-09-11 06:15:31 +00:00
|
|
|
return sideA.entrySet();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Set<Map.Entry<Integer, Combatant>> getSideBEntrySet() {
|
2018-09-11 06:15:31 +00:00
|
|
|
return sideB.entrySet();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Collection<Integer> getSideAIDs() {
|
2018-08-29 06:09:44 +00:00
|
|
|
Collection<Integer> sideAIDs = new ArrayList<Integer>(sideA.size());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant combatant : sideA.values()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideAIDs.add(combatant.entity.getId());
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
|
|
|
return sideAIDs;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Collection<Integer> getSideBIDs() {
|
2018-08-29 06:09:44 +00:00
|
|
|
Collection<Integer> sideBIDs = new ArrayList<Integer>(sideB.size());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant combatant : sideB.values()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideBIDs.add(combatant.entity.getId());
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
|
|
|
return sideBIDs;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public Combatant getCombatantByID(int entityID) {
|
2018-08-29 06:09:44 +00:00
|
|
|
Combatant combatant = sideA.get(entityID);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (combatant == null) {
|
2018-08-29 06:09:44 +00:00
|
|
|
combatant = sideB.get(entityID);
|
|
|
|
}
|
|
|
|
return combatant;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public void setDecision(int entityID, Decision decision, int targetIDOrItemID) {
|
|
|
|
if (state != State.DECISION) {
|
2018-08-29 06:09:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-09-04 06:21:49 +00:00
|
|
|
Combatant combatant = players.get(entityID);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (combatant == null || combatant.decision != Decision.UNDECIDED) {
|
2018-09-04 06:21:49 +00:00
|
|
|
return;
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2018-09-04 06:21:49 +00:00
|
|
|
combatant.decision = decision;
|
2022-06-10 07:57:48 +00:00
|
|
|
if (decision == Decision.ATTACK) {
|
2018-09-05 06:54:06 +00:00
|
|
|
combatant.targetEntityID = targetIDOrItemID;
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (decision == Decision.USE_ITEM || decision == Decision.SWITCH_ITEM) {
|
2018-09-05 06:54:06 +00:00
|
|
|
combatant.itemToUse = targetIDOrItemID;
|
|
|
|
}
|
2018-09-04 06:21:49 +00:00
|
|
|
undecidedCount.decrementAndGet();
|
2018-08-29 06:09:44 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public State getState() {
|
2018-08-29 06:09:44 +00:00
|
|
|
return state;
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public void setState(State state) {
|
2018-09-10 05:59:56 +00:00
|
|
|
this.state = state;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public long getTimerSeconds() {
|
2022-07-21 03:57:10 +00:00
|
|
|
return timer / 1000000000L;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getTimerNanos() {
|
|
|
|
return timer;
|
2018-09-10 05:59:56 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
public int getSize() {
|
2018-10-27 04:58:19 +00:00
|
|
|
int size = sideA.size() + sideB.size();
|
2019-11-29 04:59:41 +00:00
|
|
|
size += sideAEntryQueue.size();
|
|
|
|
size += sideBEntryQueue.size();
|
2018-10-27 04:58:19 +00:00
|
|
|
return size;
|
2018-09-14 03:44:45 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
protected void notifyPlayersBattleInfo() {
|
|
|
|
if (!isServer) {
|
2018-08-30 07:15:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-07-21 05:01:34 +00:00
|
|
|
PacketBattleInfo infoPacket = new PacketBattleInfo(getSideAIDs(), getSideBIDs(), timer, TurnBasedMinecraftMod.proxy.getConfig().getDecisionDurationNanos(), !TurnBasedMinecraftMod.proxy.getConfig().isBattleDecisionDurationForever());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant p : players.values()) {
|
2024-01-16 07:55:13 +00:00
|
|
|
PacketDistributor.PLAYER.with((ServerPlayer)p.entity).send(infoPacket);
|
2018-08-30 07:15:20 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
protected void sendMessageToAllPlayers(PacketBattleMessage.MessageType type, int from, int to, int amount) {
|
2018-10-27 04:58:19 +00:00
|
|
|
sendMessageToAllPlayers(type, from, to, amount, new String());
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
protected void sendMessageToAllPlayers(PacketBattleMessage.MessageType type, int from, int to, int amount, String custom) {
|
|
|
|
if (!isServer) {
|
2018-09-07 07:41:22 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-11-29 04:47:39 +00:00
|
|
|
PacketBattleMessage packet = new PacketBattleMessage(type, from, to, dimension, amount, custom);
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant p : players.values()) {
|
|
|
|
if (p.entity.isAlive()) {
|
2024-01-16 07:55:13 +00:00
|
|
|
PacketDistributor.PLAYER.with((ServerPlayer)p.entity).send(packet);
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-07 07:41:22 +00:00
|
|
|
/**
|
|
|
|
* @return true if at least one combatant was removed
|
|
|
|
*/
|
2022-06-10 07:57:48 +00:00
|
|
|
private boolean healthCheck() {
|
2018-10-18 04:34:57 +00:00
|
|
|
boolean didRemove = false;
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Iterator<Map.Entry<Integer, Combatant>> iter = sideA.entrySet().iterator(); iter.hasNext(); ) {
|
2018-10-18 04:34:57 +00:00
|
|
|
Map.Entry<Integer, Combatant> entry = iter.next();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (!entry.getValue().entity.isAlive()) {
|
2018-10-18 04:34:57 +00:00
|
|
|
iter.remove();
|
|
|
|
players.remove(entry.getKey());
|
|
|
|
removeCombatantPostRemove(entry.getValue());
|
|
|
|
didRemove = true;
|
2018-10-26 09:10:09 +00:00
|
|
|
String category = null;
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entry.getValue().entityInfo != null) {
|
2018-10-18 04:34:57 +00:00
|
|
|
category = entry.getValue().entityInfo.category;
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (entry.getValue().entity instanceof Player) {
|
2018-09-27 09:09:40 +00:00
|
|
|
category = "player";
|
|
|
|
}
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DIED, entry.getValue().entity.getId(), 0, 0, category);
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Iterator<Map.Entry<Integer, Combatant>> iter = sideB.entrySet().iterator(); iter.hasNext(); ) {
|
2018-10-18 04:34:57 +00:00
|
|
|
Map.Entry<Integer, Combatant> entry = iter.next();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (!entry.getValue().entity.isAlive()) {
|
2018-10-18 04:34:57 +00:00
|
|
|
iter.remove();
|
|
|
|
players.remove(entry.getKey());
|
|
|
|
removeCombatantPostRemove(entry.getValue());
|
|
|
|
didRemove = true;
|
2018-10-26 09:10:09 +00:00
|
|
|
String category = null;
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entry.getValue().entityInfo != null) {
|
2018-10-18 04:34:57 +00:00
|
|
|
category = entry.getValue().entityInfo.category;
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (entry.getValue().entity instanceof Player) {
|
2018-09-27 09:09:40 +00:00
|
|
|
category = "player";
|
|
|
|
}
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DIED, entry.getValue().entity.getId(), 0, 0, category);
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (players.isEmpty() || sideA.isEmpty() || sideB.isEmpty()) {
|
2018-09-07 07:41:22 +00:00
|
|
|
battleEnded = true;
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (didRemove) {
|
2018-09-19 06:00:38 +00:00
|
|
|
resetUndecidedCount();
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-07 07:41:22 +00:00
|
|
|
return didRemove;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-27 09:09:40 +00:00
|
|
|
/**
|
|
|
|
* @return true if at least one combatant was removed
|
|
|
|
*/
|
2022-06-10 07:57:48 +00:00
|
|
|
private boolean isCreativeCheck() {
|
2018-10-18 04:34:57 +00:00
|
|
|
boolean didRemove = false;
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Iterator<Map.Entry<Integer, Combatant>> iter = players.entrySet().iterator(); iter.hasNext(); ) {
|
2018-10-18 04:34:57 +00:00
|
|
|
Map.Entry<Integer, Combatant> entry = iter.next();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (entry.getValue().entity != null && ((Player) entry.getValue().entity).isCreative()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.BECAME_CREATIVE, entry.getValue().entity.getId(), 0, 0);
|
2018-10-18 04:34:57 +00:00
|
|
|
iter.remove();
|
|
|
|
sideA.remove(entry.getKey());
|
|
|
|
sideB.remove(entry.getKey());
|
|
|
|
playerCount.decrementAndGet();
|
|
|
|
removeCombatantPostRemove(entry.getValue());
|
|
|
|
didRemove = true;
|
2018-09-14 03:44:45 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (didRemove) {
|
2018-09-19 06:00:38 +00:00
|
|
|
resetUndecidedCount();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
2018-09-19 06:00:38 +00:00
|
|
|
return didRemove;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
private void resetUndecidedCount() {
|
|
|
|
if (state == State.DECISION) {
|
2018-09-19 06:00:38 +00:00
|
|
|
undecidedCount.set(0);
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant p : players.values()) {
|
|
|
|
if (p.decision == Decision.UNDECIDED) {
|
2018-09-19 06:00:38 +00:00
|
|
|
undecidedCount.incrementAndGet();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-14 03:44:45 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
private void enforceFreezePositions() {
|
|
|
|
for (Combatant c : sideA.values()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
c.entity.setPos(c.x, c.entity.getY(), c.z);
|
|
|
|
c.entity.setYBodyRot(c.yaw);
|
|
|
|
c.entity.setYHeadRot(c.pitch);
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideB.values()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
c.entity.setPos(c.x, c.entity.getY(), c.z);
|
|
|
|
c.entity.setYBodyRot(c.yaw);
|
|
|
|
c.entity.setYHeadRot(c.pitch);
|
2018-09-18 06:56:06 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
private void removeCombatant(Combatant c) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideA.remove(c.entity.getId());
|
|
|
|
sideB.remove(c.entity.getId());
|
2022-06-10 07:57:48 +00:00
|
|
|
if (players.remove(c.entity.getId()) != null) {
|
2018-10-17 09:28:47 +00:00
|
|
|
playerCount.decrementAndGet();
|
2018-10-18 04:34:57 +00:00
|
|
|
}
|
|
|
|
removeCombatantPostRemove(c);
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
private void removeCombatantPostRemove(Combatant c) {
|
|
|
|
if (c.entity instanceof Player) {
|
2024-01-16 07:55:13 +00:00
|
|
|
PacketDistributor.PLAYER.with((ServerPlayer)c.entity).send(new PacketBattleMessage(PacketBattleMessage.MessageType.ENDED, 0, 0, dimension, 0));
|
2018-10-17 09:28:47 +00:00
|
|
|
}
|
|
|
|
battleManager.addRecentlyLeftBattle(c);
|
|
|
|
}
|
2019-11-29 04:47:39 +00:00
|
|
|
|
|
|
|
public void forceRemoveCombatant(EntityIDDimPair e) {
|
|
|
|
sideA.remove(e.id);
|
|
|
|
sideB.remove(e.id);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (players.remove(e.id) != null) {
|
2019-11-29 04:47:39 +00:00
|
|
|
playerCount.decrementAndGet();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Iterator<Combatant> iter = sideAEntryQueue.iterator(); iter.hasNext(); ) {
|
2019-11-29 04:47:39 +00:00
|
|
|
Combatant c = iter.next();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (c.entity.getId() == e.id) {
|
2019-11-29 04:47:39 +00:00
|
|
|
iter.remove();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Iterator<Combatant> iter = sideBEntryQueue.iterator(); iter.hasNext(); ) {
|
2019-11-29 04:47:39 +00:00
|
|
|
Combatant c = iter.next();
|
2022-06-10 07:57:48 +00:00
|
|
|
if (c.entity.getId() == e.id) {
|
2019-11-29 04:47:39 +00:00
|
|
|
iter.remove();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-29 05:46:45 +00:00
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
private void setDecisionState() {
|
|
|
|
for (Combatant c : sideA.values()) {
|
2018-10-29 05:46:45 +00:00
|
|
|
c.decision = Decision.UNDECIDED;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideB.values()) {
|
2018-10-29 05:46:45 +00:00
|
|
|
c.decision = Decision.UNDECIDED;
|
|
|
|
}
|
|
|
|
state = State.DECISION;
|
|
|
|
undecidedCount.set(players.size());
|
|
|
|
}
|
|
|
|
|
2018-09-10 05:59:56 +00:00
|
|
|
/**
|
|
|
|
* @return True if battle has ended
|
|
|
|
*/
|
2022-06-10 07:57:48 +00:00
|
|
|
public boolean update() {
|
|
|
|
if (!isServer) {
|
2018-09-27 07:44:28 +00:00
|
|
|
return false;
|
2022-06-10 07:57:48 +00:00
|
|
|
} else if (battleEnded) {
|
2018-10-17 09:28:47 +00:00
|
|
|
Collection<Combatant> combatants = new ArrayList<Combatant>();
|
|
|
|
combatants.addAll(sideA.values());
|
|
|
|
combatants.addAll(sideB.values());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : combatants) {
|
2018-10-17 09:28:47 +00:00
|
|
|
removeCombatant(c);
|
|
|
|
}
|
2018-09-10 05:59:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
long nextInstant = System.nanoTime();
|
|
|
|
long dt = nextInstant - lastInstant;
|
|
|
|
lastInstant = nextInstant;
|
2022-06-10 07:57:48 +00:00
|
|
|
try {
|
2018-10-29 05:46:45 +00:00
|
|
|
return update(dt);
|
2022-06-10 07:57:48 +00:00
|
|
|
} catch (Throwable t) {
|
2018-10-29 05:46:45 +00:00
|
|
|
TurnBasedMinecraftMod.logger.error("Update: ", t);
|
|
|
|
setDecisionState();
|
|
|
|
boolean changed = false;
|
2022-06-10 07:57:48 +00:00
|
|
|
if (healthCheck()) {
|
2018-10-29 05:46:45 +00:00
|
|
|
changed = true;
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (isCreativeCheck()) {
|
2018-10-29 05:46:45 +00:00
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.TURN_END, 0, 0, 1);
|
2022-06-10 07:57:48 +00:00
|
|
|
if (changed) {
|
2018-10-29 05:46:45 +00:00
|
|
|
notifyPlayersBattleInfo();
|
|
|
|
}
|
|
|
|
return battleEnded;
|
|
|
|
}
|
2018-09-10 05:59:56 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
private boolean update(final long dt) {
|
|
|
|
if (battleEnded) {
|
2018-10-17 09:28:47 +00:00
|
|
|
Collection<Combatant> combatants = new ArrayList<Combatant>();
|
|
|
|
combatants.addAll(sideA.values());
|
|
|
|
combatants.addAll(sideB.values());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : combatants) {
|
2018-10-17 09:28:47 +00:00
|
|
|
removeCombatant(c);
|
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-09-27 09:09:40 +00:00
|
|
|
boolean combatantsChanged = false;
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c = sideAEntryQueue.poll(); c != null; c = sideAEntryQueue.poll()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideA.put(c.entity.getId(), c);
|
2019-11-29 04:59:41 +00:00
|
|
|
combatantsChanged = true;
|
2018-09-27 07:44:28 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c = sideBEntryQueue.poll(); c != null; c = sideBEntryQueue.poll()) {
|
2021-05-21 05:44:31 +00:00
|
|
|
sideB.put(c.entity.getId(), c);
|
2019-11-29 04:59:41 +00:00
|
|
|
combatantsChanged = true;
|
2018-09-27 07:44:28 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
2018-09-18 06:56:06 +00:00
|
|
|
enforceFreezePositions();
|
|
|
|
}
|
2020-11-18 06:52:54 +00:00
|
|
|
defuseCreepers();
|
2022-06-10 07:57:48 +00:00
|
|
|
switch (state) {
|
|
|
|
case DECISION:
|
|
|
|
timer -= dt;
|
2022-07-21 03:57:10 +00:00
|
|
|
if ((!timerForever && timer <= 0) || undecidedCount.get() <= 0) {
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
// picking decision for sideA non-players
|
|
|
|
if (!(c.entity instanceof Player) && c.decision == Decision.UNDECIDED && c.entityInfo != null) {
|
|
|
|
if (c.entity instanceof Creeper) {
|
|
|
|
if (c.creeperTurns++ < TurnBasedMinecraftMod.proxy.getConfig().getCreeperExplodeTurn()) {
|
|
|
|
c.decision = Decision.CREEPER_WAIT;
|
|
|
|
} else {
|
|
|
|
c.decision = Decision.CREEPER_EXPLODE;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int percentage = random.nextInt(100);
|
|
|
|
if (percentage < c.entityInfo.decisionAttack) {
|
|
|
|
c.decision = Decision.ATTACK;
|
|
|
|
} else if (percentage - c.entityInfo.decisionAttack < c.entityInfo.decisionDefend) {
|
|
|
|
c.decision = Decision.DEFEND;
|
|
|
|
} else if (percentage - c.entityInfo.decisionAttack - c.entityInfo.decisionDefend < c.entityInfo.decisionFlee) {
|
|
|
|
c.decision = Decision.FLEE;
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
if (!(c.entity instanceof Player) && c.decision == Decision.UNDECIDED && c.entityInfo != null) {
|
|
|
|
if (c.entity instanceof Creeper) {
|
|
|
|
if (c.creeperTurns++ < TurnBasedMinecraftMod.proxy.getConfig().getCreeperExplodeTurn()) {
|
|
|
|
c.decision = Decision.CREEPER_WAIT;
|
|
|
|
} else {
|
|
|
|
c.decision = Decision.CREEPER_EXPLODE;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int percentage = random.nextInt(100);
|
|
|
|
if (percentage < c.entityInfo.decisionAttack) {
|
|
|
|
c.decision = Decision.ATTACK;
|
|
|
|
} else if (percentage - c.entityInfo.decisionAttack < c.entityInfo.decisionDefend) {
|
|
|
|
c.decision = Decision.DEFEND;
|
|
|
|
} else if (percentage - c.entityInfo.decisionAttack - c.entityInfo.decisionDefend < c.entityInfo.decisionFlee) {
|
|
|
|
c.decision = Decision.FLEE;
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
state = State.ACTION;
|
|
|
|
timer = TurnBasedMinecraftMod.proxy.getConfig().getDecisionDurationNanos();
|
2022-07-21 03:57:10 +00:00
|
|
|
timerForever = TurnBasedMinecraftMod.proxy.getConfig().isBattleDecisionDurationForever();
|
2022-06-10 07:57:48 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.TURN_BEGIN, 0, 0, 0);
|
|
|
|
turnOrderQueue.clear();
|
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
turnOrderQueue.add(c);
|
|
|
|
}
|
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
turnOrderQueue.add(c);
|
|
|
|
}
|
|
|
|
return update(0);
|
|
|
|
} else {
|
|
|
|
if (healthCheck()) {
|
|
|
|
combatantsChanged = true;
|
|
|
|
}
|
|
|
|
if (isCreativeCheck()) {
|
|
|
|
combatantsChanged = true;
|
|
|
|
}
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
break;
|
|
|
|
case ACTION: {
|
|
|
|
do {
|
|
|
|
// depend on BattleUpdater's tick limit as rate-of-update for doing Battle decisions
|
|
|
|
Combatant next = turnOrderQueue.poll();
|
|
|
|
if (next == null || !next.entity.isAlive()) {
|
|
|
|
break;
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
2019-10-28 02:49:28 +00:00
|
|
|
|
2021-05-21 05:44:31 +00:00
|
|
|
debugLog = next.entity.getDisplayName().getString();
|
2019-10-28 02:49:28 +00:00
|
|
|
|
2018-09-13 05:52:48 +00:00
|
|
|
next.remainingDefenses = 0;
|
2018-10-29 05:46:45 +00:00
|
|
|
|
|
|
|
Decision decision = next.decision;
|
|
|
|
next.decision = Decision.UNDECIDED;
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
switch (decision) {
|
|
|
|
case UNDECIDED:
|
|
|
|
debugLog += " undecided";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DID_NOTHING, next.entity.getId(), 0, 0);
|
|
|
|
break;
|
|
|
|
case ATTACK:
|
|
|
|
debugLog += " attack";
|
|
|
|
Combatant target = null;
|
|
|
|
if (next.entity instanceof Player) {
|
|
|
|
debugLog += " as player";
|
|
|
|
target = sideA.get(next.targetEntityID);
|
|
|
|
if (target == null) {
|
|
|
|
target = sideB.get(next.targetEntityID);
|
2018-09-17 06:49:10 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (target == null || !target.entity.isAlive() || target == next) {
|
|
|
|
continue;
|
2018-09-17 06:49:10 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
ItemStack heldItemStack = ((Player) next.entity).getMainHandItem();
|
|
|
|
if (heldItemStack.getItem() instanceof BowItem) {
|
|
|
|
debugLog += " with bow";
|
|
|
|
if (Utility.doesPlayerHaveArrows((Player) next.entity)) {
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final Entity targetEntity = target.entity;
|
|
|
|
final float yawDirection = Utility.yawDirection(next.entity.getX(), next.entity.getZ(), target.entity.getX(), target.entity.getZ());
|
|
|
|
final float pitchDirection = Utility.pitchDirection(next.entity.getX(), next.entity.getY(), next.entity.getZ(), target.entity.getX(), target.entity.getY(), target.entity.getZ());
|
|
|
|
final int randomTimeLeft = random.nextInt(heldItemStack.getItem().getUseDuration(heldItemStack) / 3);
|
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
|
|
|
next.yaw = yawDirection;
|
|
|
|
next.pitch = pitchDirection;
|
2018-10-27 08:34:02 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
// have player look at attack target
|
|
|
|
((ServerPlayer) nextEntity).connection.teleport(nextEntity.getX(), nextEntity.getY(), nextEntity.getZ(), yawDirection, pitchDirection);
|
|
|
|
BowItem itemBow = (BowItem) heldItemStack.getItem();
|
|
|
|
TurnBasedMinecraftMod.proxy.getAttackerViaBowSet().add(new AttackerViaBow(nextEntity, getId()));
|
2023-09-19 09:49:49 +00:00
|
|
|
itemBow.releaseUsing(((Player) nextEntity).getMainHandItem(), nextEntity.level(), (LivingEntity) nextEntity, randomTimeLeft);
|
2022-06-10 07:57:48 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.FIRED_ARROW, nextEntity.getId(), targetEntity.getId(), 0);
|
|
|
|
} else {
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.BOW_NO_AMMO, next.entity.getId(), 0, 0);
|
2018-10-27 08:34:02 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
continue;
|
2023-12-29 08:20:14 +00:00
|
|
|
} else if (heldItemStack.getItem() instanceof CrossbowItem) {
|
|
|
|
debugLog += " with crossbow";
|
|
|
|
if (Utility.doesPlayerHaveArrows((Player) next.entity)) {
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final Entity targetEntity = target.entity;
|
|
|
|
final float yawDirection = Utility.yawDirection(next.entity.getX(), next.entity.getZ(), target.entity.getX(), target.entity.getZ());
|
|
|
|
final float pitchDirection = Utility.pitchDirection(next.entity.getX(), next.entity.getY(), next.entity.getZ(), target.entity.getX(), target.entity.getY(), target.entity.getZ());
|
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
|
|
|
next.yaw = yawDirection;
|
|
|
|
next.pitch = pitchDirection;
|
|
|
|
}
|
|
|
|
// have player look at attack target
|
|
|
|
((ServerPlayer) nextEntity).connection.teleport(nextEntity.getX(), nextEntity.getY(), nextEntity.getZ(), yawDirection, pitchDirection);
|
|
|
|
CrossbowItem itemCrossbow = (CrossbowItem) heldItemStack.getItem();
|
|
|
|
TurnBasedMinecraftMod.proxy.getAttackerViaBowSet().add(new AttackerViaBow(nextEntity, getId()));
|
|
|
|
itemCrossbow.releaseUsing(heldItemStack, nextEntity.level(), (LivingEntity)nextEntity, -100);
|
|
|
|
itemCrossbow.use(nextEntity.level(), (Player)nextEntity, InteractionHand.MAIN_HAND);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.FIRED_ARROW, nextEntity.getId(), targetEntity.getId(), 0);
|
|
|
|
} else {
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.CROSSBOW_NO_AMMO, next.entity.getId(), 0, 0);
|
|
|
|
}
|
|
|
|
continue;
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
debugLog += " without bow";
|
|
|
|
int hitChance = TurnBasedMinecraftMod.proxy.getConfig().getPlayerAttackProbability();
|
|
|
|
if (target.entity instanceof Player) {
|
|
|
|
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
|
|
|
} else {
|
|
|
|
hitChance = hitChance * (100 - target.entityInfo.evasion) / 100;
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (hitChance < TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage()) {
|
|
|
|
hitChance = TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage();
|
|
|
|
}
|
|
|
|
if (random.nextInt(100) < hitChance) {
|
|
|
|
if (target.remainingDefenses <= 0) {
|
|
|
|
debugLog += " hit success";
|
|
|
|
// attack
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final Entity targetEntity = target.entity;
|
|
|
|
final EntityInfo targetEntityInfo = target.entityInfo;
|
|
|
|
final float yawDirection = Utility.yawDirection(next.entity.getX(), next.entity.getZ(), target.entity.getX(), target.entity.getZ());
|
|
|
|
final float pitchDirection = Utility.pitchDirection(next.entity.getX(), next.entity.getY(), next.entity.getZ(), target.entity.getX(), target.entity.getY(), target.entity.getZ());
|
|
|
|
final boolean defenseDamageTriggered;
|
|
|
|
if (!(targetEntity instanceof Player) && targetEntityInfo.defenseDamage > 0 && targetEntityInfo.defenseDamageProbability > 0) {
|
|
|
|
if (random.nextInt(100) < targetEntityInfo.defenseDamageProbability) {
|
|
|
|
defenseDamageTriggered = true;
|
|
|
|
} else {
|
|
|
|
defenseDamageTriggered = false;
|
2018-10-29 05:46:45 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
defenseDamageTriggered = false;
|
|
|
|
}
|
|
|
|
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
|
|
|
next.yaw = yawDirection;
|
|
|
|
next.pitch = pitchDirection;
|
2018-10-17 08:15:23 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
// have player look at attack target
|
|
|
|
((ServerPlayer) nextEntity).connection.teleport(nextEntity.getX(), nextEntity.getY(), nextEntity.getZ(), yawDirection, pitchDirection);
|
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(nextEntity);
|
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingDamage(0);
|
|
|
|
((Player) nextEntity).attack(targetEntity);
|
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ATTACK, nextEntity.getId(), targetEntity.getId(), TurnBasedMinecraftMod.proxy.getAttackingDamage());
|
|
|
|
if (defenseDamageTriggered) {
|
|
|
|
// defense damage
|
2023-09-19 09:49:49 +00:00
|
|
|
DamageSource defenseDamageSource = targetEntity.damageSources().mobAttack((LivingEntity) targetEntity);
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(targetEntity);
|
|
|
|
nextEntity.invulnerableTime = 0;
|
|
|
|
nextEntity.hurt(defenseDamageSource, targetEntityInfo.defenseDamage);
|
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DEFENSE_DAMAGE, targetEntity.getId(), nextEntity.getId(), targetEntityInfo.defenseDamage);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debugLog += " hit blocked";
|
|
|
|
// blocked
|
|
|
|
--target.remainingDefenses;
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DEFEND, target.entity.getId(), next.entity.getId(), 0);
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
debugLog += " hit missed";
|
|
|
|
// miss
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.MISS, next.entity.getId(), target.entity.getId(), 0);
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
debugLog += " as mob";
|
|
|
|
LivingEntity attackTarget = ((Mob) next.entity).getTarget();
|
|
|
|
if (attackTarget != null && hasCombatant(attackTarget.getId())) {
|
|
|
|
debugLog += " to targeted";
|
|
|
|
target = getCombatantByID(attackTarget.getId());
|
|
|
|
} else {
|
|
|
|
debugLog += " to random other side";
|
|
|
|
if (next.isSideA) {
|
|
|
|
if (sideB.size() > 0) {
|
|
|
|
int randomTargetIndex = random.nextInt(sideB.size());
|
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
if (randomTargetIndex-- == 0) {
|
|
|
|
target = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (sideA.size() > 0) {
|
|
|
|
int randomTargetIndex = random.nextInt(sideA.size());
|
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
if (randomTargetIndex-- == 0) {
|
|
|
|
target = c;
|
|
|
|
break;
|
|
|
|
}
|
2018-10-29 05:46:45 +00:00
|
|
|
}
|
2018-10-17 08:15:23 +00:00
|
|
|
}
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (target == null || !target.entity.isAlive() || target == next) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int hitChance = next.entityInfo.attackProbability;
|
|
|
|
if (target.entity instanceof Player) {
|
|
|
|
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
|
|
|
} else {
|
|
|
|
hitChance = hitChance * (100 - target.entityInfo.evasion) / 100;
|
|
|
|
}
|
|
|
|
if (hitChance < TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage()) {
|
|
|
|
hitChance = TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage();
|
|
|
|
}
|
|
|
|
if (random.nextInt(100) < hitChance) {
|
|
|
|
if (target.remainingDefenses <= 0) {
|
|
|
|
debugLog += " hit success";
|
2023-09-19 09:49:49 +00:00
|
|
|
DamageSource damageSource = next.entity.damageSources().mobAttack((LivingEntity) next.entity);
|
2022-06-10 07:57:48 +00:00
|
|
|
int damageAmount = next.entityInfo.attackPower;
|
|
|
|
if (next.entityInfo.attackVariance > 0) {
|
|
|
|
damageAmount += random.nextInt(next.entityInfo.attackVariance * 2 + 1) - next.entityInfo.attackVariance;
|
2018-10-27 07:53:04 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (damageAmount < 0) {
|
|
|
|
damageAmount = 0;
|
2018-10-27 07:53:04 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
// attack
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final EntityInfo nextEntityInfo = next.entityInfo;
|
|
|
|
final Entity targetEntity = target.entity;
|
|
|
|
final EntityInfo targetEntityInfo = target.entityInfo;
|
|
|
|
final int finalDamageAmount = damageAmount;
|
|
|
|
final boolean defenseDamageTriggered;
|
|
|
|
final boolean attackEffectTriggered;
|
2018-10-27 07:53:04 +00:00
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
if (!(targetEntity instanceof Player) && targetEntityInfo.defenseDamage > 0 && targetEntityInfo.defenseDamageProbability > 0) {
|
|
|
|
if (random.nextInt(100) < targetEntityInfo.defenseDamageProbability) {
|
|
|
|
defenseDamageTriggered = true;
|
|
|
|
} else {
|
|
|
|
defenseDamageTriggered = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
defenseDamageTriggered = false;
|
2018-10-27 07:53:04 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
|
|
|
|
if (nextEntityInfo.attackEffect != EntityInfo.Effect.UNKNOWN && nextEntityInfo.attackEffectProbability > 0) {
|
|
|
|
if (random.nextInt(100) < nextEntityInfo.attackEffectProbability) {
|
|
|
|
attackEffectTriggered = true;
|
|
|
|
} else {
|
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
|
|
|
} else {
|
2018-10-27 07:53:04 +00:00
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(nextEntity);
|
|
|
|
targetEntity.invulnerableTime = 0;
|
|
|
|
targetEntity.hurt(damageSource, finalDamageAmount);
|
2018-09-28 08:45:32 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
2022-06-10 07:57:48 +00:00
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ATTACK, nextEntity.getId(), targetEntity.getId(), finalDamageAmount);
|
|
|
|
if (defenseDamageTriggered) {
|
|
|
|
// defense damage
|
2023-09-19 09:49:49 +00:00
|
|
|
DamageSource defenseDamageSource = targetEntity.damageSources().mobAttack((LivingEntity) targetEntity);
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(targetEntity);
|
|
|
|
nextEntity.invulnerableTime = 0;
|
|
|
|
nextEntity.hurt(defenseDamageSource, targetEntityInfo.defenseDamage);
|
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DEFENSE_DAMAGE, targetEntity.getId(), nextEntity.getId(), targetEntityInfo.defenseDamage);
|
|
|
|
}
|
|
|
|
// attack effect
|
|
|
|
if (attackEffectTriggered) {
|
|
|
|
nextEntityInfo.attackEffect.applyEffectToEntity((LivingEntity) targetEntity);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.WAS_AFFECTED, nextEntity.getId(), targetEntity.getId(), 0, nextEntityInfo.attackEffect.getAffectedString());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debugLog += " hit blocked";
|
|
|
|
// blocked
|
|
|
|
--target.remainingDefenses;
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DEFEND, target.entity.getId(), next.entity.getId(), 0);
|
2019-10-28 02:49:28 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
debugLog += " hit missed";
|
|
|
|
// miss
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.MISS, next.entity.getId(), target.entity.getId(), 0);
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
break;
|
|
|
|
case DEFEND:
|
|
|
|
debugLog += " defend";
|
|
|
|
next.remainingDefenses = TurnBasedMinecraftMod.proxy.getConfig().getDefenseDuration();
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.DEFENDING, next.entity.getId(), 0, 0);
|
|
|
|
break;
|
|
|
|
case FLEE:
|
|
|
|
debugLog += " flee";
|
|
|
|
int fastestEnemySpeed = 0;
|
|
|
|
if (next.isSideA) {
|
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
if (c.entity instanceof Player) {
|
|
|
|
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
|
|
|
if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
|
|
|
} else if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
|
|
|
}
|
|
|
|
if (playerSpeed > fastestEnemySpeed) {
|
|
|
|
fastestEnemySpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (c.entityInfo.speed > fastestEnemySpeed) {
|
|
|
|
fastestEnemySpeed = c.entityInfo.speed;
|
|
|
|
}
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
if (c.entity instanceof Player) {
|
|
|
|
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
|
|
|
if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
|
|
|
} else if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
|
|
|
}
|
|
|
|
if (playerSpeed > fastestEnemySpeed) {
|
|
|
|
fastestEnemySpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (c.entityInfo.speed > fastestEnemySpeed) {
|
|
|
|
fastestEnemySpeed = c.entityInfo.speed;
|
|
|
|
}
|
2018-09-07 07:41:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
int fleeProbability = 0;
|
|
|
|
if (next.entity instanceof Player) {
|
|
|
|
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
|
|
|
if (((Player) next.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
|
|
|
} else if (((Player) next.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
|
|
|
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (fastestEnemySpeed >= playerSpeed) {
|
|
|
|
fleeProbability = TurnBasedMinecraftMod.proxy.getConfig().getFleeBadProbability();
|
|
|
|
} else {
|
|
|
|
fleeProbability = TurnBasedMinecraftMod.proxy.getConfig().getFleeGoodProbability();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (fastestEnemySpeed >= next.entityInfo.speed) {
|
|
|
|
fleeProbability = TurnBasedMinecraftMod.proxy.getConfig().getFleeBadProbability();
|
|
|
|
} else {
|
|
|
|
fleeProbability = TurnBasedMinecraftMod.proxy.getConfig().getFleeGoodProbability();
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (random.nextInt(100) < fleeProbability) {
|
|
|
|
debugLog += " success";
|
|
|
|
// flee success
|
|
|
|
combatantsChanged = true;
|
|
|
|
String fleeingCategory = new String();
|
|
|
|
if (next.entityInfo != null) {
|
|
|
|
fleeingCategory = next.entityInfo.category;
|
|
|
|
} else if (next.entity instanceof Player) {
|
|
|
|
fleeingCategory = "player";
|
|
|
|
}
|
|
|
|
removeCombatant(next);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.FLEE, next.entity.getId(), 0, 1, fleeingCategory);
|
|
|
|
} else {
|
|
|
|
debugLog += " fail";
|
|
|
|
// flee fail
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.FLEE, next.entity.getId(), 0, 0);
|
2018-09-27 09:09:40 +00:00
|
|
|
}
|
2018-09-11 07:39:46 +00:00
|
|
|
break;
|
2022-06-10 07:57:48 +00:00
|
|
|
case USE_ITEM:
|
|
|
|
debugLog += " use item";
|
|
|
|
if (next.itemToUse < 0 || next.itemToUse > 8) {
|
|
|
|
debugLog += " invalid";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_INVALID.getValue());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ItemStack targetItemStack = ((Player) next.entity).getInventory().getItem(next.itemToUse);
|
|
|
|
Item targetItem = targetItemStack.getItem();
|
|
|
|
if (targetItem == null) {
|
|
|
|
debugLog += " null";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_NOTHING.getValue());
|
|
|
|
break;
|
|
|
|
} else if (targetItem.isEdible()) {
|
2021-05-23 04:22:18 +00:00
|
|
|
debugLog += " food";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_FOOD.getValue(), targetItemStack.getDisplayName().getString());
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final int nextItemToUse = next.itemToUse;
|
2023-09-19 09:49:49 +00:00
|
|
|
((Player) nextEntity).getInventory().setItem(nextItemToUse, targetItem.finishUsingItem(targetItemStack, nextEntity.level(), (LivingEntity) nextEntity));
|
2021-05-23 04:22:18 +00:00
|
|
|
} else {
|
2022-06-10 07:57:48 +00:00
|
|
|
// then check vanilla foods
|
2023-09-19 09:49:49 +00:00
|
|
|
final CreativeModeTab foodAndDrinksTab = CreativeModeTabRegistry.getTab(CreativeModeTabs.FOOD_AND_DRINKS.location());
|
|
|
|
if (foodAndDrinksTab.contains(targetItemStack) && targetItem.isEdible()) {
|
2022-06-10 07:57:48 +00:00
|
|
|
debugLog += " food";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_FOOD.getValue(), targetItemStack.getDisplayName().getString());
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final int nextItemToUse = next.itemToUse;
|
2023-09-19 09:49:49 +00:00
|
|
|
((Player) nextEntity).getInventory().setItem(nextItemToUse, targetItem.finishUsingItem(targetItemStack, nextEntity.level(), (LivingEntity) nextEntity));
|
2024-01-17 05:11:11 +00:00
|
|
|
} else if (targetItem instanceof PotionItem && !(targetItem instanceof ThrowablePotionItem)) {
|
2022-06-10 07:57:48 +00:00
|
|
|
debugLog += " potion";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_POTION.getValue(), targetItemStack.getDisplayName().getString());
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final int nextItemToUse = next.itemToUse;
|
2023-09-19 09:49:49 +00:00
|
|
|
((Player) nextEntity).getInventory().setItem(nextItemToUse, targetItem.finishUsingItem(targetItemStack, nextEntity.level(), (LivingEntity) nextEntity));
|
2022-06-10 07:57:48 +00:00
|
|
|
} else {
|
|
|
|
debugLog += " non-consumable";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.USED_ITEM, next.entity.getId(), 0, PacketBattleMessage.UsedItemAction.USED_INVALID.getValue(), targetItemStack.getDisplayName().getString());
|
2023-09-19 09:49:49 +00:00
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final int nextItemToUse = next.itemToUse;
|
2024-01-17 05:11:11 +00:00
|
|
|
final int prevItem = ((Player)nextEntity).getInventory().selected;
|
|
|
|
((Player)nextEntity).getInventory().selected = nextItemToUse;
|
|
|
|
((Player)nextEntity).getInventory().setItem(nextItemToUse, targetItem.use(nextEntity.level(), (Player)nextEntity, InteractionHand.MAIN_HAND).getObject());
|
|
|
|
((Player)nextEntity).getInventory().selected = prevItem;
|
2022-06-10 07:57:48 +00:00
|
|
|
}
|
2021-05-23 04:22:18 +00:00
|
|
|
}
|
2018-09-11 07:39:46 +00:00
|
|
|
break;
|
2022-06-10 07:57:48 +00:00
|
|
|
case SWITCH_ITEM: {
|
|
|
|
debugLog += " switch item";
|
|
|
|
if (next.itemToUse < 0 || next.itemToUse > 8) {
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.SWITCHED_ITEM, next.entity.getId(), 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final int nextItemToUse = next.itemToUse;
|
|
|
|
((Player) nextEntity).getInventory().selected = nextItemToUse;
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.SWITCHED_ITEM, next.entity.getId(), 0, 1);
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
|
|
|
break;
|
2022-06-10 07:57:48 +00:00
|
|
|
case CREEPER_WAIT:
|
|
|
|
debugLog += " creeper wait";
|
|
|
|
if (next.creeperTurns < TurnBasedMinecraftMod.proxy.getConfig().getCreeperExplodeTurn()) {
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.CREEPER_WAIT, next.entity.getId(), 0, 0);
|
|
|
|
} else {
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.CREEPER_WAIT_FINAL, next.entity.getId(), 0, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CREEPER_EXPLODE: {
|
|
|
|
debugLog += " creeper explode";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.CREEPER_EXPLODE, next.entity.getId(), 0, 0);
|
|
|
|
final Entity nextEntity = next.entity;
|
|
|
|
final EntityInfo nextEntityInfo = next.entityInfo;
|
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
if (c.entity.getId() != next.entity.getId()) {
|
|
|
|
int hitChance = next.entityInfo.attackProbability;
|
|
|
|
if (c.entity instanceof Player) {
|
|
|
|
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
|
|
|
} else {
|
|
|
|
hitChance = hitChance * (100 - c.entityInfo.evasion) / 100;
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (hitChance < TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage()) {
|
|
|
|
hitChance = TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage();
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (random.nextInt(100) < hitChance) {
|
|
|
|
final Entity targetEntity = c.entity;
|
|
|
|
final EntityInfo targetEntityInfo = c.entityInfo;
|
|
|
|
int damageAmount = nextEntityInfo.attackPower;
|
|
|
|
if (nextEntityInfo.attackVariance > 0) {
|
|
|
|
damageAmount += random.nextInt(nextEntityInfo.attackVariance * 2 + 1) - nextEntityInfo.attackVariance;
|
|
|
|
}
|
|
|
|
if (damageAmount < 0) {
|
|
|
|
damageAmount = 0;
|
|
|
|
}
|
|
|
|
final int finalDamageAmount = damageAmount;
|
|
|
|
final boolean attackEffectTriggered;
|
|
|
|
if (nextEntityInfo.attackEffect != EntityInfo.Effect.UNKNOWN && nextEntityInfo.attackEffectProbability > 0) {
|
|
|
|
if (random.nextInt(100) < nextEntityInfo.attackEffectProbability) {
|
|
|
|
attackEffectTriggered = true;
|
|
|
|
} else {
|
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
2020-11-18 06:52:54 +00:00
|
|
|
} else {
|
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(nextEntity);
|
|
|
|
targetEntity.invulnerableTime = 0;
|
2023-09-19 09:49:49 +00:00
|
|
|
targetEntity.hurt(nextEntity.damageSources().mobAttack((LivingEntity) nextEntity), finalDamageAmount);
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ATTACK, nextEntity.getId(), targetEntity.getId(), finalDamageAmount);
|
|
|
|
if (attackEffectTriggered) {
|
|
|
|
nextEntityInfo.attackEffect.applyEffectToEntity((LivingEntity) targetEntity);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.WAS_AFFECTED, nextEntity.getId(), targetEntity.getId(), 0, nextEntityInfo.attackEffect.getAffectedString());
|
|
|
|
}
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
if (c.entity.getId() != next.entity.getId()) {
|
|
|
|
int hitChance = next.entityInfo.attackProbability;
|
|
|
|
if (c.entity instanceof Player) {
|
|
|
|
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
|
|
|
} else {
|
|
|
|
hitChance = hitChance * (100 - c.entityInfo.evasion) / 100;
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (hitChance < TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage()) {
|
|
|
|
hitChance = TurnBasedMinecraftMod.proxy.getConfig().getMinimumHitPercentage();
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (random.nextInt(100) < hitChance) {
|
|
|
|
final Entity targetEntity = c.entity;
|
|
|
|
final EntityInfo targetEntityInfo = c.entityInfo;
|
|
|
|
int damageAmount = nextEntityInfo.attackPower;
|
|
|
|
if (nextEntityInfo.attackVariance > 0) {
|
|
|
|
damageAmount += random.nextInt(nextEntityInfo.attackVariance * 2 + 1) - nextEntityInfo.attackVariance;
|
|
|
|
}
|
|
|
|
if (damageAmount < 0) {
|
|
|
|
damageAmount = 0;
|
|
|
|
}
|
|
|
|
final int finalDamageAmount = damageAmount;
|
|
|
|
final boolean attackEffectTriggered;
|
|
|
|
if (nextEntityInfo.attackEffect != EntityInfo.Effect.UNKNOWN && nextEntityInfo.attackEffectProbability > 0) {
|
|
|
|
if (random.nextInt(100) < nextEntityInfo.attackEffectProbability) {
|
|
|
|
attackEffectTriggered = true;
|
|
|
|
} else {
|
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
2020-11-18 06:52:54 +00:00
|
|
|
} else {
|
|
|
|
attackEffectTriggered = false;
|
|
|
|
}
|
|
|
|
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(nextEntity);
|
|
|
|
targetEntity.invulnerableTime = 0;
|
2023-09-19 09:49:49 +00:00
|
|
|
targetEntity.hurt(nextEntity.damageSources().mobAttack((LivingEntity) nextEntity), finalDamageAmount);
|
2022-06-10 07:57:48 +00:00
|
|
|
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ATTACK, nextEntity.getId(), targetEntity.getId(), finalDamageAmount);
|
|
|
|
if (attackEffectTriggered) {
|
|
|
|
nextEntityInfo.attackEffect.applyEffectToEntity((LivingEntity) targetEntity);
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.WAS_AFFECTED, nextEntity.getId(), targetEntity.getId(), 0, nextEntityInfo.attackEffect.getAffectedString());
|
|
|
|
}
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
((Creeper) nextEntity).setSwellDir(1000000);
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
2018-09-11 06:15:31 +00:00
|
|
|
break;
|
2018-09-05 06:54:06 +00:00
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
} while (false);
|
|
|
|
debugLog = "Action almost end";
|
|
|
|
if (turnOrderQueue.isEmpty()) {
|
|
|
|
setDecisionState();
|
|
|
|
if (healthCheck()) {
|
|
|
|
combatantsChanged = true;
|
|
|
|
}
|
|
|
|
if (isCreativeCheck()) {
|
|
|
|
combatantsChanged = true;
|
|
|
|
}
|
|
|
|
debugLog += ", adding task";
|
|
|
|
sendMessageToAllPlayers(PacketBattleMessage.MessageType.TURN_END, 0, 0, 0);
|
2018-09-06 08:08:36 +00:00
|
|
|
}
|
2018-10-26 09:10:09 +00:00
|
|
|
debugLog = "Actions end";
|
2018-09-07 07:41:22 +00:00
|
|
|
break;
|
|
|
|
} // case ACTION
|
2022-06-10 07:57:48 +00:00
|
|
|
default:
|
|
|
|
state = State.DECISION;
|
|
|
|
break;
|
2018-09-07 07:41:22 +00:00
|
|
|
} // switch(state)
|
2018-10-26 09:10:09 +00:00
|
|
|
debugLog = "Update almost end";
|
2022-06-10 07:57:48 +00:00
|
|
|
if (combatantsChanged) {
|
2018-09-27 09:09:40 +00:00
|
|
|
notifyPlayersBattleInfo();
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
if (battleEnded) {
|
2018-10-17 09:28:47 +00:00
|
|
|
Collection<Combatant> combatants = new ArrayList<Combatant>();
|
|
|
|
combatants.addAll(sideA.values());
|
|
|
|
combatants.addAll(sideB.values());
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : combatants) {
|
2018-10-17 09:28:47 +00:00
|
|
|
removeCombatant(c);
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 09:10:09 +00:00
|
|
|
debugLog = "Update end";
|
2018-09-06 08:08:36 +00:00
|
|
|
return battleEnded;
|
2018-09-10 05:59:56 +00:00
|
|
|
} // update(final long dt)
|
2020-11-18 06:52:54 +00:00
|
|
|
|
|
|
|
private void defuseCreepers() {
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideA.values()) {
|
|
|
|
if (c.entity instanceof Creeper) {
|
|
|
|
if (c.creeperTurns <= TurnBasedMinecraftMod.proxy.getConfig().getCreeperExplodeTurn()) {
|
|
|
|
((Creeper) c.entity).setSwellDir(-10);
|
2020-11-18 06:52:54 +00:00
|
|
|
} else {
|
2022-06-10 07:57:48 +00:00
|
|
|
((Creeper) c.entity).setSwellDir(1000000);
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 07:57:48 +00:00
|
|
|
for (Combatant c : sideB.values()) {
|
|
|
|
if (c.entity instanceof Creeper) {
|
|
|
|
if (c.creeperTurns <= TurnBasedMinecraftMod.proxy.getConfig().getCreeperExplodeTurn()) {
|
|
|
|
((Creeper) c.entity).setSwellDir(-10);
|
2020-11-18 06:52:54 +00:00
|
|
|
} else {
|
2022-05-17 05:47:42 +00:00
|
|
|
((Creeper) c.entity).setSwellDir(1000000);
|
2020-11-18 06:52:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-28 06:13:14 +00:00
|
|
|
}
|