107 lines
3.8 KiB
Plaintext
107 lines
3.8 KiB
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// cai_hold - Combat AI - hold Attack
|
|
// By Deva Bryson Winblood. 11/2004
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#include "prc_inc_racial"
|
|
#include "cai_inc_hos"
|
|
#include "nw_I0_generic"
|
|
|
|
object fnGetBestTarget(int nRace)
|
|
{ // tell me who my best target is at the moment
|
|
object oRet=OBJECT_INVALID;
|
|
int nN;
|
|
float fD;
|
|
int nVal;
|
|
object oOb;
|
|
int nThis;
|
|
int nC;
|
|
nN=1;
|
|
oOb=GetNearestCreature(CREATURE_TYPE_REPUTATION,REPUTATION_TYPE_ENEMY,OBJECT_SELF,nN,CREATURE_TYPE_IS_ALIVE,TRUE,CREATURE_TYPE_PERCEPTION,PERCEPTION_SEEN);
|
|
fD=GetDistanceBetween(oOb,OBJECT_SELF);
|
|
while(oOb!=OBJECT_INVALID&&fD<30.0)
|
|
{ // check all nearby targets
|
|
nThis=0;
|
|
nN++;
|
|
if (fD<20.0) nThis++;
|
|
if (fD<15.0) nThis++;
|
|
if (fD<10.0) nThis++;
|
|
if (fD<8.0) nThis++;
|
|
if (fD<5.0) nThis++;
|
|
fD=IntToFloat(GetCurrentHitPoints(oOb))/IntToFloat(GetMaxHitPoints(oOb));
|
|
if (fD<0.51) nThis++;
|
|
if (fD<0.31) nThis++;
|
|
if (fD<0.11) nThis++;
|
|
if (nRace==RACIAL_TYPE_UNDEAD)
|
|
{ // see if target is a cleric
|
|
nC=GetClassByPosition(1,oOb);
|
|
if (nC==CLASS_TYPE_CLERIC||nC==CLASS_TYPE_PALADIN) nThis=nThis+3;
|
|
nC=GetClassByPosition(2,oOb);
|
|
if (nC==CLASS_TYPE_CLERIC||nC==CLASS_TYPE_PALADIN) nThis=nThis+3;
|
|
nC=GetClassByPosition(3,oOb);
|
|
if (nC==CLASS_TYPE_CLERIC||nC==CLASS_TYPE_PALADIN) nThis=nThis+3;
|
|
} // see if target is a cleric
|
|
nC=caiGetEquippedWeaponType(oOb,INVENTORY_SLOT_RIGHTHAND);
|
|
if (nC==CAI_WEAPON_RANGED) nThis++;
|
|
if (nThis>nVal)
|
|
{ // new best target
|
|
oRet=oOb;
|
|
nVal=nThis;
|
|
} // new best target
|
|
oOb=GetNearestCreature(CREATURE_TYPE_REPUTATION,REPUTATION_TYPE_ENEMY,OBJECT_SELF,nN,CREATURE_TYPE_IS_ALIVE,TRUE,CREATURE_TYPE_PERCEPTION,PERCEPTION_SEEN);
|
|
fD=GetDistanceBetween(oOb,OBJECT_SELF);
|
|
} // check all nearby targets
|
|
return oRet;
|
|
} // tell me who my best target is at the moment
|
|
|
|
void main()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
object oTarget=GetAttackTarget();
|
|
int nN;
|
|
int nMyRace=MyPRCGetRacialType(oMe);
|
|
object oBest=fnGetBestTarget(nMyRace);
|
|
int nWT=caiGetEquippedWeaponType(oMe,INVENTORY_SLOT_RIGHTHAND);
|
|
int bTargetChanged=FALSE;
|
|
float fF;
|
|
object oOb=GetNearestCreature(CREATURE_TYPE_REPUTATION,REPUTATION_TYPE_ENEMY,oMe,1,CREATURE_TYPE_IS_ALIVE,TRUE,CREATURE_TYPE_PERCEPTION,PERCEPTION_SEEN);
|
|
if (GetIsObjectValid(oOb))
|
|
{ // there are enemies near
|
|
if (oBest!=oTarget)
|
|
{ // target change
|
|
oTarget=oBest;
|
|
bTargetChanged=TRUE;
|
|
} // target change
|
|
fF=GetDistanceBetween(oOb,oMe);
|
|
if(fF<5.1)
|
|
{ // too close - go to melee
|
|
if (nWT==CAI_WEAPON_NONE||nWT==CAI_WEAPON_RANGED)
|
|
{ // equip a weapon
|
|
AssignCommand(oMe,ActionEquipMostDamagingMelee(oTarget));
|
|
} // equip a weapon
|
|
if (GetHasFeat(FEAT_TWO_WEAPON_FIGHTING,oMe)==TRUE)
|
|
{ // check to see if have a second weapon
|
|
nN=caiGetEquippedWeaponType(oMe,INVENTORY_SLOT_LEFTHAND);
|
|
if (nWT==CAI_WEAPON_NONE||nWT==CAI_WEAPON_RANGED)
|
|
{ // equip
|
|
AssignCommand(oMe,ActionEquipMostDamagingMelee(oTarget,TRUE));
|
|
} // equip
|
|
} // check to see if have a second weapon
|
|
} // too close - go to melee
|
|
else
|
|
{ // far enough away - ranged
|
|
if (nWT!=CAI_WEAPON_RANGED)
|
|
{ //equip a ranged weapon
|
|
AssignCommand(oMe,ActionEquipMostDamagingRanged(oTarget));
|
|
} //equip a ranged weapon
|
|
} // far enough away - ranged
|
|
DetermineCombatRound(oTarget);
|
|
} // there are enemies near
|
|
else
|
|
{ // no enemies near - equip ranged
|
|
if (nWT!=CAI_WEAPON_RANGED)
|
|
{ //equip a ranged weapon
|
|
AssignCommand(oMe,ActionEquipMostDamagingRanged());
|
|
} //equip a ranged weapon
|
|
} // no enemies near - equip ranged
|
|
}
|