2017-04-17 10:27:19 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-01-11 18:50:07 +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-11 18:50:07 +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-11 18:50:07 +00:00
|
|
|
//
|
2017-04-17 10:27:19 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2017-01-11 18:50:07 +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.
|
2017-01-11 18:50:07 +00:00
|
|
|
//
|
2017-04-17 10:27:19 +00:00
|
|
|
// 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-11 18:50:07 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "tarray.h"
|
|
|
|
|
|
|
|
#define MINZ double((2048*4) / double(1 << 20))
|
|
|
|
|
|
|
|
struct particle_t;
|
|
|
|
struct FVoxel;
|
|
|
|
|
|
|
|
namespace swrenderer
|
|
|
|
{
|
2017-02-03 23:25:37 +00:00
|
|
|
class RenderThread;
|
2017-01-16 04:26:22 +00:00
|
|
|
class VisibleSprite;
|
2017-01-26 06:03:27 +00:00
|
|
|
struct DrawSegment;
|
2017-01-11 18:50:07 +00:00
|
|
|
|
2017-01-11 19:42:39 +00:00
|
|
|
class RenderTranslucentPass
|
2017-01-11 18:50:07 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-02-03 23:25:37 +00:00
|
|
|
RenderTranslucentPass(RenderThread *thread);
|
2017-01-11 18:50:07 +00:00
|
|
|
|
2017-01-26 07:36:28 +00:00
|
|
|
void Deinit();
|
|
|
|
void Clear();
|
|
|
|
void Render();
|
2017-01-11 18:50:07 +00:00
|
|
|
|
2017-01-26 07:36:28 +00:00
|
|
|
bool ClipSpriteColumnWithPortals(int x, VisibleSprite *spr);
|
2017-01-11 18:50:07 +00:00
|
|
|
|
2017-02-03 23:25:37 +00:00
|
|
|
RenderThread *Thread = nullptr;
|
|
|
|
|
2017-01-11 18:50:07 +00:00
|
|
|
private:
|
2017-01-26 07:36:28 +00:00
|
|
|
void CollectPortals();
|
|
|
|
void DrawMaskedSingle(bool renew);
|
2017-01-11 18:50:07 +00:00
|
|
|
|
2017-01-26 07:36:28 +00:00
|
|
|
TArray<DrawSegment *> portaldrawsegs;
|
2017-01-11 18:50:07 +00:00
|
|
|
};
|
|
|
|
}
|