re3/src/render/PointLights.h

46 lines
1.0 KiB
C
Raw Permalink Normal View History

#pragma once
2019-06-01 17:18:19 +00:00
class CRegisteredPointLight
{
public:
CVector coors;
CVector dir;
float radius;
float red;
float green;
float blue;
int8 type;
int8 fogType;
bool castExtraShadows;
};
VALIDATE_SIZE(CRegisteredPointLight, 0x2C);
2019-06-01 17:18:19 +00:00
class CPointLights
{
2019-07-24 16:55:43 +00:00
public:
2020-04-17 05:54:14 +00:00
static int16 NumLights;
static CRegisteredPointLight aLights[NUMPOINTLIGHTS];
2019-07-24 16:55:43 +00:00
2019-06-01 17:18:19 +00:00
enum {
LIGHT_POINT,
LIGHT_DIRECTIONAL,
LIGHT_DARKEN, // no effects at all
// these have only fog, otherwise no difference?
2019-06-30 19:06:55 +00:00
// only used by CEntity::ProcessLightsForEntity it seems
// and there used together with fog type
LIGHT_FOGONLY_ALWAYS,
LIGHT_FOGONLY,
2019-06-01 17:18:19 +00:00
};
enum {
FOG_NONE,
FOG_NORMAL, // taken from Foggyness
FOG_ALWAYS
};
2019-05-31 09:44:43 +00:00
static void InitPerFrame(void);
2019-06-01 17:18:19 +00:00
static void AddLight(uint8 type, CVector coors, CVector dir, float radius, float red, float green, float blue, uint8 fogType, bool castExtraShadows);
2020-04-30 10:48:01 +00:00
static float GenerateLightsAffectingObject(Const CVector *objCoors);
2019-06-01 17:18:19 +00:00
static void RemoveLightsAffectingObject(void);
static void RenderFogEffect(void);
};