mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 09:21:12 +00:00
fc11f537f7
* moved all games into the 'games' folder. * fixed project to include all sources and move them to the proper folders.
724 lines
29 KiB
C++
724 lines
29 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 "ns.h" // Must come before everything else!
|
|
|
|
#include "compat.h"
|
|
#include "build.h"
|
|
#include "mmulti.h"
|
|
|
|
#include "blood.h"
|
|
|
|
BEGIN_BLD_NS
|
|
|
|
static void gargThinkTarget(DBloodActor *);
|
|
static void gargThinkSearch(DBloodActor *);
|
|
static void gargThinkGoto(DBloodActor *);
|
|
static void gargMoveDodgeUp(DBloodActor *);
|
|
static void gargMoveDodgeDown(DBloodActor *);
|
|
static void gargThinkChase(DBloodActor *);
|
|
static void entryFStatue(DBloodActor *);
|
|
static void entrySStatue(DBloodActor *);
|
|
static void gargMoveForward(DBloodActor *);
|
|
static void gargMoveSlow(DBloodActor *);
|
|
static void gargMoveSwoop(DBloodActor *);
|
|
static void gargMoveFly(DBloodActor *);
|
|
static void playStatueBreakSnd(DBloodActor*);
|
|
|
|
AISTATE gargoyleFIdle = { kAiStateIdle, 0, -1, 0, NULL, NULL, gargThinkTarget, NULL };
|
|
AISTATE gargoyleStatueIdle = { kAiStateIdle, 0, -1, 0, NULL, NULL, NULL, NULL };
|
|
AISTATE gargoyleFChase = { kAiStateChase, 0, -1, 0, NULL, gargMoveForward, gargThinkChase, &gargoyleFIdle };
|
|
AISTATE gargoyleFGoto = { kAiStateMove, 0, -1, 600, NULL, gargMoveForward, gargThinkGoto, &gargoyleFIdle };
|
|
AISTATE gargoyleFSlash = { kAiStateChase, 6, nSlashFClient, 120, NULL, NULL, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFThrow = { kAiStateChase, 6, nThrowFClient, 120, NULL, NULL, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleSThrow = { kAiStateChase, 6, nThrowSClient, 120, NULL, gargMoveForward, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleSBlast = { kAiStateChase, 7, nBlastSClient, 60, NULL, gargMoveSlow, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFRecoil = { kAiStateRecoil, 5, -1, 0, NULL, NULL, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFSearch = { kAiStateSearch, 0, -1, 120, NULL, gargMoveForward, gargThinkSearch, &gargoyleFIdle };
|
|
AISTATE gargoyleFMorph2 = { kAiStateOther, -1, -1, 0, entryFStatue, NULL, NULL, &gargoyleFIdle };
|
|
AISTATE gargoyleFMorph = { kAiStateOther, 6, -1, 0, NULL, NULL, NULL, &gargoyleFMorph2 };
|
|
AISTATE gargoyleSMorph2 = { kAiStateOther, -1, -1, 0, entrySStatue, NULL, NULL, &gargoyleFIdle };
|
|
AISTATE gargoyleSMorph = { kAiStateOther, 6, -1, 0, NULL, NULL, NULL, &gargoyleSMorph2 };
|
|
AISTATE gargoyleSwoop = { kAiStateOther, 0, -1, 120, NULL, gargMoveSwoop, gargThinkChase, &gargoyleFChase };
|
|
AISTATE gargoyleFly = { kAiStateMove, 0, -1, 120, NULL, gargMoveFly, gargThinkChase, &gargoyleFChase };
|
|
AISTATE gargoyleTurn = { kAiStateMove, 0, -1, 120, NULL, aiMoveTurn, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleDodgeUp = { kAiStateMove, 0, -1, 60, NULL, gargMoveDodgeUp, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFDodgeUpRight = { kAiStateMove, 0, -1, 90, NULL, gargMoveDodgeUp, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFDodgeUpLeft = { kAiStateMove, 0, -1, 90, NULL, gargMoveDodgeUp, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleDodgeDown = { kAiStateMove, 0, -1, 120, NULL, gargMoveDodgeDown, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFDodgeDownRight = { kAiStateMove, 0, -1, 90, NULL, gargMoveDodgeDown, NULL, &gargoyleFChase };
|
|
AISTATE gargoyleFDodgeDownLeft = { kAiStateMove, 0, -1, 90, NULL, gargMoveDodgeDown, NULL, &gargoyleFChase };
|
|
|
|
AISTATE statueFBreakSEQ = { kAiStateOther, 5, -1, 0, entryFStatue, NULL, playStatueBreakSnd, &gargoyleFMorph2};
|
|
AISTATE statueSBreakSEQ = { kAiStateOther, 5, -1, 0, entrySStatue, NULL, playStatueBreakSnd, &gargoyleSMorph2};
|
|
|
|
static void playStatueBreakSnd(DBloodActor* actor) {
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
aiPlay3DSound(pSprite, 313, AI_SFX_PRIORITY_1, -1);
|
|
}
|
|
|
|
void SlashFSeqCallback(int, DBloodActor* actor)
|
|
{
|
|
XSPRITE* pXSprite = &actor->x();
|
|
spritetype* pSprite = &actor->s();
|
|
spritetype *pTarget = &sprite[pXSprite->target];
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
DUDEINFO *pDudeInfoT = getDudeInfo(pTarget->type);
|
|
int height = (pSprite->yrepeat*pDudeInfo->eyeHeight)<<2;
|
|
int height2 = (pTarget->yrepeat*pDudeInfoT->eyeHeight)<<2;
|
|
int dz = height-height2;
|
|
int dx = CosScale16(pSprite->ang);
|
|
int dy = SinScale16(pSprite->ang);
|
|
actFireVector(pSprite, 0, 0, dx, dy, dz, VECTOR_TYPE_13);
|
|
int r1 = Random(50);
|
|
int r2 = Random(50);
|
|
actFireVector(pSprite, 0, 0, dx+r2, dy-r1, dz, VECTOR_TYPE_13);
|
|
r1 = Random(50);
|
|
r2 = Random(50);
|
|
actFireVector(pSprite, 0, 0, dx-r2, dy+r1, dz, VECTOR_TYPE_13);
|
|
}
|
|
|
|
void ThrowFSeqCallback(int, DBloodActor* actor)
|
|
{
|
|
XSPRITE* pXSprite = &actor->x();
|
|
spritetype* pSprite = &actor->s();
|
|
actFireThing(&actor->s(), 0, 0, actor->dudeSlope-7500, kThingBone, 0xeeeee);
|
|
}
|
|
|
|
void BlastSSeqCallback(int, DBloodActor* actor)
|
|
{
|
|
XSPRITE* pXSprite = &actor->x();
|
|
spritetype* pSprite = &actor->s();
|
|
wrand(); // ???
|
|
spritetype *pTarget = &sprite[pXSprite->target];
|
|
int height = (pSprite->yrepeat*getDudeInfo(pSprite->type)->eyeHeight) << 2;
|
|
int dx = pXSprite->targetX-pSprite->x;
|
|
int dy = pXSprite->targetY-pSprite->y;
|
|
int x = pSprite->x;
|
|
int y = pSprite->y;
|
|
int z = height;
|
|
TARGETTRACK tt = { 0x10000, 0x10000, 0x100, 0x55, 0x1aaaaa };
|
|
Aim aim;
|
|
aim.dx = CosScale16(pSprite->ang);
|
|
aim.dy = SinScale16(pSprite->ang);
|
|
aim.dz = actor->dudeSlope;
|
|
int nClosest = 0x7fffffff;
|
|
int nSprite2;
|
|
StatIterator it(kStatDude);
|
|
while ((nSprite2 = it.NextIndex()) >= 0)
|
|
{
|
|
spritetype *pSprite2 = &sprite[nSprite2];
|
|
if (pSprite == pSprite2 || !(pSprite2->flags&8))
|
|
continue;
|
|
int x2 = pSprite2->x;
|
|
int y2 = pSprite2->y;
|
|
int z2 = pSprite2->z;
|
|
int nDist = approxDist(x2-x, y2-y);
|
|
if (nDist == 0 || nDist > 0x2800)
|
|
continue;
|
|
if (tt.at10)
|
|
{
|
|
int t = DivScale(nDist, tt.at10, 12);
|
|
x2 += (xvel[nSprite2]*t)>>12;
|
|
y2 += (yvel[nSprite2]*t)>>12;
|
|
z2 += (zvel[nSprite2]*t)>>8;
|
|
}
|
|
int tx = x+MulScale(Cos(pSprite->ang), nDist, 30);
|
|
int ty = y+MulScale(Sin(pSprite->ang), nDist, 30);
|
|
int tz = z+MulScale(actor->dudeSlope, nDist, 10);
|
|
int tsr = MulScale(9460, nDist, 10);
|
|
int top, bottom;
|
|
GetSpriteExtents(pSprite2, &top, &bottom);
|
|
if (tz-tsr > bottom || tz+tsr < top)
|
|
continue;
|
|
int dx = (tx-x2)>>4;
|
|
int dy = (ty-y2)>>4;
|
|
int dz = (tz-z2)>>8;
|
|
int nDist2 = ksqrt(dx*dx+dy*dy+dz*dz);
|
|
if (nDist2 < nClosest)
|
|
{
|
|
int nAngle = getangle(x2-x, y2-y);
|
|
int nDeltaAngle = ((nAngle-pSprite->ang+1024)&2047)-1024;
|
|
if (abs(nDeltaAngle) <= tt.at8)
|
|
{
|
|
int tz = pSprite2->z-pSprite->z;
|
|
if (cansee(x, y, z, pSprite->sectnum, x2, y2, z2, pSprite2->sectnum))
|
|
{
|
|
nClosest = nDist2;
|
|
aim.dx = CosScale16(nAngle);
|
|
aim.dy = SinScale16(nAngle);
|
|
aim.dz = DivScale(tz, nDist, 10);
|
|
if (tz > -0x333)
|
|
aim.dz = DivScale(tz, nDist, 10);
|
|
else if (tz < -0x333 && tz > -0xb33)
|
|
aim.dz = DivScale(tz, nDist, 10)+9460;
|
|
else if (tz < -0xb33 && tz > -0x3000)
|
|
aim.dz = DivScale(tz, nDist, 10)+9460;
|
|
else if (tz < -0x3000)
|
|
aim.dz = DivScale(tz, nDist, 10)-7500;
|
|
else
|
|
aim.dz = DivScale(tz, nDist, 10);
|
|
}
|
|
else
|
|
aim.dz = DivScale(tz, nDist, 10);
|
|
}
|
|
}
|
|
}
|
|
#ifdef NOONE_EXTENSIONS
|
|
// allow to fire missile in non-player targets
|
|
if (IsPlayerSprite(pTarget) || gModernMap) {
|
|
actFireMissile(pSprite, -120, 0, aim.dx, aim.dy, aim.dz, kMissileArcGargoyle);
|
|
actFireMissile(pSprite, 120, 0, aim.dx, aim.dy, aim.dz, kMissileArcGargoyle);
|
|
}
|
|
#else
|
|
if (IsPlayerSprite(pTarget)) {
|
|
actFireMissile(pSprite, -120, 0, aim.dx, aim.dy, aim.dz, kMissileArcGargoyle);
|
|
actFireMissile(pSprite, 120, 0, aim.dx, aim.dy, aim.dz, kMissileArcGargoyle);
|
|
}
|
|
#endif
|
|
|
|
}
|
|
|
|
void ThrowSSeqCallback(int, DBloodActor* actor)
|
|
{
|
|
spritetype* pSprite = &actor->s();
|
|
actFireThing(pSprite, 0, 0, actor->dudeSlope - 7500, kThingBone, Chance(0x6000) ? 0x133333 : 0x111111);
|
|
}
|
|
|
|
static void gargThinkTarget(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
DUDEEXTRA_at6_u1 *pDudeExtraE = &gDudeExtra[pSprite->extra].at6.u1;
|
|
if (pDudeExtraE->xval3 && pDudeExtraE->xval2 < 10)
|
|
pDudeExtraE->xval2++;
|
|
else if (pDudeExtraE->xval2 >= 10 && pDudeExtraE->xval3)
|
|
{
|
|
pXSprite->goalAng += 256;
|
|
POINT3D *pTarget = &baseSprite[pSprite->index];
|
|
aiSetTarget(pXSprite, pTarget->x, pTarget->y, pTarget->z);
|
|
aiNewState(actor, &gargoyleTurn);
|
|
return;
|
|
}
|
|
if (Chance(pDudeInfo->alertChance))
|
|
{
|
|
for (int p = connecthead; p >= 0; p = connectpoint2[p])
|
|
{
|
|
PLAYER *pPlayer = &gPlayer[p];
|
|
if (pPlayer->pXSprite->health == 0 || powerupCheck(pPlayer, kPwUpShadowCloak) > 0)
|
|
continue;
|
|
int x = pPlayer->pSprite->x;
|
|
int y = pPlayer->pSprite->y;
|
|
int z = pPlayer->pSprite->z;
|
|
int nSector = pPlayer->pSprite->sectnum;
|
|
int dx = x-pSprite->x;
|
|
int dy = y-pSprite->y;
|
|
int nDist = approxDist(dx, dy);
|
|
if (nDist > pDudeInfo->seeDist && nDist > pDudeInfo->hearDist)
|
|
continue;
|
|
if (!cansee(x, y, z, nSector, pSprite->x, pSprite->y, pSprite->z-((pDudeInfo->eyeHeight*pSprite->yrepeat)<<2), pSprite->sectnum))
|
|
continue;
|
|
int nDeltaAngle = ((getangle(dx,dy)+1024-pSprite->ang)&2047)-1024;
|
|
if (nDist < pDudeInfo->seeDist && abs(nDeltaAngle) <= pDudeInfo->periphery)
|
|
{
|
|
pDudeExtraE->xval2 = 0;
|
|
aiSetTarget(pXSprite, pPlayer->nSprite);
|
|
aiActivateDude(&bloodActors[pXSprite->reference]);
|
|
}
|
|
else if (nDist < pDudeInfo->hearDist)
|
|
{
|
|
pDudeExtraE->xval2 = 0;
|
|
aiSetTarget(pXSprite, x, y, z);
|
|
aiActivateDude(&bloodActors[pXSprite->reference]);
|
|
}
|
|
else
|
|
continue;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void gargThinkSearch(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
aiChooseDirection(pSprite, pXSprite, pXSprite->goalAng);
|
|
sub_5F15C(pSprite, pXSprite);
|
|
}
|
|
|
|
static void gargThinkGoto(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
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 && abs(pSprite->ang - nAngle) < pDudeInfo->periphery)
|
|
aiNewState(actor, &gargoyleFSearch);
|
|
aiThinkTarget(actor);
|
|
}
|
|
|
|
static void gargMoveDodgeUp(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int dx = actor->xvel();
|
|
int dy = actor->yvel();
|
|
int t1 = DMulScale(dx, nCos, dy, nSin, 30);
|
|
int t2 = DMulScale(dx, nSin, -dy, nCos, 30);
|
|
if (pXSprite->dodgeDir > 0)
|
|
t2 += pDudeInfo->sideSpeed;
|
|
else
|
|
t2 -= pDudeInfo->sideSpeed;
|
|
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
actor->zvel() = -0x1d555;
|
|
}
|
|
|
|
static void gargMoveDodgeDown(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
if (pXSprite->dodgeDir == 0)
|
|
return;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int dx = actor->xvel();
|
|
int dy = actor->yvel();
|
|
int t1 = DMulScale(dx, nCos, dy, nSin, 30);
|
|
int t2 = DMulScale(dx, nSin, -dy, nCos, 30);
|
|
if (pXSprite->dodgeDir > 0)
|
|
t2 += pDudeInfo->sideSpeed;
|
|
else
|
|
t2 -= pDudeInfo->sideSpeed;
|
|
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
actor->zvel() = 0x44444;
|
|
}
|
|
|
|
static void gargThinkChase(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
if (pXSprite->target == -1)
|
|
{
|
|
aiNewState(actor, &gargoyleFGoto);
|
|
return;
|
|
}
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
///assert(pXSprite->target >= 0 && pXSprite->target < kMaxSprites);
|
|
if (!(pXSprite->target >= 0 && pXSprite->target < kMaxSprites)) {
|
|
Printf(PRINT_HIGH, "pXSprite->target >= 0 && pXSprite->target < kMaxSprites");
|
|
return;
|
|
}
|
|
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(actor, &gargoyleFSearch);
|
|
return;
|
|
}
|
|
if (IsPlayerSprite(pTarget) && powerupCheck(&gPlayer[pTarget->type-kDudePlayer1], kPwUpShadowCloak) > 0)
|
|
{
|
|
aiNewState(actor, &gargoyleFSearch);
|
|
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;
|
|
// Should be dudeInfo[pTarget->type-kDudeBase]
|
|
int height2 = (pDudeInfo->eyeHeight*pTarget->yrepeat)<<2;
|
|
int top, bottom;
|
|
GetSpriteExtents(pSprite, &top, &bottom);
|
|
if (cansee(pTarget->x, pTarget->y, pTarget->z, pTarget->sectnum, pSprite->x, pSprite->y, pSprite->z - height, pSprite->sectnum))
|
|
{
|
|
if (nDist < pDudeInfo->seeDist && abs(nDeltaAngle) <= pDudeInfo->periphery)
|
|
{
|
|
aiSetTarget(pXSprite, pXSprite->target);
|
|
int floorZ = getflorzofslope(pSprite->sectnum, pSprite->x, pSprite->y);
|
|
switch (pSprite->type) {
|
|
case kDudeGargoyleFlesh:
|
|
if (nDist < 0x1800 && nDist > 0xc00 && abs(nDeltaAngle) < 85)
|
|
{
|
|
int hit = HitScan(pSprite, pSprite->z, dx, dy, 0, CLIPMASK1, 0);
|
|
switch (hit)
|
|
{
|
|
case -1:
|
|
sfxPlay3DSound(pSprite, 1408, 0, 0);
|
|
aiNewState(actor, &gargoyleFThrow);
|
|
break;
|
|
case 0:
|
|
case 4:
|
|
break;
|
|
case 3:
|
|
if (pSprite->type != sprite[gHitInfo.hitsprite].type && sprite[gHitInfo.hitsprite].type != kDudeGargoyleStone)
|
|
{
|
|
sfxPlay3DSound(pSprite, 1408, 0, 0);
|
|
aiNewState(actor, &gargoyleFThrow);
|
|
}
|
|
break;
|
|
default:
|
|
sfxPlay3DSound(pSprite, 1408, 0, 0);
|
|
aiNewState(actor, &gargoyleFThrow);
|
|
break;
|
|
}
|
|
}
|
|
else if (nDist < 0x400 && abs(nDeltaAngle) < 85)
|
|
{
|
|
int hit = HitScan(pSprite, pSprite->z, dx, dy, 0, CLIPMASK1, 0);
|
|
switch (hit)
|
|
{
|
|
case -1:
|
|
sfxPlay3DSound(pSprite, 1406, 0, 0);
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
break;
|
|
case 0:
|
|
case 4:
|
|
break;
|
|
case 3:
|
|
if (pSprite->type != sprite[gHitInfo.hitsprite].type && sprite[gHitInfo.hitsprite].type != kDudeGargoyleStone)
|
|
{
|
|
sfxPlay3DSound(pSprite, 1406, 0, 0);
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
}
|
|
break;
|
|
default:
|
|
sfxPlay3DSound(pSprite, 1406, 0, 0);
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
break;
|
|
}
|
|
}
|
|
else if ((height2-height > 0x2000 || floorZ-bottom > 0x2000) && nDist < 0x1400 && nDist > 0xa00)
|
|
{
|
|
aiPlay3DSound(pSprite, 1400, AI_SFX_PRIORITY_1, -1);
|
|
aiNewState(actor, &gargoyleSwoop);
|
|
}
|
|
else if ((height2-height < 0x2000 || floorZ-bottom < 0x2000) && abs(nDeltaAngle) < 85)
|
|
aiPlay3DSound(pSprite, 1400, AI_SFX_PRIORITY_1, -1);
|
|
break;
|
|
case kDudeGargoyleStone:
|
|
if (nDist < 0x1800 && nDist > 0xc00 && abs(nDeltaAngle) < 85)
|
|
{
|
|
int hit = HitScan(pSprite, pSprite->z, dx, dy, 0, CLIPMASK1, 0);
|
|
switch (hit)
|
|
{
|
|
case -1:
|
|
sfxPlay3DSound(pSprite, 1457, 0, 0);
|
|
aiNewState(actor, &gargoyleSBlast);
|
|
break;
|
|
case 0:
|
|
case 4:
|
|
break;
|
|
case 3:
|
|
if (pSprite->type != sprite[gHitInfo.hitsprite].type && sprite[gHitInfo.hitsprite].type != kDudeGargoyleFlesh)
|
|
{
|
|
sfxPlay3DSound(pSprite, 1457, 0, 0);
|
|
aiNewState(actor, &gargoyleSBlast);
|
|
}
|
|
break;
|
|
default:
|
|
sfxPlay3DSound(pSprite, 1457, 0, 0);
|
|
aiNewState(actor, &gargoyleSBlast);
|
|
break;
|
|
}
|
|
}
|
|
else if (nDist < 0x400 && abs(nDeltaAngle) < 85)
|
|
{
|
|
int hit = HitScan(pSprite, pSprite->z, dx, dy, 0, CLIPMASK1, 0);
|
|
switch (hit)
|
|
{
|
|
case -1:
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
break;
|
|
case 0:
|
|
case 4:
|
|
break;
|
|
case 3:
|
|
if (pSprite->type != sprite[gHitInfo.hitsprite].type && sprite[gHitInfo.hitsprite].type != kDudeGargoyleFlesh)
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
break;
|
|
default:
|
|
aiNewState(actor, &gargoyleFSlash);
|
|
break;
|
|
}
|
|
}
|
|
else if ((height2-height > 0x2000 || floorZ-bottom > 0x2000) && nDist < 0x1400 && nDist > 0x800)
|
|
{
|
|
if (pSprite->type == kDudeGargoyleFlesh)
|
|
aiPlay3DSound(pSprite, 1400, AI_SFX_PRIORITY_1, -1);
|
|
else
|
|
aiPlay3DSound(pSprite, 1450, AI_SFX_PRIORITY_1, -1);
|
|
aiNewState(actor, &gargoyleSwoop);
|
|
}
|
|
else if ((height2-height < 0x2000 || floorZ-bottom < 0x2000) && abs(nDeltaAngle) < 85)
|
|
aiPlay3DSound(pSprite, 1450, AI_SFX_PRIORITY_1, -1);
|
|
break;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
aiNewState(actor, &gargoyleFly);
|
|
return;
|
|
}
|
|
}
|
|
|
|
aiNewState(actor, &gargoyleFGoto);
|
|
pXSprite->target = -1;
|
|
}
|
|
|
|
static void entryFStatue(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
DUDEINFO *pDudeInfo = &dudeInfo[6];
|
|
actHealDude(pXSprite, pDudeInfo->startHealth, pDudeInfo->startHealth);
|
|
pSprite->type = kDudeGargoyleFlesh;
|
|
}
|
|
|
|
static void entrySStatue(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
DUDEINFO *pDudeInfo = &dudeInfo[7];
|
|
actHealDude(pXSprite, pDudeInfo->startHealth, pDudeInfo->startHealth);
|
|
pSprite->type = kDudeGargoyleStone;
|
|
}
|
|
|
|
static void gargMoveForward(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
int nAccel = pDudeInfo->frontSpeed<<2;
|
|
if (abs(nAng) > 341)
|
|
return;
|
|
if (pXSprite->target == -1)
|
|
pSprite->ang = (pSprite->ang+256)&2047;
|
|
int dx = pXSprite->targetX-pSprite->x;
|
|
int dy = pXSprite->targetY-pSprite->y;
|
|
int nDist = approxDist(dx, dy);
|
|
if ((unsigned int)Random(64) < 32 && nDist <= 0x400)
|
|
return;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int vx = actor->xvel();
|
|
int vy = actor->yvel();
|
|
int t1 = DMulScale(vx, nCos, vy, nSin, 30);
|
|
int t2 = DMulScale(vx, nSin, -vy, nCos, 30);
|
|
if (pXSprite->target == -1)
|
|
t1 += nAccel;
|
|
else
|
|
t1 += nAccel>>1;
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
}
|
|
|
|
static void gargMoveSlow(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
int nAccel = pDudeInfo->frontSpeed<<2;
|
|
if (abs(nAng) > 341)
|
|
{
|
|
pXSprite->goalAng = (pSprite->ang+512)&2047;
|
|
return;
|
|
}
|
|
int dx = pXSprite->targetX-pSprite->x;
|
|
int dy = pXSprite->targetY-pSprite->y;
|
|
int nDist = approxDist(dx, dy);
|
|
if (Chance(0x600) && nDist <= 0x400)
|
|
return;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int vx = actor->xvel();
|
|
int vy = actor->yvel();
|
|
int t1 = DMulScale(vx, nCos, vy, nSin, 30);
|
|
int t2 = DMulScale(vx, nSin, -vy, nCos, 30);
|
|
t1 = nAccel>>1;
|
|
t2 >>= 1;
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
switch (pSprite->type) {
|
|
case kDudeGargoyleFlesh:
|
|
actor->zvel() = 0x44444;
|
|
break;
|
|
case kDudeGargoyleStone:
|
|
actor->zvel() = 0x35555;
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void gargMoveSwoop(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
int nAccel = pDudeInfo->frontSpeed<<2;
|
|
if (abs(nAng) > 341)
|
|
{
|
|
pXSprite->goalAng = (pSprite->ang+512)&2047;
|
|
return;
|
|
}
|
|
int dx = pXSprite->targetX-pSprite->x;
|
|
int dy = pXSprite->targetY-pSprite->y;
|
|
int nDist = approxDist(dx, dy);
|
|
if (Chance(0x600) && nDist <= 0x400)
|
|
return;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int vx = actor->xvel();
|
|
int vy = actor->yvel();
|
|
int t1 = DMulScale(vx, nCos, vy, nSin, 30);
|
|
int t2 = DMulScale(vx, nSin, -vy, nCos, 30);
|
|
t1 += nAccel>>1;
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
switch (pSprite->type) {
|
|
case kDudeGargoyleFlesh:
|
|
actor->zvel() = t1;
|
|
break;
|
|
case kDudeGargoyleStone:
|
|
actor->zvel() = t1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void gargMoveFly(DBloodActor* actor)
|
|
{
|
|
auto pXSprite = &actor->x();
|
|
auto pSprite = &actor->s();
|
|
///assert(pSprite->type >= kDudeBase && pSprite->type < kDudeMax);
|
|
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax)) {
|
|
Printf(PRINT_HIGH, "pSprite->type >= kDudeBase && pSprite->type < kDudeMax");
|
|
return;
|
|
}
|
|
DUDEINFO *pDudeInfo = getDudeInfo(pSprite->type);
|
|
int nAng = ((pXSprite->goalAng+1024-pSprite->ang)&2047)-1024;
|
|
int nTurnRange = (pDudeInfo->angSpeed<<2)>>4;
|
|
pSprite->ang = (pSprite->ang+ClipRange(nAng, -nTurnRange, nTurnRange))&2047;
|
|
int nAccel = pDudeInfo->frontSpeed<<2;
|
|
if (abs(nAng) > 341)
|
|
{
|
|
pSprite->ang = (pSprite->ang+512)&2047;
|
|
return;
|
|
}
|
|
int dx = pXSprite->targetX-pSprite->x;
|
|
int dy = pXSprite->targetY-pSprite->y;
|
|
int nDist = approxDist(dx, dy);
|
|
if (Chance(0x4000) && nDist <= 0x400)
|
|
return;
|
|
int nCos = Cos(pSprite->ang);
|
|
int nSin = Sin(pSprite->ang);
|
|
int vx = actor->xvel();
|
|
int vy = actor->yvel();
|
|
int t1 = DMulScale(vx, nCos, vy, nSin, 30);
|
|
int t2 = DMulScale(vx, nSin, -vy, nCos, 30);
|
|
t1 += nAccel>>1;
|
|
actor->xvel() = DMulScale(t1, nCos, t2, nSin, 30);
|
|
actor->yvel() = DMulScale(t1, nSin, -t2, nCos, 30);
|
|
switch (pSprite->type) {
|
|
case kDudeGargoyleFlesh:
|
|
actor->zvel() = -t1;
|
|
break;
|
|
case kDudeGargoyleStone:
|
|
actor->zvel() = -t1;
|
|
break;
|
|
}
|
|
abs(actor->zvel());
|
|
}
|
|
|
|
END_BLD_NS
|