2013-06-27 23:05:11 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
|
2014-02-10 10:56:14 +00:00
|
|
|
#include "baselayer.h"
|
2013-05-15 02:17:17 +00:00
|
|
|
#include "build.h"
|
2014-02-10 10:55:49 +00:00
|
|
|
#include "lz4.h"
|
2013-05-15 02:17:17 +00:00
|
|
|
#include "hightile.h"
|
|
|
|
#include "polymost.h"
|
|
|
|
#include "texcache.h"
|
|
|
|
#include "dxtfilter.h"
|
|
|
|
#include "scriptfile.h"
|
2014-03-22 09:26:39 +00:00
|
|
|
#include "xxhash.h"
|
2014-09-30 04:18:43 +00:00
|
|
|
#include "kplib.h"
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
#define CLEAR_GL_ERRORS() while(bglGetError() != GL_NO_ERROR) { }
|
|
|
|
#define TEXCACHE_FREEBUFS() { Bfree(pic), Bfree(packbuf), Bfree(midbuf); }
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
globaltexcache texcache;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
char TEXCACHEFILE[BMAX_PATH] = "textures";
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
static const char *texcache_errorstr[TEXCACHEERRORS] = {
|
|
|
|
"no error",
|
2013-05-15 02:17:17 +00:00
|
|
|
"out of memory!",
|
|
|
|
"read too few bytes from cache file",
|
|
|
|
"dedxtfilter failed",
|
|
|
|
"bglCompressedTexImage2DARB failed",
|
|
|
|
"bglGetTexLevelParameteriv failed",
|
|
|
|
};
|
|
|
|
|
2015-04-14 08:07:41 +00:00
|
|
|
static pthtyp *texcache_tryart(int32_t const dapicnum, int32_t const dapalnum, int32_t const dashade, int32_t const dameth)
|
2014-09-30 04:06:05 +00:00
|
|
|
{
|
|
|
|
const int32_t j = dapicnum&(GLTEXCACHEADSIZ-1);
|
2014-10-25 03:30:38 +00:00
|
|
|
pthtyp *pth;
|
2015-04-14 08:07:41 +00:00
|
|
|
int32_t tintpalnum = -1;
|
|
|
|
int32_t searchpalnum = dapalnum;
|
2014-09-30 04:06:05 +00:00
|
|
|
|
2015-04-14 08:07:41 +00:00
|
|
|
if (hictinting[dapalnum].f & HICTINT_USEONART)
|
|
|
|
{
|
|
|
|
tintpalnum = dapalnum;
|
|
|
|
if (!(hictinting[dapalnum].f & HICTINT_APPLYOVERPALSWAP))
|
|
|
|
searchpalnum = 0;
|
|
|
|
}
|
2015-03-09 20:32:11 +00:00
|
|
|
|
2014-09-30 04:06:05 +00:00
|
|
|
// load from art
|
|
|
|
for (pth=texcache.list[j]; pth; pth=pth->next)
|
|
|
|
if (pth->picnum == dapicnum && pth->palnum == dapalnum && pth->shade == dashade &&
|
2015-12-04 11:52:58 +00:00
|
|
|
(pth->flags & (PTH_CLAMPED | PTH_HIGHTILE | PTH_NOTRANSFIX)) ==
|
|
|
|
(TO_PTH_CLAMPED(dameth) | TO_PTH_NOTRANSFIX(dameth)) &&
|
2014-09-30 04:14:21 +00:00
|
|
|
polymost_want_npotytex(dameth, tilesiz[dapicnum].y) == !!(pth->flags&PTH_NPOTWALL)
|
2014-09-30 04:06:05 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (pth->flags & PTH_INVALIDATED)
|
|
|
|
{
|
|
|
|
pth->flags &= ~PTH_INVALIDATED;
|
2015-04-14 08:07:41 +00:00
|
|
|
gloadtile_art(dapicnum, searchpalnum, tintpalnum, dashade, dameth, pth, 0);
|
|
|
|
pth->palnum = dapalnum;
|
2014-09-30 04:06:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(pth);
|
|
|
|
}
|
|
|
|
|
|
|
|
pth = (pthtyp *)Xcalloc(1,sizeof(pthtyp));
|
|
|
|
|
2015-04-14 08:07:41 +00:00
|
|
|
gloadtile_art(dapicnum, searchpalnum, tintpalnum, dashade, dameth, pth, 1);
|
2014-09-30 04:06:05 +00:00
|
|
|
|
2015-04-14 08:07:41 +00:00
|
|
|
pth->palnum = dapalnum;
|
2014-09-30 04:06:05 +00:00
|
|
|
pth->next = texcache.list[j];
|
|
|
|
texcache.list[j] = pth;
|
|
|
|
|
|
|
|
return(pth);
|
|
|
|
}
|
|
|
|
|
|
|
|
pthtyp *texcache_fetchmulti(pthtyp *pth, hicreplctyp *si, int32_t dapicnum, int32_t dameth)
|
|
|
|
{
|
|
|
|
const int32_t j = dapicnum&(GLTEXCACHEADSIZ-1);
|
2014-10-25 03:30:38 +00:00
|
|
|
int32_t i;
|
2014-09-30 04:06:05 +00:00
|
|
|
|
2014-10-25 03:30:38 +00:00
|
|
|
for (i = 0; i <= (GLTEXCACHEADSIZ - 1); i++)
|
2014-09-30 04:06:05 +00:00
|
|
|
{
|
|
|
|
const pthtyp *pth2;
|
|
|
|
|
|
|
|
for (pth2=texcache.list[i]; pth2; pth2=pth2->next)
|
|
|
|
{
|
2014-09-30 04:18:43 +00:00
|
|
|
if (pth2->hicr && pth2->hicr->filename && filnamcmp(pth2->hicr->filename, si->filename) == 0)
|
2014-09-30 04:06:05 +00:00
|
|
|
{
|
|
|
|
Bmemcpy(pth, pth2, sizeof(pthtyp));
|
|
|
|
pth->picnum = dapicnum;
|
2015-12-04 11:52:58 +00:00
|
|
|
pth->flags = TO_PTH_CLAMPED(dameth) | TO_PTH_NOTRANSFIX(dameth) |
|
|
|
|
PTH_HIGHTILE | (drawingskybox>0)*PTH_SKYBOX;
|
2014-09-30 04:06:05 +00:00
|
|
|
if (pth2->flags & PTH_HASALPHA)
|
|
|
|
pth->flags |= PTH_HASALPHA;
|
|
|
|
pth->hicr = si;
|
|
|
|
|
|
|
|
pth->next = texcache.list[j];
|
|
|
|
texcache.list[j] = pth;
|
|
|
|
|
|
|
|
return pth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-03-30 13:53:08 +00:00
|
|
|
// <dashade>: ignored if not in Polymost+r_usetileshades
|
2013-05-15 02:18:27 +00:00
|
|
|
pthtyp *texcache_fetch(int32_t dapicnum, int32_t dapalnum, int32_t dashade, int32_t dameth)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
const int32_t j = dapicnum & (GLTEXCACHEADSIZ - 1);
|
2014-09-30 04:06:05 +00:00
|
|
|
hicreplctyp *si = usehightile ? hicfindsubst(dapicnum, dapalnum) : NULL;
|
|
|
|
|
|
|
|
if (drawingskybox && usehightile)
|
|
|
|
if ((si = hicfindskybox(dapicnum, dapalnum)) == NULL)
|
|
|
|
return NULL;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2015-03-09 20:32:36 +00:00
|
|
|
if (!r_usetileshades || (globalflags & GLOBAL_NO_GL_TILESHADES) || getrendermode() != REND_POLYMOST)
|
2014-03-30 13:53:08 +00:00
|
|
|
dashade = 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
if (!si)
|
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
return (dapalnum >= (MAXPALOOKUPS - RESERVEDPALS) || hicprecaching) ?
|
|
|
|
NULL : texcache_tryart(dapicnum, dapalnum, dashade, dameth);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if palette > 0 && replacement found
|
|
|
|
* no effects are applied to the texture
|
|
|
|
* else if palette > 0 && no replacement found
|
|
|
|
* effects are applied to the palette 0 texture if it exists
|
|
|
|
*/
|
|
|
|
|
2015-04-14 21:17:36 +00:00
|
|
|
const int32_t checktintpal = (hictinting[dapalnum].f & HICTINT_APPLYOVERALTPAL) ? 0 : si->palnum;
|
|
|
|
const int32_t checkcachepal = (hictinting[dapalnum].f & HICTINT_IN_MEMORY) || ((hictinting[dapalnum].f & HICTINT_APPLYOVERALTPAL) && si->palnum > 0) ? dapalnum : si->palnum;
|
2015-04-14 08:07:23 +00:00
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
// load a replacement
|
2015-03-24 00:40:33 +00:00
|
|
|
for (pthtyp *pth = texcache.list[j]; pth; pth = pth->next)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2015-04-14 21:17:36 +00:00
|
|
|
if (pth->picnum == dapicnum && pth->palnum == checkcachepal &&
|
2015-04-14 08:07:23 +00:00
|
|
|
(checktintpal > 0 ? 1 : (pth->effects == hictinting[dapalnum].f)) &&
|
2015-12-04 11:52:58 +00:00
|
|
|
(pth->flags & (PTH_CLAMPED | PTH_HIGHTILE | PTH_SKYBOX | PTH_NOTRANSFIX)) ==
|
|
|
|
(TO_PTH_CLAMPED(dameth) | TO_PTH_NOTRANSFIX(dameth) |
|
|
|
|
PTH_HIGHTILE | (drawingskybox > 0) * PTH_SKYBOX) &&
|
2014-11-22 12:34:29 +00:00
|
|
|
(drawingskybox > 0 ? (pth->skyface == drawingskybox) : 1))
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-05-28 22:40:16 +00:00
|
|
|
if (pth->flags & PTH_INVALIDATED)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-05-28 22:40:16 +00:00
|
|
|
pth->flags &= ~PTH_INVALIDATED;
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
int32_t tilestat = gloadtile_hi(dapicnum, dapalnum, drawingskybox, si, dameth, pth, 0,
|
2015-04-14 08:07:23 +00:00
|
|
|
(checktintpal > 0) ? 0 : hictinting[dapalnum].f); // reload tile
|
2014-09-30 04:06:05 +00:00
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
if (!tilestat)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tilestat == -2) // bad filename
|
|
|
|
hicclearsubst(dapicnum, dapalnum);
|
|
|
|
return (drawingskybox || hicprecaching) ? NULL : texcache_tryart(dapicnum, dapalnum, dashade, dameth);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
return pth;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
pthtyp *pth = (pthtyp *)Xcalloc(1, sizeof(pthtyp));
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
// possibly fetch an already loaded multitexture :_)
|
2014-09-30 04:18:43 +00:00
|
|
|
if (dapalnum >= (MAXPALOOKUPS - RESERVEDPALS) && texcache_fetchmulti(pth, si, dapicnum, dameth))
|
2014-09-30 04:06:05 +00:00
|
|
|
return pth;
|
2014-05-30 00:02:14 +00:00
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
int32_t tilestat =
|
2015-04-14 08:07:23 +00:00
|
|
|
gloadtile_hi(dapicnum, dapalnum, drawingskybox, si, dameth, pth, 1, (checktintpal > 0) ? 0 : hictinting[dapalnum].f);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
if (!tilestat)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
pth->next = texcache.list[j];
|
2015-04-14 21:17:36 +00:00
|
|
|
pth->palnum = checkcachepal;
|
2014-11-22 12:34:29 +00:00
|
|
|
texcache.list[j] = pth;
|
|
|
|
return pth;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
if (tilestat == -2) // bad filename
|
|
|
|
hicclearsubst(dapicnum, dapalnum);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
Bfree(pth);
|
|
|
|
|
|
|
|
return (drawingskybox || hicprecaching) ? NULL : texcache_tryart(dapicnum, dapalnum, dashade, dameth);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void texcache_closefiles(void)
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
if (texcache.filehandle != -1)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
Bclose(texcache.filehandle);
|
|
|
|
texcache.filehandle = -1;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
2014-10-25 03:30:38 +00:00
|
|
|
MAYBE_FCLOSE_AND_NULL(texcache.index);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void texcache_freeptrs(void)
|
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
texcache.iptrcnt = 0;
|
|
|
|
|
|
|
|
if (!texcache.iptrs)
|
|
|
|
return;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
for (int i = 0; i < texcache.numentries; i++)
|
2014-10-25 03:32:01 +00:00
|
|
|
if (texcache.iptrs[i])
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
for (int ii = texcache.numentries - 1; ii >= 0; ii--)
|
2014-10-25 03:32:01 +00:00
|
|
|
if (i != ii && texcache.iptrs[ii] == texcache.iptrs[i])
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
/*OSD_Printf("removing duplicate cacheptr %d\n",ii);*/
|
2014-10-25 03:32:01 +00:00
|
|
|
texcache.iptrs[ii] = NULL;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2015-09-23 17:55:31 +00:00
|
|
|
DO_FREE_AND_NULL(texcache.iptrs[i]);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
2014-10-25 03:32:01 +00:00
|
|
|
|
|
|
|
DO_FREE_AND_NULL(texcache.iptrs);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2014-10-25 03:30:38 +00:00
|
|
|
static inline void texcache_clearmemcache(void)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-10-25 03:30:38 +00:00
|
|
|
DO_FREE_AND_NULL(texcache.memcache.ptr);
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.size = -1;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2013-05-15 02:19:14 +00:00
|
|
|
void texcache_syncmemcache(void)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2014-10-25 03:32:57 +00:00
|
|
|
int32_t len = Bfilelength(texcache.filehandle);
|
2013-05-15 02:19:14 +00:00
|
|
|
|
2014-10-25 03:32:01 +00:00
|
|
|
if (!texcache.memcache.ptr || texcache.filehandle == -1 || len <= (int32_t)texcache.memcache.size)
|
2013-05-15 02:19:14 +00:00
|
|
|
return;
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.ptr = (uint8_t *)Brealloc(texcache.memcache.ptr, len);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!texcache.memcache.ptr)
|
2013-05-15 02:19:14 +00:00
|
|
|
{
|
|
|
|
texcache_clearmemcache();
|
|
|
|
initprintf("Failed syncing memcache to texcache, disabling memcache.\n");
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.noalloc = 1;
|
2013-05-15 02:19:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
initprintf("Syncing memcache to texcache\n");
|
2013-05-17 03:42:37 +00:00
|
|
|
Blseek(texcache.filehandle, texcache.memcache.size, BSEEK_SET);
|
|
|
|
if (Bread(texcache.filehandle, texcache.memcache.ptr + texcache.memcache.size, len - texcache.memcache.size) != (bssize_t)(len-texcache.memcache.size))
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2013-05-15 02:19:14 +00:00
|
|
|
initprintf("polymost_cachesync: Failed reading texcache into memcache!\n");
|
|
|
|
texcache_clearmemcache();
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.noalloc = 1;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.size = len;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void texcache_init(void)
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!texcache.index)
|
|
|
|
texcache.filehandle = -1;
|
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
texcache_closefiles();
|
2013-05-15 02:19:14 +00:00
|
|
|
texcache_clearmemcache();
|
2013-05-15 02:17:17 +00:00
|
|
|
texcache_freeptrs();
|
|
|
|
|
2014-05-30 00:02:19 +00:00
|
|
|
texcache.currentindex = texcache.firstindex = (texcacheindex *)Xcalloc(1, sizeof(texcacheindex));
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.numentries = 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
// Bmemset(&firstcacheindex, 0, sizeof(texcacheindex));
|
|
|
|
// Bmemset(&cacheptrs[0], 0, sizeof(cacheptrs));
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.hashes.size = TEXCACHEHASHSIZE;
|
|
|
|
hash_init(&texcache.hashes);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
static void texcache_deletefiles(void)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
Bstrcpy(ptempbuf, TEXCACHEFILE);
|
|
|
|
unlink(ptempbuf);
|
|
|
|
Bstrcat(ptempbuf, ".cache");
|
|
|
|
unlink(ptempbuf);
|
2013-05-15 02:18:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t texcache_enabled(void)
|
|
|
|
{
|
2016-01-08 01:33:25 +00:00
|
|
|
#if defined EDUKE32_GLES || !defined USE_GLEXT
|
|
|
|
return 0;
|
|
|
|
#else
|
2013-05-15 02:18:27 +00:00
|
|
|
if (!glusetexcompr || !glusetexcache) return 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2016-01-08 01:33:25 +00:00
|
|
|
if (!glinfo.texcompr
|
|
|
|
# ifdef DYNAMIC_GLEXT
|
|
|
|
|| !bglCompressedTexImage2DARB || !bglGetCompressedTexImageARB
|
|
|
|
# endif
|
|
|
|
)
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
|
|
|
// lacking the necessary extensions to do this
|
|
|
|
OSD_Printf("Warning: the GL driver lacks necessary functions to use caching\n");
|
|
|
|
glusetexcache = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!texcache.index || texcache.filehandle < 0)
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
|
|
|
OSD_Printf("Warning: no active cache!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2016-01-08 01:33:25 +00:00
|
|
|
#endif
|
2013-05-15 02:18:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void texcache_openfiles(void)
|
|
|
|
{
|
|
|
|
Bstrcpy(ptempbuf,TEXCACHEFILE);
|
|
|
|
Bstrcat(ptempbuf,".cache");
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.index = Bfopen(ptempbuf, "at+");
|
|
|
|
texcache.filehandle = Bopen(TEXCACHEFILE, BO_BINARY|BO_CREAT|BO_APPEND|BO_RDWR, BS_IREAD|BS_IWRITE);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!texcache.index || texcache.filehandle < 0)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
initprintf("Unable to open cache file \"%s\" or \"%s\": %s\n", TEXCACHEFILE, ptempbuf, strerror(errno));
|
|
|
|
texcache_closefiles();
|
|
|
|
glusetexcache = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
Bfseek(texcache.index, 0, BSEEK_END);
|
|
|
|
if (!Bftell(texcache.index))
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
Brewind(texcache.index);
|
|
|
|
Bfprintf(texcache.index,"// automatically generated by EDuke32, DO NOT MODIFY!\n");
|
2013-05-15 02:18:27 +00:00
|
|
|
}
|
2013-05-17 03:42:37 +00:00
|
|
|
else Brewind(texcache.index);
|
2013-05-15 02:18:27 +00:00
|
|
|
|
|
|
|
initprintf("Opened \"%s\" as cache file\n", TEXCACHEFILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void texcache_checkgarbage(void)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
|
|
|
|
if (!texcache_enabled())
|
|
|
|
return;
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.currentindex = texcache.firstindex;
|
|
|
|
while (texcache.currentindex->next)
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
i += texcache.currentindex->len;
|
|
|
|
texcache.currentindex = texcache.currentindex->next;
|
2013-05-15 02:18:27 +00:00
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
i = Blseek(texcache.filehandle, 0, BSEEK_END)-i;
|
2013-05-15 02:18:27 +00:00
|
|
|
|
|
|
|
if (i)
|
|
|
|
initprintf("Cache contains %d bytes of garbage data\n",i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void texcache_invalidate(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUGGINGAIDS
|
|
|
|
OSD_Printf("texcache_invalidate()\n");
|
|
|
|
#endif
|
|
|
|
r_downsizevar = r_downsize; // update the cvar representation when the menu changes r_downsize
|
|
|
|
|
|
|
|
polymost_glreset();
|
|
|
|
|
|
|
|
texcache_init();
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache_deletefiles();
|
2013-05-15 02:18:27 +00:00
|
|
|
texcache_openfiles();
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t texcache_loadoffsets(void)
|
|
|
|
{
|
|
|
|
int32_t foffset, fsize, i;
|
|
|
|
char *fname;
|
|
|
|
|
|
|
|
scriptfile *script;
|
|
|
|
|
|
|
|
Bstrcpy(ptempbuf,TEXCACHEFILE);
|
|
|
|
Bstrcat(ptempbuf,".cache");
|
|
|
|
script = scriptfile_fromfile(ptempbuf);
|
|
|
|
|
|
|
|
if (!script) return -1;
|
|
|
|
|
|
|
|
while (!scriptfile_eof(script))
|
|
|
|
{
|
|
|
|
if (scriptfile_getstring(script, &fname)) break; // hashed filename
|
|
|
|
if (scriptfile_getnumber(script, &foffset)) break; // offset in cache
|
|
|
|
if (scriptfile_getnumber(script, &fsize)) break; // size
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
i = hash_find(&texcache.hashes,fname);
|
2013-05-15 02:17:17 +00:00
|
|
|
if (i > -1)
|
|
|
|
{
|
|
|
|
// update an existing entry
|
2014-10-25 03:32:01 +00:00
|
|
|
texcacheindex *t = texcache.iptrs[i];
|
2013-05-15 02:17:17 +00:00
|
|
|
t->offset = foffset;
|
|
|
|
t->len = fsize;
|
|
|
|
/*initprintf("%s %d got a match for %s offset %d\n",__FILE__, __LINE__, fname,foffset);*/
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
Bstrncpyz(texcache.currentindex->name, fname, BMAX_PATH);
|
|
|
|
texcache.currentindex->offset = foffset;
|
|
|
|
texcache.currentindex->len = fsize;
|
2014-05-30 00:02:19 +00:00
|
|
|
texcache.currentindex->next = (texcacheindex *)Xcalloc(1, sizeof(texcacheindex));
|
2013-05-17 03:42:37 +00:00
|
|
|
hash_add(&texcache.hashes, fname, texcache.numentries, 1);
|
2014-10-25 03:32:01 +00:00
|
|
|
if (++texcache.numentries > texcache.iptrcnt)
|
|
|
|
{
|
|
|
|
texcache.iptrcnt += 512;
|
|
|
|
texcache.iptrs = (texcacheindex **) Xrealloc(texcache.iptrs, sizeof(intptr_t) * texcache.iptrcnt);
|
|
|
|
}
|
|
|
|
texcache.iptrs[texcache.numentries-1] = texcache.currentindex;
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.currentindex = texcache.currentindex->next;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scriptfile_close(script);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read from on-disk texcache or its in-memory cache.
|
|
|
|
int32_t texcache_readdata(void *dest, int32_t len)
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
const int32_t ocachepos = texcache.filepos;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.filepos += len;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-10-25 03:32:57 +00:00
|
|
|
if (texcache.memcache.ptr && texcache.memcache.size >= ocachepos+len)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
// initprintf("using memcache!\n");
|
2013-05-17 03:42:37 +00:00
|
|
|
Bmemcpy(dest, texcache.memcache.ptr+ocachepos, len);
|
|
|
|
return 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (Blseek(texcache.filehandle, ocachepos, BSEEK_SET) != ocachepos)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (Bread(texcache.filehandle, dest, len) < len)
|
|
|
|
return 1;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * texcache_calcid(char *cachefn, const char *fn, const int32_t len, const int32_t dameth, const char effect)
|
|
|
|
{
|
2013-10-11 22:20:46 +00:00
|
|
|
// Assert that BMAX_PATH is a multiple of 4 so that struct texcacheid_t
|
|
|
|
// gets no padding inserted by the compiler.
|
|
|
|
EDUKE32_STATIC_ASSERT((BMAX_PATH & 3) == 0);
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
struct texcacheid_t {
|
|
|
|
int32_t len, method;
|
2013-10-11 22:20:46 +00:00
|
|
|
char effect, name[BMAX_PATH+3]; // +3: pad to a multiple of 4
|
2015-12-04 11:52:58 +00:00
|
|
|
} id = { len, DAMETH_NARROW_MASKPROPS(dameth), effect, "" };
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
Bstrcpy(id.name, fn);
|
|
|
|
|
|
|
|
while (Bstrlen(id.name) < BMAX_PATH - Bstrlen(fn))
|
|
|
|
Bstrcat(id.name, fn);
|
|
|
|
|
2013-10-11 22:20:46 +00:00
|
|
|
Bsprintf(cachefn, "%08x%08x%08x",
|
2014-03-22 09:26:39 +00:00
|
|
|
XXH32((uint8_t *)fn, Bstrlen(fn), TEXCACHEMAGIC[3]),
|
|
|
|
XXH32((uint8_t *)id.name, Bstrlen(id.name), TEXCACHEMAGIC[3]),
|
|
|
|
XXH32((uint8_t *)&id, sizeof(struct texcacheid_t), TEXCACHEMAGIC[3]));
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
return cachefn;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define READTEXHEADER_FAILURE(x) { err = x; goto failure; }
|
|
|
|
|
|
|
|
// returns 1 on success
|
|
|
|
int32_t texcache_readtexheader(const char *fn, int32_t len, int32_t dameth, char effect,
|
|
|
|
texcacheheader *head, int32_t modelp)
|
|
|
|
{
|
|
|
|
int32_t i, err = 0;
|
|
|
|
char cachefn[BMAX_PATH];
|
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (!texcache_enabled())
|
|
|
|
return 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
i = hash_find(&texcache.hashes, texcache_calcid(cachefn, fn, len, dameth, effect));
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-10-25 03:32:01 +00:00
|
|
|
if (i < 0 || !texcache.iptrs[i])
|
2013-05-15 02:17:17 +00:00
|
|
|
return 0; // didn't find it
|
|
|
|
|
2014-10-25 03:32:01 +00:00
|
|
|
texcache.filepos = texcache.iptrs[i]->offset;
|
2014-05-28 22:40:19 +00:00
|
|
|
// initprintf("%s %d got a match for %s offset %d\n",__FILE__, __LINE__, cachefn,offset);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (texcache_readdata(head, sizeof(texcacheheader)))
|
|
|
|
READTEXHEADER_FAILURE(0);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (Bmemcmp(head->magic, TEXCACHEMAGIC, 4))
|
|
|
|
READTEXHEADER_FAILURE(1);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
// native (little-endian) -> internal
|
|
|
|
head->xdim = B_LITTLE32(head->xdim);
|
|
|
|
head->ydim = B_LITTLE32(head->ydim);
|
|
|
|
head->flags = B_LITTLE32(head->flags);
|
|
|
|
head->quality = B_LITTLE32(head->quality);
|
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (modelp && head->quality != r_downsize)
|
|
|
|
READTEXHEADER_FAILURE(2);
|
|
|
|
if ((head->flags & CACHEAD_COMPRESSED) && glusetexcache != 2)
|
|
|
|
READTEXHEADER_FAILURE(3);
|
|
|
|
if (!(head->flags & CACHEAD_COMPRESSED) && glusetexcache == 2)
|
|
|
|
READTEXHEADER_FAILURE(4);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
// handle nocompress
|
2014-05-28 22:40:19 +00:00
|
|
|
if (!modelp && !(head->flags & CACHEAD_NOCOMPRESS) && head->quality != r_downsize)
|
2013-05-15 02:17:17 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (gltexmaxsize && (head->xdim > (1<<gltexmaxsize) || head->ydim > (1<<gltexmaxsize)))
|
|
|
|
READTEXHEADER_FAILURE(5);
|
|
|
|
if (!glinfo.texnpot && (head->flags & CACHEAD_NONPOW2))
|
|
|
|
READTEXHEADER_FAILURE(6);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
{
|
|
|
|
static const char *error_msgs[] = {
|
|
|
|
"failed reading texture cache header", // 0
|
|
|
|
"header magic string doesn't match", // 1
|
|
|
|
"r_downsize doesn't match", // 2 (skins only)
|
|
|
|
"compression doesn't match: cache contains compressed tex", // 3
|
|
|
|
"compression doesn't match: cache contains uncompressed tex", // 4
|
|
|
|
"texture in cache exceeds maximum supported size", // 5
|
|
|
|
"texture in cache has non-power-of-two size, unsupported", // 6
|
|
|
|
};
|
|
|
|
|
|
|
|
initprintf("%s cache miss: %s\n", modelp?"Skin":"Texture", error_msgs[err]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-15 02:19:14 +00:00
|
|
|
#undef READTEXHEADER_FAILURE
|
2013-05-15 02:17:17 +00:00
|
|
|
#define WRITEX_FAIL_ON_ERROR() if (bglGetError() != GL_NO_ERROR) goto failure
|
|
|
|
|
|
|
|
void texcache_writetex(const char *fn, int32_t len, int32_t dameth, char effect, texcacheheader *head)
|
|
|
|
{
|
|
|
|
char cachefn[BMAX_PATH];
|
|
|
|
char *pic = NULL, *packbuf = NULL;
|
|
|
|
void *midbuf = NULL;
|
2016-01-08 01:33:25 +00:00
|
|
|
uint32_t alloclen=0;
|
|
|
|
#ifndef EDUKE32_GLES
|
|
|
|
static GLint glGetTexLevelParameterivOK = GL_TRUE;
|
|
|
|
uint32_t level=0;
|
2013-05-15 02:17:17 +00:00
|
|
|
uint32_t padx=0, pady=0;
|
|
|
|
GLint gi;
|
2016-01-08 01:33:25 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
int32_t offset = 0;
|
|
|
|
|
|
|
|
if (!texcache_enabled()) return;
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
#ifndef EDUKE32_GLES
|
2013-05-15 02:17:17 +00:00
|
|
|
gi = GL_FALSE;
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_COMPRESSED_ARB, &gi);
|
|
|
|
if (gi != GL_TRUE)
|
|
|
|
{
|
2014-07-22 11:19:13 +00:00
|
|
|
if (glGetTexLevelParameterivOK == GL_TRUE)
|
|
|
|
{
|
|
|
|
OSD_Printf("Error: glGetTexLevelParameteriv returned GL_FALSE!\n");
|
|
|
|
glGetTexLevelParameterivOK = GL_FALSE;
|
|
|
|
}
|
2013-05-15 02:17:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-03-24 00:40:33 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
Blseek(texcache.filehandle, 0, BSEEK_END);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
offset = Blseek(texcache.filehandle, 0, BSEEK_CUR);
|
2013-05-15 02:17:17 +00:00
|
|
|
// OSD_Printf("Caching %s, offset 0x%x\n", cachefn, offset);
|
|
|
|
|
|
|
|
Bmemcpy(head->magic, TEXCACHEMAGIC, 4); // sizes are set by caller
|
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (glusetexcache == 2)
|
|
|
|
head->flags |= CACHEAD_COMPRESSED;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
// native -> external (little-endian)
|
|
|
|
head->xdim = B_LITTLE32(head->xdim);
|
|
|
|
head->ydim = B_LITTLE32(head->ydim);
|
|
|
|
head->flags = B_LITTLE32(head->flags);
|
|
|
|
head->quality = B_LITTLE32(head->quality);
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (Bwrite(texcache.filehandle, head, sizeof(texcacheheader)) != sizeof(texcacheheader)) goto failure;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
CLEAR_GL_ERRORS();
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
#ifndef EDUKE32_GLES
|
2013-05-15 02:17:17 +00:00
|
|
|
for (level = 0; level==0 || (padx > 1 || pady > 1); level++)
|
2015-03-24 00:40:33 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
uint32_t miplen;
|
|
|
|
texcachepicture pict;
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
#ifndef EDUKE32_GLES
|
2013-05-15 02:17:17 +00:00
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_COMPRESSED_ARB, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
if (gi != GL_TRUE) goto failure; // an uncompressed mipmap
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_INTERNAL_FORMAT, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
|
2015-10-10 06:57:41 +00:00
|
|
|
#if defined __APPLE__ && defined POLYMER
|
2013-05-15 02:17:17 +00:00
|
|
|
if (pr_ati_textureformat_one && gi == 1) gi = GL_COMPRESSED_RGBA_S3TC_DXT1_EXT;
|
|
|
|
#endif
|
|
|
|
// native -> external (little endian)
|
|
|
|
pict.format = B_LITTLE32(gi);
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_WIDTH, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
padx = gi; pict.xdim = B_LITTLE32(gi);
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_HEIGHT, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
pady = gi; pict.ydim = B_LITTLE32(gi);
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_BORDER, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
pict.border = B_LITTLE32(gi);
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_DEPTH, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
pict.depth = B_LITTLE32(gi);
|
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB, &gi); WRITEX_FAIL_ON_ERROR();
|
|
|
|
miplen = gi; pict.size = B_LITTLE32(gi);
|
2015-03-24 00:40:33 +00:00
|
|
|
#else // TODO: actually code this ;)
|
|
|
|
// pict.format = GL_ETC1_RGB8_OES;
|
|
|
|
pict.xdim = head->xdim;
|
|
|
|
pict.ydim = head->ydim;
|
|
|
|
pict.border = 0;
|
|
|
|
pict.depth = 16;
|
2016-01-08 01:33:25 +00:00
|
|
|
miplen = 0;
|
2015-03-24 00:40:33 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
if (alloclen < miplen)
|
|
|
|
{
|
2014-05-30 00:02:19 +00:00
|
|
|
pic = (char *)Xrealloc(pic, miplen);
|
2013-05-15 02:17:17 +00:00
|
|
|
alloclen = miplen;
|
2014-10-25 03:32:01 +00:00
|
|
|
packbuf = (char *)Xrealloc(packbuf, alloclen);
|
2014-05-30 00:02:19 +00:00
|
|
|
midbuf = (void *)Xrealloc(midbuf, miplen);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 01:33:20 +00:00
|
|
|
#ifdef USE_GLEXT
|
2013-05-15 02:17:17 +00:00
|
|
|
bglGetCompressedTexImageARB(GL_TEXTURE_2D, level, pic); WRITEX_FAIL_ON_ERROR();
|
2016-01-08 01:33:20 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (Bwrite(texcache.filehandle, &pict, sizeof(texcachepicture)) != sizeof(texcachepicture)) goto failure;
|
|
|
|
if (dxtfilter(texcache.filehandle, &pict, pic, midbuf, packbuf, miplen)) goto failure;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
texcacheindex *t;
|
2013-05-17 03:42:37 +00:00
|
|
|
int32_t i = hash_find(&texcache.hashes, texcache_calcid(cachefn, fn, len, dameth, effect));
|
2013-05-15 02:17:17 +00:00
|
|
|
if (i > -1)
|
|
|
|
{
|
|
|
|
// update an existing entry
|
2014-10-25 03:32:01 +00:00
|
|
|
t = texcache.iptrs[i];
|
2013-05-15 02:17:17 +00:00
|
|
|
t->offset = offset;
|
2013-05-17 03:42:37 +00:00
|
|
|
t->len = Blseek(texcache.filehandle, 0, BSEEK_CUR) - t->offset;
|
2013-05-15 02:17:17 +00:00
|
|
|
/*initprintf("%s %d got a match for %s offset %d\n",__FILE__, __LINE__, cachefn,offset);*/
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
t = texcache.currentindex;
|
2013-05-15 02:17:17 +00:00
|
|
|
Bstrcpy(t->name, cachefn);
|
|
|
|
t->offset = offset;
|
2013-05-17 03:42:37 +00:00
|
|
|
t->len = Blseek(texcache.filehandle, 0, BSEEK_CUR) - t->offset;
|
2014-05-30 00:02:19 +00:00
|
|
|
t->next = (texcacheindex *)Xcalloc(1, sizeof(texcacheindex));
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
hash_add(&texcache.hashes, cachefn, texcache.numentries, 0);
|
2014-10-25 03:32:01 +00:00
|
|
|
if (++texcache.numentries > texcache.iptrcnt)
|
|
|
|
{
|
|
|
|
texcache.iptrcnt += 512;
|
2015-03-24 00:40:33 +00:00
|
|
|
texcache.iptrs = (texcacheindex **)Xrealloc(texcache.iptrs, sizeof(intptr_t) * texcache.iptrcnt);
|
2014-10-25 03:32:01 +00:00
|
|
|
}
|
2015-03-24 00:40:33 +00:00
|
|
|
texcache.iptrs[texcache.numentries - 1] = t;
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.currentindex = t->next;
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (texcache.index)
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
fseek(texcache.index, 0, BSEEK_END);
|
|
|
|
Bfprintf(texcache.index, "%s %d %d\n", t->name, t->offset, t->len);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
2015-03-24 00:40:33 +00:00
|
|
|
else
|
|
|
|
OSD_Printf("wtf?\n");
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
goto success;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
initprintf("ERROR: cache failure!\n");
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.currentindex->offset = 0;
|
|
|
|
Bmemset(texcache.currentindex->name,0,sizeof(texcache.currentindex->name));
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
success:
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
}
|
|
|
|
|
2013-05-15 02:19:14 +00:00
|
|
|
#undef WRITEX_FAIL_ON_ERROR
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
static void texcache_setuptexture(int32_t *doalloc, GLuint *glpic)
|
|
|
|
{
|
|
|
|
if (*doalloc&1)
|
|
|
|
{
|
|
|
|
bglGenTextures(1,glpic); //# of textures (make OpenGL allocate structure)
|
|
|
|
*doalloc |= 2; // prevents bglGenTextures being called again if we fail in here
|
|
|
|
}
|
|
|
|
bglBindTexture(GL_TEXTURE_2D,*glpic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t texcache_loadmips(const texcacheheader *head, GLenum *glerr, int32_t *xsiz, int32_t *ysiz)
|
|
|
|
{
|
2015-03-24 00:40:33 +00:00
|
|
|
int32_t level = 0;
|
2013-05-15 02:17:17 +00:00
|
|
|
texcachepicture pict;
|
|
|
|
char *pic = NULL, *packbuf = NULL;
|
|
|
|
void *midbuf = NULL;
|
|
|
|
int32_t alloclen=0;
|
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
#ifndef EDUKE32_GLES
|
2013-05-15 02:17:17 +00:00
|
|
|
for (level = 0; level==0 || (pict.xdim > 1 || pict.ydim > 1); level++)
|
2015-03-24 00:40:33 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
if (texcache_readdata(&pict, sizeof(texcachepicture)))
|
|
|
|
{
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return TEXCACHERR_BUFFERUNDERRUN;
|
|
|
|
}
|
|
|
|
|
|
|
|
// external (little endian) -> native
|
|
|
|
pict.size = B_LITTLE32(pict.size);
|
|
|
|
pict.format = B_LITTLE32(pict.format);
|
|
|
|
pict.xdim = B_LITTLE32(pict.xdim);
|
|
|
|
pict.ydim = B_LITTLE32(pict.ydim);
|
|
|
|
pict.border = B_LITTLE32(pict.border);
|
|
|
|
pict.depth = B_LITTLE32(pict.depth);
|
|
|
|
|
|
|
|
if (level == 0)
|
|
|
|
{
|
|
|
|
if (xsiz) *xsiz = pict.xdim;
|
|
|
|
if (ysiz) *ysiz = pict.ydim;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (alloclen < pict.size)
|
|
|
|
{
|
2014-05-30 00:02:19 +00:00
|
|
|
pic = (char *)Xrealloc(pic, pict.size);
|
2013-05-15 02:17:17 +00:00
|
|
|
alloclen = pict.size;
|
2014-05-30 00:02:19 +00:00
|
|
|
packbuf = (char *)Xrealloc(packbuf, alloclen+16);
|
|
|
|
midbuf = (void *)Xrealloc(midbuf, pict.size);
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2014-05-28 22:40:19 +00:00
|
|
|
if (dedxtfilter(texcache.filehandle, &pict, pic, midbuf, packbuf,
|
|
|
|
(head->flags & CACHEAD_COMPRESSED)!=0))
|
2013-05-15 02:17:17 +00:00
|
|
|
{
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return TEXCACHERR_DEDXT;
|
|
|
|
}
|
|
|
|
|
2016-01-08 01:33:20 +00:00
|
|
|
#ifdef USE_GLEXT
|
2013-05-15 02:17:17 +00:00
|
|
|
bglCompressedTexImage2DARB(GL_TEXTURE_2D,level,pict.format,pict.xdim,pict.ydim,pict.border,pict.size,pic);
|
|
|
|
if ((*glerr=bglGetError()) != GL_NO_ERROR)
|
|
|
|
{
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return TEXCACHERR_COMPTEX;
|
|
|
|
}
|
2016-01-08 01:33:20 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2015-03-24 00:40:33 +00:00
|
|
|
#ifndef EDUKE32_GLES
|
2016-01-08 01:33:25 +00:00
|
|
|
GLint format;
|
2013-05-15 02:17:17 +00:00
|
|
|
bglGetTexLevelParameteriv(GL_TEXTURE_2D, level, GL_TEXTURE_INTERNAL_FORMAT, &format);
|
|
|
|
if ((*glerr = bglGetError()) != GL_NO_ERROR)
|
|
|
|
{
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return TEXCACHERR_GETTEXLEVEL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pict.format != format)
|
|
|
|
{
|
|
|
|
OSD_Printf("gloadtile_cached: invalid texture cache file format %d %d\n", pict.format, format);
|
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return -1;
|
|
|
|
}
|
2015-03-24 00:40:33 +00:00
|
|
|
#endif
|
2013-05-15 02:17:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 01:33:25 +00:00
|
|
|
#if !defined USE_GLEXT && defined EDUKE32_GLES
|
|
|
|
UNREFERENCED_PARAMETER(glerr);
|
|
|
|
#endif
|
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
TEXCACHE_FREEBUFS();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t texcache_loadskin(const texcacheheader *head, int32_t *doalloc, GLuint *glpic, int32_t *xsiz, int32_t *ysiz)
|
|
|
|
{
|
|
|
|
int32_t err=0;
|
|
|
|
GLenum glerr=GL_NO_ERROR;
|
|
|
|
|
|
|
|
texcache_setuptexture(doalloc, glpic);
|
|
|
|
|
|
|
|
CLEAR_GL_ERRORS();
|
|
|
|
|
|
|
|
if ((err = texcache_loadmips(head, &glerr, xsiz, ysiz)))
|
|
|
|
{
|
|
|
|
if (err > 0)
|
2013-05-17 03:42:37 +00:00
|
|
|
initprintf("texcache_loadskin: %s (glerr=%x)\n", texcache_errorstr[err], glerr);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t texcache_loadtile(const texcacheheader *head, int32_t *doalloc, pthtyp *pth)
|
|
|
|
{
|
|
|
|
int32_t err=0;
|
|
|
|
GLenum glerr=GL_NO_ERROR;
|
|
|
|
|
|
|
|
texcache_setuptexture(doalloc, &pth->glpic);
|
|
|
|
|
2014-09-30 04:18:43 +00:00
|
|
|
pth->siz.x = head->xdim;
|
|
|
|
pth->siz.y = head->ydim;
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
CLEAR_GL_ERRORS();
|
|
|
|
|
|
|
|
if ((err = texcache_loadmips(head, &glerr, NULL, NULL)))
|
|
|
|
{
|
|
|
|
if (err > 0)
|
2013-05-17 03:42:37 +00:00
|
|
|
initprintf("texcache_loadtile: %s (glerr=%x)\n", texcache_errorstr[err], glerr);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-05-15 02:18:27 +00:00
|
|
|
|
|
|
|
void texcache_setupmemcache(void)
|
|
|
|
{
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!glusememcache || texcache.memcache.noalloc || !texcache_enabled())
|
2013-05-15 02:18:27 +00:00
|
|
|
return;
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.size = Bfilelength(texcache.filehandle);
|
2013-05-15 02:18:27 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (texcache.memcache.size <= 0)
|
2013-05-15 02:18:27 +00:00
|
|
|
return;
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.ptr = (uint8_t *)Brealloc(texcache.memcache.ptr, texcache.memcache.size);
|
2013-05-15 02:18:27 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
if (!texcache.memcache.ptr)
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
2013-05-17 10:41:59 +00:00
|
|
|
initprintf("Failed allocating %d bytes for memcache, disabling memcache.\n", (int)texcache.memcache.size);
|
2013-05-15 02:19:14 +00:00
|
|
|
texcache_clearmemcache();
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.noalloc = 1;
|
2013-05-15 02:18:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-17 10:41:59 +00:00
|
|
|
if (Bread(texcache.filehandle, texcache.memcache.ptr, texcache.memcache.size) != (bssize_t)texcache.memcache.size)
|
2013-05-15 02:18:27 +00:00
|
|
|
{
|
|
|
|
initprintf("Failed reading texcache into memcache!\n");
|
2013-05-15 02:19:14 +00:00
|
|
|
texcache_clearmemcache();
|
2013-05-17 03:42:37 +00:00
|
|
|
texcache.memcache.noalloc = 1;
|
2013-05-15 02:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 23:05:11 +00:00
|
|
|
#endif
|