1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-28 21:15:34 +00:00
openmw-tes3mp/apps/openmw/mwvr/realisticcombat.cpp

325 lines
9.3 KiB
C++
Raw Normal View History

2020-03-15 14:31:38 +00:00
#include "realisticcombat.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/soundmanager.hpp"
2020-03-23 22:32:47 +00:00
#include "../mwmechanics/weapontype.hpp"
#include <iomanip>
2020-03-15 14:31:38 +00:00
namespace MWVR { namespace RealisticCombat {
2020-03-23 22:32:47 +00:00
static const char* stateToString(SwingState florida)
{
switch (florida)
{
case SwingState_Idle:
return "Idle";
case SwingState_Impact:
return "Impact";
case SwingState_Ready:
return "Ready";
case SwingState_Swinging:
return "Swinging";
}
}
2020-03-28 15:35:49 +00:00
static const char* swingTypeToString(int type)
{
switch (type)
{
case ESM::Weapon::AT_Chop:
return "Chop";
case ESM::Weapon::AT_Slash:
return "Slash";
case ESM::Weapon::AT_Thrust:
return "Thrust";
case -1:
return "Fail";
default:
return "Invalid";
}
}
2020-03-23 22:32:47 +00:00
2020-03-15 14:31:38 +00:00
StateMachine::StateMachine(MWWorld::Ptr ptr) : ptr(ptr) {}
2020-03-23 22:32:47 +00:00
bool StateMachine::canSwing()
{
2020-03-28 15:35:49 +00:00
if (swingType >= 0)
if (velocity >= minVelocity)
if (swingType != ESM::Weapon::AT_Thrust || thrustVelocity >= 0.f)
return true;
2020-03-23 22:32:47 +00:00
return false;
}
2020-03-15 14:31:38 +00:00
// Actions common to all transitions
void StateMachine::transition(
SwingState newState)
{
maxSwingVelocity = 0.f;
timeSinceEnteredState = 0.f;
movementSinceEnteredState = 0.f;
state = newState;
}
void StateMachine::reset()
{
maxSwingVelocity = 0.f;
timeSinceEnteredState = 0.f;
velocity = 0.f;
previousPosition = osg::Vec3(0.f, 0.f, 0.f);
state = SwingState_Ready;
}
2020-03-23 22:32:47 +00:00
static bool isMeleeWeapon(int type)
{
if (MWMechanics::getWeaponType(type)->mWeaponClass != ESM::WeaponType::Melee)
return false;
if (type == ESM::Weapon::HandToHand)
return true;
if (type >= 0)
return true;
return false;
}
2020-03-28 15:35:49 +00:00
static bool isSideSwingValidForWeapon(int type)
{
switch (type)
{
case ESM::Weapon::HandToHand:
case ESM::Weapon::BluntOneHand:
case ESM::Weapon::BluntTwoClose:
case ESM::Weapon::BluntTwoWide:
case ESM::Weapon::SpearTwoWide:
return true;
case ESM::Weapon::ShortBladeOneHand:
case ESM::Weapon::LongBladeOneHand:
case ESM::Weapon::LongBladeTwoHand:
case ESM::Weapon::AxeOneHand:
case ESM::Weapon::AxeTwoHand:
default:
return false;
}
}
2020-03-15 14:31:38 +00:00
void StateMachine::update(float dt, bool enabled)
{
auto* session = Environment::get().getSession();
2020-03-23 22:32:47 +00:00
auto* world = MWBase::Environment::get().getWorld();
auto& predictedPoses = session->predictedPoses(VRSession::FramePhase::Update);
auto& handPose = predictedPoses.hands[(int)MWVR::Side::RIGHT_HAND];
2020-03-23 22:32:47 +00:00
auto weaponType = world->getActiveWeaponType();
enabled = enabled && isMeleeWeapon(weaponType);
2020-03-15 14:31:38 +00:00
if (mEnabled != enabled)
{
reset();
mEnabled = enabled;
}
if (!enabled)
return;
timeSinceEnteredState += dt;
// First determine direction of different swing types
2020-03-23 22:32:47 +00:00
// Discover orientation of weapon
osg::Quat weaponDir = handPose.orientation;
// Morrowind models do not hold weapons at a natural angle, so i rotate the hand forward
// to get a more natural angle on the weapon to allow more comfortable combat.
if (weaponType != ESM::Weapon::HandToHand)
weaponDir = osg::Quat(osg::PI_4, osg::Vec3{ 1,0,0 }) * weaponDir;
2020-03-15 14:31:38 +00:00
2020-03-23 22:32:47 +00:00
// Thrust means stabbing in the direction of the weapon
osg::Vec3 thrustDirection = weaponDir * osg::Vec3{ 0,1,0 };
2020-03-15 14:31:38 +00:00
2020-03-28 15:35:49 +00:00
// Slash and Chop are vertical, relative to the orientation of the weapon (direction of the sharp edge / hammer)
osg::Vec3 slashChopDirection = weaponDir * osg::Vec3{ 0,0,1 };
2020-03-23 22:32:47 +00:00
2020-03-28 15:35:49 +00:00
// Side direction of the weapon (i.e. The blunt side of the sword)
osg::Vec3 sideDirection = weaponDir * osg::Vec3{ 1,0,0 };
2020-03-15 14:31:38 +00:00
// Next determine current hand movement
// If tracking is lost, openxr will return a position of 0
// So i reset position when tracking is re-acquired to avoid a superspeed strike.
2020-03-15 14:31:38 +00:00
// Theoretically, the player's hand really could be at 0,0,0
// but that's a super rare case so whatever.
if (previousPosition == osg::Vec3(0.f, 0.f, 0.f))
previousPosition = handPose.position;
osg::Vec3 movement = handPose.position - previousPosition;
movementSinceEnteredState += movement.length();
previousPosition = handPose.position;
2020-03-23 22:32:47 +00:00
osg::Vec3 swingVector = movement / dt;
2020-03-28 15:35:49 +00:00
osg::Vec3 swingDirection = swingVector;
swingDirection.normalize();
2020-03-15 14:31:38 +00:00
2020-03-28 15:35:49 +00:00
// Compute swing velocities
// Thrust follows the orientation of the weapon. Negative thrust = no attack.
2020-03-23 22:32:47 +00:00
thrustVelocity = swingVector * thrustDirection;
velocity = swingVector.length();
2020-03-28 15:35:49 +00:00
if (isSideSwingValidForWeapon(weaponType))
{
// Compute velocity in the plane normal to the thrust direction.
float thrustComponent = std::abs(thrustVelocity / velocity);
float planeComponent = std::sqrt(1 - thrustComponent * thrustComponent);
slashChopVelocity = velocity * planeComponent;
sideVelocity = -1000.f;
}
else
{
// If side swing is not valid for the weapon, count slash/chop only along in
// the direction of the weapon's edge.
slashChopVelocity = std::abs(swingVector * slashChopDirection);
sideVelocity = std::abs(swingVector * sideDirection);
}
float orientationVerticality = std::abs(thrustDirection * osg::Vec3{ 0,0,1 });
float swingVerticality = std::abs(swingDirection * osg::Vec3{ 0,0,1 });
2020-03-15 14:31:38 +00:00
// Pick swing type based on greatest current velocity
// Note i use abs() of thrust velocity to prevent accidentally triggering
2020-03-28 15:35:49 +00:00
// chop/slash when player is withdrawing the weapon.
if (sideVelocity > std::abs(thrustVelocity) && sideVelocity > slashChopVelocity)
2020-03-15 14:31:38 +00:00
{
2020-03-28 15:35:49 +00:00
// Player is swinging with the "blunt" side of a weapon that
// cannot be used that way.
swingType = -1;
2020-03-15 14:31:38 +00:00
}
2020-03-28 15:35:49 +00:00
else if (std::abs(thrustVelocity) > slashChopVelocity)
2020-03-15 14:31:38 +00:00
{
2020-03-28 15:35:49 +00:00
swingType = ESM::Weapon::AT_Thrust;
2020-03-15 14:31:38 +00:00
}
else
{
2020-03-28 15:35:49 +00:00
// First check if the weapon is pointing upwards. In which case slash is not
// applicable, and the attack must be a chop.
if (orientationVerticality > 0.707)
swingType = ESM::Weapon::AT_Chop;
else
{
// Next check if the swing is more horizontal or vertical. A slash
// would be more horizontal.
if(swingVerticality > 0.707)
swingType = ESM::Weapon::AT_Chop;
else
swingType = ESM::Weapon::AT_Slash;
}
2020-03-15 14:31:38 +00:00
}
switch (state)
{
2020-03-23 22:32:47 +00:00
case SwingState_Idle:
return update_idleState();
2020-03-15 14:31:38 +00:00
case SwingState_Ready:
return update_readyState();
case SwingState_Swinging:
return update_swingingState();
case SwingState_Impact:
return update_impactState();
}
}
2020-03-23 22:32:47 +00:00
void StateMachine::update_idleState()
{
if (timeSinceEnteredState >= minimumPeriod)
transition_idleToReady();
}
void StateMachine::transition_idleToReady()
{
transition(SwingState_Ready);
}
2020-03-15 14:31:38 +00:00
void StateMachine::update_readyState()
{
2020-03-23 22:32:47 +00:00
if (canSwing())
return transition_readyToSwinging();
2020-03-15 14:31:38 +00:00
}
void StateMachine::transition_readyToSwinging()
{
shouldSwish = true;
transition(SwingState_Swinging);
2020-03-23 22:32:47 +00:00
// As a special case, update the new state immediately to allow
// same-frame impacts. This is important if the player is moving
// at a velocity close to the minimum velocity.
2020-03-15 14:31:38 +00:00
update_swingingState();
}
void StateMachine::playSwish()
{
if (shouldSwish)
{
MWBase::SoundManager* sndMgr = MWBase::Environment::get().getSoundManager();
std::string sound = "Weapon Swish";
if (strength < 0.5f)
sndMgr->playSound3D(ptr, sound, 1.0f, 0.8f); //Weak attack
if (strength < 1.0f)
sndMgr->playSound3D(ptr, sound, 1.0f, 1.0f); //Medium attack
else
sndMgr->playSound3D(ptr, sound, 1.0f, 1.2f); //Strong attack
shouldSwish = false;
2020-03-28 15:35:49 +00:00
Log(Debug::Verbose) << "Swing: " << swingTypeToString(swingType);
2020-03-15 14:31:38 +00:00
}
}
void StateMachine::update_swingingState()
{
maxSwingVelocity = std::max(velocity, maxSwingVelocity);
strength = std::min(1.f, (maxSwingVelocity - minVelocity) / maxVelocity);
2020-03-23 22:32:47 +00:00
// Require a minimum movement of the hand before a hit can be made
// This is to prevent microswings
2020-03-15 14:31:38 +00:00
if (movementSinceEnteredState > minimumPeriod)
{
playSwish();
2020-03-23 22:32:47 +00:00
if (// When velocity falls below minimum, register the miss
!canSwing()
// Call hit with simulated=true to check for hit
|| ptr.getClass().hit(ptr, strength, swingType, true)
)
2020-03-15 14:31:38 +00:00
return transition_swingingToImpact();
}
2020-03-23 22:32:47 +00:00
// If velocity drops below minimum before minimum movement was achieved,
// drop back to ready
if (!canSwing())
return transition_swingingToReady();
2020-03-15 14:31:38 +00:00
}
void StateMachine::transition_swingingToReady()
{
transition(SwingState_Ready);
}
void StateMachine::transition_swingingToImpact()
{
ptr.getClass().hit(ptr, strength, swingType, false);
transition(SwingState_Impact);
2020-03-23 22:32:47 +00:00
std::cout << "Transition: Swing -> Impact" << std::endl;
2020-03-15 14:31:38 +00:00
}
void StateMachine::update_impactState()
{
if (velocity < minVelocity)
2020-03-23 22:32:47 +00:00
return transition_impactToIdle();
2020-03-15 14:31:38 +00:00
}
2020-03-23 22:32:47 +00:00
void StateMachine::transition_impactToIdle()
2020-03-15 14:31:38 +00:00
{
2020-03-23 22:32:47 +00:00
transition(SwingState_Idle);
std::cout << "Transition: Impact -> Ready" << std::endl;
2020-03-15 14:31:38 +00:00
}
}}