mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- floatified innocThinkChase.
This commit is contained in:
parent
648ff00caf
commit
6b6ab4e81e
1 changed files with 7 additions and 7 deletions
|
@ -72,9 +72,9 @@ static void innocThinkChase(DBloodActor* actor)
|
|||
auto target = actor->GetTarget();
|
||||
|
||||
auto dvec = target->spr.pos.XY() - actor->spr.pos.XY();
|
||||
int nAngle = getangle(dvec);
|
||||
int nDist = approxDist(dvec);
|
||||
aiChooseDirection(actor, DAngle::fromBuild(nAngle));
|
||||
DAngle nAngle = VecToAngle(dvec);
|
||||
double nDist = dvec.Length();
|
||||
aiChooseDirection(actor, nAngle);
|
||||
if (target->xspr.health == 0)
|
||||
{
|
||||
aiNewState(actor, &innocentSearch);
|
||||
|
@ -86,16 +86,16 @@ static void innocThinkChase(DBloodActor* actor)
|
|||
return;
|
||||
}
|
||||
|
||||
if (nDist <= pDudeInfo->seeDist)
|
||||
if (nDist <= pDudeInfo->SeeDist())
|
||||
{
|
||||
int nDeltaAngle = getincangle(actor->int_ang(), nAngle);
|
||||
DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle);
|
||||
double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE;
|
||||
if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector()))
|
||||
{
|
||||
if (nDist < pDudeInfo->seeDist && abs(nDeltaAngle) <= pDudeInfo->periphery)
|
||||
if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery())
|
||||
{
|
||||
aiSetTarget(actor, actor->GetTarget());
|
||||
if (nDist < 0x666 && abs(nDeltaAngle) < 85)
|
||||
if (nDist < 102.375 && nDeltaAngle < DAngle15)
|
||||
aiNewState(actor, &innocentIdle);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue