2016-11-14 13:19:48 +00:00
|
|
|
/*
|
|
|
|
** Potential visible set (PVS) handling
|
|
|
|
** Copyright (c) 2016 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-12-27 05:31:55 +00:00
|
|
|
#include "polyrenderer/drawers/poly_triangle.h"
|
|
|
|
#include "polyrenderer/math/poly_intersection.h"
|
2016-11-14 13:19:48 +00:00
|
|
|
|
|
|
|
class PolyCull
|
|
|
|
{
|
|
|
|
public:
|
2016-12-09 02:17:35 +00:00
|
|
|
void ClearSolidSegments();
|
2016-11-26 08:01:58 +00:00
|
|
|
void CullScene(const TriMatrix &worldToClip, const Vec4f &portalClipPlane);
|
2016-11-14 13:19:48 +00:00
|
|
|
|
2017-03-23 02:41:44 +00:00
|
|
|
bool GetAnglesForLine(double x1, double y1, double x2, double y2, angle_t &angle1, angle_t &angle2) const;
|
|
|
|
void MarkSegmentCulled(angle_t angle1, angle_t angle2);
|
|
|
|
bool IsSegmentCulled(angle_t angle1, angle_t angle2) const;
|
2016-12-09 02:17:35 +00:00
|
|
|
void InvertSegments();
|
2017-03-24 21:04:07 +00:00
|
|
|
void MarkViewFrustum();
|
2016-11-14 13:19:48 +00:00
|
|
|
|
|
|
|
std::vector<subsector_t *> PvsSectors;
|
|
|
|
double MaxCeilingHeight = 0.0;
|
|
|
|
double MinFloorHeight = 0.0;
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct SolidSegment
|
|
|
|
{
|
2017-03-23 02:41:44 +00:00
|
|
|
SolidSegment(angle_t start, angle_t end) : Start(start), End(end) { }
|
|
|
|
angle_t Start, End;
|
2016-11-14 13:19:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void CullNode(void *node);
|
2016-11-24 00:01:02 +00:00
|
|
|
void CullSubsector(subsector_t *sub);
|
2016-11-14 13:19:48 +00:00
|
|
|
int PointOnSide(const DVector2 &pos, const node_t *node);
|
|
|
|
|
|
|
|
// Checks BSP node/subtree bounding box.
|
|
|
|
// Returns true if some part of the bbox might be visible.
|
|
|
|
bool CheckBBox(float *bspcoord);
|
|
|
|
|
|
|
|
std::vector<SolidSegment> SolidSegments;
|
2016-12-09 02:17:35 +00:00
|
|
|
std::vector<SolidSegment> TempInvertSolidSegments;
|
2016-11-14 13:19:48 +00:00
|
|
|
const int SolidCullScale = 3000;
|
2017-03-24 06:28:28 +00:00
|
|
|
bool FirstSkyHeight = true;
|
2016-11-14 13:19:48 +00:00
|
|
|
|
|
|
|
FrustumPlanes frustumPlanes;
|
2016-11-26 08:01:58 +00:00
|
|
|
Vec4f PortalClipPlane;
|
2017-03-23 02:41:44 +00:00
|
|
|
|
|
|
|
static angle_t PointToPseudoAngle(double x, double y);
|
2017-03-24 21:04:07 +00:00
|
|
|
static angle_t AngleToPseudo(angle_t ang);
|
2016-11-14 13:19:48 +00:00
|
|
|
};
|