From e867c4603f051cd1eb0a16f7f79cf9108c12112a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 14 Nov 2022 18:48:31 +0100 Subject: [PATCH] - Duke: fixed issues with CON-based movement. Bad integer divisions and one incorrect check for X instead of Z. --- source/games/duke/src/actors_d.cpp | 11 ++++++++--- source/games/duke/src/actors_r.cpp | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/source/games/duke/src/actors_d.cpp b/source/games/duke/src/actors_d.cpp index 46ebdcd21..8ebbec41c 100644 --- a/source/games/duke/src/actors_d.cpp +++ b/source/games/duke/src/actors_d.cpp @@ -3523,10 +3523,15 @@ void move_d(DDukeActor *actor, int playernum, int xvel) return; } + if (actor->spr.picnum == WATERBUBBLE) + { + int a = 0; + } + auto moveptr = &ScriptCode[actor->temp_data[1]]; - if (a & geth) actor->vel.X += (moveptr[0] / 16 - actor->vel.X) * 0.5; - if (a & getv) actor->vel.Z += (moveptr[1] / 16 - actor->vel.Z) * 0.5; + if (a & geth) actor->vel.X += (moveptr[0] / 16. - actor->vel.X) * 0.5; + if (a & getv) actor->vel.Z += (moveptr[1] / 16. - actor->vel.Z) * 0.5; if (a & dodgebullet) dodge(actor); @@ -3538,7 +3543,7 @@ void move_d(DDukeActor *actor, int playernum, int xvel) a = badguy(actor); - if (actor->vel.X != 0 || actor->vel.X != 0) + if (actor->vel.X != 0 || actor->vel.Z != 0) { if (a && actor->spr.picnum != ROTATEGUN) { diff --git a/source/games/duke/src/actors_r.cpp b/source/games/duke/src/actors_r.cpp index d6c568ab1..b2de79410 100644 --- a/source/games/duke/src/actors_r.cpp +++ b/source/games/duke/src/actors_r.cpp @@ -3547,8 +3547,8 @@ void move_r(DDukeActor *actor, int pnum, int xvel) auto moveptr = &ScriptCode[actor->temp_data[1]]; - if (a & geth) actor->vel.X += (moveptr[0] / 16 - actor->vel.X) * 0.5; - if (a & getv) actor->vel.Z += (moveptr[1] / 16 - actor->vel.Z) * 0.5; + if (a & geth) actor->vel.X += (moveptr[0] / 16. - actor->vel.X) * 0.5; + if (a & getv) actor->vel.Z += (moveptr[1] / 16. - actor->vel.Z) * 0.5; if (a & dodgebullet) dodge(actor);