blob: 780d9b4f18d4a70359976fdebf061e1ab04bf4ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
enum {
EFFECT_LIGHT,
EFFECT_PARTICLE,
EFFECT_ATTRACTOR
};
class C2dEffect
{
public:
struct Light {
float dist;
float outerRange;
float size;
float innerRange;
uint8 flash;
uint8 roadReflection;
uint8 flareType;
uint8 shadowIntensity;
uint8 flags;
RwTexture *corona;
RwTexture *shadow;
};
struct Particle {
int particleType;
CVector dir;
float scale;
};
struct Attractor {
CVector dir;
uint8 flags;
uint8 probability;
};
CVector pos;
CRGBA col;
uint8 type;
union {
Light light;
Particle particle;
Attractor attractor;
};
C2dEffect(void) {}
void Shutdown(void){
if(type == 0){ // TODO: enum
if(light.corona)
RwTextureDestroy(light.corona);
if(light.shadow)
RwTextureDestroy(light.shadow);
}
}
};
static_assert(sizeof(C2dEffect) == 0x34, "C2dEffect: error");
|