mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
186 lines
4.1 KiB
C
186 lines
4.1 KiB
C
// "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman
|
|
// Ken Silverman's official web site: "http://www.advsys.net/ken"
|
|
// See the included license file "BUILDLIC.TXT" for license info.
|
|
//
|
|
// This file has been modified from Ken Silverman's original release
|
|
// by Jonathon Fowler (jf@jonof.id.au)
|
|
// by the EDuke32 team (development@voidpoint.com)
|
|
|
|
#pragma once
|
|
|
|
#ifndef palette_h_
|
|
#define palette_h_
|
|
|
|
#include "renderstyle.h"
|
|
#include "filesystem.h"
|
|
#include "zstring.h"
|
|
#include "palentry.h"
|
|
#include "templates.h"
|
|
|
|
#define MAXBASEPALS 256
|
|
#define MAXPALOOKUPS 256
|
|
#define MAXBLENDTABS 256
|
|
|
|
#define RESERVEDPALS 4 // don't forget to increment this when adding reserved pals
|
|
#define DETAILPAL (MAXPALOOKUPS - 1)
|
|
#define GLOWPAL (MAXPALOOKUPS - 2)
|
|
#define SPECULARPAL (MAXPALOOKUPS - 3)
|
|
#define NORMALPAL (MAXPALOOKUPS - 4)
|
|
#define BRIGHTPAL (MAXPALOOKUPS)
|
|
|
|
// fixme: should use the flags from the PRSFlags enum directly
|
|
enum
|
|
{
|
|
TINTF_GRAYSCALE = 1,
|
|
TINTF_INVERT = 2,
|
|
TINTF_COLORIZE = 4,
|
|
TINTF_USEONART = 8,
|
|
TINTF_APPLYOVERPALSWAP = 16,
|
|
TINTF_APPLYOVERALTPAL = 32,
|
|
|
|
TINTF_BLEND_MULTIPLY = 0 << 6,
|
|
TINTF_BLEND_SCREEN = 1 << 6,
|
|
TINTF_BLEND_OVERLAY = 2 << 6,
|
|
TINTF_BLEND_HARDLIGHT = 3 << 6,
|
|
|
|
TINTF_BLENDMASK = 64 | 128,
|
|
TINTF_ALWAYSUSEART = 256,
|
|
TINTF_PRECOMPUTED = TINTF_COLORIZE | TINTF_BLENDMASK,
|
|
TINTF_ENABLE = 32768
|
|
};
|
|
|
|
struct LookupTable
|
|
{
|
|
FString Shades;
|
|
PalEntry FadeColor = 0;
|
|
float Visibility = 0;
|
|
bool hasBrightmap = false;
|
|
bool noFloorPal = false;
|
|
|
|
int tintFlags = 0;
|
|
PalEntry tintColor = 0xffffff;
|
|
PalEntry tintShade = 0;
|
|
};
|
|
|
|
struct LookupTableInfo
|
|
{
|
|
LookupTable tables[MAXPALOOKUPS];
|
|
|
|
const uint8_t* getTable(int num)
|
|
{
|
|
if (tables[num].Shades.Len() == 0) num = 0;
|
|
return (const uint8_t*)tables[num].Shades.GetChars();
|
|
}
|
|
|
|
bool checkTable(int num)
|
|
{
|
|
return tables[num].Shades.IsNotEmpty();
|
|
}
|
|
|
|
void copyTable(int dest, int src)
|
|
{
|
|
tables[dest].Shades = tables[src].Shades;
|
|
}
|
|
|
|
void clearTable(int dest)
|
|
{
|
|
tables[dest].Shades = "";
|
|
}
|
|
|
|
void makeTable(int palnum, const uint8_t* remapbuf, int r, int g, int b, bool noFloorPal);
|
|
int setTable(int palnum, const uint8_t* remap);
|
|
void postLoadTables();
|
|
int loadTable(FileReader& fp);
|
|
void postLoadLookups();
|
|
void setupDefaultFog();
|
|
|
|
void setFadeColor(int num, int r, int g, int b)
|
|
{
|
|
tables[num].FadeColor = PalEntry(1, r, g, b);
|
|
}
|
|
|
|
PalEntry getFade(int num)
|
|
{
|
|
return tables[num].FadeColor;
|
|
}
|
|
|
|
bool noFloorPal(int num) const
|
|
{
|
|
return tables[num].noFloorPal;
|
|
}
|
|
|
|
void setPaletteTint(int palnum, int r, int g, int b, int sr, int sg, int sb, int flags);
|
|
|
|
|
|
};
|
|
|
|
extern LookupTableInfo lookups;
|
|
|
|
enum
|
|
{
|
|
Translation_BasePalettes = 1,
|
|
Translation_Remap,
|
|
};
|
|
|
|
extern uint8_t curbasepal;
|
|
extern int32_t r_scenebrightness;
|
|
|
|
struct palette_t
|
|
{
|
|
uint8_t r, g, b, f;
|
|
};
|
|
|
|
extern PalEntry palfadergb;
|
|
|
|
void paletteSetColorTable(int32_t id, uint8_t const* table, bool notransparency, bool twodonly);
|
|
|
|
#include "tflags.h"
|
|
enum ESetPalFlag
|
|
{
|
|
Pal_DontResetFade = 1,
|
|
};
|
|
|
|
inline void videoSetBrightness(int brightness)
|
|
{
|
|
r_scenebrightness = clamp(brightness, 0, 15);
|
|
}
|
|
|
|
typedef TFlags<ESetPalFlag> ESetPalFlags;
|
|
DEFINE_TFLAGS_OPERATORS(ESetPalFlags)
|
|
|
|
void videoSetPalette(int dabrightness, int dapalid, ESetPalFlags flags);
|
|
inline void videoFadePalette(uint8_t r, uint8_t g, uint8_t b, uint8_t offset)
|
|
{
|
|
palfadergb.r = r;
|
|
palfadergb.g = g;
|
|
palfadergb.b = b;
|
|
palfadergb.a = offset;
|
|
}
|
|
|
|
|
|
void videoTintBlood(int32_t r, int32_t g, int32_t b);
|
|
|
|
extern int32_t globalpal;
|
|
extern int32_t globalblend;
|
|
extern void paletteLoadFromDisk(void);
|
|
|
|
|
|
typedef struct glblenddef_
|
|
{
|
|
float alpha;
|
|
uint8_t src, dst, flags;
|
|
} glblenddef_t;
|
|
|
|
typedef struct glblend_
|
|
{
|
|
glblenddef_t def[2];
|
|
} glblend_t;
|
|
|
|
extern glblend_t const nullglblend, defaultglblend;
|
|
extern glblend_t glblend[MAXBLENDTABS];
|
|
|
|
FRenderStyle GetRenderStyle(int blend, int def);
|
|
extern void SetRenderStyleFromBlend(uint8_t enable, uint8_t blend, uint8_t def);
|
|
float GetAlphaFromBlend(uint32_t maskprops, uint32_t blend);
|
|
|
|
#endif
|