From a733de618fd71c1503ac87893901d4ce5ea279af Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 8 Dec 2021 19:17:45 +0100 Subject: [PATCH] - new section WIP. --- source/CMakeLists.txt | 1 + source/core/maploader.cpp | 2 + source/core/rendering/hw_sections2.cpp | 93 ++++++++++++++++++++++++++ source/core/rendering/hw_sections2.h | 31 +++++++++ source/core/savegamehelp.cpp | 2 + source/games/blood/src/db.cpp | 2 + 6 files changed, 131 insertions(+) create mode 100644 source/core/rendering/hw_sections2.cpp create mode 100644 source/core/rendering/hw_sections2.h diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 415b17b6a..b966b6400 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -1066,6 +1066,7 @@ set (PCH_SOURCES core/rendering/hw_voxels.cpp core/rendering/hw_palmanager.cpp core/rendering/hw_sections.cpp + core/rendering/hw_sections2.cpp core/rendering/scene/hw_clipper.cpp core/rendering/scene/hw_walls.cpp core/rendering/scene/hw_flats.cpp diff --git a/source/core/maploader.cpp b/source/core/maploader.cpp index 93aaa32e2..62080f974 100644 --- a/source/core/maploader.cpp +++ b/source/core/maploader.cpp @@ -47,6 +47,7 @@ #include "render.h" #include "hw_sections.h" #include "interpolate.h" +#include "hw_sections2.h" #include "games/blood/src/mapstructs.h" extern BitArray clipsectormap; @@ -489,6 +490,7 @@ void engineLoadBoard(const char* filename, int flags, vec3_t* pos, int16_t* ang, G_LoadMapHack(filename, md4, sprites); setWallSectors(); hw_BuildSections(); + hw_CreateSections2(); sectorGeometry.SetSize(Sections.Size()); diff --git a/source/core/rendering/hw_sections2.cpp b/source/core/rendering/hw_sections2.cpp new file mode 100644 index 000000000..3008aa686 --- /dev/null +++ b/source/core/rendering/hw_sections2.cpp @@ -0,0 +1,93 @@ +#include "build.h" +#include "hw_sections2.h" + +int GetWindingOrder(TArray& walls) +{ + int check = -1; + int minY = INT_MAX; + int minXAtMinY = INT_MAX; + for (unsigned i = 0; i < walls.Size(); i++) + { + auto wal = &wall[walls[i]]; + int y = wal->y; + + if (y < minY) + { + minY = y; + minXAtMinY = INT_MAX, // must reset this if a new y is picked. + check = i; + } + else if (y == minY && wal->x < minXAtMinY) + { + minXAtMinY = wal->x; + } + } + + unsigned prev = check == 0? walls.Size() - 1 : check - 1; + unsigned next = check == walls.Size()? 0 : check + 1; + + DVector2 a = { (double)wall[walls[prev]].x, (double)wall[walls[prev]].y }; + DVector2 b = { (double)wall[walls[check]].x, (double)wall[walls[check]].y }; + DVector2 c = { (double)wall[walls[next]].x, (double)wall[walls[next]].y }; + + return (b.X * c.Y + a.X * b.Y + a.Y * c.X) - (a.Y * b.X + b.Y * c.X + a.X * c.Y) > 0; +} + +struct loopcollect +{ + TArray> loops; + bool bugged; +}; + +void CollectLoops(TArray& sectors) +{ + BitArray visited; + visited.Resize(numwalls); + visited.Zero(); + + TArray thisloop; + + int count = 0; + for (int i = 0; i < numsectors; i++) + { + int first = sector[i].wallptr; + int last = first + sector[i].wallnum; + sectors.Reserve(1); + sectors.Last().bugged = false; + + for (int w = first; w < last; w++) + { + if (visited[w]) continue; + thisloop.Clear(); + thisloop.Push(w); + + for (int ww = wall[w].point2; ww != w; ww = wall[ww].point2) + { + if (ww < first || ww >= last) + { + Printf("Found wall %d outside sector %d in a loop\n", ww, i); + sectors.Last().bugged = true; + break; + } + if (visited[ww]) + { + Printf("Wall %d's point2 links to already visited wall %d\n", w, ww); + sectors.Last().bugged = true; + break; + } + thisloop.Push(ww); + visited.Set(ww); + } + count ++; + sectors.Last().loops.Push(std::move(thisloop)); + } + } + Printf("Created %d loops from %d sectors, %d walls\n", count, numsectors, numwalls); +} + + +void hw_CreateSections2() +{ + TArray sectors; + CollectLoops(sectors); +} diff --git a/source/core/rendering/hw_sections2.h b/source/core/rendering/hw_sections2.h new file mode 100644 index 000000000..ba6462f01 --- /dev/null +++ b/source/core/rendering/hw_sections2.h @@ -0,0 +1,31 @@ + +struct Section2; + +struct Section2Wall +{ + // references to game data + vec3_t* v1; // points to start vertex in wall[] + vec3_t* v2; // points to end vertex in wall[] + walltype* wall; // points to the actual wall this belongs to - this is NOT necessarily the same as v1 and can be null. + + // references to section data + Section2Wall* backside; // points to this wall's back side + Section2* frontsection; + Section2* backsection; // if this is null the wall is one-sided +}; + +struct Loop +{ + TArrayView walls; + bool unclosed; +}; + +struct Section2 +{ + sectortype* sector; + // this uses a memory arena for storage, so use TArrayView instead of TArray + TArrayView walls; + TArrayView loops; +}; + +void hw_CreateSections2(); \ No newline at end of file diff --git a/source/core/savegamehelp.cpp b/source/core/savegamehelp.cpp index d13cb308f..88df52bf2 100644 --- a/source/core/savegamehelp.cpp +++ b/source/core/savegamehelp.cpp @@ -63,6 +63,7 @@ #include "ns.h" #include "serialize_obj.h" #include "games/blood/src/mapstructs.h" +#include "hw_sections2.h" #include @@ -725,6 +726,7 @@ void SerializeMap(FSerializer& arc) { setWallSectors(); hw_BuildSections(); + hw_CreateSections2(); sectorGeometry.SetSize(Sections.Size()); } } diff --git a/source/games/blood/src/db.cpp b/source/games/blood/src/db.cpp index b0ff35028..1c7a06284 100644 --- a/source/games/blood/src/db.cpp +++ b/source/games/blood/src/db.cpp @@ -33,6 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "gamefuncs.h" #include "hw_sections.h" #include "sectorgeometry.h" +#include "hw_sections2.h" #include "blood.h" @@ -728,6 +729,7 @@ void dbLoadMap(const char* pPath, int* pX, int* pY, int* pZ, short* pAngle, sect setWallSectors(); hw_BuildSections(); + hw_CreateSections2(); sectorGeometry.SetSize(Sections.Size()); wallbackup = wall; sectorbackup = sector;