2017-04-17 10:27:19 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-01-03 06:17:54 +00:00
|
|
|
//
|
2017-04-17 10:27:19 +00:00
|
|
|
// Copyright 1993-1996 id Software
|
|
|
|
// Copyright 1999-2016 Randy Heit
|
|
|
|
// Copyright 2016 Magnus Norddahl
|
2017-01-03 06:17:54 +00:00
|
|
|
//
|
2017-04-17 10:27:19 +00:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2017-01-03 06:17:54 +00:00
|
|
|
//
|
2017-04-17 10:27:19 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2017-01-03 06:17:54 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-04-17 10:27:19 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-01-03 06:17:54 +00:00
|
|
|
//
|
2016-12-31 10:42:49 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-01-11 22:27:35 +00:00
|
|
|
#include "r_planerenderer.h"
|
2017-02-02 14:10:06 +00:00
|
|
|
#include "swrenderer/viewport/r_spandrawer.h"
|
2016-12-31 10:42:49 +00:00
|
|
|
|
|
|
|
namespace swrenderer
|
|
|
|
{
|
2017-02-03 23:25:37 +00:00
|
|
|
class RenderThread;
|
|
|
|
|
2017-01-11 20:59:26 +00:00
|
|
|
class RenderSlopePlane : PlaneRenderer
|
|
|
|
{
|
|
|
|
public:
|
2017-02-03 23:25:37 +00:00
|
|
|
RenderSlopePlane(RenderThread *thread);
|
2018-12-06 19:12:15 +00:00
|
|
|
void Render(VisiblePlane *pl, double _xscale, double _yscale, fixed_t alpha, bool additive, bool masked, FDynamicColormap *basecolormap, FSoftwareTexture *texture);
|
2017-01-11 20:59:26 +00:00
|
|
|
|
2017-02-03 23:25:37 +00:00
|
|
|
RenderThread *Thread = nullptr;
|
|
|
|
|
2017-01-11 20:59:26 +00:00
|
|
|
private:
|
|
|
|
void RenderLine(int y, int x1, int x2) override;
|
|
|
|
|
|
|
|
FVector3 plane_sz, plane_su, plane_sv;
|
|
|
|
float planelightfloat;
|
|
|
|
bool plane_shade;
|
|
|
|
int planeshade;
|
|
|
|
fixed_t pviewx, pviewy;
|
|
|
|
fixed_t xscale, yscale;
|
2017-01-12 20:29:19 +00:00
|
|
|
FDynamicColormap *basecolormap;
|
2017-01-29 09:05:37 +00:00
|
|
|
SpanDrawerArgs drawerargs;
|
2018-04-07 13:48:48 +00:00
|
|
|
|
|
|
|
DVector3 planeNormal;
|
|
|
|
double planeD;
|
2017-01-11 20:59:26 +00:00
|
|
|
};
|
2016-12-31 10:42:49 +00:00
|
|
|
}
|