From 0e6242626c67ca196349c7c13d11fda58454b823 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 15 Dec 2021 23:16:46 +0100 Subject: [PATCH] - removed the viewpoint from the clipper as we don't need this. ClipWindow will go elsewhere, it has no place here. --- .../core/rendering/scene/hw_bunchdrawer.cpp | 4 +- source/core/rendering/scene/hw_clipper.h | 46 ------------------- source/core/rendering/scene/hw_drawinfo.cpp | 1 - 3 files changed, 2 insertions(+), 49 deletions(-) diff --git a/source/core/rendering/scene/hw_bunchdrawer.cpp b/source/core/rendering/scene/hw_bunchdrawer.cpp index 98dfa77cd..9d92fe2f0 100644 --- a/source/core/rendering/scene/hw_bunchdrawer.cpp +++ b/source/core/rendering/scene/hw_bunchdrawer.cpp @@ -64,7 +64,6 @@ void BunchDrawer::Init(HWDrawInfo *_di, Clipper* c, vec2_t& view, binangle a1, b viewy = view.y * -(1/ 16.f); iview = view; StartScene(); - clipper->SetViewpoint(view); gcosang = bamang(di->Viewpoint.RotAngle).fcos(); gsinang = bamang(di->Viewpoint.RotAngle).fsin(); @@ -72,7 +71,8 @@ void BunchDrawer::Init(HWDrawInfo *_di, Clipper* c, vec2_t& view, binangle a1, b for (int i = 0; i < numwalls; i++) { // Precalculate the clip angles to avoid doing this repeatedly during level traversal. - wall[i].clipangle = clipper->PointToAngle(wall[i].pos); + auto vv = wall[i].pos - view; + wall[i].clipangle = bvectangbam(vv.x, vv.y); } memset(sectionstartang.Data(), -1, sectionstartang.Size() * sizeof(sectionstartang[0])); memset(sectionendang.Data(), -1, sectionendang.Size() * sizeof(sectionendang[0])); diff --git a/source/core/rendering/scene/hw_clipper.h b/source/core/rendering/scene/hw_clipper.h index ac0142319..ca991b9b8 100644 --- a/source/core/rendering/scene/hw_clipper.h +++ b/source/core/rendering/scene/hw_clipper.h @@ -8,38 +8,6 @@ #include "binaryangle.h" #include "intvec.h" -class ClipWindow -{ - FVector2 left, right; // left and right edge of the window in 2D - FAngle leftang, rightang; // view angles of the window edges - Plane planes[2]; // top and bottom plane of the window - - // The inside is behind the plane defined by p1 - p4, the sides are defined by p0, pn and pn+1 respectively. - // p1 is lower left, p2 upper left, p3 upper right and p4 lower right. - void build(const FVector3& p0, const FVector3& p1, const FVector3& p2, const FVector3& p3, const FVector3& p4, DAngle la, DAngle ra) - { - left = p1.XY(); - right = p4.XY(); - planes[0].Init(p0, p2, p3); // top plane - must point inside. - planes[1].Init(p0, p4, p1); // bottom plane - must point inside. - } - - bool polyInWindow(const TArrayView& points) - { - for (auto& plane : planes) - { - for (auto& point : points) - { - if (!plane.PointOnSide(point)) goto nextplane; // Too bad that C++ still has no option to continue an outer loop from here... - } - return false; - nextplane:; - } - return true; - } -}; - - class ClipNode { friend class Clipper; @@ -61,7 +29,6 @@ class Clipper ClipNode * clipnodes = nullptr; ClipNode * cliphead = nullptr; - vec2_t viewpoint; void RemoveRange(ClipNode* cn); binangle visibleStart, visibleEnd; @@ -104,11 +71,6 @@ private: public: - void SetViewpoint(const vec2_t &vp) - { - viewpoint = vp; - } - void SetVisibleRange(angle_t a1, angle_t a2) { if (a2 != 0xffffffff) @@ -134,14 +96,6 @@ public: } void DumpClipper(); - - binangle PointToAngle(const vec2_t& pos) - { - vec2_t vec = pos - viewpoint; - return bvectangbam(vec.x, vec.y); - } - - }; #endif diff --git a/source/core/rendering/scene/hw_drawinfo.cpp b/source/core/rendering/scene/hw_drawinfo.cpp index a483cf5bf..84f152062 100644 --- a/source/core/rendering/scene/hw_drawinfo.cpp +++ b/source/core/rendering/scene/hw_drawinfo.cpp @@ -146,7 +146,6 @@ void HWDrawInfo::StartScene(FRenderViewpoint& parentvp, HWViewpointUniforms* uni VPUniforms.mShadowmapFilter = gl_shadowmap_filter; } vec2_t view = { int(Viewpoint.Pos.X * 16), int(Viewpoint.Pos.Y * -16) }; - mClipper->SetViewpoint(view); ClearBuffers();