raze/source/games/exhumed/src/rex.cpp

509 lines
12 KiB
C++
Raw Normal View History

//-------------------------------------------------------------------------
/*
Copyright (C) 2010-2019 EDuke32 developers and contributors
Copyright (C) 2019 sirlemonhead, Nuke.YKT
This file is part of PCExhumed.
PCExhumed 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 "ns.h"
#include "aistuff.h"
#include "exhumed.h"
#include "engine.h"
#include "sequence.h"
#include "sound.h"
#include "player.h"
#include <assert.h>
BEGIN_PS_NS
struct Rex
{
short nHealth;
short nFrame;
short nAction;
short nSprite;
short nTarget;
2020-11-29 19:43:35 +00:00
short nCount;
short nChannel;
};
2020-11-29 19:43:35 +00:00
TArray<Rex> RexList;
static actionSeq RexSeq[] = {
{29, 0},
{0, 0},
{0, 0},
{37, 0},
{9, 0},
{18, 0},
{27, 1},
{28, 1}
};
2020-11-29 19:43:35 +00:00
FSerializer& Serialize(FSerializer& arc, const char* keyname, Rex& w, Rex* def)
{
if (arc.BeginObject(keyname))
{
arc("health", w.nHealth)
("frame", w.nFrame)
("action", w.nAction)
("sprite", w.nSprite)
("target", w.nTarget)
("count", w.nCount)
("channel", w.nChannel)
.EndObject();
}
return arc;
}
2020-11-29 19:43:35 +00:00
void SerializeRex(FSerializer& arc)
{
arc("rex", RexList);
}
void InitRexs()
{
2020-11-29 19:43:35 +00:00
RexList.Clear();
}
void BuildRex(short nSprite, int x, int y, int z, short nSector, short nAngle, int nChannel)
{
2020-11-29 19:43:35 +00:00
int nRex = RexList.Reserve(1);
2021-10-15 21:03:09 +00:00
auto pSprite = &sprite[nSprite];
if (nSprite == -1)
{
nSprite = insertsprite(nSector, 119);
2021-10-15 21:03:09 +00:00
pSprite = &sprite[nSprite];
}
else
{
changespritestat(nSprite, 119);
x = pSprite->x;
y = pSprite->y;
z = sector[pSprite->sectnum].floorz;
nAngle = pSprite->ang;
}
assert(nSprite >= 0 && nSprite < kMaxSprites);
pSprite->x = x;
pSprite->y = y;
pSprite->z = z;
pSprite->cstat = 0x101;
pSprite->clipdist = 80;
pSprite->shade = -12;
pSprite->xrepeat = 64;
pSprite->yrepeat = 64;
pSprite->picnum = 1;
pSprite->pal = sector[pSprite->sectnum].ceilingpal;
pSprite->xoffset = 0;
pSprite->yoffset = 0;
pSprite->ang = nAngle;
pSprite->xvel = 0;
pSprite->yvel = 0;
pSprite->zvel = 0;
pSprite->lotag = runlist_HeadRun() + 1;
pSprite->extra = -1;
pSprite->hitag = 0;
GrabTimeSlot(3);
RexList[nRex].nAction = 0;
RexList[nRex].nHealth = 4000;
2021-10-15 21:03:09 +00:00
RexList[nRex].nFrame = 0;
RexList[nRex].nSprite = nSprite;
RexList[nRex].nTarget = -1;
2020-11-29 19:43:35 +00:00
RexList[nRex].nCount = 0;
2020-11-29 19:43:35 +00:00
RexList[nRex].nChannel = nChannel;
pSprite->owner = runlist_AddRunRec(pSprite->lotag - 1, nRex, 0x180000);
// this isn't stored anywhere.
runlist_AddRunRec(NewRun, nRex, 0x180000);
nCreaturesTotal++;
}
2021-10-15 21:03:09 +00:00
void AIRex::RadialDamage(RunListEvent* ev)
{
2021-10-15 21:03:09 +00:00
short nRex = RunData[ev->nRun].nVal;
2020-11-29 19:43:35 +00:00
assert(nRex >= 0 && nRex < (int)RexList.Size());
short nAction = RexList[nRex].nAction;
short nSprite = RexList[nRex].nSprite;
2021-10-15 21:03:09 +00:00
if (nAction == 5)
{
ev->nDamage = runlist_CheckRadialDamage(nSprite);
}
Damage(ev);
}
void AIRex::Damage(RunListEvent* ev)
{
short nRex = RunData[ev->nRun].nVal;
assert(nRex >= 0 && nRex < (int)RexList.Size());
short nAction = RexList[nRex].nAction;
short nSprite = RexList[nRex].nSprite;
auto pSprite = &sprite[nSprite];
2021-10-15 21:03:09 +00:00
if (ev->nDamage)
{
2021-10-15 21:03:09 +00:00
short nTarget = ev->nIndex;
if (nTarget >= 0 && sprite[nTarget].statnum == 100)
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nTarget = nTarget;
}
2021-10-15 21:03:09 +00:00
if (RexList[nRex].nAction == 5 && RexList[nRex].nHealth > 0)
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nHealth -= dmgAdjust(ev->nDamage);
if (RexList[nRex].nHealth <= 0)
{
2021-10-15 21:03:09 +00:00
pSprite->xvel = 0;
pSprite->yvel = 0;
pSprite->zvel = 0;
pSprite->cstat &= 0xFEFE;
RexList[nRex].nHealth = 0;
nCreaturesKilled++;
if (nAction < 6)
{
RexList[nRex].nAction = 6;
RexList[nRex].nFrame = 0;
}
}
}
2021-10-15 21:03:09 +00:00
}
}
void AIRex::Draw(RunListEvent* ev)
{
short nRex = RunData[ev->nRun].nVal;
assert(nRex >= 0 && nRex < (int)RexList.Size());
short nAction = RexList[nRex].nAction;
seq_PlotSequence(ev->nIndex, SeqOffsets[kSeqRex] + RexSeq[nAction].a, RexList[nRex].nFrame, RexSeq[nAction].b);
return;
}
void AIRex::Tick(RunListEvent* ev)
{
short nRex = RunData[ev->nRun].nVal;
assert(nRex >= 0 && nRex < (int)RexList.Size());
short nAction = RexList[nRex].nAction;
short nSprite = RexList[nRex].nSprite;
auto pSprite = &sprite[nSprite];
bool bVal = false;
Gravity(nSprite);
int nSeq = SeqOffsets[kSeqRex] + RexSeq[nAction].a;
pSprite->picnum = seq_GetSeqPicnum2(nSeq, RexList[nRex].nFrame);
int ecx = 2;
if (nAction != 2) {
ecx = 1;
}
// moves the mouth open and closed as it's idle?
while (--ecx != -1)
{
seq_MoveSequence(nSprite, nSeq, RexList[nRex].nFrame);
RexList[nRex].nFrame++;
if (RexList[nRex].nFrame >= SeqSize[nSeq])
{
RexList[nRex].nFrame = 0;
bVal = true;
}
}
int nFlag = FrameFlag[SeqBase[nSeq] + RexList[nRex].nFrame];
short nTarget = RexList[nRex].nTarget;
2021-10-15 21:03:09 +00:00
switch (nAction)
{
default:
return;
case 0:
{
if (!RexList[nRex].nCount)
{
2021-10-15 21:03:09 +00:00
if ((nRex & 0x1F) == (totalmoves & 0x1F))
{
2021-10-15 21:03:09 +00:00
if (nTarget < 0)
{
2021-10-15 21:03:09 +00:00
short nAngle = pSprite->ang; // make backup of this variable
RexList[nRex].nTarget = FindPlayer(nSprite, 60);
pSprite->ang = nAngle;
}
2021-10-15 21:03:09 +00:00
else
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nCount = 60;
}
}
}
2021-10-15 21:03:09 +00:00
else
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nCount--;
if (RexList[nRex].nCount <= 0)
{
RexList[nRex].nAction = 1;
RexList[nRex].nFrame = 0;
2021-10-15 21:03:09 +00:00
pSprite->xvel = bcos(pSprite->ang, -2);
pSprite->yvel = bsin(pSprite->ang, -2);
2021-10-15 21:03:09 +00:00
D3PlayFX(StaticSound[kSound48], nSprite);
2021-10-15 21:03:09 +00:00
RexList[nRex].nCount = 30;
}
}
2021-10-15 21:03:09 +00:00
return;
}
2021-10-15 21:03:09 +00:00
case 1:
{
if (RexList[nRex].nCount > 0)
{
RexList[nRex].nCount--;
}
2021-10-15 21:03:09 +00:00
if ((nRex & 0x0F) == (totalmoves & 0x0F))
{
if (!RandomSize(1))
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nAction = 5;
RexList[nRex].nFrame = 0;
pSprite->xvel = 0;
pSprite->yvel = 0;
return;
}
else
{
if (((PlotCourseToSprite(nSprite, nTarget) >> 8) >= 60) || RexList[nRex].nCount > 0)
{
int nAngle = pSprite->ang & 0xFFF8;
pSprite->xvel = bcos(nAngle, -2);
pSprite->yvel = bsin(nAngle, -2);
}
else
{
2021-10-15 21:03:09 +00:00
RexList[nRex].nAction = 2;
RexList[nRex].nCount = 240;
D3PlayFX(StaticSound[kSound48], nSprite);
RexList[nRex].nFrame = 0;
2021-10-15 21:03:09 +00:00
return;
}
2019-11-16 13:29:18 +00:00
}
2021-10-15 21:03:09 +00:00
}
2021-10-15 21:03:09 +00:00
int nMov = MoveCreatureWithCaution(nSprite);
2021-10-15 21:03:09 +00:00
switch ((nMov & 0xC000))
{
case 0xC000:
{
if ((nMov & 0x3FFF) == nTarget)
{
2021-10-15 21:03:09 +00:00
PlotCourseToSprite(nSprite, nTarget);
RexList[nRex].nAction = 4;
RexList[nRex].nFrame = 0;
break;
}
fallthrough__;
}
case 0x8000:
{
pSprite->ang = (pSprite->ang + 256) & kAngleMask;
pSprite->xvel = bcos(pSprite->ang, -2);
pSprite->yvel = bsin(pSprite->ang, -2);
RexList[nRex].nAction = 1;
RexList[nRex].nFrame = 0;
nAction = 1;
break;
}
}
2021-10-15 21:03:09 +00:00
break;
}
2021-10-15 21:03:09 +00:00
case 2:
{
RexList[nRex].nCount--;
if (RexList[nRex].nCount > 0)
{
PlotCourseToSprite(nSprite, nTarget);
2021-10-15 21:03:09 +00:00
pSprite->xvel = bcos(pSprite->ang, -1);
pSprite->yvel = bsin(pSprite->ang, -1);
2021-10-15 21:03:09 +00:00
int nMov = MoveCreatureWithCaution(nSprite);
2021-10-15 21:03:09 +00:00
switch (nMov & 0xC000)
{
case 0x8000:
{
SetQuake(nSprite, 25);
RexList[nRex].nCount = 60;
pSprite->ang = (pSprite->ang + 256) & kAngleMask;
pSprite->xvel = bcos(pSprite->ang, -2);
pSprite->yvel = bsin(pSprite->ang, -2);
RexList[nRex].nAction = 1;
RexList[nRex].nFrame = 0;
nAction = 1;
break;
}
case 0xC000:
{
RexList[nRex].nAction = 3;
RexList[nRex].nFrame = 0;
2021-10-15 21:03:09 +00:00
short nSprite2 = nMov & 0x3FFF;
2021-10-15 21:03:09 +00:00
if (sprite[nSprite2].statnum && sprite[nSprite2].statnum < 107)
{
short nAngle = pSprite->ang;
2021-10-15 21:03:09 +00:00
runlist_DamageEnemy(nSprite2, nSprite, 15);
2021-10-15 21:03:09 +00:00
int xVel = bcos(nAngle) * 15;
int yVel = bsin(nAngle) * 15;
2021-10-15 21:03:09 +00:00
if (sprite[nSprite2].statnum == 100)
{
2021-10-15 21:03:09 +00:00
short nPlayer = GetPlayerFromSprite(nSprite2);
nXDamage[nPlayer] += (xVel << 4);
nYDamage[nPlayer] += (yVel << 4);
sprite[nSprite2].zvel = -3584;
}
else
{
2021-10-15 21:03:09 +00:00
sprite[nSprite2].xvel += (xVel >> 3);
sprite[nSprite2].yvel += (yVel >> 3);
sprite[nSprite2].zvel = -2880;
}
}
2021-10-15 21:03:09 +00:00
RexList[nRex].nCount >>= 2;
return;
}
}
}
else
{
RexList[nRex].nAction = 1;
RexList[nRex].nFrame = 0;
RexList[nRex].nCount = 90;
}
2021-10-15 21:03:09 +00:00
return;
}
2021-10-15 21:03:09 +00:00
case 3:
{
if (bVal)
{
RexList[nRex].nAction = 2;
}
return;
}
2021-10-15 21:03:09 +00:00
case 4:
{
if (nTarget != -1)
{
if (PlotCourseToSprite(nSprite, nTarget) < 768)
{
if (nFlag & 0x80)
{
2021-10-15 21:03:09 +00:00
runlist_DamageEnemy(nTarget, nSprite, 15);
}
2021-10-15 21:03:09 +00:00
break;
}
2021-10-15 21:03:09 +00:00
}
2021-10-15 21:03:09 +00:00
RexList[nRex].nAction = 1;
break;
}
case 5:
{
if (bVal)
{
RexList[nRex].nAction = 1;
RexList[nRex].nCount = 15;
}
return;
}
case 6:
{
if (bVal)
{
RexList[nRex].nAction = 7;
RexList[nRex].nFrame = 0;
runlist_ChangeChannel(RexList[nRex].nChannel, 1);
}
return;
}
case 7:
{
pSprite->cstat &= 0xFEFE;
return;
}
}
// break-ed
if (nAction > 0)
{
if ((nTarget != -1) && (!(sprite[nTarget].cstat & 0x101)))
{
RexList[nRex].nAction = 0;
RexList[nRex].nFrame = 0;
RexList[nRex].nCount = 0;
RexList[nRex].nTarget = -1;
pSprite->xvel = 0;
pSprite->yvel = 0;
}
}
2021-10-15 21:03:09 +00:00
return;
}
void FuncRex(int nObject, int nMessage, int nDamage, int nRun)
{
AIRex ai;
runlist_DispatchEvent(&ai, nObject, nMessage, nDamage, nRun);
}
END_PS_NS