From ac2379171cc4cd30d70cc53979fe082e85b49e98 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Thu, 25 Apr 2013 21:10:15 +0000 Subject: [PATCH] Engine: auto-detect LameDuke's PALETTE.DAT and read tables accordingly. LameDuke's shade table has 32 gradients of shade, like Duke3D. For the translucency table though, only the diagonal + one half is stored because it's symmetric (50/50 translucency). git-svn-id: https://svn.eduke32.com/eduke32@3709 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/engine.c | 73 ++++++++++++++++++++++++------ 1 file changed, 60 insertions(+), 13 deletions(-) diff --git a/polymer/eduke32/build/src/engine.c b/polymer/eduke32/build/src/engine.c index 2b89cb920..93a6f882d 100644 --- a/polymer/eduke32/build/src/engine.c +++ b/polymer/eduke32/build/src/engine.c @@ -7885,37 +7885,83 @@ static void alloc_palookup(int32_t pal) #endif } +static int32_t loadpalette_err(const char *msg) +{ + engineerrstr = msg; + initprintf("ERROR: %s\n", engineerrstr); + return -1; +} + // // loadpalette (internal) // static int32_t loadpalette(void) { - int32_t fil; + int32_t fil, lamedukep=0; if (paletteloaded != 0) return 0; if ((fil = kopen4load("palette.dat",0)) == -1) - { - engineerrstr = "Failed to load \"palette.dat\"!"; - initprintf("ERROR: %s\n", engineerrstr); - return -1; - } + return loadpalette_err("Failed to load \"palette.dat\"!"); kread(fil,palette,768); kread(fil,&numshades,2); numshades = B_LITTLE16(numshades); + if (numshades <= 0) + return loadpalette_err("Invalid number of shades in \"palette.dat\"!"); + alloc_palookup(0); - transluc = (char *)Bmalloc(65536); + transluc = (char *)Bcalloc(256, 256); if (palookup[0] == NULL || transluc == NULL) - exit(1); + return loadpalette_err("Out of memory in loadpalette()!"); globalpalwritten = palookup[0]; globalpal = 0; setpalookupaddress(globalpalwritten); fixtransluscence(FP_OFF(transluc)); - kread(fil,palookup[globalpal],numshades<<8); // read base shade table (palookup 0) - kread(fil,transluc,65536); // read translucency (blending) table + // Auto-detect LameDuke. Its PALETTE.DAT doesn't have a 'numshades' 16-bit + // int after the base palette, but starts directly with the shade tables. + // Thus, the first two bytes will be 00 01, which is 256 if read as + // little-endian int16_t. + if (numshades == 256) + { + if (klseek(fil, -2, BSEEK_CUR) < 0) + return loadpalette_err("klseek() failed in loadpalette()!"); + + numshades = 32; + lamedukep = 1; + } + + // Read base shade table (palookup 0). + kread(fil, palookup[globalpal], numshades<<8); + + // Read translucency (blending) table. + if (lamedukep) + { + int32_t i, j; + + for (i=0; i<256; i++) + { + // LameDuke's table doesn't have the last row or column. + if (i == 255) + continue; + + // Read the entries above and on the diagonal, if the table is + // thought as being row-major. + if (kread(fil, &transluc[256*i + i], 256-i-1) < 0) + return loadpalette_err("Failed reading LameDuke translucency table!"); + + // Duplicate the entries below the diagonal. + for (j=0; j