2006-04-23 06:44:19 +00:00
|
|
|
/*
|
|
|
|
* High-colour textures support for Polymost
|
|
|
|
* by Jonathon Fowler
|
|
|
|
* See the included license file "BUILDLIC.TXT" for license info.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kplib.h"
|
|
|
|
|
|
|
|
#define HICEFFECTMASK (1|2)
|
2006-09-29 21:36:12 +00:00
|
|
|
palette_t hictinting[MAXPALOOKUPS];
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-08-30 23:32:39 +00:00
|
|
|
//moved into polymost.h
|
|
|
|
/*struct hicskybox_t {
|
2007-12-12 17:42:14 +00:00
|
|
|
int ignore;
|
2006-04-24 19:04:22 +00:00
|
|
|
char *face[6];
|
2006-04-23 06:44:19 +00:00
|
|
|
};
|
2006-08-30 23:32:39 +00:00
|
|
|
|
2006-04-23 06:44:19 +00:00
|
|
|
typedef struct hicreplc_t {
|
2006-04-24 19:04:22 +00:00
|
|
|
struct hicreplc_t *next;
|
|
|
|
char palnum, ignore, flags, filler;
|
|
|
|
char *filename;
|
|
|
|
float alphacut;
|
|
|
|
struct hicskybox_t *skybox;
|
2006-08-30 23:32:39 +00:00
|
|
|
} hicreplctyp;*/
|
2006-04-23 06:44:19 +00:00
|
|
|
static hicreplctyp *hicreplc[MAXTILES];
|
|
|
|
static char hicfirstinit = 0;
|
|
|
|
|
|
|
|
//
|
|
|
|
// find the index into hicreplc[] which contains the replacement tile particulars
|
|
|
|
//
|
2007-12-12 17:42:14 +00:00
|
|
|
static hicreplctyp * hicfindsubst(int picnum, int palnum, int skybox)
|
2006-04-23 06:44:19 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hicreplctyp *hr;
|
|
|
|
|
|
|
|
if (!hicfirstinit) return NULL;
|
2007-12-12 17:42:14 +00:00
|
|
|
if ((unsigned int)picnum >= (unsigned int)MAXTILES) return NULL;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
for (hr = hicreplc[picnum]; hr; hr = hr->next)
|
|
|
|
{
|
|
|
|
if (hr->palnum == palnum)
|
|
|
|
{
|
|
|
|
if (skybox)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr->skybox && !hr->skybox->ignore) return hr;
|
2007-12-12 17:42:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!hr->ignore) return hr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-15 22:26:50 +00:00
|
|
|
if (!palnum || palnum >= (MAXPALOOKUPS - RESERVEDPALS)) break;
|
2006-04-24 19:04:22 +00:00
|
|
|
palnum = 0;
|
2007-12-12 17:42:14 +00:00
|
|
|
}
|
|
|
|
while (1);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
return NULL; // no replacement found
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// hicinit()
|
2008-02-24 00:46:57 +00:00
|
|
|
// Initialize the high-colour stuff to default.
|
2006-04-23 06:44:19 +00:00
|
|
|
//
|
|
|
|
void hicinit(void)
|
|
|
|
{
|
2007-12-12 17:42:14 +00:00
|
|
|
int i,j;
|
2006-04-24 19:04:22 +00:00
|
|
|
hicreplctyp *hr, *next;
|
|
|
|
|
2007-12-20 19:14:38 +00:00
|
|
|
clearconv();
|
2007-12-12 17:42:14 +00:00
|
|
|
for (i=0;i<MAXPALOOKUPS;i++) // all tints should be 100%
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hictinting[i].r = hictinting[i].g = hictinting[i].b = 0xff;
|
|
|
|
hictinting[i].f = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hicfirstinit)
|
2007-12-12 17:42:14 +00:00
|
|
|
for (i=MAXTILES-1;i>=0;i--)
|
|
|
|
{
|
|
|
|
for (hr=hicreplc[i]; hr;)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
next = hr->next;
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if (hr->skybox)
|
|
|
|
{
|
|
|
|
for (j=5;j>=0;j--)
|
|
|
|
{
|
|
|
|
if (hr->skybox->face[j])
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
free(hr->skybox->face[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(hr->skybox);
|
|
|
|
}
|
|
|
|
if (hr->filename) free(hr->filename);
|
|
|
|
free(hr);
|
|
|
|
|
|
|
|
hr = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memset(hicreplc,0,sizeof(hicreplc));
|
|
|
|
|
|
|
|
hicfirstinit = 1;
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// hicsetpalettetint(pal,r,g,b,effect)
|
|
|
|
// The tinting values represent a mechanism for emulating the effect of global sector
|
|
|
|
// palette shifts on true-colour textures and only true-colour textures.
|
|
|
|
// effect bitset: 1 = greyscale, 2 = invert
|
|
|
|
//
|
2007-12-12 17:42:14 +00:00
|
|
|
void hicsetpalettetint(int palnum, unsigned char r, unsigned char g, unsigned char b, unsigned char effect)
|
2006-04-23 06:44:19 +00:00
|
|
|
{
|
2007-12-12 17:42:14 +00:00
|
|
|
if ((unsigned int)palnum >= (unsigned int)MAXPALOOKUPS) return;
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!hicfirstinit) hicinit();
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
hictinting[palnum].r = r;
|
|
|
|
hictinting[palnum].g = g;
|
|
|
|
hictinting[palnum].b = b;
|
|
|
|
hictinting[palnum].f = effect & HICEFFECTMASK;
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// hicsetsubsttex(picnum,pal,filen,alphacut)
|
|
|
|
// Specifies a replacement graphic file for an ART tile.
|
|
|
|
//
|
2007-12-12 17:42:14 +00:00
|
|
|
int hicsetsubsttex(int picnum, int palnum, char *filen, float alphacut, float xscale, float yscale, char flags)
|
2006-04-23 06:44:19 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hicreplctyp *hr, *hrn;
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if ((unsigned int)picnum >= (unsigned int)MAXTILES) return -1;
|
|
|
|
if ((unsigned int)palnum >= (unsigned int)MAXPALOOKUPS) return -1;
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!hicfirstinit) hicinit();
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
for (hr = hicreplc[picnum]; hr; hr = hr->next)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr->palnum == palnum)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hr)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// no replacement yet defined
|
|
|
|
hrn = (hicreplctyp *)calloc(1,sizeof(hicreplctyp));
|
|
|
|
if (!hrn) return -1;
|
|
|
|
hrn->palnum = palnum;
|
2007-12-12 17:42:14 +00:00
|
|
|
}
|
|
|
|
else hrn = hr;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
// store into hicreplc the details for this replacement
|
|
|
|
if (hrn->filename) free(hrn->filename);
|
|
|
|
|
|
|
|
hrn->filename = strdup(filen);
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hrn->filename)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hrn->skybox) return -1; // don't free the base structure if there's a skybox defined
|
|
|
|
if (hr == NULL) free(hrn); // not yet a link in the chain
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
hrn->ignore = 0;
|
2007-02-17 02:23:50 +00:00
|
|
|
hrn->alphacut = min(alphacut,1.0);
|
|
|
|
hrn->xscale = xscale;
|
|
|
|
hrn->yscale = yscale;
|
2006-04-24 19:04:22 +00:00
|
|
|
hrn->flags = flags;
|
2007-12-12 17:42:14 +00:00
|
|
|
if (hr == NULL)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hrn->next = hicreplc[picnum];
|
|
|
|
hicreplc[picnum] = hrn;
|
|
|
|
}
|
|
|
|
|
|
|
|
//printf("Replacement [%d,%d]: %s\n", picnum, palnum, hicreplc[i]->filename);
|
|
|
|
|
|
|
|
return 0;
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// hicsetskybox(picnum,pal,faces[6])
|
|
|
|
// Specifies a graphic files making up a skybox.
|
|
|
|
//
|
2007-12-12 17:42:14 +00:00
|
|
|
int hicsetskybox(int picnum, int palnum, char *faces[6])
|
2006-04-23 06:44:19 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hicreplctyp *hr, *hrn;
|
2007-12-12 17:42:14 +00:00
|
|
|
int j;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if ((unsigned int)picnum >= (unsigned int)MAXTILES) return -1;
|
|
|
|
if ((unsigned int)palnum >= (unsigned int)MAXPALOOKUPS) return -1;
|
2006-04-24 19:04:22 +00:00
|
|
|
for (j=5;j>=0;j--) if (!faces[j]) return -1;
|
|
|
|
if (!hicfirstinit) hicinit();
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
for (hr = hicreplc[picnum]; hr; hr = hr->next)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr->palnum == palnum)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hr)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// no replacement yet defined
|
|
|
|
hrn = (hicreplctyp *)calloc(1,sizeof(hicreplctyp));
|
|
|
|
if (!hrn) return -1;
|
|
|
|
|
|
|
|
hrn->palnum = palnum;
|
2007-12-12 17:42:14 +00:00
|
|
|
}
|
|
|
|
else hrn = hr;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hrn->skybox)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hrn->skybox = (struct hicskybox_t *)calloc(1,sizeof(struct hicskybox_t));
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hrn->skybox)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr == NULL) free(hrn); // not yet a link in the chain
|
|
|
|
return -1;
|
|
|
|
}
|
2007-12-12 17:42:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (j=5;j>=0;j--)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hrn->skybox->face[j])
|
|
|
|
free(hrn->skybox->face[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// store each face's filename
|
2007-12-12 17:42:14 +00:00
|
|
|
for (j=0;j<6;j++)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hrn->skybox->face[j] = strdup(faces[j]);
|
2007-12-12 17:42:14 +00:00
|
|
|
if (!hrn->skybox->face[j])
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
for (--j; j>=0; --j) // free any previous faces
|
|
|
|
free(hrn->skybox->face[j]);
|
|
|
|
free(hrn->skybox);
|
|
|
|
hrn->skybox = NULL;
|
|
|
|
if (hr == NULL) free(hrn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hrn->skybox->ignore = 0;
|
2007-12-12 17:42:14 +00:00
|
|
|
if (hr == NULL)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hrn->next = hicreplc[picnum];
|
|
|
|
hicreplc[picnum] = hrn;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// hicclearsubst(picnum,pal)
|
|
|
|
// Clears a replacement for an ART tile, including skybox faces.
|
|
|
|
//
|
2007-12-12 17:42:14 +00:00
|
|
|
int hicclearsubst(int picnum, int palnum)
|
2006-04-23 06:44:19 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
hicreplctyp *hr, *hrn = NULL;
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
if ((unsigned int)picnum >= (unsigned int)MAXTILES) return -1;
|
|
|
|
if ((unsigned int)palnum >= (unsigned int)MAXPALOOKUPS) return -1;
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!hicfirstinit) return 0;
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2007-12-12 17:42:14 +00:00
|
|
|
for (hr = hicreplc[picnum]; hr; hrn = hr, hr = hr->next)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr->palnum == palnum)
|
|
|
|
break;
|
|
|
|
}
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!hr) return 0;
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hr->filename) free(hr->filename);
|
2007-12-12 17:42:14 +00:00
|
|
|
if (hr->skybox)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
int i;
|
|
|
|
for (i=5;i>=0;i--)
|
|
|
|
if (hr->skybox->face[i])
|
|
|
|
free(hr->skybox->face[i]);
|
|
|
|
free(hr->skybox);
|
|
|
|
}
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (hrn) hrn->next = hr->next;
|
|
|
|
else hicreplc[picnum] = hr->next;
|
|
|
|
free(hr);
|
2006-04-23 06:44:19 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-23 06:44:19 +00:00
|
|
|
}
|