2019-10-05 10:28:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-01-06 01:41:47 +00:00
|
|
|
#include "palentry.h"
|
2019-11-05 22:35:38 +00:00
|
|
|
#include "gl_buffers.h"
|
2020-01-03 09:09:38 +00:00
|
|
|
#include "renderstyle.h"
|
2019-10-05 10:28:08 +00:00
|
|
|
class PolymostShader;
|
2020-01-03 09:09:38 +00:00
|
|
|
struct GLState;
|
2020-04-26 21:17:54 +00:00
|
|
|
class FMaterial;
|
2019-10-05 10:28:08 +00:00
|
|
|
|
2020-01-03 22:38:50 +00:00
|
|
|
enum EMatrixType
|
|
|
|
{
|
|
|
|
Matrix_View,
|
|
|
|
Matrix_Projection,
|
2020-01-19 15:06:31 +00:00
|
|
|
Matrix_Model,
|
2020-01-03 22:38:50 +00:00
|
|
|
Matrix_Texture,
|
|
|
|
// These are the only ones being used.
|
|
|
|
NUMMATRICES
|
|
|
|
};
|
|
|
|
|
2019-10-19 20:46:37 +00:00
|
|
|
enum PRSFlags
|
|
|
|
{
|
|
|
|
RF_ColorOnly = 1,
|
|
|
|
RF_UsePalette = 2,
|
|
|
|
RF_DetailMapping = 4,
|
|
|
|
RF_GlowMapping = 8,
|
|
|
|
RF_Brightmapping = 16,
|
|
|
|
RF_NPOTEmulation = 32,
|
|
|
|
RF_ShadeInterpolate = 64,
|
|
|
|
RF_FogDisabled = 128,
|
2020-04-11 22:21:35 +00:00
|
|
|
RF_MapFog = 256, // RRRA E2L1.
|
2019-10-19 20:46:37 +00:00
|
|
|
|
2020-05-29 18:15:42 +00:00
|
|
|
RF_TINT_Grayscale = 0x10000,
|
|
|
|
RF_TINT_Invert = 0x20000,
|
|
|
|
RF_TINT_Colorize = 0x40000,
|
|
|
|
RF_TINT_BLEND_Screen = 0x80000,
|
|
|
|
RF_TINT_BLEND_Overlay = 0x100000,
|
|
|
|
RF_TINT_BLEND_Hardlight = 0x200000,
|
|
|
|
RF_TINT_BLENDMASK = RF_TINT_BLEND_Screen | RF_TINT_BLEND_Overlay | RF_TINT_BLEND_Hardlight,
|
|
|
|
RF_TINT_MASK = 0x3f0000,
|
2020-01-02 22:15:16 +00:00
|
|
|
|
|
|
|
STF_BLEND = 1,
|
|
|
|
STF_COLORMASK = 2,
|
|
|
|
STF_DEPTHMASK = 4,
|
|
|
|
STF_DEPTHTEST = 8,
|
|
|
|
STF_MULTISAMPLE = 16,
|
|
|
|
STF_STENCILWRITE = 32,
|
|
|
|
STF_STENCILTEST = 64,
|
|
|
|
STF_CULLCW = 128,
|
|
|
|
STF_CULLCCW = 256,
|
|
|
|
STF_WIREFRAME = 512,
|
2020-01-02 22:56:35 +00:00
|
|
|
STF_CLEARCOLOR = 1024,
|
|
|
|
STF_CLEARDEPTH = 2048,
|
2020-01-03 09:48:01 +00:00
|
|
|
STF_VIEWPORTSET = 4096,
|
2020-01-18 21:41:08 +00:00
|
|
|
STF_SCISSORSET = 8192,
|
2020-01-02 22:15:16 +00:00
|
|
|
|
|
|
|
|
2019-10-19 20:46:37 +00:00
|
|
|
};
|
|
|
|
|
2019-10-05 10:28:08 +00:00
|
|
|
struct PolymostRenderState
|
|
|
|
{
|
2020-01-18 21:41:08 +00:00
|
|
|
int vindex, vcount, primtype;
|
2019-10-05 10:28:08 +00:00
|
|
|
float Shade;
|
|
|
|
float NumShades = 64.f;
|
2019-10-19 23:14:48 +00:00
|
|
|
float ShadeDiv = 62.f;
|
|
|
|
float VisFactor = 128.f;
|
2019-10-19 20:46:37 +00:00
|
|
|
int Flags = 0;
|
2019-10-05 10:28:08 +00:00
|
|
|
float NPOTEmulationFactor = 1.f;
|
|
|
|
float NPOTEmulationXOffset;
|
|
|
|
float Brightness = 1.f;
|
2019-11-10 09:01:31 +00:00
|
|
|
float AlphaThreshold = 0.5f;
|
|
|
|
bool AlphaTest = true;
|
2020-01-03 10:43:44 +00:00
|
|
|
float Color[4] = { 1,1,1,1 };
|
2020-05-31 10:23:35 +00:00
|
|
|
short matrixIndex[NUMMATRICES] = { 0,0,0,0 };
|
2020-01-18 15:13:39 +00:00
|
|
|
PalEntry fullscreenTint = 0xffffff, hictint = 0xffffff, hictint_overlay = 0xffffff;
|
2020-01-18 21:41:08 +00:00
|
|
|
int hictint_flags = -1;
|
2020-02-06 17:43:27 +00:00
|
|
|
FDepthBiasState mBias{ };
|
2020-05-30 19:45:17 +00:00
|
|
|
FMaterialState mMaterial;
|
2020-05-30 18:55:29 +00:00
|
|
|
OpenGLRenderer::FHardwareTexture* PaletteTexture = nullptr, * LookupTexture = nullptr;
|
2019-11-10 09:01:31 +00:00
|
|
|
|
2020-01-02 22:15:16 +00:00
|
|
|
int StateFlags = STF_COLORMASK|STF_DEPTHMASK;
|
2020-01-03 09:09:38 +00:00
|
|
|
FRenderStyle Style{};
|
2020-01-03 10:43:44 +00:00
|
|
|
int DepthFunc = 1;
|
2020-01-02 22:56:35 +00:00
|
|
|
PalEntry ClearColor = 0;
|
2020-01-03 09:48:01 +00:00
|
|
|
short vp_x, vp_y, vp_w, vp_h;
|
2020-01-05 09:21:34 +00:00
|
|
|
short sc_x = SHRT_MIN, sc_y, sc_w, sc_h;
|
2020-01-02 22:15:16 +00:00
|
|
|
|
2019-10-19 20:46:37 +00:00
|
|
|
PalEntry FogColor;
|
2019-11-05 22:35:38 +00:00
|
|
|
|
2020-05-30 19:45:17 +00:00
|
|
|
void ApplyMaterial(FMaterial* mat, int clampmode, int translation, int overrideshader);
|
2020-01-03 09:09:38 +00:00
|
|
|
void Apply(PolymostShader *shader, GLState &oldstate);
|
2019-10-05 10:28:08 +00:00
|
|
|
};
|