foxygit / GZDoom Log in
commits tags

/src/rendering/swrenderer/plane/r_flatplane.h · 1.93 KB

raw
//-----------------------------------------------------------------------------
//
// Copyright 1993-1996 id Software
// Copyright 1999-2016 Randy Heit
// Copyright 2016 Magnus Norddahl
//
// 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.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// 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/
//
//-----------------------------------------------------------------------------
//

#pragma once

#include "r_planerenderer.h"
#include "swrenderer/viewport/r_spandrawer.h"

namespace swrenderer
{
	class RenderThread;
	struct VisiblePlaneLight;

	class RenderFlatPlane : PlaneRenderer
	{
	public:
		RenderFlatPlane(RenderThread *thread);
		void Render(VisiblePlane *pl, double _xscale, double _yscale, fixed_t alpha, bool additive, bool masked, FDynamicColormap *basecolormap, FSoftwareTexture *texture);

		RenderThread *Thread = nullptr;

	private:
		void RenderLine(int y, int x1, int x2) override;

		int minx;
		double planeheight;
		bool plane_shade;
		int lightlevel;
		bool foggy;
		double pviewx, pviewy;
		double xstepscale, ystepscale;
		double basexfrac, baseyfrac;
		VisiblePlaneLight *light_list;
		FSoftwareTexture *tex;

		SpanDrawerArgs drawerargs;
	};

	class RenderColoredPlane : PlaneRenderer
	{
	public:
		RenderColoredPlane(RenderThread *thread);
		void Render(VisiblePlane *pl);
		
		RenderThread *Thread = nullptr;

	private:
		void RenderLine(int y, int x1, int x2) override;

		SpanDrawerArgs drawerargs;
	};
}