mob ai work

This commit is contained in:
2025-01-08 18:08:38 -06:00
parent 277bb14bab
commit 39638e4789
2 changed files with 18 additions and 19 deletions
+17 -15
View File
@@ -560,21 +560,6 @@ public class MobAI {
public static void MobCallForHelp(Mob mob) {
boolean continueExecution = false;
switch(mob.BehaviourType){
case GuardCaptain:
case GuardMinion:
case Pet1:
case GuardWallArcher:
case HamletGuard:
case SimpleStandingGuard:
continueExecution = true;
break;
}
if(!continueExecution) {
MobAi2.runAI(mob);
return;
}
try {
boolean callGotResponse = false;
@@ -616,6 +601,23 @@ public class MobAI {
if (mob == null)
return;
boolean continueExecution = false;
switch(mob.BehaviourType){
case GuardCaptain:
case GuardMinion:
case Pet1:
case GuardWallArcher:
case HamletGuard:
case SimpleStandingGuard:
continueExecution = true;
break;
}
if(!continueExecution) {
MobAi2.runAI(mob);
return;
}
if(mob.isAlive())
if(!mob.getMovementLoc().equals(Vector3fImmutable.ZERO))
mob.setLoc(mob.getMovementLoc());
+1 -4
View File
@@ -64,7 +64,7 @@ public class MobAi2 {
switch(getState(mob)){
case Idle:
if(mob.isMoving())
mob.stopMovement(mob.getMovementLoc());
mob.stopMovement(mob.loc);
if(mob.combatTarget != null) {
mob.setCombatTarget(null);
mob.setCombat(false);
@@ -128,7 +128,6 @@ public class MobAi2 {
if (mob.canSee(target))
mob.setCombatTarget(target);
if (mob.combatTarget != null) {
mob.stopMovement(mob.getMovementLoc());
return;
}
}
@@ -166,8 +165,6 @@ public class MobAi2 {
MovementUtilities.aiMove(mob, target.loc, false);
}
return;
}else{
mob.stopMovement(mob.getMovementLoc());
}
switch (target.getObjectType()) {