From b18bbf248d277e11f63383f1c6b85c9ddd8e353c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 4 Sep 2022 20:44:36 +0200 Subject: [PATCH] - function separators --- source/games/sw/src/ai.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/source/games/sw/src/ai.cpp b/source/games/sw/src/ai.cpp index 8896242fb..2e4ddf7fc 100644 --- a/source/games/sw/src/ai.cpp +++ b/source/games/sw/src/ai.cpp @@ -78,6 +78,11 @@ bool ActorMoveHitReact(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- bool ActorFlaming(DSWActor* actor) { @@ -91,6 +96,12 @@ bool ActorFlaming(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void DoActorSetSpeed(DSWActor* actor, uint8_t speed) { if (actor->spr.cstat & (CSTAT_SPRITE_RESTORE)) @@ -109,11 +120,13 @@ void DoActorSetSpeed(DSWActor* actor, uint8_t speed) actor->vel.X = vel * maptoworld; } +//--------------------------------------------------------------------------- /* !AIC - Does a table lookup based on a random value from 0 to 1023. These tables are defined at the top of all actor files such as ninja.c, goro.c etc. */ +//--------------------------------------------------------------------------- ANIMATOR* ChooseAction(DECISION decision[]) { @@ -131,9 +144,11 @@ ANIMATOR* ChooseAction(DECISION decision[]) } } +//--------------------------------------------------------------------------- /* !AIC - Sometimes just want the offset of the action */ +//--------------------------------------------------------------------------- int ChooseActionNumber(int16_t decision[]) { @@ -148,6 +163,12 @@ int ChooseActionNumber(int16_t decision[]) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoActorNoise(ANIMATOR* Action, DSWActor* actor) { if (Action == InitActorAmbientNoise) @@ -199,11 +220,23 @@ int DoActorNoise(ANIMATOR* Action, DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool CanSeePlayer(DSWActor* actor) { return actor->user.targetActor && FAFcansee(ActorVectOfTop(actor), actor->sector(), ActorUpperVect(actor->user.targetActor), actor->user.targetActor->sector()); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int CanHitPlayer(DSWActor* actor) { HitInfo hit{}; @@ -226,9 +259,11 @@ int CanHitPlayer(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- /* !AIC - Pick a nearby player to be the actors target */ +//--------------------------------------------------------------------------- int DoActorPickClosePlayer(DSWActor* actor) {