librw/src/rwobjects.h

618 lines
12 KiB
C
Raw Normal View History

namespace rw {
2014-12-23 14:59:14 +00:00
2016-01-11 10:23:26 +00:00
struct LLLink
{
LLLink *next;
LLLink *prev;
void init(void){
this->next = NULL;
this->prev = NULL;
}
void remove(void){
this->prev->next = this->next;
this->next->prev = this->prev;
}
};
#define LLLinkGetData(linkvar,type,entry) \
((type*)(((uint8*)(linkvar))-offsetof(type,entry)))
struct LinkList
{
LLLink link;
void init(void){
this->link.next = &this->link;
this->link.prev = &this->link;
}
bool32 isEmpty(void){
return this->link.next == &this->link;
}
void add(LLLink *link){
link->next = this->link.next;
link->prev = &this->link;
this->link.next->prev = link;
this->link.next = link;
}
LLLink *end(void){
return &this->link;
}
};
2014-12-23 14:59:14 +00:00
struct Object
{
uint8 type;
uint8 subType;
uint8 flags;
2016-01-11 10:23:26 +00:00
uint8 privateFlags;
2014-12-23 14:59:14 +00:00
void *parent;
2016-01-11 10:23:26 +00:00
void init(uint8 type, uint8 subType){
this->type = type;
this->subType = subType;
this->flags = 0;
this->privateFlags = 0;
this->parent = NULL;
}
2014-12-23 14:59:14 +00:00
};
2016-01-11 10:23:26 +00:00
struct Frame : PluginBase<Frame>
2015-01-09 19:17:32 +00:00
{
typedef Frame *(*Callback)(Frame *f, void *data);
2016-01-11 10:23:26 +00:00
Object object;
LinkList objectList;
2015-01-09 19:17:32 +00:00
float32 matrix[16];
float32 ltm[16];
Frame *child;
Frame *next;
Frame *root;
// temporary
int32 matflag;
bool dirty;
2015-01-09 19:17:32 +00:00
Frame(void);
Frame(Frame *f);
~Frame(void);
Frame *addChild(Frame *f);
Frame *removeChild(void);
Frame *forAllChildren(Callback cb, void *data);
int32 count(void);
void updateLTM(void);
2015-01-17 14:15:03 +00:00
void setDirty(void);
2015-01-09 19:17:32 +00:00
};
2015-12-18 00:10:42 +00:00
Frame **makeFrameList(Frame *frame, Frame **flist);
2016-01-11 10:23:26 +00:00
struct ObjectWithFrame : Object
{
LLLink inFrame;
void setFrame(Frame *f){
if(this->parent)
this->inFrame.remove();
this->parent = f;
if(f)
f->objectList.add(&this->inFrame);
}
};
struct HAnimKeyFrame
{
HAnimKeyFrame *prev;
float time;
float q[4];
float t[3];
};
2015-01-17 14:15:03 +00:00
struct HAnimNodeInfo
{
int32 id;
int32 index;
int32 flags;
Frame *frame;
};
struct HAnimHierarchy
{
int32 flags;
int32 numNodes;
float *matrices;
float *matricesUnaligned;
HAnimNodeInfo *nodeInfo;
Frame *parentFrame;
HAnimHierarchy *parentHierarchy; // mostly unused
// temporary
int32 maxInterpKeyFrameSize;
};
struct HAnimData
{
int32 id;
HAnimHierarchy *hierarchy;
};
extern int32 hAnimOffset;
void registerHAnimPlugin(void);
2015-01-17 14:15:03 +00:00
2014-12-25 15:02:57 +00:00
struct Image
{
int32 flags;
int32 width, height;
int32 depth;
int32 stride;
uint8 *pixels;
uint8 *palette;
Image(int32 width, int32 height, int32 depth);
~Image(void);
void allocate(void);
void free(void);
void setPixels(uint8 *pixels);
void setPalette(uint8 *palette);
static void setSearchPath(const char*);
static void printSearchPath(void);
static char *getFilename(const char*);
2014-12-25 15:02:57 +00:00
};
2014-12-25 18:37:36 +00:00
Image *readTGA(const char *filename);
void writeTGA(Image *image, const char *filename);
2014-12-25 15:02:57 +00:00
// used to emulate d3d and xbox textures
struct RasterLevels
{
int32 numlevels;
uint32 format;
struct Level {
int32 width, height, size;
uint8 *data;
} levels[1]; // 0 is illegal :/
};
struct Raster : PluginBase<Raster>
{
int32 platform;
int32 type; // hardly used
int32 flags;
int32 format;
int32 width, height, depth;
int32 stride;
uint8 *texels;
uint8 *palette;
2015-09-19 18:28:23 +01:00
static int32 nativeOffsets[NUM_PLATFORMS];
Raster(int32 width, int32 height, int32 depth, int32 format, int32 platform = 0);
~Raster(void);
static Raster *createFromImage(Image *image);
uint8 *lock(int32 level);
void unlock(int32 level);
int32 getNumLevels(void);
static int32 calculateNumLevels(int32 width, int32 height);
enum Format {
DEFAULT = 0,
C1555 = 0x0100,
C565 = 0x0200,
C4444 = 0x0300,
LUM8 = 0x0400,
C8888 = 0x0500,
C888 = 0x0600,
D16 = 0x0700,
D24 = 0x0800,
D32 = 0x0900,
C555 = 0x0A00,
AUTOMIPMAP = 0x1000,
PAL8 = 0x2000,
PAL4 = 0x4000,
MIPMAP = 0x8000
};
};
2015-12-14 17:52:50 +00:00
#define IGNORERASTERIMP 1
2015-09-19 18:28:23 +01:00
struct NativeRaster
{
2016-01-10 19:10:53 +00:00
virtual void create(Raster*)
{ assert(IGNORERASTERIMP && "unimplemented"); };
virtual uint8 *lock(Raster*, int32)
{ assert(IGNORERASTERIMP && "unimplemented"); return NULL; };
virtual void unlock(Raster*, int32)
{ assert(IGNORERASTERIMP && "unimplemented"); };
virtual int32 getNumLevels(Raster*)
{ assert(IGNORERASTERIMP && "unimplemented"); return 0; };
2015-09-19 18:28:23 +01:00
};
// TODO: link into texdict
2014-12-23 14:59:14 +00:00
struct Texture : PluginBase<Texture>
{
2016-01-11 10:23:26 +00:00
Raster *raster;
// TODO: pointer to txd and link
2014-12-23 14:59:14 +00:00
char name[32];
char mask[32];
uint32 filterAddressing; // VVVVUUUU FFFFFFFF
2014-12-23 14:59:14 +00:00
int32 refCount;
2015-01-20 18:22:57 +00:00
// temporary - pointer to next tex in dictionary
Texture *next;
2014-12-23 14:59:14 +00:00
Texture(void);
~Texture(void);
void decRef(void);
static Texture *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
2015-01-20 18:22:57 +00:00
static Texture *read(const char *name, const char *mask);
static Texture *streamReadNative(Stream *stream);
void streamWriteNative(Stream *stream);
uint32 streamGetSizeNative(void);
2014-12-23 14:59:14 +00:00
enum FilterMode {
NEAREST = 1,
LINEAR,
MIPNEAREST,
MIPLINEAR,
LINEARMIPNEAREST,
LINEARMIPLINEAR
};
enum Addressing {
WRAP = 1,
MIRROR,
CLAMP,
BORDER
};
};
2016-01-09 21:01:21 +00:00
struct SurfaceProperties
{
float32 ambient;
float32 specular;
float32 diffuse;
};
2014-12-23 14:59:14 +00:00
struct Material : PluginBase<Material>
{
Texture *texture;
uint8 color[4];
2016-01-09 21:01:21 +00:00
SurfaceProperties surfaceProps;
2015-01-10 21:13:27 +00:00
Pipeline *pipeline;
2014-12-23 14:59:14 +00:00
int32 refCount;
Material(void);
Material(Material *m);
void decRef(void);
~Material(void);
static Material *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
};
void registerMaterialRightsPlugin(void);
2015-01-10 21:13:27 +00:00
2015-01-09 19:17:32 +00:00
struct MatFX
{
2016-01-09 21:01:21 +00:00
enum {
2015-01-09 19:17:32 +00:00
NOTHING = 0,
BUMPMAP,
ENVMAP,
BUMPENVMAP,
DUAL,
UVTRANSFORM,
DUALUVTRANSFORM
};
struct Bump {
Frame *frame;
Texture *bumpedTex;
Texture *tex;
float coefficient;
};
struct Env {
Frame *frame;
Texture *tex;
float coefficient;
int32 fbAlpha;
};
struct Dual {
Texture *tex;
int32 srcBlend;
int32 dstBlend;
};
struct UVtransform {
float *baseTransform;
float *dualTransform;
};
struct {
uint32 type;
union {
Bump bump;
Env env;
Dual dual;
UVtransform uvtransform;
};
} fx[2];
2016-01-09 21:01:21 +00:00
uint32 type;
2015-01-09 19:17:32 +00:00
void setEffects(uint32 flags);
int32 getEffectIndex(uint32 type);
2016-01-10 17:18:03 +00:00
void setEnvTexture(Texture *t);
void setEnvCoefficient(float32 coef);
2015-01-09 19:17:32 +00:00
};
struct MatFXGlobals
2015-01-10 21:13:27 +00:00
{
int32 atomicOffset;
int32 materialOffset;
2015-08-02 18:31:01 +01:00
ObjPipeline *pipelines[NUM_PLATFORMS];
2015-01-10 21:13:27 +00:00
};
extern MatFXGlobals matFXGlobals;
void registerMatFXPlugin(void);
2015-01-09 19:17:32 +00:00
2014-12-23 14:59:14 +00:00
struct Mesh
{
uint16 *indices;
uint32 numIndices;
Material *material;
};
struct MeshHeader
{
uint32 flags;
uint16 numMeshes;
// RW has uint16 serialNum here
uint32 totalIndices;
Mesh *mesh; // RW has a byte offset here
2015-09-07 22:00:28 +01:00
void allocateIndices(void);
2015-12-20 12:05:32 +00:00
~MeshHeader(void);
2014-12-23 14:59:14 +00:00
};
struct MorphTarget
{
float32 boundingSphere[4];
float32 *vertices;
float32 *normals;
};
struct InstanceDataHeader
{
uint32 platform;
};
2016-01-11 10:23:26 +00:00
struct Geometry : PluginBase<Geometry>
2014-12-23 14:59:14 +00:00
{
2016-01-11 10:23:26 +00:00
Object object;
uint32 geoflags; // TODO: rename
2014-12-23 14:59:14 +00:00
int32 numTriangles;
int32 numVertices;
int32 numMorphTargets;
int32 numTexCoordSets;
uint16 *triangles;
uint8 *colors;
float32 *texCoords[8];
MorphTarget *morphTargets;
2016-01-11 10:23:26 +00:00
// TODO: struct
2014-12-23 14:59:14 +00:00
int32 numMaterials;
Material **materialList;
MeshHeader *meshHeader;
InstanceDataHeader *instData;
int32 refCount;
Geometry(int32 numVerts, int32 numTris, uint32 flags);
void decRef(void);
~Geometry(void);
static Geometry *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
void addMorphTargets(int32 n);
2015-12-19 16:05:39 +00:00
void calculateBoundingSphere(void);
bool32 hasColoredMaterial(void);
2015-08-11 19:57:43 +01:00
void allocateData(void);
void generateTriangles(int8 *adc = NULL);
2014-12-23 14:59:14 +00:00
enum Flags
{
TRISTRIP = 0x01,
POSITIONS = 0x02,
TEXTURED = 0x04,
PRELIT = 0x08,
NORMALS = 0x10,
LIGHT = 0x20,
MODULATE = 0x40,
TEXTURED2 = 0x80,
NATIVE = 0x01000000,
NATIVEINSTANCE = 0x02000000
};
};
void registerMeshPlugin(void);
void registerNativeDataPlugin(void);
2015-01-10 21:13:27 +00:00
struct Skin
{
int32 numBones;
int32 numUsedBones;
int32 numWeights;
uint8 *usedBones;
float *inverseMatrices;
uint8 *indices;
float *weights;
uint8 *data; // only used by delete
void *platformData; // a place to store platform specific stuff
2015-08-11 19:57:43 +01:00
void init(int32 numBones, int32 numUsedBones, int32 numVertices);
void findNumWeights(int32 numVertices);
void findUsedBones(int32 numVertices);
};
struct SkinGlobals
2015-01-10 21:13:27 +00:00
{
int32 offset;
2015-08-02 18:31:01 +01:00
ObjPipeline *pipelines[NUM_PLATFORMS];
2015-01-10 21:13:27 +00:00
};
extern SkinGlobals skinGlobals;
void registerSkinPlugin(void);
2014-12-23 14:59:14 +00:00
struct Clump;
2016-01-11 10:23:26 +00:00
struct Light : PluginBase<Light>
2014-12-23 14:59:14 +00:00
{
2016-01-11 10:23:26 +00:00
ObjectWithFrame object;
2014-12-23 14:59:14 +00:00
float32 radius;
float32 color[4];
float32 minusCosAngle;
2016-01-11 10:23:26 +00:00
// clump link handled by plugin in RW
2014-12-23 14:59:14 +00:00
Clump *clump;
2016-01-11 10:23:26 +00:00
Light(int32 type);
2014-12-23 14:59:14 +00:00
Light(Light *l);
~Light(void);
2016-01-11 10:23:26 +00:00
void setFrame(Frame *f) { this->object.setFrame(f); }
static Light *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
};
2016-01-11 10:23:26 +00:00
struct Atomic : PluginBase<Atomic>
2014-12-23 14:59:14 +00:00
{
2016-01-11 10:23:26 +00:00
ObjectWithFrame object;
2014-12-23 14:59:14 +00:00
Geometry *geometry;
Clump *clump;
2015-08-02 18:31:01 +01:00
ObjPipeline *pipeline;
2014-12-23 14:59:14 +00:00
Atomic(void);
Atomic(Atomic *a);
~Atomic(void);
2016-01-11 10:23:26 +00:00
void setFrame(Frame *f) { this->object.setFrame(f); }
static Atomic *streamReadClump(Stream *stream,
2016-01-11 10:23:26 +00:00
Frame **frameList, Geometry **geometryList);
bool streamWriteClump(Stream *stream,
2016-01-11 10:23:26 +00:00
Frame **frameList, int32 numFrames);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
2015-08-03 17:30:10 +01:00
ObjPipeline *getPipeline(void);
static void init(void);
2014-12-23 14:59:14 +00:00
};
2015-08-03 17:30:10 +01:00
extern ObjPipeline *defaultPipelines[NUM_PLATFORMS];
void registerAtomicRightsPlugin(void);
2015-01-09 19:17:32 +00:00
2016-01-11 10:23:26 +00:00
struct Clump : PluginBase<Clump>
2014-12-23 14:59:14 +00:00
{
2016-01-11 10:23:26 +00:00
Object object;
2014-12-23 14:59:14 +00:00
int32 numAtomics;
Atomic **atomicList;
int32 numLights;
Light **lightList;
int32 numCameras;
// cameras not implemented
Clump(void);
Clump(Clump *c);
~Clump(void);
static Clump *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
2014-12-23 14:59:14 +00:00
uint32 streamGetSize(void);
void frameListStreamRead(Stream *stream, Frame ***flp, int32 *nf);
void frameListStreamWrite(Stream *stream, Frame **flp, int32 nf);
2014-12-23 14:59:14 +00:00
};
2015-09-17 09:44:07 +01:00
struct TexDictionary : PluginBase<TexDictionary>
2015-01-20 18:22:57 +00:00
{
2016-01-11 10:23:26 +00:00
Object object;
2015-01-20 18:22:57 +00:00
Texture *first;
TexDictionary(void);
void add(Texture *tex);
Texture *find(const char *name);
static TexDictionary *streamRead(Stream *stream);
void streamWrite(Stream *stream);
uint32 streamGetSize(void);
2015-01-20 18:22:57 +00:00
};
struct Animation;
struct AnimInterpolatorInfo
{
int32 id;
int32 keyFrameSize;
int32 customDataSize;
void (*streamRead)(Stream *stream, Animation *anim);
void (*streamWrite)(Stream *stream, Animation *anim);
uint32 (*streamGetSize)(Animation *anim);
};
void registerAnimInterpolatorInfo(AnimInterpolatorInfo *interpInfo);
AnimInterpolatorInfo *findAnimInterpolatorInfo(int32 id);
struct Animation
{
AnimInterpolatorInfo *interpInfo;
int32 numFrames;
int32 flags;
float duration;
void *keyframes;
void *customData;
Animation(AnimInterpolatorInfo*, int32 numFrames, int32 flags, float duration);
static Animation *streamRead(Stream *stream);
static Animation *streamReadLegacy(Stream *stream);
bool streamWrite(Stream *stream);
bool streamWriteLegacy(Stream *stream);
uint32 streamGetSize(void);
};
struct AnimInterpolator
{
// only a stub right now
Animation *anim;
AnimInterpolator(Animation *anim);
};
extern TexDictionary *currentTexDictionary;
2015-01-20 18:22:57 +00:00
struct UVAnimKeyFrame
{
UVAnimKeyFrame *prev;
float time;
float uv[6];
};
struct UVAnimCustomData
{
char name[32];
int32 nodeToUVChannel[8];
// RW has a refcount
};
struct UVAnimDictionary
{
int32 numAnims;
Animation **anims;
static UVAnimDictionary *streamRead(Stream *stream);
bool streamWrite(Stream *stream);
uint32 streamGetSize(void);
Animation *find(const char *name);
};
extern UVAnimDictionary *currentUVAnimDictionary;
extern int32 uvAnimOffset;
void registerUVAnimPlugin(void);
}