Merge branch 'landofwindandshade' into 'master'

Handle landing in the frame the jump is over (bug #5849)

Closes #5849

See merge request OpenMW/openmw!2499
7098-improve-post-process-behavior-with-transparent-objects
psi29a 2 years ago
commit 3ca17e5183

@ -7,6 +7,7 @@
Bug #5057: Weapon swing sound plays at same pitch whether it hits or misses Bug #5057: Weapon swing sound plays at same pitch whether it hits or misses
Bug #5129: Stuttering animation on Centurion Archer Bug #5129: Stuttering animation on Centurion Archer
Bug #5714: Touch spells cast using ExplodeSpell don't always explode Bug #5714: Touch spells cast using ExplodeSpell don't always explode
Bug #5849: Paralysis breaks landing
Bug #5977: Fatigueless NPCs' corpse underwater changes animation on game load Bug #5977: Fatigueless NPCs' corpse underwater changes animation on game load
Bug #6427: Enemy health bar disappears before damaging effect ends Bug #6427: Enemy health bar disappears before damaging effect ends
Bug #6645: Enemy block sounds align with animation instead of blocked hits Bug #6645: Enemy block sounds align with animation instead of blocked hits

@ -2077,13 +2077,14 @@ namespace MWMechanics
} }
} }
bool inJump = false; bool wasInJump = mInJump;
mInJump = false;
if (!inwater && !flying && solid) if (!inwater && !flying && solid)
{ {
// In the air (either getting up —ascending part of jump— or falling). // In the air (either getting up —ascending part of jump— or falling).
if (!onground) if (!onground)
{ {
inJump = true; mInJump = true;
jumpstate = JumpState_InAir; jumpstate = JumpState_InAir;
static const float fJumpMoveBase = gmst.find("fJumpMoveBase")->mValue.getFloat(); static const float fJumpMoveBase = gmst.find("fJumpMoveBase")->mValue.getFloat();
@ -2101,7 +2102,7 @@ namespace MWMechanics
float z = cls.getJump(mPtr); float z = cls.getJump(mPtr);
if (z > 0.f) if (z > 0.f)
{ {
inJump = true; mInJump = true;
if (vec.x() == 0 && vec.y() == 0) if (vec.x() == 0 && vec.y() == 0)
vec.z() = z; vec.z() = z;
else else
@ -2114,9 +2115,9 @@ namespace MWMechanics
} }
} }
if (!inJump) if (!mInJump)
{ {
if (mJumpState == JumpState_InAir && !flying && solid) if (mJumpState == JumpState_InAir && !flying && solid && wasInJump)
{ {
float height = cls.getCreatureStats(mPtr).land(isPlayer); float height = cls.getCreatureStats(mPtr).land(isPlayer);
float healthLost = 0.f; float healthLost = 0.f;
@ -2278,7 +2279,7 @@ namespace MWMechanics
{ {
if (inwater) if (inwater)
idlestate = CharState_IdleSwim; idlestate = CharState_IdleSwim;
else if (sneak && !inJump) else if (sneak && !mInJump)
idlestate = CharState_IdleSneak; idlestate = CharState_IdleSneak;
else else
idlestate = CharState_Idle; idlestate = CharState_Idle;
@ -2292,7 +2293,7 @@ namespace MWMechanics
updateIdleStormState(inwater); updateIdleStormState(inwater);
} }
if (inJump) if (mInJump)
mMovementAnimationControlled = false; mMovementAnimationControlled = false;
if (isTurning()) if (isTurning())

@ -160,6 +160,7 @@ namespace MWMechanics
JumpingState mJumpState{ JumpState_None }; JumpingState mJumpState{ JumpState_None };
std::string mCurrentJump; std::string mCurrentJump;
bool mInJump{ false };
int mWeaponType{ ESM::Weapon::None }; int mWeaponType{ ESM::Weapon::None };
std::string mCurrentWeapon; std::string mCurrentWeapon;

Loading…
Cancel
Save