From 954b394baad218cfdcf3a618f85815e15bbcd1bd Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 11 Sep 2022 23:21:36 +1000 Subject: [PATCH] - Blood: Floatify `PLAYER::zWeaponVel`. --- source/games/blood/src/player.cpp | 8 ++++---- source/games/blood/src/player.h | 2 +- wadsrc/static/zscript/games/blood/bloodgame.zs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/games/blood/src/player.cpp b/source/games/blood/src/player.cpp index 72c539813..bd020de8c 100644 --- a/source/games/blood/src/player.cpp +++ b/source/games/blood/src/player.cpp @@ -1871,13 +1871,13 @@ void playerProcess(PLAYER* pPlayer) else pPlayer->zViewVel += MulScaleF(dz << 8, 0x1800, 16) / 65536; pPlayer->zView += pPlayer->zViewVel; - pPlayer->zWeaponVel = interpolatedvalue(pPlayer->zWeaponVel, actor->int_vel().Z, FixedToFloat(0x5000)); + pPlayer->zWeaponVel = interpolatedvalue(pPlayer->zWeaponVel, actor->vel.Z, FixedToFloat(0x5000)); dz = pPlayer->actor->int_pos().Z - pPosture->weaponAboveZ - pPlayer->zWeapon * zworldtoint; if (dz > 0) - pPlayer->zWeaponVel += MulScale(dz << 8, 0x8000, 16); + pPlayer->zWeaponVel += MulScaleF(dz << 8, 0x8000, 16) / 65536; else - pPlayer->zWeaponVel += MulScale(dz << 8, 0xc00, 16); - pPlayer->zWeapon += FixedToFloat(pPlayer->zWeaponVel); + pPlayer->zWeaponVel += MulScaleF(dz << 8, 0xc00, 16) / 65536; + pPlayer->zWeapon += pPlayer->zWeaponVel; pPlayer->bobPhase = ClipLow(pPlayer->bobPhase - 4, 0); nSpeed >>= FRACBITS; if (pPlayer->posture == 1) diff --git a/source/games/blood/src/player.h b/source/games/blood/src/player.h index 1e7e25886..5ce2690c1 100644 --- a/source/games/blood/src/player.h +++ b/source/games/blood/src/player.h @@ -112,7 +112,7 @@ struct PLAYER double zViewVel; double zWeapon; double ozWeapon; - int zWeaponVel; + double zWeaponVel; int slope; bool isUnderwater; bool hasKey[8]; diff --git a/wadsrc/static/zscript/games/blood/bloodgame.zs b/wadsrc/static/zscript/games/blood/bloodgame.zs index cdd9e68e6..200db5fa3 100644 --- a/wadsrc/static/zscript/games/blood/bloodgame.zs +++ b/wadsrc/static/zscript/games/blood/bloodgame.zs @@ -76,7 +76,7 @@ struct BloodPlayer native native double zView; native double zViewVel; native double zWeapon; - native int zWeaponVel; + native double zWeaponVel; native int slope; native bool isUnderwater; native bool hasKey[8];