metaforce/Runtime/World/CGameLight.hpp

29 lines
795 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include <string_view>
#include "Runtime/GCNTypes.hpp"
#include "Runtime/World/CActor.hpp"
#include "Runtime/Graphics/CLight.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CGameLight : public CActor {
TUniqueId xe8_parentId;
CLight xec_light;
u32 x13c_lightId;
u32 x140_priority;
float x144_lifeTime;
public:
CGameLight(TUniqueId uid, TAreaId aid, bool active, std::string_view name, const zeus::CTransform& xf,
TUniqueId parentId, const CLight& light, u32 sourceId, u32 priority, float lifeTime);
void Accept(IVisitor& visitor) override;
void Think(float dt, CStateManager& mgr) override;
2018-12-08 05:30:43 +00:00
void SetLightPriorityAndId();
void SetLight(const CLight& light);
2018-12-08 05:30:43 +00:00
CLight GetLight() const;
TUniqueId GetParentId() const { return xe8_parentId; }
};
2018-12-08 05:30:43 +00:00
} // namespace urde