Clean up and reordering of devil1tex component

This commit is contained in:
_
2018-04-05 22:01:12 -07:00
parent 81af655f35
commit 5462ec025e
2 changed files with 103 additions and 90 deletions

View File

@@ -25,6 +25,76 @@ void printtbd(struct TextureBatchDescriptor *bd) {
}
}
bool gettexdescriptor(struct TextureBatchDescriptor **descriptor,
unsigned int i,
const char *filedata,
unsigned int filesize) {
// starts after the pack header.
bool done = false;
unsigned int offset = sizeof(struct TexturePack);
offset += sizeof(struct TextureBatchDescriptor) * i;
if (filedata != NULL) {
*descriptor = (struct TextureBatchDescriptor*)(filedata + offset);
done = true;
}
return done;
}
bool gettexbatch(struct TextureBatch **batch,
unsigned int i,
const char *filedata,
unsigned int filesize) {
struct TexturePack *p = NULL;
if (filedata == NULL) { // no data to get batch from.
return false;
}
p = (struct TexturePack*)filedata;
if (i > p -> batchNumber) { // no such batch in texture pack
return false;
}
if (i == 0) {
*batch = (struct TextureBatch*)(filedata + (p -> firstBatchOffset));
return true;
}
struct TextureBatchDescriptor *d = NULL;
// find how large are previous batches in total
// in order to jump to specified texture batch
unsigned int pastbatchsize = p -> firstBatchOffset;
unsigned int j;
for (j = 0; j < i; j++) {
gettexdescriptor(&d, j, filedata, filesize);
pastbatchsize += (d -> textureSize * d -> texNumber);
}
*batch = (struct TextureBatch*)(filedata + pastbatchsize);
return true;
}
bool unpacktexbatch(struct Texture *t,
unsigned int i,
const char *filedata,
const unsigned int filesize) {
if (filedata == NULL) {
return false;
}
struct TextureBatch *b = NULL;
struct TextureBatchDescriptor *d = NULL;
gettexbatch(&b, i, filedata, filesize);
gettexdescriptor(&d, i, filedata, filesize);
// first texture is at the start of the batch
// second texture is right after.
unsigned int j;
for (j = 0; j < d -> texNumber; j++) {
t[j].data = (unsigned char*)b + (d -> textureSize * j);
}
return true;
}
// -------------------------------------------------------+
// Retired Functions
// -------------------------------------------------------+
// get texture pack descriptors
void gettbd (struct TextureBatchDescriptor **descriptors,
const char *filedata,
@@ -95,79 +165,6 @@ void locatetextures(unsigned int *t,
}
}
}
// -------------------------------------------------------+
// Revision Functions
// -------------------------------------------------------+
// ** = 'pass by reference' of a pointer to struct
bool gettexdescriptor(struct TextureBatchDescriptor **descriptor,
unsigned int i,
const char *filedata,
unsigned int filesize) {
// starts after the pack header.
bool done = false;
unsigned int offset = sizeof(struct TexturePack);
offset += sizeof(struct TextureBatchDescriptor) * i;
if (filedata != NULL) {
*descriptor = (struct TextureBatchDescriptor*)(filedata + offset);
done = true;
}
// printf("%x %x", *descriptor, filedata);
return done;
}
// ** = 'pass by reference' of a pointer to struct
bool gettexbatch(struct TextureBatch **batch,
unsigned int i,
const char *filedata,
unsigned int filesize) {
struct TexturePack *p = NULL;
if (filedata == NULL) { // no data to get batch from.
return false;
}
p = (struct TexturePack*)filedata;
if (i > p -> batchNumber) { // no such batch in texture pack
return false;
}
if (i == 0) {
*batch = (struct TextureBatch*)(filedata + (p -> firstBatchOffset));
return true;
}
struct TextureBatchDescriptor *d = NULL;
// find how large are previous batches in total
// in order to jump to specified texture batch
unsigned int pastbatchsize = p -> firstBatchOffset;
unsigned int j;
for (j = 0; j < i; j++) {
gettexdescriptor(&d, j, filedata, filesize);
pastbatchsize += (d -> textureSize * d -> texNumber);
}
*batch = (struct TextureBatch*)(filedata + pastbatchsize);
//printf("batch offset: %x i: %d\n" , (p -> firstBatchOffset) + pastbatchsize, i);
return true;
}
bool unpacktexbatch(struct Texture *t,
unsigned int i,
const char *filedata,
const unsigned int filesize) {
if (filedata == NULL) {
return false;
}
struct TextureBatch *b = NULL;
struct TextureBatchDescriptor *d = NULL;
gettexbatch(&b, i, filedata, filesize);
gettexdescriptor(&d, i, filedata, filesize);
// first texture is at the start of the batch
// second texture is right after.
unsigned int j;
for (j = 0; j < d -> texNumber; j++) {
t[j].data = (unsigned char*)b + (d -> textureSize * j);
//printf("unpack relative batch offset %x i= %i t.data= %x\n" , ((d -> textureSize * j)), i, t[j].data);
}
return true;
}