2021-05-02 22:04:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "build.h"
|
|
|
|
|
2022-01-09 10:53:32 +00:00
|
|
|
enum ESectionFlag
|
2021-12-15 11:01:14 +00:00
|
|
|
{
|
|
|
|
Unclosed = 1, // at least one unclosed loop
|
|
|
|
Dumped = 2, // builder was unable to properly construct, so content may not be usable for triangulator.
|
|
|
|
BadWinding = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-05-02 22:04:36 +00:00
|
|
|
struct SectionLine
|
|
|
|
{
|
2021-12-05 20:18:55 +00:00
|
|
|
int section;
|
|
|
|
int partnersection;
|
|
|
|
int startpoint;
|
|
|
|
int endpoint;
|
|
|
|
int wall;
|
|
|
|
int partner;
|
2021-12-15 10:07:46 +00:00
|
|
|
|
2022-08-19 17:01:21 +00:00
|
|
|
DVector2 v1() const { return ::wall[startpoint].pos; }
|
|
|
|
DVector2 v2() const { return ::wall[endpoint].pos; }
|
2021-12-15 10:07:46 +00:00
|
|
|
walltype* wallp() const { return &::wall[wall]; }
|
|
|
|
SectionLine* partnerLine() const;
|
|
|
|
|
2021-05-02 22:04:36 +00:00
|
|
|
};
|
2021-12-15 10:07:46 +00:00
|
|
|
extern TArray<SectionLine> sectionLines;
|
|
|
|
|
|
|
|
inline SectionLine* SectionLine::partnerLine() const
|
|
|
|
{
|
|
|
|
return partner == -1 ? nullptr : §ionLines[partner];
|
|
|
|
}
|
2021-05-02 22:04:36 +00:00
|
|
|
|
2021-12-15 11:01:14 +00:00
|
|
|
struct Section2Loop
|
|
|
|
{
|
|
|
|
TArrayView<int> walls;
|
|
|
|
};
|
|
|
|
|
2021-05-02 22:04:36 +00:00
|
|
|
struct Section
|
|
|
|
{
|
2021-12-15 11:01:14 +00:00
|
|
|
uint8_t flags;
|
|
|
|
uint8_t dirty;
|
|
|
|
uint8_t geomflags;
|
|
|
|
unsigned index;
|
2021-05-02 22:04:36 +00:00
|
|
|
int sector;
|
2021-12-15 11:01:14 +00:00
|
|
|
// this uses a memory arena for storage, so use TArrayView instead of TArray
|
|
|
|
TArrayView<int> lines;
|
|
|
|
TArrayView<Section2Loop> loops;
|
2021-05-02 22:04:36 +00:00
|
|
|
};
|
|
|
|
|
2021-12-15 12:08:09 +00:00
|
|
|
extern TArray<Section> sections;
|
2022-02-20 12:14:39 +00:00
|
|
|
extern TArrayView<TArrayView<int>> sectionsPerSector;
|
2021-05-02 22:04:36 +00:00
|
|
|
|
2021-12-16 05:10:59 +00:00
|
|
|
void hw_CreateSections();
|
2022-08-19 17:01:21 +00:00
|
|
|
using Outline = TArray<TArray<DVector2>>;
|
2021-12-15 12:05:13 +00:00
|
|
|
using Point = std::pair<float, float>;
|
|
|
|
using FOutline = std::vector<std::vector<Point>>; // Data type was chosen so it can be passed directly into Earcut.
|
|
|
|
Outline BuildOutline(Section* section);
|
2021-05-02 22:04:36 +00:00
|
|
|
|
2021-05-03 15:48:35 +00:00
|
|
|
void hw_SetSplitSector(int sector, int startpos, int endpos);
|
2021-05-23 15:06:47 +00:00
|
|
|
void hw_ClearSplitSector();
|