mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:49:54 +00:00
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
#ifndef GAME_MWMECHANICS_AICOMBAT_H
|
|
#define GAME_MWMECHANICS_AICOMBAT_H
|
|
|
|
#include "aipackage.hpp"
|
|
|
|
#include "pathfinding.hpp"
|
|
|
|
#include "movement.hpp"
|
|
#include "obstacle.hpp"
|
|
|
|
#include "../mwworld/cellstore.hpp" // for Doors
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
/// \brief Causes the actor to fight another actor
|
|
class AiCombat : public AiPackage
|
|
{
|
|
public:
|
|
///Constructor
|
|
/** \param actor Actor to fight **/
|
|
AiCombat(const MWWorld::Ptr& actor);
|
|
|
|
virtual AiCombat *clone() const;
|
|
|
|
virtual bool execute (const MWWorld::Ptr& actor,float duration);
|
|
|
|
virtual int getTypeId() const;
|
|
|
|
virtual unsigned int getPriority() const;
|
|
|
|
///Returns target ID
|
|
std::string getTargetId() const;
|
|
|
|
private:
|
|
PathFinder mPathFinder;
|
|
// controls duration of the actual strike
|
|
float mTimerAttack;
|
|
float mTimerReact;
|
|
// controls duration of the sideway & forward moves
|
|
// when mCombatMove is true
|
|
float mTimerCombatMove;
|
|
|
|
// AiCombat states
|
|
bool mReadyToAttack, mAttack;
|
|
bool mFollowTarget;
|
|
bool mCombatMove;
|
|
bool mBackOffDoor;
|
|
|
|
bool mForceNoShortcut;
|
|
ESM::Position mShortcutFailPos;
|
|
|
|
ESM::Position mLastPos;
|
|
MWMechanics::Movement mMovement;
|
|
int mTargetActorId;
|
|
|
|
ObstacleCheck mObstacleCheck;
|
|
|
|
void buildNewPath(const MWWorld::Ptr& actor, const MWWorld::Ptr& target);
|
|
};
|
|
}
|
|
|
|
#endif
|