first part of CFileLoader

This commit is contained in:
aap
2019-06-17 10:30:02 +02:00
parent fcc6a8bc55
commit b5fba778c4
41 changed files with 1182 additions and 45 deletions

View File

@ -1,3 +1,9 @@
enum {
EFFECT_LIGHT,
EFFECT_PARTICLE,
EFFECT_ATTRACTOR
};
class C2dEffect
{
public:
@ -7,26 +13,26 @@ public:
float size;
float innerRange;
uint8 flash;
uint8 wet;
uint8 flare;
uint8 shadowIntens;
uint8 flag;
uint8 roadReflection;
uint8 flareType;
uint8 shadowIntensity;
uint8 flags;
RwTexture *corona;
RwTexture *shadow;
};
struct Particle {
int particleType;
float dir[3];
CVector dir;
float scale;
};
struct Attractor {
CVector dir;
uint8 flag;
uint8 flags;
uint8 probability;
};
CVector pos;
RwRGBA col;
CRGBA col;
uint8 type;
union {
Light light;
@ -35,5 +41,13 @@ public:
};
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");

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "General.h"
#include "TxdStore.h"
#include "Camera.h"

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "FileMgr.h"
#include "ParticleMgr.h"

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "Lights.h"
#include "Camera.h"
#include "Weather.h"

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "Lights.h"
#include "ModelInfo.h"
#include "Treadable.h"

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "Draw.h"
#include "Camera.h"
#include "Sprite.h"

View File

@ -1,5 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "main.h"
#include "Draw.h"
#include "Camera.h"
#include "Sprite2d.h"