From 817a0cb94ad5113fa75ff28e0be2fbef87a329d1 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 7 Nov 2022 19:38:22 +1100 Subject: [PATCH] - Clamp applied mouse input to be within safe ranges to interpolate with. * Input greater than 180 degrees in a single tic can cause the input to be applied backwards. --- source/core/gameinput.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index e408e82ee..75ea3472f 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -160,10 +160,10 @@ void processMovement(InputPacket* const currInput, InputPacket* const inputBuffe currInput->svel += drink_amt & 1 ? -currInput->fvel : currInput->fvel; // add collected input to game's local input accumulation packet. - inputBuffer->fvel = clamp(inputBuffer->fvel + currInput->fvel, -(float)keymove, (float)keymove); - inputBuffer->svel = clamp(inputBuffer->svel + currInput->svel, -(float)keymove, (float)keymove); - inputBuffer->avel += currInput->avel; - inputBuffer->horz += currInput->horz; + inputBuffer->fvel = clamp(inputBuffer->fvel + currInput->fvel, -(float)keymove, (float)keymove); + inputBuffer->svel = clamp(inputBuffer->svel + currInput->svel, -(float)keymove, (float)keymove); + inputBuffer->avel = clamp(inputBuffer->avel + currInput->avel, -179.f, 179.f); + inputBuffer->horz = clamp(inputBuffer->horz + currInput->horz, -179.f, 179.f); }