uox3/source/ai.cpp
Xoduz 0c71b79da8 Server crash fix on worldfile load and timer fixes
- [FIX] Fixed a crash during loading of worldfiles caused by an issue with how certain timers (summon/peacemake) were saved and loaded
- [FIX] Fixed an issue where murder decay rate was not loaded properly for characters
- [FIX] Fixed an issue where summoned creatures with "scared animal" AI would try to escape from their summoner
2025-07-30 06:05:51 +08:00

732 lines
26 KiB
C++

//o------------------------------------------------------------------------------------------------o
//| File - ai.cpp
//| Date - Pre-1999
//o------------------------------------------------------------------------------------------------o
//| Purpose - All AI-Related Code goes here (Should eventually be
//| moved out to JavaScript code).
//o------------------------------------------------------------------------------------------------o
//| Changes - Version History
//|
//| 1.1 30th December, 2003
//| Updated to move the majority of AI functionality
//| into several smaller functions. Should simplify the
//| process of moving it out to JavaScript in the future.
//o------------------------------------------------------------------------------------------------o
#include "uox3.h"
#include "cRaces.h"
#include "cEffects.h"
#include "regions.h"
#include "townregion.h"
#include "combat.h"
#include "CJSMapping.h"
#include "cScript.h"
#include "Dictionary.h"
#include "StringUtility.hpp"
#undef DBGFILE
#define DBGFILE "ai.cpp"
//o------------------------------------------------------------------------------------------------o
//| Function - IsValidAttackTarget()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Check if cTarget is a valid attack target for mChar
//o------------------------------------------------------------------------------------------------o
bool IsValidAttackTarget( CChar& mChar, CChar *cTarget )
{
if( ValidateObject( cTarget ) && &mChar != cTarget )
{
if( mChar.IsNpc() && cTarget->IsNpc() )
{
//We don't want NPCs to attack one another if either of them are water-walking creatures
//as they can't reach one another in any case
bool targetWaterWalk = cwmWorldState->creatures[cTarget->GetId()].IsWater();
bool attackerWaterWalk = cwmWorldState->creatures[mChar.GetId()].IsWater();
if(( attackerWaterWalk && !targetWaterWalk ) || ( !attackerWaterWalk && targetWaterWalk ))
{
return false;
}
}
// Dead (bonded) pets are not valid
TAGMAPOBJECT deadPet = cTarget->GetTag( "isPetDead" );
if( deadPet.m_IntValue == 1 )
{
return false;
}
// Targets on character's combat ignore list are not valid
if( mChar.CheckCombatIgnore( cTarget->GetSerial() ))
{
return false;
}
// Invulnerable, dead, hidden or evading targets are not valid
if( cTarget->IsInvulnerable() || cTarget->IsDead() || cTarget->GetVisible() != VT_VISIBLE || cTarget->IsEvading() )
{
return false;
}
if( ObjInRange( &mChar, cTarget, cwmWorldState->ServerData()->CombatMaxNpcAggroRange() ))
{
//if( mChar.IsNpc() && cTarget->IsNpc() && !ValidateObject( mChar.GetOwnerObj() ) && !ValidateObject( cTarget->GetOwnerObj() ))
if( mChar.IsNpc() && cTarget->IsNpc() && !ValidateObject( mChar.GetOwnerObj() ))
{
if( mChar.GetRace() == cTarget->GetRace() && !ValidateObject( cTarget->GetOwnerObj() ))
{
// Not a valid target if belonging to same race
return false;
}
// Not a valid target if both are human and both have same NPC Flag (evil, innocent, neutral)
if( cwmWorldState->creatures[mChar.GetId()].IsHuman() && cwmWorldState->creatures[cTarget->GetId()].IsHuman() )
{
if( mChar.GetNPCFlag() == cTarget->GetNPCFlag() )
{
return false;
}
}
if( std::abs( mChar.GetZ() - cTarget->GetZ() ) >= 20 )
{
// Unless BOTH NPCs are using ranged weapons, don't let the NPCs fight if they're on different floors.
// Most likely, they can't reach each other
CItem *mWeapon = Combat->GetWeapon( &mChar );
CItem *cWeapon = Combat->GetWeapon( cTarget );
auto mCombatSkill = Combat->GetCombatSkill( mWeapon );
auto cCombatSkill = Combat->GetCombatSkill( cWeapon );
const UI16 charDist = GetDist( &mChar, cTarget );
if((( mCombatSkill != ARCHERY && mCombatSkill != THROWING ) || charDist > mWeapon->GetMaxRange() )
|| (( cCombatSkill != ARCHERY && cCombatSkill != THROWING ) || charDist > cWeapon->GetMaxRange() ))
{
return false;
}
}
}
if( LineOfSight( nullptr, (&mChar), cTarget->GetX(), cTarget->GetY(), cTarget->GetZ(), WALLS_CHIMNEYS + DOORS + FLOORS_FLAT_ROOFING, false ))
{
// Young players are not valid targets for NPCs outside of dungeons
if( cTarget->GetTarg() != &mChar && cwmWorldState->ServerData()->YoungPlayerSystem() && mChar.IsNpc() && !cTarget->IsNpc() && IsOnline(( *cTarget )) && cTarget->GetAccount().wFlags.test( AB_FLAGS_YOUNG ) && !cTarget->GetRegion()->IsDungeon() )
{
// Only display message to player if an actual hostile NPC would be considering them as a target
auto aiType = mChar.GetNpcAiType();
if( aiType == AI_EVIL || aiType == AI_ANIMAL || aiType == AI_EVIL_CASTER || aiType == AI_CHAOTIC )
{
if( cTarget->GetSocket() && cTarget->GetTimer( tCHAR_YOUNGMESSAGE ) <= cwmWorldState->GetUICurrentTime() )
{
cTarget->SetTimer( tCHAR_YOUNGMESSAGE, BuildTimeValue( 120.0 )); // Only send them the warning message once couple of minutes
cTarget->GetSocket()->SysMessage( 18734 ); // A monster looks at you menacingly but does not attack. You would be under attack now if not for your status as a new citizen of Britannia.
}
}
return false;
}
else if( cwmWorldState->ServerData()->YoungPlayerSystem() && mChar.IsNpc() && cTarget->IsNpc() && ValidateObject( cTarget->GetOwnerObj() ) && cTarget->GetOwnerObj()->GetAccount().wFlags.test( AB_FLAGS_YOUNG ) && !cTarget->GetRegion()->IsDungeon() )
{
// Don't attack pets of Young Characters outside of dungeons
return false;
}
if( IsOnline(( *cTarget )) || cTarget->IsNpc() )
{
return true;
}
}
}
}
return false;
}
//o------------------------------------------------------------------------------------------------o
//| Function - CheckForValidOwner()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Check if mChar owns cTarget or vise-versa
//o------------------------------------------------------------------------------------------------o
bool CheckForValidOwner( CChar& mChar, CChar *cTarget )
{
if( ValidateObject( mChar.GetOwnerObj() ) && mChar.GetOwnerObj() == cTarget )
return true;
if( ValidateObject( cTarget->GetOwnerObj() ) && cTarget->GetOwnerObj() == &mChar )
return true;
return false;
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleGuardAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Guard AI Type
//o------------------------------------------------------------------------------------------------o
void HandleGuardAI( CChar& mChar )
{
if( mChar.IsAtWar() && ValidateObject( mChar.GetTarg() ))
return;
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar ))
{
if( !tempChar->IsDead() && ( tempChar->IsCriminal() || tempChar->IsMurderer() ))
{
Combat->AttackTarget( &mChar, tempChar );
mChar.TextMessage( nullptr, 313, TALK, true );
return;
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleFighterAI()
//| Date - 06/15/2005
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Fighter AI Type
//o------------------------------------------------------------------------------------------------o
void HandleFighterAI( CChar& mChar )
{
if( mChar.IsAtWar() && ValidateObject( mChar.GetTarg() ))
return;
// Fetch scriptTriggers attached to mChar
std::vector<UI16> scriptTriggers = mChar.GetScriptTriggers();
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
// Chance to reverse list of chars
if( RandomNum( 0, 1 ))
{
regChars->Reverse();
}
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar ))
{
// Loop through scriptTriggers attached to mChar and see if any have onCombatTarget event
// This event will override target selection entirely
bool invalidTarget = false;
for( auto scriptTrig : scriptTriggers )
{
auto toExecute = JSMapping->GetScript( scriptTrig );
if( toExecute )
{
SI08 retVal = toExecute->OnAICombatTarget( &mChar, tempChar );
if( retVal == -1 )
{
// No such event found, or returned -1
continue;
}
else if( retVal == 0 )
{
// Invalid target! But look through other scripts with event first
invalidTarget = true;
continue;
}
else if( retVal == 1 )
{
// Valid target!
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
if( !invalidTarget )
{
RaceRelate raceComp = Races->Compare( tempChar, &mChar );
if( !tempChar->IsDead() && ( tempChar->IsCriminal() || tempChar->IsMurderer() || raceComp <= RACE_ENEMY ))
{
if( RandomNum( 1, 100 ) < 85 ) // 85% chance to attack current target, 15% chance to pick another
{
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleHealerAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Wandering Healer AI Type (Raises Innocents)
//o------------------------------------------------------------------------------------------------o
void HandleHealerAI( CChar& mChar )
{
for( auto &mSock : FindNearbyPlayers( &mChar, DIST_NEARBY ))
{
CChar *realChar = mSock->CurrcharObj();
CMultiObj *multiObj = realChar->GetMultiObj();
if( realChar->IsDead() && ( !ValidateObject( multiObj ) || multiObj->GetOwner() == realChar->GetSerial() ))
{
if( LineOfSight( mSock, realChar, mChar.GetX(), mChar.GetY(), mChar.GetZ(), WALLS_CHIMNEYS + DOORS + FLOORS_FLAT_ROOFING, false ))
{
if( realChar->IsMurderer() )
{
mChar.TextMessage( nullptr, 322, TALK, true ); // I will not give life to a scoundrel like thee!
}
else if( realChar->IsCriminal() )
{
mChar.TextMessage( nullptr, 770, TALK, true ); // I will nay give life to thee for thou art a criminal!
}
else if( realChar->IsInnocent() )
{
if( mChar.GetBodyType() == BT_GARGOYLE || cwmWorldState->ServerData()->ForceNewAnimationPacket() )
{
Effects->PlayNewCharacterAnimation( &mChar, N_ACT_SPELL, S_ACT_SPELL_TARGET ); // Action 0x0b, subAction 0x00
}
else
{
UI16 castAnim = static_cast<UI16>( cwmWorldState->creatures[mChar.GetId()].CastAnimTargetId() );
UI08 castAnimLength = cwmWorldState->creatures[mChar.GetId()].CastAnimTargetLength();
// Play cast anim, but fallback to default attack anim (0x04) with anim length of 4 frames if no cast anim was defined in creatures.dfn
Effects->PlayCharacterAnimation( &mChar, ( castAnim != 0 ? castAnim : 0x04 ), 0, ( castAnimLength != 0 ? castAnimLength : 4 ));
}
NpcResurrectTarget( realChar );
Effects->PlayStaticAnimation( realChar, 0x376A, 0x09, 0x06 );
mChar.TextMessage( nullptr, ( 316 + RandomNum( 0, 4 )), TALK, false );
}
}
}
else if( realChar->GetHP() < realChar->GetMaxHP() && cwmWorldState->ServerData()->YoungPlayerSystem() && realChar->GetAccount().wFlags.test( AB_FLAGS_YOUNG ))
{
// Heal young players every X minutes
if( realChar->GetTimer( tCHAR_YOUNGHEAL ) <= cwmWorldState->GetUICurrentTime() )
{
mChar.RemoveFromCombatIgnore( realChar->GetSerial() );
realChar->SetTimer( tCHAR_YOUNGHEAL, BuildTimeValue( 300.0 )); // Only heal young player max once every 5 minutes
mChar.TextMessage( nullptr, 18731, TALK, false ); // You look like you need some healing my child.
Effects->PlayStaticAnimation( realChar, 0x376A, 0x09, 0x06 );
realChar->SetHP( realChar->GetMaxHP() );
}
else
{
// Ignore players on the healer's "combat" ignore list
if( mChar.CheckCombatIgnore( realChar->GetSerial() ))
continue;
mChar.AddToCombatIgnore( realChar->GetSerial(), false ); // Use combat ignore to ignore the injured player for a short while to avoid spamming message
mChar.TextMessage( nullptr, 18732, TALK, false ); // I can do no more for you at this time.
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleEvilHealerAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Evil Healer AI Type (Raises Murderers)
//o------------------------------------------------------------------------------------------------o
void HandleEvilHealerAI( CChar& mChar )
{
for( auto &mSock : FindNearbyPlayers( &mChar, DIST_NEARBY ))
{
CChar *realChar = mSock->CurrcharObj();
CMultiObj *multiObj = realChar->GetMultiObj();
if( realChar->IsDead() && ( !ValidateObject( multiObj ) || multiObj->GetOwner() == realChar->GetSerial() ))
{
if( LineOfSight( mSock, realChar, mChar.GetX(), mChar.GetY(), mChar.GetZ(), WALLS_CHIMNEYS + DOORS + FLOORS_FLAT_ROOFING, false ))
{
if( realChar->IsMurderer() )
{
if( mChar.GetBodyType() == BT_GARGOYLE || cwmWorldState->ServerData()->ForceNewAnimationPacket() )
{
Effects->PlayNewCharacterAnimation( &mChar, N_ACT_SPELL, S_ACT_SPELL_TARGET ); // Action 0x0b, subAction 0x00
}
else
{
UI16 castAnim = static_cast<UI16>( cwmWorldState->creatures[mChar.GetId()].CastAnimTargetId() );
UI08 castAnimLength = cwmWorldState->creatures[mChar.GetId()].CastAnimTargetLength();
// Play cast anim, but fallback to default attack anim (0x04) with anim length of 4 frames if no cast anim was defined in creatures.dfn
Effects->PlayCharacterAnimation( &mChar, ( castAnim != 0 ? castAnim : 0x04 ), 0, ( castAnimLength != 0 ? castAnimLength : 4 ));
}
NpcResurrectTarget( realChar );
Effects->PlayStaticAnimation( realChar, 0x3709, 0x09, 0x19 ); //Flamestrike effect
mChar.TextMessage( nullptr, ( 323 + RandomNum( 0, 4 )), TALK, false );
}
else
{
mChar.TextMessage( nullptr, 329, TALK, true ); // I despise all things good. I shall not give thee another chance!
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleEvilAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Evil creature AI Type (Attacks innocents)
//o------------------------------------------------------------------------------------------------o
auto HandleEvilAI( CChar& mChar ) -> void
{
if( mChar.IsAtWar() && ValidateObject( mChar.GetTarg() ))
return;
// Fetch scriptTriggers attached to mChar
std::vector<UI16> scriptTriggers = mChar.GetScriptTriggers();
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
// Chance to reverse list of chars
if( RandomNum( 0, 1 ))
{
regChars->Reverse();
}
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar ) ) // && !CheckForValidOwner( mChar, tempChar ))
{
// Loop through scriptTriggers attached to mChar and see if any have onCombatTarget event
// This event will override target selection entirely
bool invalidTarget = false;
for( auto scriptTrig : scriptTriggers )
{
auto toExecute = JSMapping->GetScript( scriptTrig );
if( toExecute == nullptr )
continue;
SI08 retVal = toExecute->OnAICombatTarget( &mChar, tempChar );
if( retVal != -1 )
{
if( retVal == 0 )
{
// Invalid target! But look through other scripts with event first
invalidTarget = true;
}
else if( retVal == 1 )
{
// Valid target!
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
if( invalidTarget )
continue;
if( tempChar->GetNpcAiType() != AI_HEALER_G )
{
// Special consideration for non-pet animal targets
if( cwmWorldState->creatures[tempChar->GetId()].IsAnimal() && !ValidateObject( tempChar->GetOwnerObj() ))
{
if( !cwmWorldState->ServerData()->CombatMonstersVsAnimals() )
{
continue;
}
else if( cwmWorldState->ServerData()->CombatAnimalsAttackChance() < RandomNum( 1, 1000 ))
{
continue;
}
}
if( !( mChar.GetRace() != 0 && mChar.GetRace() == tempChar->GetRace() && RandomNum( 1, 100 ) > 1 )) // 1% chance of turning on own race
{
RaceRelate raceComp = Races->Compare( tempChar, &mChar );
if( raceComp < RACE_ALLY ) // Allies
{
if( !(( tempChar->GetNpcAiType() == AI_EVIL || tempChar->GetNpcAiType() == AI_EVIL_CASTER ) && raceComp > RACE_ENEMY ))
{
if( RandomNum( 1, 100 ) < 85 )
{ // 85% chance to attack current target, 15% chance to pick another
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
}
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleChaoticAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Chaotic creature AI Type (Attacks everything)
//o------------------------------------------------------------------------------------------------o
auto HandleChaoticAI( CChar& mChar ) -> void
{
if( mChar.IsAtWar() && ValidateObject( mChar.GetTarg() ))
return;
// Fetch scriptTriggers attached to mChar
std::vector<UI16> scriptTriggers = mChar.GetScriptTriggers();
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
// Chance to reverse list of chars
if( RandomNum( 0, 1 ))
{
regChars->Reverse();
}
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar )) // && !CheckForValidOwner( mChar, tempChar ))
{
// Loop through scriptTriggers attached to mChar and see if any have onCombatTarget event
// This event will override target selection entirely
bool invalidTarget = false;
for( auto scriptTrig : scriptTriggers )
{
cScript *toExecute = JSMapping->GetScript( scriptTrig );
if( toExecute == nullptr )
continue;
SI08 retVal = toExecute->OnAICombatTarget( &mChar, tempChar );
if( retVal!= -1 )
{
if( retVal == 0 )
{
// Invalid target! But look through other scripts with event first
invalidTarget = true;
}
else if( retVal == 1 )
{
// Valid target!
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
if( !invalidTarget )
{
if( RandomNum( 1, 100 ) < 85 ) // 85% chance to attack current target, 15% chance to pick another
{
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleAnimalAI()
//| Date - 21. Feb, 2006
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles Animal AI Type
//o------------------------------------------------------------------------------------------------o
auto HandleAnimalAI( CChar& mChar ) -> void
{
if( mChar.IsAtWar() && ValidateObject( mChar.GetTarg() ))
return;
const SI08 hunger = mChar.GetHunger();
if( hunger > 3 )
return;
// Fetch scriptTriggers attached to mChar
std::vector<UI16> scriptTriggers = mChar.GetScriptTriggers();
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar ))
{
// Loop through scriptTriggers attached to mChar and see if any have onCombatTarget event
// This event will override target selection entirely
bool invalidTarget = false;
for( auto scriptTrig : scriptTriggers )
{
cScript *toExecute = JSMapping->GetScript( scriptTrig );
if( toExecute == nullptr )
continue;
SI08 retVal = toExecute->OnAICombatTarget( &mChar, tempChar );
if( retVal != -1 )
{
if( retVal == 0 )
{
// Invalid target! But look through other scripts with event first
invalidTarget = true;
}
else if( retVal == 1 )
{
// Valid target!
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
if( invalidTarget )
continue;
auto raceComp = Races->Compare( tempChar, &mChar );
if( raceComp <= RACE_ENEMY || ( cwmWorldState->creatures[tempChar->GetId()].IsAnimal() && tempChar->GetNpcAiType() == AI_NONE )
|| ( hunger <= 1 && ( tempChar->GetNpcAiType() == AI_ANIMAL || cwmWorldState->creatures[tempChar->GetId()].IsHuman() )))
{
if( RandomNum( 1, 100 ) > 95 ) // 5% chance (per AI cycle to attack tempChar)
{
Combat->AttackTarget( &mChar, tempChar );
return;
}
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - HandleAnimalScaredAI()
//o------------------------------------------------------------------------------------------------o
//| Purpose - Handles AI type for scared animals that try to avoid humans
//o------------------------------------------------------------------------------------------------o
auto HandleAnimalScaredAI( CChar& mChar ) -> void
{
// Do nothing if NPC is a summon, or is already running scared and has a valid target
if( mChar.IsDispellable() || ( mChar.GetNpcWander() == WT_SCARED && ValidateObject( mChar.GetTarg() )))
return;
// Fetch scriptTriggers attached to mChar
std::vector<UI16> scriptTriggers = mChar.GetScriptTriggers();
for( auto &MapArea : MapRegion->PopulateList( &mChar ))
{
if( MapArea == nullptr )
continue;
auto regChars = MapArea->GetCharList();
for( const auto &tempChar : regChars->collection() )
{
if( IsValidAttackTarget( mChar, tempChar ))
{
// Loop through scriptTriggers attached to mChar and see if any have onCombatTarget event
// This event will override target selection entirely
bool invalidTarget = false;
for( auto scriptTrig : scriptTriggers )
{
cScript *toExecute = JSMapping->GetScript( scriptTrig );
if( toExecute == nullptr )
continue;
SI08 retVal = toExecute->OnAICombatTarget( &mChar, tempChar );
if( retVal != -1 )
{
if( retVal == 0 )
{
// Invalid target! But look through other scripts with event first
invalidTarget = true;
}
else if( retVal == 1 )
{
// Valid target! Range check presumably happening in script
mChar.SetTarg( tempChar );
if( mChar.GetNpcWander() != WT_SCARED && mChar.GetNpcWander() != WT_PATHFIND )
{
mChar.SetOldNpcWander( mChar.GetNpcWander() );
}
mChar.SetNpcWander( WT_SCARED );
return;
}
}
}
if( invalidTarget )
continue;
if( !tempChar->IsNpc() || ( ValidateObject( tempChar->GetOwnerObj() ) && !tempChar->GetOwnerObj()->IsNpc() ))
{
if( ObjInRange( &mChar, tempChar, DIST_INRANGE ))
{
mChar.SetTarg( tempChar );
if( mChar.GetNpcWander() != WT_SCARED && mChar.GetNpcWander() != WT_PATHFIND )
{
mChar.SetOldNpcWander( mChar.GetNpcWander() );
}
mChar.SetNpcWander( WT_SCARED );
}
}
}
}
}
}
//o------------------------------------------------------------------------------------------------o
//| Function - CheckAI()
//| Date - 12/30/2003
//o------------------------------------------------------------------------------------------------o
//| Purpose - Switch to easily handle AI types
//o------------------------------------------------------------------------------------------------o
void CheckAI( CChar& mChar )
{
CChar *realChar = nullptr;
switch( mChar.GetNpcAiType() )
{
case AI_NONE: // No special AI, default NPC behavior
case AI_DUMMY: // Passive AI - doesn't attack nor fight back
case AI_BANKER: // Banker
case AI_STABLEMASTER: // Stablemaster
case AI_PLAYERVENDOR: // Player Vendors.
break; // No AI for these special NPC's.
case AI_HEALER_G: HandleHealerAI( mChar ); break; // Good Healers
case AI_EVIL_CASTER: [[fallthrough]]; // Evil Caster NPCs, use same AI as AI_EVIL
case AI_EVIL: HandleEvilAI( mChar ); break; // Evil NPC's
case AI_GUARD: HandleGuardAI( mChar ); break; // Guard
case AI_CASTER: [[fallthrough]]; // Caster - same as AI_FIGHTER, but keep their distance
case AI_FIGHTER: HandleFighterAI( mChar ); break; // Fighter - same as guard, without teleporting & yelling "HALT!"
case AI_ANIMAL: HandleAnimalAI( mChar ); break; // Hungry animals
case AI_ANIMAL_SCARED: HandleAnimalScaredAI( mChar ); break; // Scared animals, try to stay away from humans
case AI_CHAOTIC: HandleChaoticAI( mChar ); break; // Energy Vortex / Blade Spirit
case AI_HEALER_E: HandleEvilHealerAI( mChar ); break; // Evil Healers
case AI_PET_GUARD: // Pet Guarding AI
realChar = mChar.GetOwnerObj();
if( !ValidateObject( realChar ))
{
mChar.SetNPCAiType( AI_NONE );
return;
}
if( ValidateObject( realChar->GetTarg() ))
{
Combat->AttackTarget( &mChar, realChar->GetTarg() );
}
break;
default:
{
std::string mCharName = GetNpcDictName( &mChar, nullptr, NRS_SYSTEM );
Console.Error( oldstrutil::format( " CheckAI() Error npc %s(0x%X) has invalid AI type %i", mCharName.c_str(), mChar.GetSerial(), mChar.GetNpcAiType() )); //Morrolan
return;
}
}
}