mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-22 13:53:02 +05:30
78 lines
1.7 KiB
C
78 lines
1.7 KiB
C
|
|
#ifndef DEVIL1GEO_H
|
|
#define DEVIL1GEO_H
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
|
|
#pragma pack(push, 1)
|
|
struct Header {
|
|
unsigned char numMesh;
|
|
unsigned char unknownNumberB;
|
|
unsigned char unknownNumberC;
|
|
unsigned char unknownNumberD;
|
|
uint32_t padding; // <format=hex>
|
|
uint64_t unknownOffset;
|
|
};
|
|
|
|
struct MeshHeader {
|
|
int16_t numBatch;
|
|
int16_t numVertex;
|
|
uint32_t u; // <format=hex>
|
|
uint64_t offsetBatches;
|
|
uint64_t flags;
|
|
}; // put these in an array of size: [header.numMesh]
|
|
|
|
struct Positions {
|
|
float x, y, z;
|
|
};
|
|
|
|
struct Normals {
|
|
float x, y, z;
|
|
};
|
|
|
|
struct UVs {
|
|
int16_t u, v;
|
|
};
|
|
|
|
struct BoneIndexes {
|
|
unsigned char indexes[4]; // from ubyte
|
|
};
|
|
|
|
struct BoneWeights {
|
|
uint16_t weights; // <format=hex>
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
// This is where most of the parsing will be.
|
|
// this struct is in-order of what the file format will have.
|
|
struct Batch {
|
|
int16_t numVertex;
|
|
int16_t uB;
|
|
uint32_t padding; // <format=hex>
|
|
uint64_t offsetPositions; // <format=hex>
|
|
uint64_t offsetNormals; // <format=hex>
|
|
uint64_t offsetUVs; // <format=hex>
|
|
uint64_t offsetBoneIndexes; // <format=hex>
|
|
uint64_t offsetBoneWeights; // <format=hex>
|
|
uint64_t offsets[1]; // <format=hex>
|
|
int64_t pos; // set while parsing batch from ftell();
|
|
// following structs should in an array of size numVertex
|
|
struct Positions *p;
|
|
struct Normals *n;
|
|
struct UVs *u;
|
|
struct BoneIndexes *bi;
|
|
struct BoneWeights *bw;
|
|
};
|
|
|
|
struct Mesh {
|
|
struct Batch b;
|
|
};
|
|
|
|
void printgheader(struct Header*);
|
|
|
|
bool getmeshheaders(struct MeshHeader **, const char *, unsigned int);
|
|
|
|
#endif
|
|
|