mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 02:01:39 +00:00
136 lines
4.9 KiB
C++
136 lines
4.9 KiB
C++
|
//-------------------------------------------------------------------------
|
||
|
/*
|
||
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
||
|
Copyright (C) 2019 Nuke.YKT
|
||
|
|
||
|
This file is part of NBlood.
|
||
|
|
||
|
NBlood is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU General Public License version 2
|
||
|
as published by the Free Software Foundation.
|
||
|
|
||
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
//-------------------------------------------------------------------------
|
||
|
#include "compat.h"
|
||
|
#include "build.h"
|
||
|
#include "pragmas.h"
|
||
|
#include "mmulti.h"
|
||
|
#include "common_game.h"
|
||
|
|
||
|
#include "actor.h"
|
||
|
#include "ai.h"
|
||
|
#include "airat.h"
|
||
|
#include "blood.h"
|
||
|
#include "db.h"
|
||
|
#include "dude.h"
|
||
|
#include "eventq.h"
|
||
|
#include "levels.h"
|
||
|
#include "player.h"
|
||
|
#include "seq.h"
|
||
|
#include "sfx.h"
|
||
|
#include "trig.h"
|
||
|
|
||
|
static void BiteSeqCallback(int, int);
|
||
|
static void thinkSearch(spritetype *, XSPRITE *);
|
||
|
static void thinkGoto(spritetype *, XSPRITE *);
|
||
|
static void thinkChase(spritetype *, XSPRITE *);
|
||
|
|
||
|
static int nBiteClient = seqRegisterClient(BiteSeqCallback);
|
||
|
|
||
|
AISTATE ratIdle = { kAiStateIdle, 0, -1, 0, NULL, NULL, aiThinkTarget, NULL };
|
||
|
AISTATE ratSearch = { kAiStateSearch, 7, -1, 1800, NULL, aiMoveForward, thinkSearch, &ratIdle };
|
||
|
AISTATE ratChase = { kAiStateChase, 7, -1, 0, NULL, aiMoveForward, thinkChase, NULL };
|
||
|
AISTATE ratDodge = { kAiStateMove, 7, -1, 0, NULL, NULL, NULL, &ratChase };
|
||
|
AISTATE ratRecoil = { kAiStateRecoil, 7, -1, 0, NULL, NULL, NULL, &ratDodge };
|
||
|
AISTATE ratGoto = { kAiStateMove, 7, -1, 600, NULL, aiMoveForward, thinkGoto, &ratIdle };
|
||
|
AISTATE ratBite = { kAiStateChase, 6, nBiteClient, 120, NULL, NULL, NULL, &ratChase };
|
||
|
|
||
|
static void BiteSeqCallback(int, int nXSprite)
|
||
|
{
|
||
|
XSPRITE *pXSprite = &xsprite[nXSprite];
|
||
|
int nSprite = pXSprite->reference;
|
||
|
spritetype *pSprite = &sprite[nSprite];
|
||
|
int dx = Cos(pSprite->ang)>>16;
|
||
|
int dy = Sin(pSprite->ang)>>16;
|
||
|
dassert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
||
|
dassert(pXSprite->target >= 0 && pXSprite->target < kMaxSprites);
|
||
|
spritetype *pTarget = &sprite[pXSprite->target];
|
||
|
if (IsPlayerSprite(pTarget))
|
||
|
actFireVector(pSprite, 0, 0, dx, dy, pTarget->z-pSprite->z, VECTOR_TYPE_16);
|
||
|
}
|
||
|
|
||
|
static void thinkSearch(spritetype *pSprite, XSPRITE *pXSprite)
|
||
|
{
|
||
|
aiChooseDirection(pSprite, pXSprite, pXSprite->goalAng);
|
||
|
aiThinkTarget(pSprite, pXSprite);
|
||
|
}
|
||
|
|
||
|
static void thinkGoto(spritetype *pSprite, XSPRITE *pXSprite)
|
||
|
{
|
||
|
dassert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
||
|
DUDEINFO *pDudeInfo = &dudeInfo[pSprite->type - kDudeBase];
|
||
|
int dx = pXSprite->targetX-pSprite->x;
|
||
|
int dy = pXSprite->targetY-pSprite->y;
|
||
|
int nAngle = getangle(dx, dy);
|
||
|
int nDist = approxDist(dx, dy);
|
||
|
aiChooseDirection(pSprite, pXSprite, nAngle);
|
||
|
if (nDist < 512 && klabs(pSprite->ang - nAngle) < pDudeInfo->periphery)
|
||
|
aiNewState(pSprite, pXSprite, &ratSearch);
|
||
|
aiThinkTarget(pSprite, pXSprite);
|
||
|
}
|
||
|
|
||
|
static void thinkChase(spritetype *pSprite, XSPRITE *pXSprite)
|
||
|
{
|
||
|
if (pXSprite->target == -1)
|
||
|
{
|
||
|
aiNewState(pSprite, pXSprite, &ratGoto);
|
||
|
return;
|
||
|
}
|
||
|
dassert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
||
|
DUDEINFO *pDudeInfo = &dudeInfo[pSprite->type - kDudeBase];
|
||
|
dassert(pXSprite->target >= 0 && pXSprite->target < kMaxSprites);
|
||
|
spritetype *pTarget = &sprite[pXSprite->target];
|
||
|
XSPRITE *pXTarget = &xsprite[pTarget->extra];
|
||
|
int dx = pTarget->x-pSprite->x;
|
||
|
int dy = pTarget->y-pSprite->y;
|
||
|
aiChooseDirection(pSprite, pXSprite, getangle(dx, dy));
|
||
|
if (pXTarget->health == 0)
|
||
|
{
|
||
|
aiNewState(pSprite, pXSprite, &ratSearch);
|
||
|
return;
|
||
|
}
|
||
|
if (IsPlayerSprite(pTarget) && powerupCheck(&gPlayer[pTarget->type-kDudePlayer1], 13) > 0)
|
||
|
{
|
||
|
aiNewState(pSprite, pXSprite, &ratSearch);
|
||
|
return;
|
||
|
}
|
||
|
int nDist = approxDist(dx, dy);
|
||
|
if (nDist <= pDudeInfo->seeDist)
|
||
|
{
|
||
|
int nDeltaAngle = ((getangle(dx,dy)+1024-pSprite->ang)&2047)-1024;
|
||
|
int height = (pDudeInfo->eyeHeight*pSprite->yrepeat)<<2;
|
||
|
if (cansee(pTarget->x, pTarget->y, pTarget->z, pTarget->sectnum, pSprite->x, pSprite->y, pSprite->z - height, pSprite->sectnum))
|
||
|
{
|
||
|
if (nDist < pDudeInfo->seeDist && klabs(nDeltaAngle) <= pDudeInfo->periphery)
|
||
|
{
|
||
|
aiSetTarget(pXSprite, pXSprite->target);
|
||
|
if (nDist < 0x399 && klabs(nDeltaAngle) < 85)
|
||
|
aiNewState(pSprite, pXSprite, &ratBite);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
aiNewState(pSprite, pXSprite, &ratGoto);
|
||
|
pXSprite->target = -1;
|
||
|
}
|