From 2455c197bfde0ecc82b7624a9f2e16c813dcdb38 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 3 Nov 2021 22:02:01 +0100 Subject: [PATCH] - DoShrapVelocity + SlopeBounce. --- source/games/sw/src/jweapon.cpp | 6 ++--- source/games/sw/src/weapon.cpp | 44 +++++++++++++++------------------ source/games/sw/src/weapon.h | 4 +-- 3 files changed, 25 insertions(+), 29 deletions(-) diff --git a/source/games/sw/src/jweapon.cpp b/source/games/sw/src/jweapon.cpp index e9a35c0e6..6ed050fcd 100644 --- a/source/games/sw/src/jweapon.cpp +++ b/source/games/sw/src/jweapon.cpp @@ -676,7 +676,7 @@ int DoPhosphorus(DSWActor* actor) { bool did_hit_wall; - if (SlopeBounce(actor->GetSpriteIndex(), &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { @@ -894,7 +894,7 @@ int DoChemBomb(DSWActor* actor) { bool did_hit_wall; - if (SlopeBounce(actor->GetSpriteIndex(), &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { @@ -1120,7 +1120,7 @@ int DoCaltrops(DSWActor* actor) { bool did_hit_wall; - if (SlopeBounce(actor->GetSpriteIndex(), &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index 882d6f45c..ff2fbb8ba 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -3983,17 +3983,17 @@ DoShrapJumpFall(DSWActor* actor) if (TEST(u->Flags, SPR_JUMPING)) { - DoShrapVelocity(SpriteNum); + DoShrapVelocity(actor); } else if (TEST(u->Flags, SPR_FALLING)) { - DoShrapVelocity(SpriteNum); + DoShrapVelocity(actor); } else { if (!TEST(u->Flags, SPR_BOUNCE)) { - DoShrapVelocity(SpriteNum); + DoShrapVelocity(actor); return 0; } @@ -8034,7 +8034,7 @@ DoStar(DSWActor* actor) else u->zchange = MulScale(u->zchange, 40000, 16); // ceiling - if (SlopeBounce(Weapon, &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { @@ -8764,10 +8764,10 @@ void WallBounce(DSWActor* actor, short ang) } -bool SlopeBounce(short SpriteNum, bool *hit_wall) +bool SlopeBounce(DSWActor* actor, bool *hit_wall) { - USERp u = User[SpriteNum].Data(); - SPRITEp sp = u->SpriteP; + USERp u = actor->u(); + SPRITEp sp = &actor->s(); int k,l; int hiz,loz; int slope; @@ -8948,7 +8948,7 @@ DoGrenade(DSWActor* actor) case HIT_SECTOR: { bool did_hit_wall; - if (SlopeBounce(Weapon, &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { @@ -9170,7 +9170,7 @@ DoVulcanBoulder(DSWActor* actor) { bool did_hit_wall; - if (SlopeBounce(Weapon, &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { @@ -20660,10 +20660,8 @@ DoShellShrap(short SpriteNum) } #endif -int -DoShrapVelocity(int16_t SpriteNum) +int DoShrapVelocity(DSWActor* actor) { - auto actor = &swActors[SpriteNum]; USERp u = actor->u(); SPRITEp sp = &actor->s(); @@ -20680,27 +20678,25 @@ DoShrapVelocity(int16_t SpriteNum) u->zchange += u->Counter; } - SetCollision(u, move_missile(SpriteNum, u->xchange, u->ychange, u->zchange, + SetCollision(u, move_missile(actor->GetSpriteIndex(), u->xchange, u->ychange, u->zchange, u->ceiling_dist, u->floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS*2)); MissileHitDiveArea(actor); - if (u->ret) { - switch (TEST(u->ret, HIT_MASK)) + switch (u->coll.type) { - case HIT_PLAX_WALL: + case kHitSky: KillActor(actor); return true; - case HIT_SPRITE: + case kHitSprite: { short wall_ang; - short hit_sprite = -2; SPRITEp hsp; // PlaySound(DIGI_DHCLUNK, sp, v3df_dontpan); - hit_sprite = NORM_SPRITE(u->ret); - hsp = &sprite[hit_sprite]; + auto hit_sprite = u->coll.actor; + hsp = &hit_sprite->s(); wall_ang = NORM_ANGLE(hsp->ang); WallBounce(actor, wall_ang); @@ -20709,13 +20705,13 @@ DoShrapVelocity(int16_t SpriteNum) break; } - case HIT_WALL: + case kHitWall: { short hit_wall,nw,wall_ang; WALLp wph; - hit_wall = NORM_WALL(u->ret); + hit_wall = u->coll.index; wph = &wall[hit_wall]; @@ -20729,11 +20725,11 @@ DoShrapVelocity(int16_t SpriteNum) break; } - case HIT_SECTOR: + case kHitSector: { bool did_hit_wall; - if (SlopeBounce(SpriteNum, &did_hit_wall)) + if (SlopeBounce(actor, &did_hit_wall)) { if (did_hit_wall) { diff --git a/source/games/sw/src/weapon.h b/source/games/sw/src/weapon.h index 39df5f4a5..bb838bb46 100644 --- a/source/games/sw/src/weapon.h +++ b/source/games/sw/src/weapon.h @@ -78,7 +78,7 @@ SECTOR_OBJECTp DetectSectorObjectByWall(WALLp); void ScaleSpriteVector(DSWActor* actor, int scale); int QueueHole(short hit_sect, short hit_wall, int hit_x, int hit_y, int hit_z); DSWActor* QueueWallBlood(DSWActor* hit, short ang); -bool SlopeBounce(short SpriteNum, bool *hit_wall); +bool SlopeBounce(DSWActor*, bool *hit_wall); bool HitscanSpriteAdjust(short SpriteNum, short hit_wall); int SpawnSwordSparks(PLAYERp pp, short hit_sect, short hit_wall, int hit_x, int hit_y, int hit_z, short hit_ang); DSWActor* SpawnBubble(DSWActor*); @@ -87,7 +87,7 @@ void SpawnFireballFlames(int16_t SpriteNum,int16_t enemy); int SpawnRadiationCloud(DSWActor* actor); int SpawnGrenadeExp(int16_t Weapon); int SpawnSectorExp(int16_t Weapon); -int DoShrapVelocity(int16_t SpriteNum); +int DoShrapVelocity(DSWActor*); int ShrapKillSprite(DSWActor*); bool MissileSetPos(short Weapon,ANIMATORp DoWeapon,int dist); int ActorPain(short SpriteNum);