2019-05-15 10:52:37 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-17 00:01:54 -04:00
|
|
|
extern RwTexture *gpCoronaTexture[9];
|
2019-05-15 10:52:37 -04:00
|
|
|
|
2019-05-31 19:58:19 -04:00
|
|
|
struct CRegisteredCorona
|
|
|
|
{
|
|
|
|
uint32 id;
|
|
|
|
uint32 lastLOScheck;
|
|
|
|
RwTexture *texture;
|
|
|
|
uint8 red;
|
|
|
|
uint8 green;
|
|
|
|
uint8 blue;
|
|
|
|
uint8 alpha; // alpha when fully visible
|
|
|
|
uint8 fadeAlpha; // actual value used for rendering, faded
|
|
|
|
CVector coors;
|
|
|
|
float size;
|
|
|
|
float someAngle;
|
|
|
|
bool registeredThisFrame;
|
|
|
|
float drawDist;
|
|
|
|
int8 flareType;
|
|
|
|
int8 reflection;
|
|
|
|
|
|
|
|
uint8 LOScheck : 1;
|
|
|
|
uint8 offScreen : 1;
|
|
|
|
uint8 firstUpdate : 1;
|
|
|
|
uint8 drawStreak : 1;
|
|
|
|
uint8 sightClear : 1;
|
|
|
|
|
|
|
|
bool renderReflection;
|
|
|
|
float heightAboveRoad;
|
|
|
|
|
|
|
|
float prevX[6];
|
|
|
|
float prevY[6];
|
|
|
|
uint8 prevRed[6];
|
|
|
|
uint8 prevGreen[6];
|
|
|
|
uint8 prevBlue[6];
|
|
|
|
bool hasValue[6];
|
|
|
|
|
|
|
|
void Update(void);
|
|
|
|
};
|
2020-05-10 09:54:37 -04:00
|
|
|
|
2020-05-10 11:49:33 -04:00
|
|
|
VALIDATE_SIZE(CRegisteredCorona, 0x80);
|
2019-05-31 19:58:19 -04:00
|
|
|
|
2019-05-15 10:52:37 -04:00
|
|
|
class CCoronas
|
|
|
|
{
|
2020-04-17 00:01:54 -04:00
|
|
|
static CRegisteredCorona aCoronas[NUMCORONAS];
|
2019-05-15 10:52:37 -04:00
|
|
|
public:
|
2019-05-31 19:58:19 -04:00
|
|
|
enum {
|
|
|
|
SUN_CORE = 1,
|
|
|
|
SUN_CORONA
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
TYPE_STAR,
|
|
|
|
TYPE_NORMAL,
|
|
|
|
TYPE_MOON,
|
|
|
|
TYPE_REFLECT,
|
|
|
|
TYPE_HEADLIGHT,
|
|
|
|
TYPE_HEX,
|
|
|
|
TYPE_CIRCLE,
|
|
|
|
TYPE_RING,
|
|
|
|
TYPE_STREAK,
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
FLARE_NONE,
|
|
|
|
FLARE_SUN,
|
|
|
|
FLARE_HEADLIGHTS
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
REFLECTION_OFF,
|
|
|
|
REFLECTION_ON,
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
LOSCHECK_OFF,
|
|
|
|
LOSCHECK_ON,
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
STREAK_OFF,
|
|
|
|
STREAK_ON,
|
|
|
|
};
|
|
|
|
|
2020-04-17 00:01:54 -04:00
|
|
|
static float LightsMult;
|
|
|
|
static float SunScreenY;
|
|
|
|
static float SunScreenX;
|
|
|
|
static bool bSmallMoon;
|
|
|
|
static bool SunBlockedByClouds;
|
|
|
|
static int bChangeBrightnessImmediately;
|
2019-05-30 15:24:47 -04:00
|
|
|
|
2019-05-31 19:58:19 -04:00
|
|
|
static void Init(void);
|
|
|
|
static void Shutdown(void);
|
|
|
|
static void Update(void);
|
|
|
|
static void RegisterCorona(uint32 id, uint8 red, uint8 green, uint8 blue, uint8 alpha,
|
|
|
|
const CVector &coors, float size, float drawDist, RwTexture *tex,
|
|
|
|
int8 flareType, uint8 reflection, uint8 LOScheck, uint8 drawStreak, float someAngle);
|
|
|
|
static void RegisterCorona(uint32 id, uint8 red, uint8 green, uint8 blue, uint8 alpha,
|
|
|
|
const CVector &coors, float size, float drawDist, uint8 type,
|
|
|
|
int8 flareType, uint8 reflection, uint8 LOScheck, uint8 drawStreak, float someAngle);
|
2019-07-28 07:14:08 -04:00
|
|
|
static void UpdateCoronaCoors(uint32 id, const CVector &coors, float drawDist, float someAngle);
|
2019-05-30 15:24:47 -04:00
|
|
|
static void Render(void);
|
|
|
|
static void RenderReflections(void);
|
2019-05-31 19:58:19 -04:00
|
|
|
static void DoSunAndMoon(void);
|
2019-05-15 10:52:37 -04:00
|
|
|
};
|