2016-09-14 18:01:13 +00:00
//
//---------------------------------------------------------------------------
//
// Copyright(C) 2005-2016 Christoph Oelckers
// All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see http://www.gnu.org/licenses/
//
//--------------------------------------------------------------------------
//
2013-06-23 07:49:34 +00:00
/*
* * gl_setup . cpp
2018-04-02 07:27:40 +00:00
* * Initializes the data structures required by the hardware renderer to handle
* * render hacks and optimization .
2013-06-23 07:49:34 +00:00
* *
2016-09-14 18:01:13 +00:00
* */
2013-06-23 07:49:34 +00:00
# include "doomtype.h"
# include "p_local.h"
2016-02-16 21:01:04 +00:00
# include "p_spec.h"
2013-06-23 07:49:34 +00:00
# include "p_lnspec.h"
# include "c_dispatch.h"
# include "r_sky.h"
# include "p_setup.h"
2017-01-08 17:45:30 +00:00
# include "g_levellocals.h"
2018-12-28 14:51:32 +00:00
# include "maploader.h"
2013-06-23 07:49:34 +00:00
//==========================================================================
//
2018-04-02 06:25:07 +00:00
// Map section generation
// Map sections are physically separated parts of the map.
// If the player is in section A, any map part in other sections can
// often be quickly discarded to improve performance.
2013-06-23 07:49:34 +00:00
//
//==========================================================================
2018-04-02 06:25:07 +00:00
struct MapSectionGenerator
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
struct cvertex_t
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
double X , Y ;
operator int ( ) const { return xs_FloorToInt ( X ) + 65536 * xs_FloorToInt ( Y ) ; }
bool operator ! = ( const cvertex_t & other ) const { return fabs ( X - other . X ) > = EQUAL_EPSILON | | fabs ( Y - other . Y ) > = EQUAL_EPSILON ; }
cvertex_t & operator = ( const vertex_t * v ) { X = v - > fX ( ) ; Y = v - > fY ( ) ; return * this ; }
} ;
2018-12-28 14:51:32 +00:00
MapSectionGenerator ( FLevelLocals * l )
{
Level = l ;
}
2018-04-02 06:25:07 +00:00
typedef TMap < cvertex_t , int > FSectionVertexMap ;
TArray < subsector_t * > MapSectionCollector ;
2018-12-28 14:51:32 +00:00
FLevelLocals * Level ;
2013-06-23 07:49:34 +00:00
2018-04-02 06:25:07 +00:00
//==========================================================================
//
//
//
//==========================================================================
void DoSetMapSection ( subsector_t * sub , int num )
{
MapSectionCollector . Resize ( 1 ) ;
MapSectionCollector [ 0 ] = sub ;
sub - > mapsection = num ;
for ( unsigned a = 0 ; a < MapSectionCollector . Size ( ) ; a + + )
{
sub = MapSectionCollector [ a ] ;
for ( uint32_t i = 0 ; i < sub - > numlines ; i + + )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
seg_t * seg = sub - > firstline + i ;
2016-07-27 14:27:40 +00:00
2018-04-02 06:25:07 +00:00
if ( seg - > PartnerSeg )
2016-07-27 14:27:40 +00:00
{
2018-04-02 06:25:07 +00:00
subsector_t * sub2 = seg - > PartnerSeg - > Subsector ;
if ( sub2 - > mapsection ! = num )
{
assert ( sub2 - > mapsection = = 0 ) ;
sub2 - > mapsection = num ;
MapSectionCollector . Push ( sub2 ) ;
}
2016-07-27 14:27:40 +00:00
}
2013-06-23 07:49:34 +00:00
}
}
2018-04-02 06:25:07 +00:00
MapSectionCollector . Clear ( ) ;
2013-06-23 07:49:34 +00:00
}
2018-04-02 06:25:07 +00:00
//==========================================================================
//
// Merge sections. This is needed in case the map contains errors
// like overlapping lines resulting in abnormal subsectors.
//
// This function ensures that any vertex position can only be in one section.
//
//==========================================================================
2013-06-23 07:49:34 +00:00
2018-04-02 06:25:07 +00:00
int MergeMapSections ( int num )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
FSectionVertexMap vmap ;
FSectionVertexMap : : Pair * pair ;
TArray < int > sectmap ;
TArray < bool > sectvalid ;
sectmap . Resize ( num ) ;
sectvalid . Resize ( num ) ;
for ( int i = 0 ; i < num ; i + + )
{
sectmap [ i ] = - 1 ;
sectvalid [ i ] = true ;
}
int mergecount = 1 ;
2013-06-23 07:49:34 +00:00
2018-04-02 06:25:07 +00:00
cvertex_t vt ;
2013-06-23 07:49:34 +00:00
2018-04-02 06:25:07 +00:00
// first step: Set mapsection for all vertex positions.
2018-12-28 14:51:32 +00:00
for ( auto & seg : Level - > segs )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
int section = seg . Subsector - > mapsection ;
for ( int j = 0 ; j < 2 ; j + + )
{
vt = j = = 0 ? seg . v1 : seg . v2 ;
vmap [ vt ] = section ;
}
2013-06-23 07:49:34 +00:00
}
2018-04-02 06:25:07 +00:00
// second step: Check if any seg references more than one mapsection, either by subsector or by vertex
2018-12-28 14:51:32 +00:00
for ( auto & seg : Level - > segs )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
int section = seg . Subsector - > mapsection ;
for ( int j = 0 ; j < 2 ; j + + )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
vt = j = = 0 ? seg . v1 : seg . v2 ;
int vsection = vmap [ vt ] ;
if ( vsection ! = section )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
// These 2 sections should be merged
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2018-04-02 06:25:07 +00:00
{
if ( sub . mapsection = = vsection ) sub . mapsection = section ;
}
FSectionVertexMap : : Iterator it ( vmap ) ;
while ( it . NextPair ( pair ) )
{
if ( pair - > Value = = vsection ) pair - > Value = section ;
}
sectvalid [ vsection - 1 ] = false ;
2013-06-23 07:49:34 +00:00
}
}
}
2018-04-02 06:25:07 +00:00
for ( int i = 0 ; i < num ; i + + )
{
if ( sectvalid [ i ] ) sectmap [ i ] = mergecount + + ;
}
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2018-04-02 06:25:07 +00:00
{
sub . mapsection = sectmap [ sub . mapsection - 1 ] ;
assert ( sub . mapsection ! = - 1 ) ;
}
return mergecount - 1 ;
2013-06-23 07:49:34 +00:00
}
2018-04-02 06:25:07 +00:00
//==========================================================================
//
//
//
//==========================================================================
2013-06-23 07:49:34 +00:00
2018-04-02 06:25:07 +00:00
void SetMapSections ( )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
bool set ;
int num = 0 ;
do
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
set = false ;
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2013-06-23 07:49:34 +00:00
{
2018-04-02 06:25:07 +00:00
if ( sub . mapsection = = 0 )
{
num + + ;
DoSetMapSection ( & sub , num ) ;
set = true ;
break ;
}
2013-06-23 07:49:34 +00:00
}
}
2018-04-02 06:25:07 +00:00
while ( set ) ;
num = MergeMapSections ( num ) ;
2018-12-28 14:51:32 +00:00
Level - > NumMapSections = num ;
2018-04-02 06:25:07 +00:00
# ifdef DEBUG
Printf ( " %d map sections found \n " , num ) ;
# endif
2013-06-23 07:49:34 +00:00
}
2018-04-02 06:25:07 +00:00
} ;
2013-06-23 07:49:34 +00:00
//==========================================================================
//
// prepare subsectors for GL rendering
// - analyze rendering hacks using open sectors
// - assign a render sector (for self referencing sectors)
// - calculate a bounding box
//
//==========================================================================
static void SpreadHackedFlag ( subsector_t * sub )
{
// The subsector pointer hasn't been set yet!
2017-03-09 19:19:55 +00:00
for ( uint32_t i = 0 ; i < sub - > numlines ; i + + )
2013-06-23 07:49:34 +00:00
{
seg_t * seg = sub - > firstline + i ;
if ( seg - > PartnerSeg )
{
subsector_t * sub2 = seg - > PartnerSeg - > Subsector ;
if ( ! ( sub2 - > hacked & 1 ) & & sub2 - > render_sector = = sub - > render_sector )
{
sub2 - > hacked | = 1 ;
2014-08-31 21:01:53 +00:00
sub - > hacked & = ~ 4 ;
2013-06-23 07:49:34 +00:00
SpreadHackedFlag ( sub2 ) ;
}
}
}
}
//==========================================================================
//
//
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : PrepareSectorData ( )
2013-06-23 07:49:34 +00:00
{
TArray < subsector_t * > undetermined ;
// now group the subsectors by sector
2018-12-28 14:51:32 +00:00
Level - > subsectorbuffer . Resize ( Level - > subsectors . Size ( ) ) ;
2013-06-23 07:49:34 +00:00
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2013-06-23 07:49:34 +00:00
{
2018-11-04 15:47:45 +00:00
sub . render_sector - > subsectorcount + + ;
2013-06-23 07:49:34 +00:00
}
2018-12-28 14:51:32 +00:00
auto subsectorbuffer = Level - > subsectorbuffer . Data ( ) ;
for ( auto & sec : Level - > sectors )
2013-06-23 07:49:34 +00:00
{
2017-01-07 18:32:24 +00:00
sec . subsectors = subsectorbuffer ;
subsectorbuffer + = sec . subsectorcount ;
sec . subsectorcount = 0 ;
2013-06-23 07:49:34 +00:00
}
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2013-06-23 07:49:34 +00:00
{
2017-03-16 23:22:52 +00:00
sub . render_sector - > subsectors [ sub . render_sector - > subsectorcount + + ] = & sub ;
2013-06-23 07:49:34 +00:00
}
// marks all malformed subsectors so rendering tricks using them can be handled more easily
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2013-06-23 07:49:34 +00:00
{
2017-03-16 23:22:52 +00:00
if ( sub . sector = = sub . render_sector )
2013-06-23 07:49:34 +00:00
{
2017-03-16 23:22:52 +00:00
seg_t * seg = sub . firstline ;
for ( uint32_t j = 0 ; j < sub . numlines ; j + + )
2013-06-23 07:49:34 +00:00
{
2017-03-16 23:22:52 +00:00
if ( ! ( sub . hacked & 1 ) & & seg [ j ] . linedef = = 0 & &
2013-06-23 07:49:34 +00:00
seg [ j ] . PartnerSeg ! = NULL & &
2017-03-16 23:22:52 +00:00
sub . render_sector ! = seg [ j ] . PartnerSeg - > Subsector - > render_sector )
2013-06-23 07:49:34 +00:00
{
2016-08-28 08:11:09 +00:00
DPrintf ( DMSG_NOTIFY , " Found hack: (%f,%f) (%f,%f) \n " , seg [ j ] . v1 - > fX ( ) , seg [ j ] . v1 - > fY ( ) , seg [ j ] . v2 - > fX ( ) , seg [ j ] . v2 - > fY ( ) ) ;
2017-03-16 23:22:52 +00:00
sub . hacked | = 5 ;
SpreadHackedFlag ( & sub ) ;
2013-06-23 07:49:34 +00:00
}
2017-03-16 23:22:52 +00:00
if ( seg [ j ] . PartnerSeg = = NULL ) sub . hacked | = 2 ; // used for quick termination checks
2013-06-23 07:49:34 +00:00
}
}
}
2018-12-28 14:51:32 +00:00
MapSectionGenerator msg ( Level ) ;
2018-04-02 06:25:07 +00:00
msg . SetMapSections ( ) ;
2013-06-23 07:49:34 +00:00
}
//==========================================================================
//
// Some processing for transparent door hacks using a floor raised by 1 map unit
// - This will be used to lower the floor of such sectors by one map unit
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : PrepareTransparentDoors ( sector_t * sector )
2013-06-23 07:49:34 +00:00
{
bool solidwall = false ;
2017-01-05 13:45:15 +00:00
unsigned int notextures = 0 ;
unsigned int nobtextures = 0 ;
unsigned int selfref = 0 ;
2013-06-23 07:49:34 +00:00
sector_t * nextsec = NULL ;
if ( sector - > subsectorcount = = 0 ) return ;
sector - > transdoorheight = sector - > GetPlaneTexZ ( sector_t : : floor ) ;
2016-03-29 11:45:50 +00:00
sector - > transdoor = ! ( sector - > e - > XFloor . ffloors . Size ( ) | | sector - > heightsec | | sector - > floorplane . isSlope ( ) ) ;
2013-06-23 07:49:34 +00:00
if ( sector - > transdoor )
{
2017-01-02 20:40:52 +00:00
for ( auto ln : sector - > Lines )
2013-06-23 07:49:34 +00:00
{
2017-01-02 20:40:52 +00:00
if ( ln - > frontsector = = ln - > backsector )
2013-06-23 07:49:34 +00:00
{
selfref + + ;
continue ;
}
2017-01-02 20:40:52 +00:00
sector_t * sec = getNextSector ( ln , sector ) ;
2013-06-23 07:49:34 +00:00
if ( sec = = NULL )
{
solidwall = true ;
continue ;
}
else
{
nextsec = sec ;
2017-01-02 20:40:52 +00:00
int side = ln - > sidedef [ 0 ] - > sector = = sec ;
2013-06-23 07:49:34 +00:00
2016-06-29 10:19:00 +00:00
if ( sector - > GetPlaneTexZ ( sector_t : : floor ) ! = sec - > GetPlaneTexZ ( sector_t : : floor ) + 1. | | sec - > floorplane . isSlope ( ) )
2013-06-23 07:49:34 +00:00
{
sector - > transdoor = false ;
return ;
}
2017-01-02 20:40:52 +00:00
if ( ! ln - > sidedef [ 1 - side ] - > GetTexture ( side_t : : top ) . isValid ( ) ) notextures + + ;
if ( ! ln - > sidedef [ 1 - side ] - > GetTexture ( side_t : : bottom ) . isValid ( ) ) nobtextures + + ;
2013-06-23 07:49:34 +00:00
}
}
if ( sector - > GetTexture ( sector_t : : ceiling ) = = skyflatnum )
{
sector - > transdoor = false ;
return ;
}
2017-01-02 20:40:52 +00:00
if ( selfref + nobtextures ! = sector - > Lines . Size ( ) )
2013-06-23 07:49:34 +00:00
{
sector - > transdoor = false ;
}
2017-01-02 20:40:52 +00:00
if ( selfref + notextures ! = sector - > Lines . Size ( ) )
2013-06-23 07:49:34 +00:00
{
// This is a crude attempt to fix an incorrect transparent door effect I found in some
// WolfenDoom maps but considering the amount of code required to handle it I left it in.
// Do this only if the sector only contains one-sided walls or ones with no lower texture.
if ( solidwall )
{
2017-01-02 20:40:52 +00:00
if ( solidwall + nobtextures + selfref = = sector - > Lines . Size ( ) & & nextsec )
2013-06-23 07:49:34 +00:00
{
sector - > heightsec = nextsec ;
sector - > heightsec - > MoreFlags = 0 ;
}
sector - > transdoor = false ;
}
}
}
}
//==========================================================================
//
//
//
//==========================================================================
static void AddToVertex ( const sector_t * sec , TArray < int > & list )
{
2017-01-07 19:02:25 +00:00
int secno = sec - > Index ( ) ;
2013-06-23 07:49:34 +00:00
for ( unsigned i = 0 ; i < list . Size ( ) ; i + + )
{
if ( list [ i ] = = secno ) return ;
}
list . Push ( secno ) ;
}
//==========================================================================
//
// Attach sectors to vertices - used to generate vertex height lists
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : InitVertexData ( )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
TArray < TArray < int > > vt_sectorlists ( Level - > vertexes . Size ( ) , true ) ;
2013-06-23 07:49:34 +00:00
2018-12-28 14:51:32 +00:00
for ( auto & line : Level - > lines )
2013-06-23 07:49:34 +00:00
{
2017-01-14 11:35:23 +00:00
for ( int j = 0 ; j < 2 ; + + j )
2013-06-23 07:49:34 +00:00
{
2017-01-08 13:39:16 +00:00
vertex_t * v = j = = 0 ? line . v1 : line . v2 ;
2013-06-23 07:49:34 +00:00
2017-01-14 11:35:23 +00:00
for ( int k = 0 ; k < 2 ; + + k )
2013-06-23 07:49:34 +00:00
{
2017-01-08 13:39:16 +00:00
sector_t * sec = k = = 0 ? line . frontsector : line . backsector ;
2013-06-23 07:49:34 +00:00
if ( sec )
{
extsector_t : : xfloor & x = sec - > e - > XFloor ;
2017-01-08 23:46:16 +00:00
AddToVertex ( sec , vt_sectorlists [ v - > Index ( ) ] ) ;
if ( sec - > heightsec ) AddToVertex ( sec - > heightsec , vt_sectorlists [ v - > Index ( ) ] ) ;
2013-06-23 07:49:34 +00:00
}
}
}
}
2018-12-28 14:51:32 +00:00
for ( unsigned i = 0 ; i < Level - > vertexes . Size ( ) ; + + i )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
auto & vert = Level - > vertexes [ i ] ;
2013-06-23 07:49:34 +00:00
int cnt = vt_sectorlists [ i ] . Size ( ) ;
2017-01-08 23:46:16 +00:00
vert . dirty = true ;
vert . numheights = 0 ;
2013-06-23 07:49:34 +00:00
if ( cnt > 1 )
{
2017-01-08 23:46:16 +00:00
vert . numsectors = cnt ;
vert . sectors = new sector_t * [ cnt ] ;
vert . heightlist = new float [ cnt * 2 ] ;
2013-06-23 07:49:34 +00:00
for ( int j = 0 ; j < cnt ; j + + )
{
2018-12-28 14:51:32 +00:00
vert . sectors [ j ] = & Level - > sectors [ vt_sectorlists [ i ] [ j ] ] ;
2013-06-23 07:49:34 +00:00
}
}
else
{
2017-01-08 23:46:16 +00:00
vert . numsectors = 0 ;
2013-06-23 07:49:34 +00:00
}
}
}
//==========================================================================
//
//
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : GetSideVertices ( int sdnum , DVector2 * v1 , DVector2 * v2 )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
line_t * ln = Level - > sides [ sdnum ] . linedef ;
if ( ln - > sidedef [ 0 ] = = & Level - > sides [ sdnum ] )
2013-06-23 07:49:34 +00:00
{
2016-04-03 09:40:14 +00:00
* v1 = ln - > v1 - > fPos ( ) ;
* v2 = ln - > v2 - > fPos ( ) ;
2013-06-23 07:49:34 +00:00
}
else
{
2016-04-03 09:40:14 +00:00
* v2 = ln - > v1 - > fPos ( ) ;
* v1 = ln - > v2 - > fPos ( ) ;
2013-06-23 07:49:34 +00:00
}
}
2016-04-11 08:55:09 +00:00
static int segcmp ( const void * a , const void * b )
2013-06-23 07:49:34 +00:00
{
seg_t * A = * ( seg_t * * ) a ;
seg_t * B = * ( seg_t * * ) b ;
return xs_RoundToInt ( FRACUNIT * ( A - > sidefrac - B - > sidefrac ) ) ;
}
//==========================================================================
//
// Group segs to sidedefs
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : PrepareSegs ( )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
auto numsides = Level - > sides . Size ( ) ;
2018-12-17 17:28:04 +00:00
TArray < int > segcount ( numsides , true ) ;
2013-06-23 07:49:34 +00:00
int realsegs = 0 ;
// count the segs
2018-12-17 17:28:04 +00:00
memset ( segcount . Data ( ) , 0 , numsides * sizeof ( int ) ) ;
2013-06-23 07:49:34 +00:00
2018-12-28 14:51:32 +00:00
for ( auto & seg : Level - > segs )
2013-06-23 07:49:34 +00:00
{
2018-12-17 17:28:04 +00:00
if ( seg . sidedef = = nullptr ) continue ; // miniseg
2017-03-16 20:33:13 +00:00
int sidenum = seg . sidedef - > Index ( ) ;
2013-06-23 07:49:34 +00:00
realsegs + + ;
segcount [ sidenum ] + + ;
2017-03-16 20:33:13 +00:00
DVector2 sidestart , sideend , segend = seg . v2 - > fPos ( ) ;
2013-06-23 07:49:34 +00:00
GetSideVertices ( sidenum , & sidestart , & sideend ) ;
sideend - = sidestart ;
segend - = sidestart ;
2017-03-16 20:33:13 +00:00
seg . sidefrac = float ( segend . Length ( ) / sideend . Length ( ) ) ;
2013-06-23 07:49:34 +00:00
}
// allocate memory
2018-12-28 14:51:32 +00:00
Level - > segbuffer . Resize ( realsegs ) ;
Level - > sides [ 0 ] . segs = Level - > segbuffer . Data ( ) ;
Level - > sides [ 0 ] . numsegs = 0 ;
2013-06-23 07:49:34 +00:00
2017-01-14 11:35:23 +00:00
for ( unsigned i = 1 ; i < numsides ; i + + )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
Level - > sides [ i ] . segs = Level - > sides [ i - 1 ] . segs + segcount [ i - 1 ] ;
Level - > sides [ i ] . numsegs = 0 ;
2013-06-23 07:49:34 +00:00
}
// assign the segs
2018-12-28 14:51:32 +00:00
for ( auto & seg : Level - > segs )
2013-06-23 07:49:34 +00:00
{
2017-03-16 20:33:13 +00:00
if ( seg . sidedef ! = NULL ) seg . sidedef - > segs [ seg . sidedef - > numsegs + + ] = & seg ;
2013-06-23 07:49:34 +00:00
}
// sort the segs
2017-01-14 11:35:23 +00:00
for ( unsigned i = 0 ; i < numsides ; i + + )
2013-06-23 07:49:34 +00:00
{
2018-12-28 14:51:32 +00:00
if ( Level - > sides [ i ] . numsegs > 1 ) qsort ( Level - > sides [ i ] . segs , Level - > sides [ i ] . numsegs , sizeof ( seg_t * ) , segcmp ) ;
2013-06-23 07:49:34 +00:00
}
}
//==========================================================================
//
// Initialize the level data for the GL renderer
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : InitRenderInfo ( )
2013-06-23 07:49:34 +00:00
{
PrepareSegs ( ) ;
PrepareSectorData ( ) ;
InitVertexData ( ) ;
2018-12-28 14:51:32 +00:00
TArray < int > checkmap ( Level - > vertexes . Size ( ) ) ;
memset ( checkmap . Data ( ) , - 1 , sizeof ( int ) * Level - > vertexes . Size ( ) ) ;
for ( auto & sec : Level - > sectors )
2013-06-23 07:49:34 +00:00
{
2017-01-07 18:32:24 +00:00
int i = sec . sectornum ;
PrepareTransparentDoors ( & sec ) ;
2014-07-27 15:57:53 +00:00
// This ignores vertices only used for seg splitting because those aren't needed here
2017-01-07 18:32:24 +00:00
for ( auto l : sec . Lines )
2014-07-27 15:57:53 +00:00
{
if ( l - > sidedef [ 0 ] - > Flags & WALLF_POLYOBJ ) continue ; // don't bother with polyobjects
2017-01-08 23:46:16 +00:00
int vtnum1 = l - > v1 - > Index ( ) ;
int vtnum2 = l - > v2 - > Index ( ) ;
2014-07-27 15:57:53 +00:00
2014-07-28 20:23:17 +00:00
if ( checkmap [ vtnum1 ] < i )
2014-07-27 15:57:53 +00:00
{
2014-07-28 20:23:17 +00:00
checkmap [ vtnum1 ] = i ;
2018-12-28 14:51:32 +00:00
sec . e - > vertices . Push ( & Level - > vertexes [ vtnum1 ] ) ;
Level - > vertexes [ vtnum1 ] . dirty = true ;
2014-07-27 15:57:53 +00:00
}
2014-07-28 20:23:17 +00:00
if ( checkmap [ vtnum2 ] < i )
2014-07-27 15:57:53 +00:00
{
2014-07-28 20:23:17 +00:00
checkmap [ vtnum2 ] = i ;
2018-12-28 14:51:32 +00:00
sec . e - > vertices . Push ( & Level - > vertexes [ vtnum2 ] ) ;
Level - > vertexes [ vtnum2 ] . dirty = true ;
2014-07-27 15:57:53 +00:00
}
}
2013-06-23 07:49:34 +00:00
}
}
2018-11-04 15:47:45 +00:00
//==========================================================================
//
// FixMinisegReferences
//
// Sometimes it can happen that two matching minisegs do not have their partner set.
// Fix that here.
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : FixMinisegReferences ( )
2018-11-04 15:47:45 +00:00
{
TArray < seg_t * > bogussegs ;
2018-12-28 14:51:32 +00:00
for ( unsigned i = 0 ; i < Level - > segs . Size ( ) ; i + + )
2018-11-04 15:47:45 +00:00
{
2018-12-28 14:51:32 +00:00
if ( Level - > segs [ i ] . sidedef = = nullptr & & Level - > segs [ i ] . PartnerSeg = = nullptr )
2018-11-04 15:47:45 +00:00
{
2018-12-28 14:51:32 +00:00
bogussegs . Push ( & Level - > segs [ i ] ) ;
2018-11-04 15:47:45 +00:00
}
}
for ( unsigned i = 0 ; i < bogussegs . Size ( ) ; i + + )
{
auto seg1 = bogussegs [ i ] ;
seg_t * pick = nullptr ;
unsigned int picki = - 1 ;
// Try to fix the reference: If there's exactly one other seg in the set which matches as a partner link those two segs together.
for ( unsigned j = i + 1 ; j < bogussegs . Size ( ) ; j + + )
{
auto seg2 = bogussegs [ j ] ;
if ( seg1 - > v1 = = seg2 - > v2 & & seg2 - > v1 = = seg1 - > v2 & & seg1 - > Subsector - > render_sector = = seg2 - > Subsector - > render_sector )
{
pick = seg2 ;
picki = j ;
break ;
}
}
if ( pick )
{
DPrintf ( DMSG_NOTIFY , " Linking miniseg pair from (%2.3f, %2.3f) -> (%2.3f, %2.3f) in sector %d \n " , pick - > v2 - > fX ( ) , pick - > v2 - > fY ( ) , pick - > v1 - > fX ( ) , pick - > v1 - > fY ( ) , pick - > frontsector - > Index ( ) ) ;
pick - > PartnerSeg = seg1 ;
seg1 - > PartnerSeg = pick ;
assert ( seg1 - > v1 = = pick - > v2 & & pick - > v1 = = seg1 - > v2 ) ;
bogussegs . Delete ( picki ) ;
bogussegs . Delete ( i ) ;
i - - ;
}
}
}
2013-06-23 07:49:34 +00:00
2018-11-04 15:47:45 +00:00
//==========================================================================
//
// FixHoles
//
// ZDBSP can leave holes in the node tree on extremely detailed maps.
// To help out the triangulator these are filled with dummy subsectors
// so that it can process the area correctly.
//
//==========================================================================
2018-12-28 14:51:32 +00:00
void MapLoader : : FixHoles ( )
2018-11-04 15:47:45 +00:00
{
TArray < seg_t * > bogussegs ;
TArray < TArray < seg_t * > > segloops ;
2018-12-28 14:51:32 +00:00
for ( unsigned i = 0 ; i < Level - > segs . Size ( ) ; i + + )
2018-11-04 15:47:45 +00:00
{
2018-12-28 14:51:32 +00:00
if ( Level - > segs [ i ] . sidedef = = nullptr & & Level - > segs [ i ] . PartnerSeg = = nullptr )
2018-11-04 15:47:45 +00:00
{
2018-12-28 14:51:32 +00:00
bogussegs . Push ( & Level - > segs [ i ] ) ;
2018-11-04 15:47:45 +00:00
}
}
while ( bogussegs . Size ( ) > 0 )
{
segloops . Reserve ( 1 ) ;
auto * segloop = & segloops . Last ( ) ;
seg_t * startseg ;
seg_t * checkseg ;
while ( bogussegs . Size ( ) > 0 )
{
bool foundsome = false ;
if ( segloop - > Size ( ) = = 0 )
{
bogussegs . Pop ( startseg ) ;
segloop - > Push ( startseg ) ;
checkseg = startseg ;
}
for ( unsigned i = 0 ; i < bogussegs . Size ( ) ; i + + )
{
auto seg1 = bogussegs [ i ] ;
if ( seg1 - > v1 = = checkseg - > v2 & & seg1 - > Subsector - > render_sector = = checkseg - > Subsector - > render_sector )
{
foundsome = true ;
segloop - > Push ( seg1 ) ;
bogussegs . Delete ( i ) ;
i - - ;
checkseg = seg1 ;
if ( seg1 - > v2 = = startseg - > v1 )
{
// The loop is complete. Start a new one
segloops . Reserve ( 1 ) ;
segloop = & segloops . Last ( ) ;
}
}
}
if ( ! foundsome )
{
if ( ( * segloop ) [ 0 ] - > v1 ! = segloop - > Last ( ) - > v2 )
{
// There was no connected seg, leaving an unclosed loop.
// Clear this and continue looking.
segloop - > Clear ( ) ;
}
}
}
for ( unsigned i = 0 ; i < segloops . Size ( ) ; i + + )
{
if ( segloops [ i ] . Size ( ) = = 0 )
{
segloops . Delete ( i ) ;
i - - ;
}
}
// Add dummy entries to the level's seg and subsector arrays
if ( segloops . Size ( ) > 0 )
{
// cound the number of segs to add.
unsigned segcount = 0 ;
for ( auto & segloop : segloops )
segcount + = segloop . Size ( ) ;
2018-12-28 14:51:32 +00:00
seg_t * oldsegstartptr = & Level - > segs [ 0 ] ;
subsector_t * oldssstartptr = & Level - > subsectors [ 0 ] ;
2018-11-04 15:47:45 +00:00
2018-12-28 14:51:32 +00:00
unsigned newsegstart = Level - > segs . Reserve ( segcount ) ;
unsigned newssstart = Level - > subsectors . Reserve ( segloops . Size ( ) ) ;
2018-11-04 15:47:45 +00:00
2018-12-28 14:51:32 +00:00
seg_t * newsegstartptr = & Level - > segs [ 0 ] ;
subsector_t * newssstartptr = & Level - > subsectors [ 0 ] ;
2018-11-04 15:47:45 +00:00
// Now fix all references to these in the level data.
// Note that the Index() method does not work here due to the reallocation.
2018-12-28 14:51:32 +00:00
for ( auto & seg : Level - > segs )
2018-11-04 15:47:45 +00:00
{
if ( seg . PartnerSeg ) seg . PartnerSeg = newsegstartptr + ( seg . PartnerSeg - oldsegstartptr ) ;
seg . Subsector = newssstartptr + ( seg . Subsector - oldssstartptr ) ;
}
2018-12-28 14:51:32 +00:00
for ( auto & sub : Level - > subsectors )
2018-11-04 15:47:45 +00:00
{
sub . firstline = newsegstartptr + ( sub . firstline - oldsegstartptr ) ;
}
2018-12-28 14:51:32 +00:00
for ( auto & node : Level - > nodes )
2018-11-04 15:47:45 +00:00
{
// How hideous... :(
for ( auto & p : node . children )
{
auto intp = ( intptr_t ) p ;
if ( intp & 1 )
{
subsector_t * sp = ( subsector_t * ) ( intp - 1 ) ;
sp = newssstartptr + ( sp - oldssstartptr ) ;
intp = intptr_t ( sp ) + 1 ;
p = ( void * ) intp ;
}
}
}
for ( auto & segloop : segloops )
{
for ( auto & seg : segloop )
{
seg = newsegstartptr + ( seg - oldsegstartptr ) ;
}
}
// The seg lists in the sidedefs and the subsector lists in the sectors are not set yet when this gets called.
// Add the new data. This doesn't care about convexity. It is never directly used to generate a primitive.
for ( auto & segloop : segloops )
{
2018-11-06 23:43:11 +00:00
DPrintf ( DMSG_NOTIFY , " Adding dummy subsector for sector %d \n " , segloop [ 0 ] - > Subsector - > render_sector - > Index ( ) ) ;
2018-11-04 15:47:45 +00:00
2018-12-28 14:51:32 +00:00
subsector_t & sub = Level - > subsectors [ newssstart + + ] ;
2018-11-04 15:47:45 +00:00
memset ( & sub , 0 , sizeof ( sub ) ) ;
sub . sector = segloop [ 0 ] - > frontsector ;
sub . render_sector = segloop [ 0 ] - > Subsector - > render_sector ;
sub . numlines = segloop . Size ( ) ;
2018-12-28 14:51:32 +00:00
sub . firstline = & Level - > segs [ newsegstart ] ;
2018-11-04 15:47:45 +00:00
sub . flags = SSECF_HOLE ;
for ( auto otherseg : segloop )
{
2018-11-06 23:43:11 +00:00
DPrintf ( DMSG_NOTIFY , " Adding seg from (%2.3f, %2.3f) -> (%2.3f, %2.3f) \n " , otherseg - > v2 - > fX ( ) , otherseg - > v2 - > fY ( ) , otherseg - > v1 - > fX ( ) , otherseg - > v1 - > fY ( ) ) ;
2018-12-28 14:51:32 +00:00
seg_t & seg = Level - > segs [ newsegstart + + ] ;
2018-11-04 15:47:45 +00:00
memset ( & seg , 0 , sizeof ( seg ) ) ;
seg . v1 = otherseg - > v2 ;
seg . v2 = otherseg - > v1 ;
seg . frontsector = seg . backsector = otherseg - > backsector = otherseg - > frontsector ;
seg . PartnerSeg = otherseg ;
otherseg - > PartnerSeg = & seg ;
seg . Subsector = & sub ;
}
}
}
}
}