2017-01-12 15:21:46 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
//
|
|
|
|
// This source is available for distribution and/or modification
|
|
|
|
// only under the terms of the DOOM Source Code License as
|
|
|
|
// published by id Software. All rights reserved.
|
|
|
|
//
|
|
|
|
// The source is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "r_defs.h"
|
|
|
|
#include "v_palette.h"
|
|
|
|
#include "r_data/colormaps.h"
|
|
|
|
#include "r_utility.h"
|
2017-02-02 14:10:06 +00:00
|
|
|
#include "swrenderer/viewport/r_viewport.h"
|
2017-01-12 15:21:46 +00:00
|
|
|
|
|
|
|
// Lighting.
|
|
|
|
//
|
|
|
|
// [RH] This has changed significantly from Doom, which used lookup
|
|
|
|
// tables based on 1/z for walls and z for flats and only recognized
|
|
|
|
// 16 discrete light levels. The terminology I use is borrowed from Build.
|
|
|
|
|
|
|
|
// The size of a single colormap, in bits
|
|
|
|
#define COLORMAPSHIFT 8
|
|
|
|
|
|
|
|
// MAXLIGHTSCALE from original DOOM, divided by 2.
|
|
|
|
#define MAXLIGHTVIS (24.0)
|
|
|
|
|
|
|
|
// Convert a shade and visibility to a clamped colormap index.
|
|
|
|
// Result is not fixed point.
|
|
|
|
// Change R_CalcTiltedLighting() when this changes.
|
|
|
|
#define GETPALOOKUP(vis,shade) (clamp<int> (((shade)-FLOAT2FIXED(MIN(MAXLIGHTVIS,double(vis))))>>FRACBITS, 0, NUMCOLORMAPS-1))
|
|
|
|
|
|
|
|
// Calculate the light multiplier for dc_light/ds_light
|
|
|
|
// This is used instead of GETPALOOKUP when ds_colormap/dc_colormap is set to the base colormap
|
|
|
|
// Returns a value between 0 and 1 in fixed point
|
|
|
|
#define LIGHTSCALE(vis,shade) FLOAT2FIXED(clamp((FIXED2DBL(shade) - (MIN(MAXLIGHTVIS,double(vis)))) / NUMCOLORMAPS, 0.0, (NUMCOLORMAPS-1)/(double)NUMCOLORMAPS))
|
|
|
|
|
2017-01-24 03:24:04 +00:00
|
|
|
struct FSWColormap;
|
|
|
|
|
2017-01-12 15:21:46 +00:00
|
|
|
namespace swrenderer
|
|
|
|
{
|
2017-01-26 09:22:54 +00:00
|
|
|
class CameraLight
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CameraLight *Instance();
|
|
|
|
|
2017-02-03 08:00:46 +00:00
|
|
|
int FixedLightLevel() const { return fixedlightlev; }
|
|
|
|
FSWColormap *FixedColormap() const { return fixedcolormap; }
|
|
|
|
FSpecialColormap *ShaderColormap() const { return realfixedcolormap; }
|
|
|
|
|
2017-03-06 22:27:02 +00:00
|
|
|
fixed_t FixedLightLevelShade() const { return (FixedLightLevel() >> COLORMAPSHIFT) << FRACBITS; }
|
|
|
|
|
2017-03-12 17:54:39 +00:00
|
|
|
void SetCamera(RenderViewport *viewport, AActor *actor);
|
2017-02-03 08:00:46 +00:00
|
|
|
void ClearShaderColormap() { realfixedcolormap = nullptr; }
|
|
|
|
|
|
|
|
private:
|
2017-01-26 09:22:54 +00:00
|
|
|
int fixedlightlev = 0;
|
|
|
|
FSWColormap *fixedcolormap = nullptr;
|
|
|
|
FSpecialColormap *realfixedcolormap = nullptr;
|
|
|
|
};
|
2017-01-24 03:24:04 +00:00
|
|
|
|
2017-01-26 08:49:07 +00:00
|
|
|
class LightVisibility
|
|
|
|
{
|
|
|
|
public:
|
2017-03-12 17:54:39 +00:00
|
|
|
void SetVisibility(RenderViewport *viewport, double visibility);
|
2017-01-26 08:49:07 +00:00
|
|
|
double GetVisibility() const { return CurrentVisibility; }
|
|
|
|
|
2017-03-06 21:14:54 +00:00
|
|
|
double WallGlobVis(bool foggy) const { return (NoLightFade && !foggy) ? 0.0f : WallVisibility; }
|
|
|
|
double SpriteGlobVis(bool foggy) const { return (NoLightFade && !foggy) ? 0.0f : WallVisibility; }
|
|
|
|
double ParticleGlobVis(bool foggy) const { return (NoLightFade && !foggy) ? 0.0f : (WallVisibility * 0.5); }
|
|
|
|
double FlatPlaneGlobVis(bool foggy) const { return (NoLightFade && !foggy) ? 0.0f : FloorVisibility; }
|
|
|
|
double SlopePlaneGlobVis(bool foggy) const { return (NoLightFade && !foggy) ? 0.0f : TiltVisibility; }
|
2017-01-26 08:49:07 +00:00
|
|
|
|
|
|
|
// The vis value to pass into the GETPALOOKUP or LIGHTSCALE macros
|
2017-03-06 21:14:54 +00:00
|
|
|
double WallVis(double screenZ, bool foggy) const { return WallGlobVis(foggy) / screenZ; }
|
|
|
|
double SpriteVis(double screenZ, bool foggy) const { return SpriteGlobVis(foggy) / screenZ; }
|
|
|
|
double ParticleVis(double screenZ, bool foggy) const { return ParticleGlobVis(foggy) / screenZ; }
|
2017-03-12 17:54:39 +00:00
|
|
|
double FlatPlaneVis(int screenY, double planeZ, bool foggy, RenderViewport *viewport) const { return FlatPlaneGlobVis(foggy) / fabs(planeZ - viewport->viewpoint.Pos.Z) * fabs(viewport->CenterY - screenY); }
|
2017-01-26 08:49:07 +00:00
|
|
|
|
2017-03-06 22:27:02 +00:00
|
|
|
static fixed_t LightLevelToShade(int lightlevel, bool foggy);
|
2017-03-12 17:54:39 +00:00
|
|
|
static int ActualExtraLight(bool fog, RenderViewport *viewport) { return fog ? 0 : viewport->viewpoint.extralight << 4; }
|
2017-03-06 22:27:02 +00:00
|
|
|
|
2017-01-26 08:49:07 +00:00
|
|
|
private:
|
|
|
|
double BaseVisibility = 0.0;
|
|
|
|
double WallVisibility = 0.0;
|
|
|
|
double FloorVisibility = 0.0;
|
|
|
|
float TiltVisibility = 0.0f;
|
|
|
|
|
2017-03-06 21:14:54 +00:00
|
|
|
bool NoLightFade = false;
|
|
|
|
|
2017-01-26 08:49:07 +00:00
|
|
|
double CurrentVisibility = 8.f;
|
|
|
|
double MaxVisForWall = 0.0;
|
|
|
|
double MaxVisForFloor = 0.0;
|
|
|
|
};
|
|
|
|
|
2017-01-24 03:24:04 +00:00
|
|
|
class ColormapLight
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int ColormapNum = 0;
|
|
|
|
FSWColormap *BaseColormap = nullptr;
|
|
|
|
|
|
|
|
void SetColormap(double visibility, int shade, FDynamicColormap *basecolormap, bool fullbright, bool invertColormap, bool fadeToBlack);
|
|
|
|
};
|
2017-01-12 15:21:46 +00:00
|
|
|
}
|