From 6feb187a2a6ece7b8d1169d3b6cbb1ebcc8a5821 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 1 Sep 2022 18:21:30 +0200 Subject: [PATCH] - floatified lo_step. --- source/games/sw/src/ai.cpp | 2 +- source/games/sw/src/bunny.cpp | 8 ++++---- source/games/sw/src/coolie.cpp | 8 ++++---- source/games/sw/src/game.h | 2 +- source/games/sw/src/serp.cpp | 6 +++--- source/games/sw/src/sprite.cpp | 8 ++++---- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/source/games/sw/src/ai.cpp b/source/games/sw/src/ai.cpp index 1dab2d1ef..2d073b9e1 100644 --- a/source/games/sw/src/ai.cpp +++ b/source/games/sw/src/ai.cpp @@ -41,7 +41,7 @@ Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms BEGIN_SW_NS ANIMATOR InitActorRunToward; -bool DropAhead(DSWActor* actor, int min_height); +bool DropAhead(DSWActor* actor, double min_height); ANIMATOR* ChooseAction(DECISION decision[]); diff --git a/source/games/sw/src/bunny.cpp b/source/games/sw/src/bunny.cpp index 708b3cb56..f2e772266 100644 --- a/source/games/sw/src/bunny.cpp +++ b/source/games/sw/src/bunny.cpp @@ -781,10 +781,10 @@ int SetupBunny(DSWActor* actor) actor->user.Flags |= (SPR_XFLIP_TOGGLE); - actor->user.zclip = (16); - actor->user.floor_dist = (8); - actor->user.ceiling_dist = (8); - actor->user.lo_step = Z(16); + actor->user.zclip = 16; + actor->user.floor_dist = 8; + actor->user.ceiling_dist = 8; + actor->user.lo_step = 16; return 0; } diff --git a/source/games/sw/src/coolie.cpp b/source/games/sw/src/coolie.cpp index 70144eed7..b9080c4a5 100644 --- a/source/games/sw/src/coolie.cpp +++ b/source/games/sw/src/coolie.cpp @@ -405,12 +405,12 @@ void EnemyDefaults(DSWActor* actor, ACTOR_ACTION_SET* action, PERSONALITY* perso actor->user.spal = actor->spr.pal; actor->user.RotNum = 5; - actor->spr.clipdist = (256) >> 2; + actor->spr.clipdist = 256 >> 2; - actor->user.zclip = (48); - actor->user.lo_step = Z(32); + actor->user.zclip = 48; + actor->user.lo_step = 32; - actor->user.floor_dist = actor->user.zclip - actor->user.lo_step * zinttoworld; + actor->user.floor_dist = actor->user.zclip - actor->user.lo_step; actor->user.ceiling_dist = ActorSizeZ(actor) - actor->user.zclip; actor->user.Radius = 400; diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 1232abebc..17e9ace5d 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -993,7 +993,7 @@ struct USER int16_t jump_grav; // clipmove - int16_t lo_step; + double lo_step; int active_range; sectortype* hi_sectp, *lo_sectp; diff --git a/source/games/sw/src/serp.cpp b/source/games/sw/src/serp.cpp index 00fa28377..eb7544e24 100644 --- a/source/games/sw/src/serp.cpp +++ b/source/games/sw/src/serp.cpp @@ -733,11 +733,11 @@ int SetupSerp(DSWActor* actor) actor->user.loz = actor->spr.pos.Z; // amount to move up for clipmove - actor->user.zclip = (80); + actor->user.zclip = 80; // size of step can walk off of - actor->user.lo_step = Z(40); + actor->user.lo_step = 40; - actor->user.floor_dist = actor->user.zclip - actor->user.lo_step * zinttoworld; + actor->user.floor_dist = actor->user.zclip - actor->user.lo_step; actor->user.ceiling_dist = ActorSizeZ(actor) - actor->user.zclip; return 0; diff --git a/source/games/sw/src/sprite.cpp b/source/games/sw/src/sprite.cpp index 6278c4e62..734f8fa71 100644 --- a/source/games/sw/src/sprite.cpp +++ b/source/games/sw/src/sprite.cpp @@ -4542,7 +4542,7 @@ bool ActorDrop(DSWActor* actor, const DVector3& pos, sectortype* new_sector, dou } // Primarily used in ai.c for now - need to get rid of -bool DropAhead(DSWActor* actor, int min_height) +bool DropAhead(DSWActor* actor, double min_height) { auto vect = actor->spr.pos + MOVExy(256, actor->spr.angle); @@ -4550,7 +4550,7 @@ bool DropAhead(DSWActor* actor, int min_height) updatesector(vect, &newsector); // look straight down for a drop - if (ActorDrop(actor, vect, newsector, min_height * zinttoworld)) + if (ActorDrop(actor, vect, newsector, min_height)) return true; return false; @@ -4600,7 +4600,7 @@ int move_actor(DSWActor* actor, int xchange, int ychange, int zchange) // try and determine whether you moved > lo_step in the z direction if (!(actor->user.Flags & (SPR_NO_SCAREDZ | SPR_JUMPING | SPR_CLIMBING | SPR_FALLING | SPR_DEAD | SPR_SWIMMING))) { - if (abs(actor->spr.pos.Z - globloz) > actor->user.lo_step * zinttoworld) + if (abs(actor->spr.pos.Z - globloz) > actor->user.lo_step) { // cancel move actor->spr.pos = apos; @@ -4616,7 +4616,7 @@ int move_actor(DSWActor* actor, int xchange, int ychange, int zchange) return false; } - if (ActorDrop(actor, actor->spr.pos, actor->sector(), actor->user.lo_step * zinttoworld)) + if (ActorDrop(actor, actor->spr.pos, actor->sector(), actor->user.lo_step)) { // cancel move actor->spr.pos = apos;