2009-07-15 19:20:45 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
|
|
|
|
#include "fstfile.h"
|
|
|
|
|
|
|
|
|
2009-07-30 07:41:12 +02:00
|
|
|
char *fstfiles(FST_ENTRY *fst, u32 index) {
|
|
|
|
u32 count = fst[0].filelen;
|
|
|
|
u32 stringoffset;
|
|
|
|
if (index < count) {
|
|
|
|
stringoffset = *(u32 *)&(fst[index]) % (256*256*256);
|
|
|
|
return (char *)((u32)fst + count*12 + stringoffset);
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-07-15 19:20:45 +02:00
|
|
|
}
|
|
|
|
|
2009-07-30 07:41:12 +02:00
|
|
|
char *fstfilename(u32 index) {
|
|
|
|
FST_ENTRY *fst = (FST_ENTRY *)*(u32 *)0x80000038;
|
|
|
|
u32 count = fst[0].filelen;
|
|
|
|
u32 stringoffset;
|
|
|
|
if (index < count) {
|
|
|
|
stringoffset = *(u32 *)&(fst[index]) % (256*256*256);
|
|
|
|
return (char *)(*(u32 *)0x80000038 + count*12 + stringoffset);
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-07-15 19:20:45 +02:00
|
|
|
}
|
|
|
|
|
2009-07-30 07:41:12 +02:00
|
|
|
u32 fstfileoffset(u32 index) {
|
|
|
|
FST_ENTRY *fst = (FST_ENTRY *)*(u32 *)0x80000038;
|
|
|
|
u32 count = fst[0].filelen;
|
|
|
|
if (index < count) {
|
|
|
|
return fst[index].fileoffset;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-15 19:20:45 +02:00
|
|
|
}
|