tbftss/src/battle/ai.c

921 lines
17 KiB
C
Raw Normal View History

2015-10-20 13:51:49 +02:00
/*
2016-02-21 16:50:27 +01:00
Copyright (C) 2015-2016 Parallel Realities
2015-10-20 13:51:49 +02:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "ai.h"
2015-12-14 09:15:41 +01:00
static void faceTarget(Entity *e);
static int isInFOV(Entity *e, int fov);
2015-10-20 13:51:49 +02:00
static void preAttack(void);
static void huntTarget(void);
static void huntAndAttackTarget(void);
2015-12-24 22:42:26 +01:00
static void moveToTargetLocation(void);
2015-10-20 13:51:49 +02:00
static void nextAction(void);
static void findTarget(void);
static int hasClearShot(void);
static void fallback(void);
2015-10-20 13:51:49 +02:00
static void moveToPlayer(void);
2015-12-14 09:15:41 +01:00
static int canAttack(Entity *e);
static int selectWeapon(int type);
static int nearJumpgate(void);
static void moveToJumpgate(void);
static int nearEnemies(void);
static int nearItems(void);
2016-04-01 12:40:09 +02:00
static int nearMines(void);
static void moveToItem(void);
static int nearTowableCraft(void);
static void moveToTowableCraft(void);
static int lookForPlayer(void);
2015-12-18 13:02:01 +01:00
static int lookForLeader(void);
static void fleeEnemies(void);
2015-11-21 18:37:23 +01:00
static int isRetreating(void);
2015-11-15 14:26:34 +01:00
static int getActionChance(int type);
static void doFighterAI(void);
2015-12-10 11:16:27 +01:00
static void doGunAI(void);
2015-12-18 13:02:01 +01:00
static void moveToLeader(void);
2015-12-24 22:42:26 +01:00
static void wander(void);
static void doWander(void);
2016-03-29 08:09:26 +02:00
static int selectWeaponForTarget(Entity *e);
2015-10-20 13:51:49 +02:00
void doAI(void)
2015-11-15 14:26:34 +01:00
{
if ((self->aiFlags & (AIF_AVOIDS_COMBAT | AIF_EVADE)) && nearEnemies())
2015-11-15 14:26:34 +01:00
{
return;
2015-11-15 14:26:34 +01:00
}
if ((self->aiFlags & AIF_DEFENSIVE) && rand() % 10 && nearEnemies())
{
return;
}
2016-04-01 12:40:09 +02:00
if (nearMines())
{
return;
}
if ((self->aiFlags & AIF_GOAL_JUMPGATE) && nearJumpgate())
{
2016-03-13 11:52:12 +01:00
/* near jumpgate, but you might decide to continue to fight, anyway */
if ((self->aiFlags & AIF_COVERS_RETREAT) && rand() % 3)
{
return;
}
}
if ((self->aiFlags & AIF_COLLECTS_ITEMS) && nearItems())
{
return;
}
if (self->aiFlags & AIF_TOWS)
{
if (!self->towing && nearTowableCraft())
{
return;
}
}
2015-11-21 18:37:23 +01:00
if ((self->aiFlags & AIF_RETREATS) && (battle.stats[STAT_TIME] % 60 == 0) && isRetreating())
{
return;
}
if (!(self->aiFlags & AIF_AVOIDS_COMBAT))
2015-11-15 14:26:34 +01:00
{
if (self->speed)
2015-12-10 11:16:27 +01:00
{
doFighterAI();
}
else
{
doGunAI();
}
return;
2015-11-15 14:26:34 +01:00
}
if (self->aiFlags & AIF_MOVES_TO_LEADER && lookForLeader())
{
return;
}
if ((self->aiFlags & (AIF_FOLLOWS_PLAYER|AIF_MOVES_TO_PLAYER)) && lookForPlayer())
{
return;
}
2015-12-24 22:42:26 +01:00
if (self->aiFlags & AIF_WANDERS)
{
doWander();
return;
2015-12-24 22:42:26 +01:00
}
/* no idea - just stay where you are */
applyFighterBrakes();
2015-11-15 14:26:34 +01:00
}
static void doFighterAI(void)
2015-10-20 13:51:49 +02:00
{
int r;
2015-11-14 14:03:57 +01:00
/* don't hold a grudge against current target */
2015-11-20 23:52:48 +01:00
if ((self->target != NULL && self->target->health <= 0) || rand() % 5 == 0)
{
2015-11-15 14:26:34 +01:00
self->action = doAI;
self->target = NULL;
}
2015-10-29 17:18:41 +01:00
2015-11-14 14:03:57 +01:00
if (!self->target || self->target->systemPower <= 0)
2015-10-20 13:51:49 +02:00
{
findTarget();
2015-12-10 11:16:27 +01:00
if (!self->target)
2015-10-20 13:51:49 +02:00
{
2015-12-18 13:02:01 +01:00
/* takes priority over move to player */
if (self->aiFlags & AIF_MOVES_TO_LEADER)
{
if (!lookForLeader())
{
if (self->aiFlags & AIF_MOVES_TO_PLAYER && player != NULL)
{
moveToPlayer();
}
else
{
applyFighterBrakes();
}
2015-12-18 13:02:01 +01:00
}
}
else if (self->aiFlags & AIF_MOVES_TO_PLAYER && player != NULL)
2015-10-20 13:51:49 +02:00
{
moveToPlayer();
}
else
2015-10-20 13:51:49 +02:00
{
applyFighterBrakes();
}
2015-10-29 17:18:41 +01:00
2015-10-20 13:51:49 +02:00
return;
}
}
/* don't start dodging, etc., if you're far from your target */
if (getDistance(self->x, self->y, self->target->x, self->target->y) > SCREEN_WIDTH)
{
self->action = huntTarget;
self->aiActionTime = FPS * 2;
return;
}
2015-10-20 13:51:49 +02:00
r = rand() % 100;
if (r <= getActionChance(AI_EVADE))
2015-10-20 13:51:49 +02:00
{
self->targetLocation.x = self->target->x + (rand() % 250 - rand() % 250);
self->targetLocation.y = self->target->y + (rand() % 250 - rand() % 250);
2015-12-24 22:42:26 +01:00
self->action = moveToTargetLocation;
2015-11-20 23:52:48 +01:00
self->aiActionTime = FPS;
2015-10-20 13:51:49 +02:00
}
else if (r <= getActionChance(AI_FALLBACK))
2015-10-20 13:51:49 +02:00
{
self->action = fallback;
self->aiActionTime = FPS * 2;
2015-10-20 13:51:49 +02:00
}
2015-11-15 14:26:34 +01:00
else if (r <= getActionChance(AI_HUNT))
2015-10-20 13:51:49 +02:00
{
self->action = huntTarget;
self->aiActionTime = FPS * 2;
}
else
{
self->action = huntAndAttackTarget;
self->aiActionTime = FPS * 3;
2015-10-20 13:51:49 +02:00
}
}
2015-12-10 11:16:27 +01:00
static void doGunAI(void)
{
int r;
/* don't hold a grudge against current target */
if ((self->target != NULL && self->target->health <= 0) || rand() % 5 == 0)
{
self->action = doAI;
self->target = NULL;
}
if (!self->target || self->target->systemPower <= 0)
{
findTarget();
if (!self->target)
{
return;
}
}
r = rand() % 100;
if (r <= 50)
{
self->action = huntTarget;
self->aiActionTime = FPS * 3;
}
else
{
self->action = huntAndAttackTarget;
self->aiActionTime = FPS;
}
}
2015-11-15 14:26:34 +01:00
static int getActionChance(int type)
{
switch (type)
{
case AI_EVADE:
return 25 - (self->aiAggression * 4);
2015-11-15 14:26:34 +01:00
case AI_FALLBACK:
return 55 - (self->aiAggression * 4);
2015-11-15 14:26:34 +01:00
case AI_HUNT:
return 85 - (self->aiAggression * 4);
2015-11-15 14:26:34 +01:00
}
return 100;
}
2015-10-20 13:51:49 +02:00
static void huntTarget(void)
{
faceTarget(self->target);
applyFighterThrust();
nextAction();
}
static void huntAndAttackTarget(void)
{
int dist = getDistance(self->x, self->y, self->target->x, self->target->y);
int range = self->aiFlags & AIF_LONG_RANGE_FIRE ? (SCREEN_WIDTH * 1.5) : SCREEN_HEIGHT;
2015-10-20 13:51:49 +02:00
faceTarget(self->target);
if (dist <= range && hasClearShot())
2015-10-20 13:51:49 +02:00
{
preAttack();
}
if (dist <= 250)
{
applyFighterBrakes();
}
else
{
applyFighterThrust();
}
nextAction();
}
static void findTarget(void)
{
2015-11-14 14:03:57 +01:00
int i;
Entity *e, **candidates;
unsigned int dist, closest;
2016-02-28 14:02:57 +01:00
dist = closest = (battle.isEpic || (self->aiFlags & AIF_UNLIMITED_RANGE)) ? MAX_TARGET_RANGE : 2000;
2015-10-20 13:51:49 +02:00
candidates = getAllEntsWithin(self->x - (self->w / 2) - (dist / 2), self->y - (self->h / 2) - (dist / 2), self->w + dist, self->h + dist, self);
2015-11-14 14:03:57 +01:00
self->target = NULL;
2015-11-14 14:03:57 +01:00
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
2015-10-20 13:51:49 +02:00
{
2016-03-29 08:09:26 +02:00
if (canAttack(e))
2015-10-20 13:51:49 +02:00
{
2015-11-14 14:03:57 +01:00
dist = getDistance(self->x, self->y, e->x, e->y);
2015-10-20 13:51:49 +02:00
if (dist < closest)
{
self->target = e;
closest = dist;
2015-10-20 13:51:49 +02:00
}
}
}
}
2015-12-14 09:15:41 +01:00
static int canAttack(Entity *e)
{
2016-03-29 08:09:26 +02:00
if (!e->active || e->side == self->side || e->health <= 0)
{
return 0;
}
if (!(e->flags & EF_TAKES_DAMAGE))
{
return 0;
}
if (!(e->flags & EF_AI_TARGET))
{
if (e->aiFlags & (AIF_AVOIDS_COMBAT | AIF_EVADE) || e->flags & EF_SECONDARY_TARGET)
{
2016-03-29 23:45:46 +02:00
return !(rand() % 5);
}
}
2016-03-29 23:45:46 +02:00
if ((self->aiFlags & AIF_TARGET_FOCUS) && (!(e->flags & EF_AI_TARGET)))
{
return 0;
}
2016-03-29 08:09:26 +02:00
return selectWeaponForTarget(e);
}
static int selectWeaponForTarget(Entity *e)
{
self->selectedGunType = self->guns[0].type;
2015-12-14 09:15:41 +01:00
if (e->flags & EF_MUST_DISABLE)
{
2015-12-14 09:15:41 +01:00
if (e->systemPower > 0)
{
return selectWeapon(BT_MAG);
}
return 0;
}
2015-12-14 09:15:41 +01:00
if (e->flags & EF_NO_KILL)
{
return selectWeapon(BT_LASER) || selectWeapon(BT_MAG);
}
2015-12-14 09:15:41 +01:00
if (e->shield > 0)
{
selectWeapon(BT_LASER);
}
return 1;
}
static int selectWeapon(int type)
{
int i;
for (i = 0 ; i < MAX_FIGHTER_GUNS ; i++)
{
if (self->guns[i].type == type)
{
self->selectedGunType = type;
return 1;
}
}
return 0;
}
2015-12-14 09:15:41 +01:00
static void faceTarget(Entity *e)
2015-10-20 13:51:49 +02:00
{
int dir;
2015-12-14 09:15:41 +01:00
int wantedAngle = getAngle(self->x, self->y, e->x, e->y);
2015-10-20 13:51:49 +02:00
wantedAngle %= 360;
if (fabs(wantedAngle - self->angle) > TURN_THRESHOLD)
{
dir = ((int)(wantedAngle - self->angle + 360)) % 360 > 180 ? -1 : 1;
2015-10-20 13:51:49 +02:00
self->angle += dir * TURN_SPEED;
self->angle = mod(self->angle, 360);
applyFighterBrakes();
}
}
2015-12-14 09:15:41 +01:00
static int isInFOV(Entity *e, int fov)
2015-10-20 13:51:49 +02:00
{
int angle, a, b;
a = mod(self->angle - fov, 360);
b = mod(self->angle + fov, 360);
2015-12-14 09:15:41 +01:00
angle = getAngle(self->x, self->y, e->x, e->y);
2015-10-20 13:51:49 +02:00
return (a < b) ? (a <= angle && angle <= b) : (a <= angle || angle <= b);
}
static int hasClearShot(void)
{
int dist;
Entity *e;
2015-10-20 13:51:49 +02:00
if (isInFOV(self->target, 4))
{
dist = getDistance(self->x, self->y, self->target->x, self->target->y);
for (e = battle.entityHead.next ; e != NULL ; e = e->next)
2015-10-20 13:51:49 +02:00
{
2015-12-10 11:16:27 +01:00
if (self->owner != NULL && self->owner == e->owner)
{
continue;
}
if (e->active && e != self && e != self->owner && e != self->target && (getDistance(self->x, self->y, e->x, e->y) < dist))
2015-10-20 13:51:49 +02:00
{
if (isInFOV(e, 8))
2015-10-20 13:51:49 +02:00
{
return 0;
}
}
}
return 1;
}
return 0;
}
static void preAttack(void)
{
2015-10-30 22:55:01 +01:00
if (!self->reload)
2015-10-20 13:51:49 +02:00
{
2015-11-22 09:17:29 +01:00
if (!(self->aiFlags & AIF_MISSILE_BOAT))
2015-10-30 22:55:01 +01:00
{
2015-11-22 09:17:29 +01:00
/* force weapon selection, otherwise we'll keep using lasers / mag */
2016-03-29 08:09:26 +02:00
selectWeaponForTarget(self->target);
2015-11-22 09:17:29 +01:00
if (self->guns[0].type && (self->missiles == 0 || rand() % 50 > 0))
{
2015-12-18 11:12:37 +01:00
if (!dev.noAIWeapons)
{
fireGuns(self);
}
2015-11-22 09:17:29 +01:00
}
else if (self->missiles && getDistance(self->x, self->y, self->target->x, self->target->y) >= 350)
2015-11-22 09:17:29 +01:00
{
2015-12-18 11:12:37 +01:00
if (!dev.noAIWeapons)
{
fireMissile(self);
}
self->action = doAI;
2015-11-22 09:17:29 +01:00
}
2015-10-30 22:55:01 +01:00
}
2015-11-22 09:17:29 +01:00
else
2015-10-30 22:55:01 +01:00
{
2015-11-22 09:17:29 +01:00
fireRocket(self);
/* don't constantly fire rockets like normal guns */
if (rand() % 3)
2015-11-22 09:17:29 +01:00
{
self->action = doAI;
}
2015-10-30 22:55:01 +01:00
}
2015-10-20 13:51:49 +02:00
}
}
static void turnToFace(int wantedAngle)
2015-10-20 13:51:49 +02:00
{
int dir;
wantedAngle %= 360;
if (fabs(wantedAngle - self->angle) > TURN_THRESHOLD)
{
dir = ((int)(wantedAngle - self->angle + 360)) % 360 > 180 ? -1 : 1;
2015-10-20 13:51:49 +02:00
self->angle += dir * TURN_SPEED;
self->angle = mod(self->angle, 360);
}
}
static void turnAndFly(int wantedAngle)
{
turnToFace(wantedAngle);
2015-10-20 13:51:49 +02:00
applyFighterThrust();
nextAction();
}
2015-12-24 22:42:26 +01:00
static void moveToTargetLocation(void)
{
2015-11-20 23:52:48 +01:00
int wantedAngle = getAngle(self->x, self->y, self->targetLocation.x, self->targetLocation.y);
turnAndFly(wantedAngle);
}
static void fallback(void)
{
int wantedAngle = 180 + getAngle(self->x, self->y, self->target->x, self->target->y);
turnAndFly(wantedAngle);
}
2015-11-15 14:26:34 +01:00
static void nextAction(void)
{
if (--self->aiActionTime <= 0)
{
self->action = doAI;
}
}
2015-11-21 18:37:23 +01:00
static int isRetreating(void)
{
2015-11-22 14:06:19 +01:00
float chance;
2015-11-21 18:37:23 +01:00
if (!(self->flags & EF_RETREATING))
{
2015-11-22 14:06:19 +01:00
if (battle.numInitialEnemies > 0)
2015-11-21 18:37:23 +01:00
{
2015-11-22 14:06:19 +01:00
chance = battle.numEnemies;
chance /= battle.numInitialEnemies;
chance *= 256;
2015-11-21 18:37:23 +01:00
2015-11-22 14:06:19 +01:00
if (battle.numEnemies > 0 && rand() % 100 > chance)
{
self->flags |= EF_RETREATING;
self->aiFlags |= AIF_AVOIDS_COMBAT;
self->aiFlags |= AIF_UNLIMITED_RANGE;
self->aiFlags |= AIF_GOAL_JUMPGATE;
2015-11-22 14:06:19 +01:00
2016-02-28 14:45:17 +01:00
addHudMessage(colors.red, _("%s is retreating!"), self->name);
2015-11-22 14:06:19 +01:00
return 1;
}
2015-11-21 18:37:23 +01:00
}
}
return self->flags & EF_RETREATING;
}
2015-11-15 14:26:34 +01:00
static int nearEnemies(void)
{
int i, numEnemies;
Entity *e, **candidates;
candidates = getAllEntsWithin(self->x - 500, self->y - 500, 1000, 1000, self);
2015-11-15 14:26:34 +01:00
self->target = NULL;
self->targetLocation.x = self->targetLocation.y = 0;
numEnemies = 0;
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
{
if ((e->flags & EF_TAKES_DAMAGE) && e->side != self->side && !(e->flags & EF_DISABLED))
2015-11-15 14:26:34 +01:00
{
2016-03-29 23:45:46 +02:00
if ((self->aiFlags & AIF_TARGET_FOCUS) && (e->flags & EF_AI_TARGET))
{
continue;
}
if (getDistance(e->x, e->y, self->x, self->y) < 1000)
{
self->targetLocation.x += e->x;
self->targetLocation.y += e->y;
numEnemies++;
}
2015-11-15 14:26:34 +01:00
}
}
if (numEnemies)
{
self->targetLocation.x /= numEnemies;
self->targetLocation.y /= numEnemies;
2015-12-20 17:13:49 +01:00
/* dodge slightly */
2016-04-01 12:40:09 +02:00
self->targetLocation.x += (rand() % 100 - rand() % 100);
self->targetLocation.y += (rand() % 100 - rand() % 100);
self->action = fleeEnemies;
self->aiActionTime = FPS * 2;
return 1;
}
return 0;
}
static int nearMines(void)
{
int i, numMines;
Entity *e, **candidates;
candidates = getAllEntsWithin(self->x - 500, self->y - 500, 1000, 1000, self);
self->targetLocation.x = self->targetLocation.y = 0;
numMines = 0;
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
{
if (e->type == ET_MINE && getDistance(e->x, e->y, self->x, self->y) < 500)
{
self->targetLocation.x += e->x;
self->targetLocation.y += e->y;
numMines++;
}
}
if (numMines)
{
self->targetLocation.x /= numMines;
self->targetLocation.y /= numMines;
/* dodge slightly */
2015-12-20 17:13:49 +01:00
self->targetLocation.x += (rand() % 100 - rand() % 100);
self->targetLocation.y += (rand() % 100 - rand() % 100);
2015-11-15 14:26:34 +01:00
self->action = fleeEnemies;
2015-12-20 17:13:49 +01:00
self->aiActionTime = FPS * 2;
2015-11-15 14:26:34 +01:00
return 1;
}
return 0;
}
static void fleeEnemies(void)
2015-10-29 17:18:41 +01:00
{
2015-11-15 14:26:34 +01:00
int wantedAngle = 180 + getAngle(self->x, self->y, self->targetLocation.x, self->targetLocation.y);
2015-10-29 17:18:41 +01:00
turnAndFly(wantedAngle);
2015-11-21 18:37:23 +01:00
nextAction();
2015-10-20 13:51:49 +02:00
}
static void moveToPlayer(void)
{
int wantedAngle;
2015-10-20 13:51:49 +02:00
int dist = getDistance(self->x, self->y, player->x, player->y);
if (dist <= 350)
2015-10-20 13:51:49 +02:00
{
if (fabs(player->dx) >= 1 && fabs(player->dy) >= 1)
{
2016-03-16 07:53:20 +01:00
wantedAngle = getAngle(player->x, player->y, player->x + (player->dx * 1000), player->y + (player->dy * 1000));
turnToFace(wantedAngle);
2016-03-12 13:11:30 +01:00
applyFighterThrust();
}
if (dist <= 250)
{
applyFighterBrakes();
2015-10-20 13:51:49 +02:00
self->aiActionTime = MIN(FPS, self->aiActionTime);
}
2015-10-20 13:51:49 +02:00
}
else
{
faceTarget(player);
applyFighterThrust();
}
}
static int nearJumpgate(void)
{
2015-11-20 23:52:48 +01:00
int dist;
self->target = NULL;
if (battle.jumpgate)
{
dist = getDistance(self->x, self->y, battle.jumpgate->x, battle.jumpgate->y);
2015-11-20 23:52:48 +01:00
if (dist <= 2000 || self->aiFlags & AIF_UNLIMITED_RANGE)
{
self->target = battle.jumpgate;
self->action = moveToJumpgate;
self->aiActionTime = (!self->towing) ? FPS / 2 : FPS * 2;
}
}
return self->target != NULL;
}
static void moveToJumpgate(void)
{
faceTarget(self->target);
applyFighterThrust();
2015-11-21 18:37:23 +01:00
nextAction();
}
static int nearItems(void)
{
int i;
long closest, distance;
Entity *e, **candidates;
closest = MAX_TARGET_RANGE;
2016-02-21 08:48:22 +01:00
candidates = getAllEntsWithin(self->x - (self->w / 2) - (SCREEN_WIDTH / 4), self->y - (self->h / 2) - (SCREEN_HEIGHT / 4), SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2, self);
self->target = NULL;
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
{
if (e->type == ET_ITEM)
{
distance = getDistance(self->x, self->y, e->x, e->y);
if (distance < closest)
{
self->target = e;
closest = distance;
}
}
}
if (self->target != NULL)
{
self->action = moveToItem;
2015-11-21 18:37:23 +01:00
self->aiActionTime = FPS / 2;
}
return self->target != NULL;
}
static void moveToItem(void)
{
if (self->target->alive == ALIVE_ALIVE)
{
faceTarget(self->target);
applyFighterThrust();
return;
}
self->target = NULL;
self->action = doAI;
}
static int nearTowableCraft(void)
{
int i;
long closest, dist;
2015-11-11 20:15:41 +01:00
Entity *e, **candidates;
dist = closest = (battle.isEpic || (self->aiFlags & AIF_UNLIMITED_RANGE)) ? MAX_TARGET_RANGE : 2000;
candidates = getAllEntsWithin(self->x - (self->w / 2) - (dist / 2), self->y - (self->h / 2) - (dist / 2), self->w + dist, self->h + dist, self);
2015-12-18 13:02:01 +01:00
self->target = NULL;
2015-11-14 00:35:51 +01:00
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
{
if (!e->owner && (e->flags & (EF_DISABLED|EF_MISSION_TARGET)) == (EF_DISABLED|EF_MISSION_TARGET) && (e->flags & EF_ROPED_ATTACHED) == 0)
{
dist = getDistance(self->x, self->y, e->x, e->y);
if (dist < closest)
{
self->target = e;
closest = dist;
}
}
}
if (self->target != NULL)
{
self->action = moveToTowableCraft;
2015-11-21 18:37:23 +01:00
self->aiActionTime = FPS / 2;
}
return self->target != NULL;
}
static void moveToTowableCraft(void)
{
faceTarget(self->target);
applyFighterThrust();
nextAction();
}
static int lookForPlayer(void)
{
2015-11-28 15:33:05 +01:00
int range = (self->aiFlags & AIF_MOVES_TO_PLAYER) ? MAX_TARGET_RANGE : 2000;
if (player != NULL && getDistance(self->x, self->y, player->x, player->y) < range)
{
moveToPlayer();
return 1;
}
return 0;
}
2015-12-18 13:02:01 +01:00
static int lookForLeader(void)
{
long closest, distance;
Entity *e;
self->leader = NULL;
closest = 0;
2015-12-18 13:02:01 +01:00
for (e = battle.entityHead.next ; e != NULL ; e = e->next)
{
if (e->active && e->flags & EF_AI_LEADER && e->side == self->side)
2015-12-18 13:02:01 +01:00
{
distance = getDistance(self->x, self->y, e->x, e->y);
if (!closest || distance < closest)
2015-12-18 13:02:01 +01:00
{
self->leader = e;
closest = distance;
}
}
}
if (self->leader)
{
2015-12-30 19:44:48 +01:00
self->aiActionTime = FPS;
self->action = moveToLeader;
2015-12-18 13:02:01 +01:00
return 1;
}
return 0;
}
static void moveToLeader(void)
{
int wantedAngle;
2015-12-18 13:02:01 +01:00
int dist = getDistance(self->x, self->y, self->leader->x, self->leader->y);
if (dist <= 350)
2015-12-18 13:02:01 +01:00
{
if (fabs(self->leader->dx) >= 1 && fabs(self->leader->dy) >= 1)
{
2016-03-16 07:53:20 +01:00
wantedAngle = getAngle(self->leader->x, self->leader->y, self->leader->x + (self->leader->dx * 1000), self->leader->y + (self->leader->dy * 1000));
turnToFace(wantedAngle);
2016-03-12 13:11:30 +01:00
applyFighterThrust();
}
if (dist <= 250)
{
applyFighterBrakes();
self->aiActionTime = MIN(FPS, self->aiActionTime);
}
2015-12-18 13:02:01 +01:00
}
else
{
faceTarget(self->leader);
applyFighterThrust();
}
2015-12-30 19:44:48 +01:00
nextAction();
2015-12-18 13:02:01 +01:00
}
2015-12-24 22:42:26 +01:00
static void doWander(void)
{
2016-02-21 08:48:22 +01:00
self->targetLocation.x = 500 + (rand() % (BATTLE_AREA_WIDTH - 1000));
self->targetLocation.y = 500 + (rand() % (BATTLE_AREA_HEIGHT - 1000));
2015-12-24 22:42:26 +01:00
self->aiActionTime = FPS * 15;
2015-12-30 19:44:48 +01:00
self->action = wander;
2015-12-24 22:42:26 +01:00
}
static void wander(void)
{
moveToTargetLocation();
if (nearEnemies())
{
self->aiActionTime = 0;
}
nextAction();
}