2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-11-22 23:11:37 +00:00
|
|
|
#include "ns.h"
|
2020-08-18 07:52:08 +00:00
|
|
|
#include "aistuff.h"
|
2019-08-26 03:59:14 +00:00
|
|
|
#include "exhumed.h"
|
|
|
|
#include "engine.h"
|
|
|
|
#include "sequence.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
2020-10-11 09:33:28 +00:00
|
|
|
static actionSeq RoachSeq[] = {
|
2020-03-02 21:08:31 +00:00
|
|
|
{24, 0},
|
|
|
|
{0, 0},
|
|
|
|
{0, 0},
|
|
|
|
{16, 0},
|
|
|
|
{8, 0},
|
|
|
|
{32, 1},
|
|
|
|
{42, 1}
|
|
|
|
};
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
struct Roach
|
|
|
|
{
|
2019-08-31 07:47:15 +00:00
|
|
|
short nHealth;
|
2020-11-29 19:47:55 +00:00
|
|
|
short nFrame;
|
2019-11-15 20:42:46 +00:00
|
|
|
short nAction;
|
2019-08-31 07:47:15 +00:00
|
|
|
short nSprite;
|
|
|
|
short nTarget;
|
2020-11-29 19:47:55 +00:00
|
|
|
short nRun;
|
|
|
|
short nCount;
|
|
|
|
short nIndex;
|
2019-08-26 03:59:14 +00:00
|
|
|
};
|
|
|
|
|
2020-11-29 19:47:55 +00:00
|
|
|
TArray<Roach> RoachList;
|
|
|
|
|
|
|
|
FSerializer& Serialize(FSerializer& arc, const char* keyname, Roach& w, Roach* def)
|
|
|
|
{
|
|
|
|
if (arc.BeginObject(keyname))
|
|
|
|
{
|
|
|
|
arc("health", w.nHealth)
|
|
|
|
("frame", w.nFrame)
|
|
|
|
("action", w.nAction)
|
|
|
|
("sprite", w.nSprite)
|
|
|
|
("target", w.nTarget)
|
|
|
|
("run", w.nRun)
|
|
|
|
("count", w.nCount)
|
|
|
|
("index", w.nIndex)
|
|
|
|
.EndObject();
|
|
|
|
}
|
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerializeRoach(FSerializer& arc)
|
|
|
|
{
|
|
|
|
arc("roach", RoachList);
|
|
|
|
}
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-12-26 21:00:04 +00:00
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
/* Kilmaat Sentry */
|
|
|
|
|
|
|
|
void InitRoachs()
|
|
|
|
{
|
2020-11-29 19:47:55 +00:00
|
|
|
RoachList.Clear();
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 20:42:46 +00:00
|
|
|
// TODO - make nType a bool?
|
2021-10-15 16:37:39 +00:00
|
|
|
void BuildRoach(int nType, int nSprite, int x, int y, int z, short nSector, int angle)
|
2019-08-26 03:59:14 +00:00
|
|
|
{
|
2020-11-29 19:47:55 +00:00
|
|
|
auto RoachCount = RoachList.Reserve(1);
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
auto pSprite = &sprite[nSprite];
|
2019-08-31 07:47:15 +00:00
|
|
|
if (nSprite == -1)
|
|
|
|
{
|
|
|
|
nSprite = insertsprite(nSector, 105);
|
2021-10-15 21:07:38 +00:00
|
|
|
pSprite = &sprite[nSprite];
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
changespritestat(nSprite, 105);
|
2021-09-06 06:33:02 +00:00
|
|
|
x = pSprite->x;
|
|
|
|
y = pSprite->y;
|
|
|
|
z = sector[pSprite->sectnum].floorz;
|
|
|
|
angle = pSprite->ang;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(nSprite >= 0 && nSprite < kMaxSprites);
|
|
|
|
|
2021-09-06 06:33:02 +00:00
|
|
|
pSprite->x = x;
|
|
|
|
pSprite->y = y;
|
|
|
|
pSprite->z = z;
|
|
|
|
pSprite->cstat = 0x101;
|
|
|
|
pSprite->shade = -12;
|
|
|
|
pSprite->xoffset = 0;
|
|
|
|
pSprite->yoffset = 0;
|
|
|
|
pSprite->picnum = 1;
|
|
|
|
pSprite->pal = sector[pSprite->sectnum].ceilingpal;
|
|
|
|
pSprite->clipdist = 60;
|
|
|
|
pSprite->ang = angle;
|
|
|
|
pSprite->xrepeat = 40;
|
|
|
|
pSprite->yrepeat = 40;
|
|
|
|
pSprite->xvel = 0;
|
|
|
|
pSprite->yvel = 0;
|
|
|
|
pSprite->zvel = 0;
|
|
|
|
pSprite->hitag = 0;
|
|
|
|
pSprite->lotag = runlist_HeadRun() + 1;
|
|
|
|
pSprite->extra = -1;
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-13 16:50:52 +00:00
|
|
|
// GrabTimeSlot(3);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-15 20:42:46 +00:00
|
|
|
if (nType)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2019-11-15 20:42:46 +00:00
|
|
|
RoachList[RoachCount].nAction = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-11-15 20:42:46 +00:00
|
|
|
RoachList[RoachCount].nAction = 1;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-08-31 07:47:15 +00:00
|
|
|
RoachList[RoachCount].nSprite = nSprite;
|
2020-11-29 19:47:55 +00:00
|
|
|
RoachList[RoachCount].nFrame = 0;
|
|
|
|
RoachList[RoachCount].nCount = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
RoachList[RoachCount].nTarget = -1;
|
|
|
|
RoachList[RoachCount].nHealth = 600;
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2021-10-15 16:37:39 +00:00
|
|
|
pSprite->owner = runlist_AddRunRec(pSprite->lotag - 1, RoachCount, 0x1C0000);
|
|
|
|
RoachList[RoachCount].nRun = runlist_AddRunRec(NewRun, RoachCount, 0x1C0000);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-08-23 12:39:14 +00:00
|
|
|
nCreaturesTotal++;
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GoRoach(short nSprite)
|
|
|
|
{
|
2021-09-06 06:33:02 +00:00
|
|
|
auto pSprite = &sprite[nSprite];
|
|
|
|
pSprite->xvel = bcos(pSprite->ang, -1) - bcos(pSprite->ang, -3);
|
|
|
|
pSprite->yvel = bsin(pSprite->ang, -1) - bsin(pSprite->ang, -3);
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
void AIRoach::Draw(RunListEvent* ev)
|
2019-08-26 03:59:14 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
short nRoach = RunData[ev->nRun].nVal;
|
2020-11-29 19:47:55 +00:00
|
|
|
assert(nRoach >= 0 && nRoach < (int)RoachList.Size());
|
2019-11-15 20:42:46 +00:00
|
|
|
short nAction = RoachList[nRoach].nAction;
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
seq_PlotSequence(ev->nIndex, RoachSeq[nAction].a + SeqOffsets[kSeqRoach], RoachList[nRoach].nFrame, RoachSeq[nAction].b);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AIRoach::RadialDamage(RunListEvent* ev)
|
|
|
|
{
|
|
|
|
short nRoach = RunData[ev->nRun].nVal;
|
|
|
|
assert(nRoach >= 0 && nRoach < (int)RoachList.Size());
|
|
|
|
short nSprite = RoachList[nRoach].nSprite;
|
|
|
|
|
|
|
|
ev->nDamage = runlist_CheckRadialDamage(nSprite);
|
|
|
|
Damage(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AIRoach::Damage(RunListEvent* ev)
|
|
|
|
{
|
|
|
|
short nRoach = RunData[ev->nRun].nVal;
|
|
|
|
assert(nRoach >= 0 && nRoach < (int)RoachList.Size());
|
|
|
|
|
|
|
|
short nSprite = RoachList[nRoach].nSprite;
|
|
|
|
auto pSprite = &sprite[nSprite];
|
|
|
|
short nAction = RoachList[nRoach].nAction;
|
2020-03-02 21:08:31 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if (ev->nDamage)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
if (RoachList[nRoach].nHealth <= 0) {
|
2019-08-31 07:47:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nHealth -= dmgAdjust(ev->nDamage);
|
|
|
|
if (RoachList[nRoach].nHealth <= 0)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
pSprite->xvel = 0;
|
|
|
|
pSprite->yvel = 0;
|
|
|
|
pSprite->zvel = 0;
|
|
|
|
pSprite->cstat &= 0xFEFE;
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nHealth = 0;
|
|
|
|
|
|
|
|
if (nAction < 5)
|
|
|
|
{
|
|
|
|
DropMagic(nSprite);
|
|
|
|
RoachList[nRoach].nAction = 5;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nCreaturesKilled++; // NOTE: This was incrementing in original code. Bug?
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
else
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
short nSprite2 = ev->nIndex;
|
|
|
|
if (nSprite2 >= 0)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
if (sprite[nSprite2].statnum < 199) {
|
|
|
|
RoachList[nRoach].nTarget = nSprite2;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if (nAction == 0)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nAction = 2;
|
|
|
|
GoRoach(nSprite);
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
if (!RandomSize(4))
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nAction = 4;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
void AIRoach::Tick(RunListEvent* ev)
|
|
|
|
{
|
|
|
|
short nRoach = RunData[ev->nRun].nVal;
|
|
|
|
assert(nRoach >= 0 && nRoach < (int)RoachList.Size());
|
|
|
|
|
|
|
|
short nSprite = RoachList[nRoach].nSprite;
|
|
|
|
auto pSprite = &sprite[nSprite];
|
|
|
|
short nAction = RoachList[nRoach].nAction;
|
|
|
|
bool bVal = false;
|
|
|
|
|
|
|
|
Gravity(nSprite);
|
|
|
|
|
|
|
|
int nSeq = SeqOffsets[kSeqRoach] + RoachSeq[RoachList[nRoach].nAction].a;
|
|
|
|
|
|
|
|
pSprite->picnum = seq_GetSeqPicnum2(nSeq, RoachList[nRoach].nFrame);
|
|
|
|
seq_MoveSequence(nSprite, nSeq, RoachList[nRoach].nFrame);
|
|
|
|
|
|
|
|
RoachList[nRoach].nFrame++;
|
|
|
|
if (RoachList[nRoach].nFrame >= SeqSize[nSeq])
|
|
|
|
{
|
|
|
|
bVal = true;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
int nFlag = FrameFlag[SeqBase[nSeq] + RoachList[nRoach].nFrame];
|
|
|
|
short nTarget = RoachList[nRoach].nTarget;
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if (nAction > 5) {
|
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
switch (nAction)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
if (RoachList[nRoach].nFrame == 1)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nCount--;
|
|
|
|
if (RoachList[nRoach].nCount <= 0)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nCount = RandomSize(6);
|
|
|
|
}
|
|
|
|
else
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2020-11-29 19:47:55 +00:00
|
|
|
RoachList[nRoach].nFrame = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if (((nRoach & 0xF) == (totalmoves & 0xF)) && nTarget < 0)
|
|
|
|
{
|
|
|
|
short nTarget = FindPlayer(nSprite, 50);
|
|
|
|
if (nTarget >= 0)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nAction = 2;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
RoachList[nRoach].nTarget = nTarget;
|
|
|
|
GoRoach(nSprite);
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
// partly the same as case 0.
|
|
|
|
if (((nRoach & 0xF) == (totalmoves & 0xF)) && nTarget < 0)
|
|
|
|
{
|
|
|
|
short nTarget = FindPlayer(nSprite, 100);
|
|
|
|
if (nTarget >= 0)
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nAction = 2;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
RoachList[nRoach].nTarget = nTarget;
|
|
|
|
GoRoach(nSprite);
|
|
|
|
}
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
if ((totalmoves & 0xF) == (nRoach & 0xF))
|
|
|
|
{
|
|
|
|
PlotCourseToSprite(nSprite, nTarget);
|
|
|
|
GoRoach(nSprite);
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
int nMov = MoveCreatureWithCaution(nSprite);
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if ((nMov & 0xC000) == 0xC000)
|
|
|
|
{
|
|
|
|
if ((nMov & 0x3FFF) == nTarget)
|
|
|
|
{
|
|
|
|
// repeated below
|
|
|
|
RoachList[nRoach].nIndex = RandomSize(2) + 1;
|
|
|
|
RoachList[nRoach].nAction = 3;
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
pSprite->xvel = 0;
|
|
|
|
pSprite->yvel = 0;
|
|
|
|
pSprite->ang = GetMyAngle(sprite[nTarget].x - pSprite->x, sprite[nTarget].y - pSprite->y);
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pSprite->ang = (pSprite->ang + 256) & kAngleMask;
|
|
|
|
GoRoach(nSprite);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((nMov & 0xC000) == 0x8000)
|
|
|
|
{
|
|
|
|
pSprite->ang = (pSprite->ang + 256) & kAngleMask;
|
|
|
|
GoRoach(nSprite);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (RoachList[nRoach].nCount != 0)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nCount--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// same as above
|
|
|
|
RoachList[nRoach].nIndex = RandomSize(2) + 1;
|
|
|
|
RoachList[nRoach].nAction = 3;
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
pSprite->xvel = 0;
|
|
|
|
pSprite->yvel = 0;
|
|
|
|
pSprite->ang = GetMyAngle(sprite[nTarget].x - pSprite->x, sprite[nTarget].y - pSprite->y);
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
if (nTarget != -1 && !(sprite[nTarget].cstat & 0x101))
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nAction = 1;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
RoachList[nRoach].nCount = 100;
|
|
|
|
RoachList[nRoach].nTarget = -1;
|
|
|
|
pSprite->xvel = 0;
|
|
|
|
pSprite->yvel = 0;
|
|
|
|
}
|
2019-11-13 16:50:52 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
if (bVal)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nIndex--;
|
|
|
|
if (RoachList[nRoach].nIndex <= 0)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nAction = 2;
|
|
|
|
GoRoach(nSprite);
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
RoachList[nRoach].nCount = RandomSize(7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (nFlag & 0x80)
|
|
|
|
{
|
|
|
|
BuildBullet(nSprite, 13, 0, 0, -1, pSprite->ang, nTarget + 10000, 1);
|
|
|
|
}
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
case 4:
|
|
|
|
{
|
|
|
|
if (bVal)
|
|
|
|
{
|
|
|
|
RoachList[nRoach].nAction = 2;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
|
2021-10-15 21:07:38 +00:00
|
|
|
case 5:
|
|
|
|
{
|
|
|
|
if (bVal)
|
|
|
|
{
|
|
|
|
pSprite->cstat = 0;
|
|
|
|
RoachList[nRoach].nAction = 6;
|
|
|
|
RoachList[nRoach].nFrame = 0;
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
2021-10-15 21:07:38 +00:00
|
|
|
|
|
|
|
void FuncRoach(int nObject, int nMessage, int nDamage, int nRun)
|
|
|
|
{
|
|
|
|
AIRoach ai;
|
|
|
|
runlist_DispatchEvent(&ai, nObject, nMessage, nDamage, nRun);
|
|
|
|
}
|
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|