2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-02-13 21:29:00 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include "Runtime/GuiSys/CCompoundTargetReticle.hpp"
|
|
|
|
#include "Runtime/GuiSys/COrbitPointMarker.hpp"
|
2017-02-13 21:29:00 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-02-13 21:29:00 +00:00
|
|
|
class CStateManager;
|
2018-12-08 05:30:43 +00:00
|
|
|
class CTargetingManager {
|
|
|
|
CCompoundTargetReticle x0_targetReticule;
|
|
|
|
COrbitPointMarker x21c_orbitPointMarker;
|
|
|
|
|
2017-02-13 21:29:00 +00:00
|
|
|
public:
|
2020-03-26 01:25:11 +00:00
|
|
|
explicit CTargetingManager(const CStateManager& stateMgr);
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CheckLoadComplete();
|
|
|
|
void Update(float, const CStateManager& stateMgr);
|
2020-04-10 01:28:50 +00:00
|
|
|
void Draw(const CStateManager& stateMgr, bool hideLockon);
|
2018-12-08 05:30:43 +00:00
|
|
|
void Touch();
|
|
|
|
CCompoundTargetReticle& CompoundTargetReticle() { return x0_targetReticule; }
|
2017-02-13 21:29:00 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|