2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-08-21 00:06:39 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CColor.hpp>
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2016-03-04 23:04:53 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
enum class ELightType {
|
|
|
|
Spot = 0,
|
|
|
|
Point = 1,
|
|
|
|
Directional = 2,
|
|
|
|
LocalAmbient = 3,
|
|
|
|
Custom = 4,
|
2016-03-04 23:04:53 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EFalloffType { Constant, Linear, Quadratic };
|
|
|
|
|
|
|
|
class CLight {
|
|
|
|
friend class CGuiLight;
|
|
|
|
friend class CBooModel;
|
|
|
|
friend class CBooRenderer;
|
|
|
|
friend class CGameLight;
|
|
|
|
|
|
|
|
zeus::CVector3f x0_pos;
|
2019-02-24 07:15:54 +00:00
|
|
|
zeus::CVector3f xc_dir = zeus::skDown;
|
|
|
|
zeus::CColor x18_color = zeus::skClear;
|
2018-12-08 05:30:43 +00:00
|
|
|
ELightType x1c_type = ELightType::Custom;
|
|
|
|
float x20_spotCutoff = 0.f;
|
|
|
|
float x24_distC = 1.f;
|
|
|
|
float x28_distL = 0.f;
|
|
|
|
float x2c_distQ = 0.f;
|
|
|
|
float x30_angleC = 1.f;
|
|
|
|
float x34_angleL = 0.f;
|
|
|
|
float x38_angleQ = 0.f;
|
|
|
|
u32 x3c_priority = 0;
|
|
|
|
u32 x40_lightId = 0; // Serves as unique key
|
2020-03-18 00:45:49 +00:00
|
|
|
mutable float x44_cachedRadius = 0.f;
|
|
|
|
mutable float x48_cachedIntensity = 0.f;
|
2020-04-21 07:22:41 +00:00
|
|
|
mutable bool x4c_24_intensityDirty : 1 = true;
|
|
|
|
mutable bool x4c_25_radiusDirty : 1 = true;
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
float CalculateLightRadius() const;
|
2016-03-16 20:49:35 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
public:
|
2020-04-21 07:22:41 +00:00
|
|
|
CLight() = default;
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
CLight(const zeus::CVector3f& pos, const zeus::CVector3f& dir, const zeus::CColor& color, float distC, float distL,
|
|
|
|
float distQ, float angleC, float angleL, float angleQ);
|
|
|
|
|
|
|
|
CLight(ELightType type, const zeus::CVector3f& pos, const zeus::CVector3f& dir, const zeus::CColor& color,
|
|
|
|
float cutoff);
|
|
|
|
|
|
|
|
void SetPosition(const zeus::CVector3f& pos) { x0_pos = pos; }
|
|
|
|
|
|
|
|
const zeus::CVector3f& GetPosition() const { return x0_pos; }
|
|
|
|
|
|
|
|
void SetDirection(const zeus::CVector3f& dir) { xc_dir = dir; }
|
|
|
|
|
|
|
|
const zeus::CVector3f& GetDirection() const { return xc_dir; }
|
|
|
|
|
|
|
|
void SetColor(const zeus::CColor& col) {
|
|
|
|
x18_color = col;
|
|
|
|
x4c_24_intensityDirty = true;
|
|
|
|
x4c_25_radiusDirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetAttenuation(float constant, float linear, float quadratic) {
|
|
|
|
x24_distC = constant;
|
|
|
|
x28_distL = linear;
|
|
|
|
x2c_distQ = quadratic;
|
|
|
|
x4c_24_intensityDirty = true;
|
|
|
|
x4c_25_radiusDirty = true;
|
|
|
|
}
|
|
|
|
float GetAttenuationConstant() const { return x24_distC; }
|
|
|
|
float GetAttenuationLinear() const { return x28_distL; }
|
|
|
|
float GetAttenuationQuadratic() const { return x2c_distQ; }
|
|
|
|
|
|
|
|
void SetAngleAttenuation(float constant, float linear, float quadratic) {
|
|
|
|
x30_angleC = constant;
|
|
|
|
x34_angleL = linear;
|
|
|
|
x38_angleQ = quadratic;
|
|
|
|
x4c_24_intensityDirty = true;
|
|
|
|
x4c_25_radiusDirty = true;
|
|
|
|
}
|
|
|
|
float GetAngleAttenuationConstant() const { return x30_angleC; }
|
|
|
|
float GetAngleAttenuationLinear() const { return x34_angleL; }
|
|
|
|
float GetAngleAttenuationQuadratic() const { return x38_angleQ; }
|
|
|
|
|
|
|
|
ELightType GetType() const { return x1c_type; }
|
2022-03-13 19:14:11 +00:00
|
|
|
u32 GetId() const { return x40_lightId; }
|
2018-12-08 05:30:43 +00:00
|
|
|
float GetIntensity() const;
|
2019-02-08 07:56:54 +00:00
|
|
|
float GetRadius() const;
|
2018-12-08 05:30:43 +00:00
|
|
|
const zeus::CColor& GetColor() const { return x18_color; }
|
|
|
|
zeus::CColor GetNormalIndependentLightingAtPoint(const zeus::CVector3f& point) const;
|
|
|
|
|
|
|
|
static CLight BuildDirectional(const zeus::CVector3f& dir, const zeus::CColor& color);
|
|
|
|
static CLight BuildSpot(const zeus::CVector3f& pos, const zeus::CVector3f& dir, const zeus::CColor& color,
|
|
|
|
float angle);
|
|
|
|
static CLight BuildPoint(const zeus::CVector3f& pos, const zeus::CColor& color);
|
|
|
|
static CLight BuildCustom(const zeus::CVector3f& pos, const zeus::CVector3f& dir, const zeus::CColor& color,
|
|
|
|
float distC, float distL, float distQ, float angleC, float angleL, float angleQ);
|
|
|
|
static CLight BuildLocalAmbient(const zeus::CVector3f& pos, const zeus::CColor& color);
|
2015-08-21 00:06:39 +00:00
|
|
|
};
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|