2017-02-13 21:29:00 +00:00
|
|
|
#ifndef __URDE_CTARGETINGMANAGER_HPP__
|
|
|
|
#define __URDE_CTARGETINGMANAGER_HPP__
|
|
|
|
|
|
|
|
#include "CCompoundTargetReticle.hpp"
|
|
|
|
#include "COrbitPointMarker.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CStateManager;
|
|
|
|
class CTargetingManager
|
|
|
|
{
|
2017-04-09 06:14:22 +00:00
|
|
|
zeus::CQuaternion x0_rot;
|
2017-02-13 21:29:00 +00:00
|
|
|
public:
|
2017-05-18 19:27:21 +00:00
|
|
|
CTargetingManager(const CStateManager& stateMgr);
|
2017-02-13 21:29:00 +00:00
|
|
|
bool CheckLoadComplete();
|
2017-05-18 19:27:21 +00:00
|
|
|
void Update(float, const CStateManager& stateMgr);
|
2017-05-21 16:01:04 +00:00
|
|
|
void Draw(const CStateManager& stateMgr, bool hideLockon) const;
|
2017-02-13 21:29:00 +00:00
|
|
|
void Touch() const;
|
2017-04-09 06:14:22 +00:00
|
|
|
void SetRotation(const zeus::CQuaternion& rot) { x0_rot = rot; }
|
2017-02-13 21:29:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CTARGETINGMANAGER_HPP__
|