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

298 lines
7.2 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 "engine.h"
#include "aistuff.h"
#include "sequence.h"
#include "exhumed.h"
#include "sound.h"
#include <assert.h>
BEGIN_PS_NS
short nMagicSeq = -1;
short nPreMagicSeq = -1;
short nSavePointSeq = -1;
2021-10-24 18:21:27 +00:00
//FreeListArray<Anim, kMaxAnims> AnimList;
2020-11-29 23:47:53 +00:00
void SerializeAnim(FSerializer& arc)
{
if (arc.BeginObject("anims"))
{
arc("magic", nMagicSeq)
("premagic", nPreMagicSeq)
("savepoint", nSavePointSeq)
.EndObject();
}
}
2020-11-29 23:47:53 +00:00
void InitAnims()
{
nMagicSeq = SeqOffsets[kSeqItems] + 21;
nPreMagicSeq = SeqOffsets[kSeqMagic2];
nSavePointSeq = SeqOffsets[kSeqItems] + 12;
}
2021-10-24 18:21:27 +00:00
void DestroyAnim(DExhumedActor* pActor)
{
2021-10-24 18:21:27 +00:00
if (pActor)
{
2021-10-24 18:21:27 +00:00
auto pSprite = &pActor->s();
StopActorSound(pActor);
runlist_SubRunRec(pActor->nRun);
runlist_DoSubRunRec(pSprite->extra);
runlist_FreeRun(pSprite->lotag - 1);
2021-10-24 18:21:27 +00:00
DeleteActor(pActor);
}
}
2021-10-24 18:21:27 +00:00
DExhumedActor* BuildAnim(DExhumedActor* pActor, int val, int val2, int x, int y, int z, int nSector, int nRepeat, int nFlag)
{
2021-10-24 18:21:27 +00:00
if (pActor == nullptr) {
pActor = insertActor(nSector, 500);
}
2021-10-24 18:21:27 +00:00
auto pSprite = &pActor->s();
pSprite->x = x;
pSprite->y = y;
pSprite->z = z;
pSprite->cstat = 0;
if (nFlag & 4)
{
pSprite->pal = 4;
pSprite->shade = -64;
}
else
{
pSprite->pal = 0;
pSprite->shade = -12;
}
pSprite->clipdist = 10;
pSprite->xrepeat = nRepeat;
pSprite->yrepeat = nRepeat;
pSprite->picnum = 1;
pSprite->ang = 0;
pSprite->xoffset = 0;
pSprite->yoffset = 0;
pSprite->xvel = 0;
pSprite->yvel = 0;
pSprite->zvel = 0;
pSprite->backuppos();
// CHECKME - where is hitag set otherwise?
if (pSprite->statnum < 900) {
pSprite->hitag = -1;
}
pSprite->lotag = runlist_HeadRun() + 1;
pSprite->owner = -1;
2021-10-24 18:21:27 +00:00
pSprite->extra = runlist_AddRunRec(pSprite->lotag - 1, pActor, 0x100000);
2021-10-24 18:21:27 +00:00
pActor->nRun = runlist_AddRunRec(NewRun, pActor, 0x100000);
pActor->nAction = nFlag;
pActor->nIndex = 0;
pActor->nIndex2 = SeqOffsets[val] + val2;
2021-10-24 18:21:27 +00:00
pActor->pTarget = nullptr;
pActor->nDamage = pActor->nRun;
pActor->nPhase = ITEM_MAGIC;
if (nFlag & 0x80) {
pSprite->cstat |= 0x2; // set transluscence
}
2021-10-24 18:21:27 +00:00
return pActor;
}
2021-10-15 19:06:53 +00:00
void AIAnim::Tick(RunListEvent* ev)
{
2021-10-24 18:21:27 +00:00
auto pActor = ev->pObjActor;
if (!pActor) return;
2021-10-24 18:21:27 +00:00
//short nSprite = pActor->nSprite;
short nIndex2 = pActor->nIndex2;
auto pSprite = &pActor->s();
2021-10-24 18:21:27 +00:00
short nIndex = pActor->nIndex;
2021-10-15 19:06:53 +00:00
if (!(pSprite->cstat & 0x8000))
{
2021-10-24 18:21:27 +00:00
seq_MoveSequence(pActor, nIndex2, nIndex);
2021-10-15 19:06:53 +00:00
}
if (pSprite->statnum == kStatIgnited)
{
2021-10-24 18:21:27 +00:00
auto pIgniter = pActor->pTarget;
if (pIgniter)
{
2021-10-16 22:01:06 +00:00
auto pSpriteB = &pIgniter->s();
2021-10-15 19:06:53 +00:00
pSprite->x = pSpriteB->x;
pSprite->y = pSpriteB->y;
pSprite->z = pSpriteB->z;
2021-10-15 19:06:53 +00:00
if (pSpriteB->sectnum != pSprite->sectnum)
{
2021-10-15 19:06:53 +00:00
if (pSpriteB->sectnum < 0 || pSpriteB->sectnum >= kMaxSectors)
{
2021-10-24 18:21:27 +00:00
DestroyAnim(pActor);
2021-10-15 19:06:53 +00:00
return;
}
else
{
2021-10-24 18:21:27 +00:00
ChangeActorSect(pActor, pSpriteB->sectnum);
2021-10-15 19:06:53 +00:00
}
}
2021-10-24 18:21:27 +00:00
if (!nIndex)
{
2021-10-15 19:06:53 +00:00
if (pSpriteB->cstat != 0x8000)
{
2021-10-15 19:06:53 +00:00
short hitag2 = pSpriteB->hitag;
pSpriteB->hitag--;
2021-10-15 19:06:53 +00:00
if (hitag2 >= 15)
{
2021-10-24 18:21:27 +00:00
runlist_DamageEnemy(pIgniter, nullptr, (pSpriteB->hitag - 14) * 2);
2021-10-15 19:06:53 +00:00
if (pSpriteB->shade < 100)
{
2021-10-15 19:06:53 +00:00
pSpriteB->pal = 0;
pSpriteB->shade++;
}
2021-10-15 19:06:53 +00:00
if (!(pSpriteB->cstat & 101))
2019-11-30 16:04:59 +00:00
{
2021-10-24 18:21:27 +00:00
DestroyAnim(pActor);
2021-10-15 19:06:53 +00:00
return;
2019-11-30 16:04:59 +00:00
}
}
2021-10-15 19:06:53 +00:00
else
{
pSpriteB->hitag = 1;
2021-10-24 18:21:27 +00:00
DestroyAnim(pActor);
2021-10-15 19:06:53 +00:00
}
}
else
{
2021-10-15 19:06:53 +00:00
pSpriteB->hitag = 1;
2021-10-24 18:21:27 +00:00
DestroyAnim(pActor);
}
}
}
2021-10-15 19:06:53 +00:00
}
pActor->nIndex++;
2021-10-24 18:21:27 +00:00
if (pActor->nIndex >= SeqSize[nIndex2])
2021-10-15 19:06:53 +00:00
{
if (pActor->nAction & 0x10)
{
pActor->nIndex = 0;
}
2021-10-24 18:21:27 +00:00
else if (nIndex2 == nPreMagicSeq)
{
pActor->nIndex = 0;
pActor->nIndex2 = nMagicSeq;
pActor->nAction |= 0x10;
2021-10-24 18:21:27 +00:00
pSprite->cstat |= 2;
}
2021-10-24 18:21:27 +00:00
else if (nIndex2 == nSavePointSeq)
2021-10-15 19:06:53 +00:00
{
pActor->nIndex = 0;
pActor->nIndex2++;
pActor->nAction |= 0x10;
2021-10-15 19:06:53 +00:00
}
else
{
2021-10-24 18:21:27 +00:00
DestroyAnim(pActor);
}
}
}
2021-10-15 19:06:53 +00:00
void AIAnim::Draw(RunListEvent* ev)
{
2021-10-24 18:21:27 +00:00
auto pActor = ev->pObjActor;
if (!pActor) return;
short nIndex2 = pActor->nIndex2;
2021-10-15 19:06:53 +00:00
2021-10-24 18:21:27 +00:00
seq_PlotSequence(ev->nParam, nIndex2, pActor->nIndex, 0x101);
2021-10-15 19:06:53 +00:00
ev->pTSprite->owner = -1;
}
2021-10-24 17:18:11 +00:00
void BuildExplosion(DExhumedActor* pActor)
{
2021-10-24 17:18:11 +00:00
auto pSprite = &pActor->s();
short nSector = pSprite->sectnum;
int edx = 36;
if (SectFlag[nSector] & kSectUnderwater)
{
edx = 75;
}
else if (pSprite->z == sector[nSector].floorz)
{
edx = 34;
}
BuildAnim(nullptr, edx, 0, pSprite->x, pSprite->y, pSprite->z, pSprite->sectnum, pSprite->xrepeat, 4);
}
2021-10-24 17:18:11 +00:00
void BuildSplash(DExhumedActor* actor, int nSector)
{
2021-10-24 17:18:11 +00:00
auto pSprite = &actor->s();
int nRepeat, nSound;
if (pSprite->statnum != 200)
{
nRepeat = pSprite->xrepeat + (RandomWord() % pSprite->xrepeat);
nSound = kSound0;
}
else
{
nRepeat = 20;
nSound = kSound1;
}
int bIsLava = SectFlag[nSector] & kSectLava;
int edx, nFlag;
if (bIsLava)
{
edx = 43;
nFlag = 4;
}
else
{
edx = 35;
nFlag = 0;
}
auto pActor = BuildAnim(nullptr, edx, 0, pSprite->x, pSprite->y, sector[nSector].floorz, nSector, nRepeat, nFlag);
if (!bIsLava)
{
D3PlayFX(StaticSound[nSound] | 0xa00, pActor);
}
}
END_PS_NS