2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-12-19 18:27:58 +00:00
|
|
|
|
|
|
|
#include "CActor.hpp"
|
|
|
|
#include "zeus/CRelAngle.hpp"
|
|
|
|
#include "zeus/COBBox.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScriptCameraPitchVolume : public CActor {
|
|
|
|
static const zeus::CVector3f skScaleFactor;
|
|
|
|
zeus::COBBox xe8_obbox;
|
|
|
|
zeus::CRelAngle x124_upPitch;
|
|
|
|
zeus::CRelAngle x128_downPitch;
|
|
|
|
zeus::CVector3f x12c_scale;
|
|
|
|
float x138_maxInterpDistance;
|
2016-12-19 18:27:58 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
bool x13c_24_entered : 1;
|
|
|
|
bool x13c_25_occupied : 1;
|
2016-12-19 18:27:58 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
u32 _dummy = 0;
|
|
|
|
};
|
2016-12-19 18:27:58 +00:00
|
|
|
|
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptCameraPitchVolume(TUniqueId, bool, std::string_view, const CEntityInfo&, const zeus::CVector3f&,
|
|
|
|
const zeus::CTransform&, const zeus::CRelAngle&, const zeus::CRelAngle&, float);
|
2016-12-19 18:27:58 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void Accept(IVisitor& visitor);
|
|
|
|
void Think(float, CStateManager&);
|
2019-01-29 08:28:35 +00:00
|
|
|
rstl::optional<zeus::CAABox> GetTouchBounds() const;
|
2018-12-08 05:30:43 +00:00
|
|
|
void Touch(CActor&, CStateManager&);
|
|
|
|
float GetUpPitch() const { return x124_upPitch; }
|
|
|
|
float GetDownPitch() const { return x128_downPitch; }
|
|
|
|
const zeus::CVector3f& GetScale() const { return x12c_scale; }
|
|
|
|
float GetMaxInterpolationDistance() const { return x138_maxInterpDistance; }
|
|
|
|
void Entered(CStateManager&);
|
|
|
|
void Exited(CStateManager&);
|
2016-12-19 18:27:58 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|