2014-11-22 12:32:56 +00:00
|
|
|
#ifndef texcache_h_
|
|
|
|
# define texcache_h_
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
|
2015-12-23 04:06:05 +00:00
|
|
|
#define TEXCACHEMAGIC "LZ41"
|
2013-05-15 02:17:17 +00:00
|
|
|
#define GLTEXCACHEADSIZ 8192
|
2013-05-17 03:42:37 +00:00
|
|
|
#define TEXCACHEHASHSIZE 1024
|
|
|
|
|
|
|
|
enum texcacherr_t
|
|
|
|
{
|
|
|
|
TEXCACHERR_NOERROR,
|
2014-05-30 00:02:19 +00:00
|
|
|
TEXCACHERR_OUTOFMEMORY, /* unused */
|
2013-05-17 03:42:37 +00:00
|
|
|
TEXCACHERR_BUFFERUNDERRUN,
|
|
|
|
TEXCACHERR_DEDXT,
|
|
|
|
TEXCACHERR_COMPTEX,
|
|
|
|
TEXCACHERR_GETTEXLEVEL,
|
|
|
|
TEXCACHEERRORS
|
|
|
|
};
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
struct texcacheitem_t
|
|
|
|
{
|
|
|
|
char name[BMAX_PATH];
|
|
|
|
int32_t offset;
|
|
|
|
int32_t len;
|
|
|
|
struct texcacheitem_t *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct texcacheitem_t texcacheindex;
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
typedef struct {
|
2014-10-25 03:32:01 +00:00
|
|
|
int32_t filehandle, filepos, numentries, iptrcnt;
|
2013-05-17 03:42:37 +00:00
|
|
|
FILE *index;
|
|
|
|
pthtyp *list[GLTEXCACHEADSIZ];
|
2014-10-25 03:32:01 +00:00
|
|
|
texcacheindex *firstindex, *currentindex, **iptrs;
|
2013-05-17 03:42:37 +00:00
|
|
|
hashtable_t hashes;
|
|
|
|
struct {
|
|
|
|
uint8_t *ptr;
|
2014-10-25 03:32:01 +00:00
|
|
|
int32_t size;
|
2013-05-17 03:42:37 +00:00
|
|
|
// Set to 1 when we failed (re)allocating space for the memcache or failing to
|
|
|
|
// read into it (which would presumably generate followup errors spamming the
|
|
|
|
// log otherwise):
|
|
|
|
int32_t noalloc;
|
|
|
|
} memcache;
|
|
|
|
} globaltexcache;
|
|
|
|
|
|
|
|
extern globaltexcache texcache;
|
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
extern char TEXCACHEFILE[BMAX_PATH];
|
|
|
|
|
|
|
|
extern void texcache_freeptrs(void);
|
2013-05-15 02:19:14 +00:00
|
|
|
extern void texcache_syncmemcache(void);
|
2013-05-15 02:17:17 +00:00
|
|
|
extern void texcache_init(void);
|
|
|
|
extern int32_t texcache_loadoffsets(void);
|
|
|
|
extern int32_t texcache_readdata(void *dest, int32_t len);
|
2013-05-15 02:18:27 +00:00
|
|
|
extern pthtyp *texcache_fetch(int32_t dapicnum, int32_t dapalnum, int32_t dashade, int32_t dameth);
|
2016-03-04 19:24:54 +00:00
|
|
|
extern int32_t texcache_loadskin(const texcacheheader *head, int32_t *doalloc, GLuint *glpic, vec2_t *siz);
|
2013-05-15 02:17:17 +00:00
|
|
|
extern int32_t texcache_loadtile(const texcacheheader *head, int32_t *doalloc, pthtyp *pth);
|
|
|
|
extern void texcache_writetex(const char *fn, int32_t len, int32_t dameth, char effect, texcacheheader *head);
|
|
|
|
extern int32_t texcache_readtexheader(const char *fn, int32_t len, int32_t dameth, char effect, texcacheheader *head, int32_t modelp);
|
2013-05-15 02:18:27 +00:00
|
|
|
extern void texcache_openfiles(void);
|
|
|
|
extern void texcache_setupmemcache(void);
|
|
|
|
extern void texcache_checkgarbage(void);
|
|
|
|
extern void texcache_setupindex(void);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
#endif
|
2014-11-26 04:39:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-30 00:02:19 +00:00
|
|
|
#endif
|