2016-03-01 15:47:10 +00:00
|
|
|
// Emacs style mode select -*- C++ -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// $Id:$
|
|
|
|
//
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
//
|
|
|
|
// This source is available for distribution and/or modification
|
|
|
|
// only under the terms of the DOOM Source Code License as
|
|
|
|
// published by id Software. All rights reserved.
|
|
|
|
//
|
|
|
|
// The source is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
// $Log:$
|
|
|
|
//
|
|
|
|
// DESCRIPTION:
|
|
|
|
// Sector utility functions.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "p_spec.h"
|
|
|
|
#include "c_cvars.h"
|
|
|
|
#include "doomstat.h"
|
|
|
|
#include "g_level.h"
|
|
|
|
#include "nodebuild.h"
|
|
|
|
#include "p_terrain.h"
|
|
|
|
#include "po_man.h"
|
2016-09-19 17:14:30 +00:00
|
|
|
#include "serializer.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
#include "r_utility.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "p_local.h"
|
2016-04-20 17:20:11 +00:00
|
|
|
#include "r_sky.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
#include "r_data/colormaps.h"
|
|
|
|
|
|
|
|
|
|
|
|
// [RH]
|
|
|
|
// P_NextSpecialSector()
|
|
|
|
//
|
|
|
|
// Returns the next special sector attached to this sector
|
|
|
|
// with a certain special.
|
|
|
|
sector_t *sector_t::NextSpecialSector (int type, sector_t *nogood) const
|
|
|
|
{
|
|
|
|
sector_t *tsec;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
line_t *ln = lines[i];
|
|
|
|
|
|
|
|
if (NULL != (tsec = getNextSector (ln, this)) &&
|
|
|
|
tsec != nogood &&
|
|
|
|
tsec->special == type)
|
|
|
|
{
|
|
|
|
return tsec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindLowestFloorSurrounding()
|
|
|
|
// FIND LOWEST FLOOR HEIGHT IN SURROUNDING SECTORS
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindLowestFloorSurrounding (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
sector_t *other;
|
|
|
|
line_t *check;
|
2016-03-30 07:41:46 +00:00
|
|
|
double floor;
|
|
|
|
double ofloor;
|
2016-03-01 15:47:10 +00:00
|
|
|
vertex_t *spot;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::floor);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
floor = floorplane.ZatPoint(spot);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v1);
|
|
|
|
if (ofloor < floor && ofloor < floorplane.ZatPoint (check->v1))
|
|
|
|
{
|
|
|
|
floor = ofloor;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v2);
|
|
|
|
if (ofloor < floor && ofloor < floorplane.ZatPoint (check->v2))
|
|
|
|
{
|
|
|
|
floor = ofloor;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return floor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindHighestFloorSurrounding()
|
|
|
|
// FIND HIGHEST FLOOR HEIGHT IN SURROUNDING SECTORS
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindHighestFloorSurrounding (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
line_t *check;
|
|
|
|
sector_t *other;
|
2016-03-30 07:41:46 +00:00
|
|
|
double floor;
|
|
|
|
double ofloor;
|
2016-03-01 15:47:10 +00:00
|
|
|
vertex_t *spot;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::floor);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
floor = -FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v1);
|
|
|
|
if (ofloor > floor)
|
|
|
|
{
|
|
|
|
floor = ofloor;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v2);
|
|
|
|
if (ofloor > floor)
|
|
|
|
{
|
|
|
|
floor = ofloor;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return floor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindNextHighestFloor()
|
|
|
|
//
|
|
|
|
// Passed a sector and a floor height, returns the fixed point value
|
|
|
|
// of the smallest floor height in a surrounding sector larger than
|
|
|
|
// the floor height passed. If no such height exists the floorheight
|
|
|
|
// passed is returned.
|
|
|
|
//
|
|
|
|
// Rewritten by Lee Killough to avoid fixed array and to be faster
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindNextHighestFloor (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double heightdiff;
|
|
|
|
double ofloor, floor;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::floor);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
height = floorplane.ZatPoint(spot);
|
|
|
|
heightdiff = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v1);
|
|
|
|
floor = floorplane.ZatPoint (check->v1);
|
|
|
|
if (ofloor > floor && ofloor - floor < heightdiff && !IsLinked(other, false))
|
|
|
|
{
|
|
|
|
heightdiff = ofloor - floor;
|
|
|
|
height = ofloor;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v2);
|
|
|
|
floor = floorplane.ZatPoint (check->v2);
|
|
|
|
if (ofloor > floor && ofloor - floor < heightdiff && !IsLinked(other, false))
|
|
|
|
{
|
|
|
|
heightdiff = ofloor - floor;
|
|
|
|
height = ofloor;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindNextLowestFloor()
|
|
|
|
//
|
|
|
|
// Passed a sector and a floor height, returns the fixed point value
|
|
|
|
// of the largest floor height in a surrounding sector smaller than
|
|
|
|
// the floor height passed. If no such height exists the floorheight
|
|
|
|
// passed is returned.
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Twiddled Lee's P_FindNextHighestFloor to make this
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindNextLowestFloor (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double heightdiff;
|
|
|
|
double ofloor, floor;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::floor);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
|
|
|
height = floorplane.ZatPoint (spot);
|
2016-03-30 07:41:46 +00:00
|
|
|
heightdiff = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v1);
|
|
|
|
floor = floorplane.ZatPoint (check->v1);
|
|
|
|
if (ofloor < floor && floor - ofloor < heightdiff && !IsLinked(other, false))
|
|
|
|
{
|
|
|
|
heightdiff = floor - ofloor;
|
|
|
|
height = ofloor;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
|
|
|
ofloor = other->floorplane.ZatPoint (check->v2);
|
2016-03-30 07:41:46 +00:00
|
|
|
floor = floorplane.ZatPoint(check->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (ofloor < floor && floor - ofloor < heightdiff && !IsLinked(other, false))
|
|
|
|
{
|
|
|
|
heightdiff = floor - ofloor;
|
|
|
|
height = ofloor;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindNextLowestCeiling()
|
|
|
|
//
|
|
|
|
// Passed a sector and a ceiling height, returns the fixed point value
|
|
|
|
// of the largest ceiling height in a surrounding sector smaller than
|
|
|
|
// the ceiling height passed. If no such height exists the ceiling height
|
|
|
|
// passed is returned.
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Twiddled Lee's P_FindNextHighestFloor to make this
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindNextLowestCeiling (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double heightdiff;
|
|
|
|
double oceil, ceil;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::ceiling);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
height = ceilingplane.ZatPoint(spot);
|
|
|
|
heightdiff = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v1);
|
|
|
|
ceil = ceilingplane.ZatPoint(check->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil < ceil && ceil - oceil < heightdiff && !IsLinked(other, true))
|
|
|
|
{
|
|
|
|
heightdiff = ceil - oceil;
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v2);
|
|
|
|
ceil = ceilingplane.ZatPoint(check->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil < ceil && ceil - oceil < heightdiff && !IsLinked(other, true))
|
|
|
|
{
|
|
|
|
heightdiff = ceil - oceil;
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindNextHighestCeiling()
|
|
|
|
//
|
|
|
|
// Passed a sector and a ceiling height, returns the fixed point value
|
|
|
|
// of the smallest ceiling height in a surrounding sector larger than
|
|
|
|
// the ceiling height passed. If no such height exists the ceiling height
|
|
|
|
// passed is returned.
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Twiddled Lee's P_FindNextHighestFloor to make this
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindNextHighestCeiling (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double heightdiff;
|
|
|
|
double oceil, ceil;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::ceiling);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
height = ceilingplane.ZatPoint(spot);
|
|
|
|
heightdiff = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v1);
|
|
|
|
ceil = ceilingplane.ZatPoint(check->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil > ceil && oceil - ceil < heightdiff && !IsLinked(other, true))
|
|
|
|
{
|
|
|
|
heightdiff = oceil - ceil;
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v2);
|
|
|
|
ceil = ceilingplane.ZatPoint(check->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil > ceil && oceil - ceil < heightdiff && !IsLinked(other, true))
|
|
|
|
{
|
|
|
|
heightdiff = oceil - ceil;
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// FIND LOWEST CEILING IN THE SURROUNDING SECTORS
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindLowestCeilingSurrounding (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double oceil;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::ceiling);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
height = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil < height)
|
|
|
|
{
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil < height)
|
|
|
|
{
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// FIND HIGHEST CEILING IN THE SURROUNDING SECTORS
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindHighestCeilingSurrounding (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double height;
|
|
|
|
double oceil;
|
2016-03-01 15:47:10 +00:00
|
|
|
sector_t *other;
|
|
|
|
vertex_t *spot;
|
|
|
|
line_t *check;
|
|
|
|
int i;
|
|
|
|
|
2016-04-24 10:15:09 +00:00
|
|
|
if (linecount == 0) return GetPlaneTexZ(sector_t::ceiling);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
spot = lines[0]->v1;
|
2016-03-30 07:41:46 +00:00
|
|
|
height = -FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
check = lines[i];
|
|
|
|
if (NULL != (other = getNextSector (check, this)))
|
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil > height)
|
|
|
|
{
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
oceil = other->ceilingplane.ZatPoint(check->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (oceil > height)
|
|
|
|
{
|
|
|
|
height = oceil;
|
|
|
|
spot = check->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindShortestTextureAround()
|
|
|
|
//
|
|
|
|
// Passed a sector number, returns the shortest lower texture on a
|
|
|
|
// linedef bounding the sector.
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Add routine to find shortest lower texture
|
|
|
|
//
|
|
|
|
|
2016-03-30 07:41:46 +00:00
|
|
|
static inline void CheckShortestTex (FTextureID texnum, double &minsize)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
if (texnum.isValid() || (texnum.isNull() && (i_compatflags & COMPATF_SHORTTEX)))
|
|
|
|
{
|
|
|
|
FTexture *tex = TexMan[texnum];
|
|
|
|
if (tex != NULL)
|
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double h = tex->GetScaledHeight();
|
2016-03-01 15:47:10 +00:00
|
|
|
if (h < minsize)
|
|
|
|
{
|
|
|
|
minsize = h;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindShortestTextureAround () const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double minsize = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
if (lines[i]->flags & ML_TWOSIDED)
|
|
|
|
{
|
|
|
|
CheckShortestTex (lines[i]->sidedef[0]->GetTexture(side_t::bottom), minsize);
|
|
|
|
CheckShortestTex (lines[i]->sidedef[1]->GetTexture(side_t::bottom), minsize);
|
|
|
|
}
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
return minsize < FLT_MAX ? minsize : TexMan[0]->GetHeight();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindShortestUpperAround()
|
|
|
|
//
|
|
|
|
// Passed a sector number, returns the shortest upper texture on a
|
|
|
|
// linedef bounding the sector.
|
|
|
|
//
|
|
|
|
// Note: If no upper texture exists MAXINT is returned.
|
|
|
|
//
|
|
|
|
// jff 03/20/98 Add routine to find shortest upper texture
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindShortestUpperAround () const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 07:41:46 +00:00
|
|
|
double minsize = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
if (lines[i]->flags & ML_TWOSIDED)
|
|
|
|
{
|
|
|
|
CheckShortestTex (lines[i]->sidedef[0]->GetTexture(side_t::top), minsize);
|
|
|
|
CheckShortestTex (lines[i]->sidedef[1]->GetTexture(side_t::top), minsize);
|
|
|
|
}
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
return minsize < FLT_MAX ? minsize : TexMan[0]->GetHeight();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindModelFloorSector()
|
|
|
|
//
|
|
|
|
// Passed a floor height and a sector number, return a pointer to a
|
|
|
|
// a sector with that floor height across the lowest numbered two sided
|
|
|
|
// line surrounding the sector.
|
|
|
|
//
|
|
|
|
// Note: If no sector at that height bounds the sector passed, return NULL
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Add routine to find numeric model floor
|
|
|
|
// around a sector specified by sector number
|
|
|
|
// jff 3/14/98 change first parameter to plain height to allow call
|
|
|
|
// from routine not using floormove_t
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
sector_t *sector_t::FindModelFloorSector (double floordestheight) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
sector_t *sec;
|
|
|
|
|
|
|
|
//jff 5/23/98 don't disturb sec->linecount while searching
|
|
|
|
// but allow early exit in old demos
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
sec = getNextSector (lines[i], this);
|
|
|
|
if (sec != NULL &&
|
2016-03-30 07:41:46 +00:00
|
|
|
(sec->floorplane.ZatPoint(lines[i]->v1) == floordestheight ||
|
|
|
|
sec->floorplane.ZatPoint(lines[i]->v2) == floordestheight))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
return sec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FindModelCeilingSector()
|
|
|
|
//
|
|
|
|
// Passed a ceiling height and a sector number, return a pointer to a
|
|
|
|
// a sector with that ceiling height across the lowest numbered two sided
|
|
|
|
// line surrounding the sector.
|
|
|
|
//
|
|
|
|
// Note: If no sector at that height bounds the sector passed, return NULL
|
|
|
|
//
|
|
|
|
// jff 02/03/98 Add routine to find numeric model ceiling
|
|
|
|
// around a sector specified by sector number
|
|
|
|
// used only from generalized ceiling types
|
|
|
|
// jff 3/14/98 change first parameter to plain height to allow call
|
|
|
|
// from routine not using ceiling_t
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
sector_t *sector_t::FindModelCeilingSector (double floordestheight) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
sector_t *sec;
|
|
|
|
|
|
|
|
//jff 5/23/98 don't disturb sec->linecount while searching
|
|
|
|
// but allow early exit in old demos
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
sec = getNextSector (lines[i], this);
|
|
|
|
if (sec != NULL &&
|
2016-03-30 07:41:46 +00:00
|
|
|
(sec->ceilingplane.ZatPoint(lines[i]->v1) == floordestheight ||
|
|
|
|
sec->ceilingplane.ZatPoint(lines[i]->v2) == floordestheight))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
return sec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Find minimum light from an adjacent sector
|
|
|
|
//
|
|
|
|
int sector_t::FindMinSurroundingLight (int min) const
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
line_t* line;
|
|
|
|
sector_t* check;
|
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
line = lines[i];
|
|
|
|
if (NULL != (check = getNextSector (line, this)) &&
|
|
|
|
check->lightlevel < min)
|
|
|
|
{
|
|
|
|
min = check->lightlevel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Find the highest point on the floor of the sector
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindHighestFloorPoint (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
line_t *line;
|
2016-03-30 07:41:46 +00:00
|
|
|
double height = -FLT_MAX;
|
|
|
|
double probeheight;
|
2016-03-01 15:47:10 +00:00
|
|
|
vertex_t *spot = NULL;
|
|
|
|
|
2016-03-29 10:40:41 +00:00
|
|
|
if (!floorplane.isSlope())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
if (v != NULL)
|
|
|
|
{
|
|
|
|
if (linecount == 0) *v = &vertexes[0];
|
|
|
|
else *v = lines[0]->v1;
|
|
|
|
}
|
2016-04-05 08:55:13 +00:00
|
|
|
return -floorplane.fD();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
line = lines[i];
|
2016-03-30 07:41:46 +00:00
|
|
|
probeheight = floorplane.ZatPoint(line->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (probeheight > height)
|
|
|
|
{
|
|
|
|
height = probeheight;
|
|
|
|
spot = line->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
probeheight = floorplane.ZatPoint(line->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (probeheight > height)
|
|
|
|
{
|
|
|
|
height = probeheight;
|
|
|
|
spot = line->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Find the lowest point on the ceiling of the sector
|
|
|
|
//
|
2016-03-30 07:41:46 +00:00
|
|
|
double sector_t::FindLowestCeilingPoint (vertex_t **v) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
line_t *line;
|
2016-03-30 07:41:46 +00:00
|
|
|
double height = FLT_MAX;
|
|
|
|
double probeheight;
|
2016-03-01 15:47:10 +00:00
|
|
|
vertex_t *spot = NULL;
|
|
|
|
|
2016-03-29 10:40:41 +00:00
|
|
|
if (!ceilingplane.isSlope())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
if (v != NULL)
|
|
|
|
{
|
|
|
|
if (linecount == 0) *v = &vertexes[0];
|
|
|
|
else *v = lines[0]->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
return ceilingplane.fD();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < linecount; i++)
|
|
|
|
{
|
|
|
|
line = lines[i];
|
2016-03-30 07:41:46 +00:00
|
|
|
probeheight = ceilingplane.ZatPoint(line->v1);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (probeheight < height)
|
|
|
|
{
|
|
|
|
height = probeheight;
|
|
|
|
spot = line->v1;
|
|
|
|
}
|
2016-03-30 07:41:46 +00:00
|
|
|
probeheight = ceilingplane.ZatPoint(line->v2);
|
2016-03-01 15:47:10 +00:00
|
|
|
if (probeheight < height)
|
|
|
|
{
|
|
|
|
height = probeheight;
|
|
|
|
spot = line->v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (v != NULL)
|
|
|
|
*v = spot;
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sector_t::SetColor(int r, int g, int b, int desat)
|
|
|
|
{
|
|
|
|
PalEntry color = PalEntry (r,g,b);
|
|
|
|
ColorMap = GetSpecialLights (color, ColorMap->Fade, desat);
|
|
|
|
P_RecalculateAttachedLights(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sector_t::SetFade(int r, int g, int b)
|
|
|
|
{
|
|
|
|
PalEntry fade = PalEntry (r,g,b);
|
|
|
|
ColorMap = GetSpecialLights (ColorMap->Color, fade, ColorMap->Desaturate);
|
|
|
|
P_RecalculateAttachedLights(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// sector_t :: ClosestPoint
|
|
|
|
//
|
|
|
|
// Given a point (x,y), returns the point (ox,oy) on the sector's defining
|
|
|
|
// lines that is nearest to (x,y).
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-03-31 19:13:32 +00:00
|
|
|
void sector_t::ClosestPoint(const DVector2 &in, DVector2 &out) const
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
2016-03-31 19:13:32 +00:00
|
|
|
double x = in.X, y = in.Y;
|
2016-03-01 15:47:10 +00:00
|
|
|
double bestdist = HUGE_VAL;
|
|
|
|
double bestx = 0, besty = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < linecount; ++i)
|
|
|
|
{
|
|
|
|
vertex_t *v1 = lines[i]->v1;
|
|
|
|
vertex_t *v2 = lines[i]->v2;
|
2016-03-31 19:13:32 +00:00
|
|
|
double a = v2->fX() - v1->fX();
|
|
|
|
double b = v2->fY() - v1->fY();
|
2016-03-01 15:47:10 +00:00
|
|
|
double den = a*a + b*b;
|
|
|
|
double ix, iy, dist;
|
|
|
|
|
|
|
|
if (den == 0)
|
|
|
|
{ // Line is actually a point!
|
2016-03-31 19:13:32 +00:00
|
|
|
ix = v1->fX();
|
|
|
|
iy = v1->fY();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-31 19:13:32 +00:00
|
|
|
double num = (x - v1->fX()) * a + (y - v1->fY()) * b;
|
2016-03-01 15:47:10 +00:00
|
|
|
double u = num / den;
|
|
|
|
if (u <= 0)
|
|
|
|
{
|
2016-03-31 19:13:32 +00:00
|
|
|
ix = v1->fX();
|
|
|
|
iy = v1->fY();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else if (u >= 1)
|
|
|
|
{
|
2016-03-31 19:13:32 +00:00
|
|
|
ix = v2->fX();
|
|
|
|
iy = v2->fY();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-31 19:13:32 +00:00
|
|
|
ix = v1->fX() + u * a;
|
|
|
|
iy = v1->fY() + u * b;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
a = (ix - x);
|
|
|
|
b = (iy - y);
|
|
|
|
dist = a*a + b*b;
|
|
|
|
if (dist < bestdist)
|
|
|
|
{
|
|
|
|
bestdist = dist;
|
|
|
|
bestx = ix;
|
|
|
|
besty = iy;
|
|
|
|
}
|
|
|
|
}
|
2016-03-31 19:13:32 +00:00
|
|
|
out = { bestx, besty };
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool sector_t::PlaneMoving(int pos)
|
|
|
|
{
|
|
|
|
if (pos == floor)
|
|
|
|
return (floordata != NULL || (planes[floor].Flags & PLANEF_BLOCKED));
|
|
|
|
else
|
|
|
|
return (ceilingdata != NULL || (planes[ceiling].Flags & PLANEF_BLOCKED));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int sector_t::GetFloorLight () const
|
|
|
|
{
|
|
|
|
if (GetFlags(sector_t::floor) & PLANEF_ABSLIGHTING)
|
|
|
|
{
|
|
|
|
return GetPlaneLight(floor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ClampLight(lightlevel + GetPlaneLight(floor));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int sector_t::GetCeilingLight () const
|
|
|
|
{
|
|
|
|
if (GetFlags(ceiling) & PLANEF_ABSLIGHTING)
|
|
|
|
{
|
|
|
|
return GetPlaneLight(ceiling);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ClampLight(lightlevel + GetPlaneLight(ceiling));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-20 17:20:11 +00:00
|
|
|
FSectorPortal *sector_t::ValidatePortal(int which)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-04-20 17:20:11 +00:00
|
|
|
FSectorPortal *port = GetPortal(which);
|
|
|
|
if (port->mType == PORTS_SKYVIEWPOINT && port->mSkybox == nullptr) return nullptr; // A skybox without a viewpoint is just a regular sky.
|
|
|
|
if (PortalBlocksView(which)) return nullptr; // disabled or obstructed linked portal.
|
|
|
|
if ((port->mFlags & PORTSF_SKYFLATONLY) && GetTexture(which) != skyflatnum) return nullptr; // Skybox without skyflat texture
|
|
|
|
return port;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sector_t *sector_t::GetHeightSec() const
|
|
|
|
{
|
|
|
|
if (heightsec == NULL)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (heightsec->MoreFlags & SECF_IGNOREHEIGHTSEC)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (e && e->XFloor.ffloors.Size())
|
|
|
|
{
|
|
|
|
// If any of these fake floors render their planes, ignore heightsec.
|
|
|
|
for (unsigned i = e->XFloor.ffloors.Size(); i-- > 0; )
|
|
|
|
{
|
|
|
|
if ((e->XFloor.ffloors[i]->flags & (FF_EXISTS | FF_RENDERPLANES)) == (FF_EXISTS | FF_RENDERPLANES))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return heightsec;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sector_t::GetSpecial(secspecial_t *spec)
|
|
|
|
{
|
|
|
|
spec->special = special;
|
|
|
|
spec->damageamount = damageamount;
|
|
|
|
spec->damagetype = damagetype;
|
|
|
|
spec->damageinterval = damageinterval;
|
|
|
|
spec->leakydamage = leakydamage;
|
|
|
|
spec->Flags = Flags & SECF_SPECIALFLAGS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sector_t::SetSpecial(const secspecial_t *spec)
|
|
|
|
{
|
|
|
|
special = spec->special;
|
|
|
|
damageamount = spec->damageamount;
|
|
|
|
damagetype = spec->damagetype;
|
|
|
|
damageinterval = spec->damageinterval;
|
|
|
|
leakydamage = spec->leakydamage;
|
|
|
|
Flags = (Flags & ~SECF_SPECIALFLAGS) | (spec->Flags & SECF_SPECIALFLAGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sector_t::TransferSpecial(sector_t *model)
|
|
|
|
{
|
|
|
|
special = model->special;
|
|
|
|
damageamount = model->damageamount;
|
|
|
|
damagetype = model->damagetype;
|
|
|
|
damageinterval = model->damageinterval;
|
|
|
|
leakydamage = model->leakydamage;
|
|
|
|
Flags = (Flags&~SECF_SPECIALFLAGS) | (model->Flags & SECF_SPECIALFLAGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
int sector_t::GetTerrain(int pos) const
|
|
|
|
{
|
|
|
|
return terrainnum[pos] >= 0 ? terrainnum[pos] : TerrainTypes[GetTexture(pos)];
|
|
|
|
}
|
|
|
|
|
|
|
|
void sector_t::CheckPortalPlane(int plane)
|
|
|
|
{
|
2016-04-20 17:20:11 +00:00
|
|
|
if (GetPortalType(plane) == PORTS_LINKEDPORTAL)
|
|
|
|
{
|
|
|
|
double portalh = GetPortalPlaneZ(plane);
|
2016-04-24 10:15:09 +00:00
|
|
|
double planeh = GetPlaneTexZ(plane);
|
2016-04-20 17:20:11 +00:00
|
|
|
int obstructed = PLANEF_OBSTRUCTED * (plane == sector_t::floor ? planeh > portalh : planeh < portalh);
|
|
|
|
planes[plane].Flags = (planes[plane].Flags & ~PLANEF_OBSTRUCTED) | obstructed;
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Finds the highest ceiling at the given position, all portals considered
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-03-27 00:06:54 +00:00
|
|
|
double sector_t::HighestCeilingAt(const DVector2 &p, sector_t **resultsec)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
sector_t *check = this;
|
2016-03-30 14:51:19 +00:00
|
|
|
double planeheight = -FLT_MAX;
|
2016-03-27 00:06:54 +00:00
|
|
|
DVector2 pos = p;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
// Continue until we find a blocking portal or a portal below where we actually are.
|
2016-04-19 09:35:28 +00:00
|
|
|
while (!check->PortalBlocksMovement(ceiling) && planeheight < check->GetPortalPlaneZ(ceiling))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-04-19 09:35:28 +00:00
|
|
|
pos += check->GetPortalDisplacement(ceiling);
|
|
|
|
planeheight = check->GetPortalPlaneZ(ceiling);
|
2016-03-27 00:06:54 +00:00
|
|
|
check = P_PointInSector(pos);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
if (resultsec) *resultsec = check;
|
2016-03-27 00:06:54 +00:00
|
|
|
return check->ceilingplane.ZatPoint(pos);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Finds the lowest floor at the given position, all portals considered
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-03-27 00:06:54 +00:00
|
|
|
double sector_t::LowestFloorAt(const DVector2 &p, sector_t **resultsec)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
sector_t *check = this;
|
2016-03-30 14:51:19 +00:00
|
|
|
double planeheight = FLT_MAX;
|
2016-03-27 00:06:54 +00:00
|
|
|
DVector2 pos = p;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
// Continue until we find a blocking portal or a portal above where we actually are.
|
2016-04-19 09:35:28 +00:00
|
|
|
while (!check->PortalBlocksMovement(floor) && planeheight > check->GetPortalPlaneZ(floor))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-04-19 09:35:28 +00:00
|
|
|
pos += check->GetPortalDisplacement(floor);
|
|
|
|
planeheight = check->GetPortalPlaneZ(ceiling);
|
2016-03-27 00:06:54 +00:00
|
|
|
check = P_PointInSector(pos);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
if (resultsec) *resultsec = check;
|
2016-03-27 00:06:54 +00:00
|
|
|
return check->floorplane.ZatPoint(pos);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
double sector_t::NextHighestCeilingAt(double x, double y, double bottomz, double topz, int flags, sector_t **resultsec, F3DFloor **resultffloor)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
sector_t *sec = this;
|
2016-03-30 14:51:19 +00:00
|
|
|
double planeheight = -FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
// Looking through planes from bottom to top
|
2016-03-30 14:51:19 +00:00
|
|
|
double realceil = sec->ceilingplane.ZatPoint(x, y);
|
2016-03-01 15:47:10 +00:00
|
|
|
for (int i = sec->e->XFloor.ffloors.Size() - 1; i >= 0; --i)
|
|
|
|
{
|
2016-03-14 15:38:17 +00:00
|
|
|
F3DFloor *rover = sec->e->XFloor.ffloors[i];
|
|
|
|
if (!(rover->flags & FF_SOLID) || !(rover->flags & FF_EXISTS)) continue;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
double ff_bottom = rover->bottom.plane->ZatPoint(x, y);
|
|
|
|
double ff_top = rover->top.plane->ZatPoint(x, y);
|
2016-03-14 15:38:17 +00:00
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
double delta1 = bottomz - (ff_bottom + ((ff_top - ff_bottom) / 2));
|
|
|
|
double delta2 = topz - (ff_bottom + ((ff_top - ff_bottom) / 2));
|
2016-03-14 15:38:17 +00:00
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
if (ff_bottom < realceil && fabs(delta1) > fabs(delta2))
|
2016-03-14 15:38:17 +00:00
|
|
|
{
|
2016-03-01 15:47:10 +00:00
|
|
|
if (resultsec) *resultsec = sec;
|
2016-03-14 15:38:17 +00:00
|
|
|
if (resultffloor) *resultffloor = rover;
|
|
|
|
return ff_bottom;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-19 09:35:28 +00:00
|
|
|
if ((flags & FFCF_NOPORTALS) || sec->PortalBlocksMovement(ceiling) || planeheight >= sec->GetPortalPlaneZ(ceiling))
|
2016-11-25 15:05:03 +00:00
|
|
|
{ // Use sector's ceiling
|
2016-03-01 15:47:10 +00:00
|
|
|
if (resultffloor) *resultffloor = NULL;
|
|
|
|
if (resultsec) *resultsec = sec;
|
2016-03-09 11:00:07 +00:00
|
|
|
return realceil;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-19 09:35:28 +00:00
|
|
|
DVector2 pos = sec->GetPortalDisplacement(ceiling);
|
2016-03-30 14:51:19 +00:00
|
|
|
x += pos.X;
|
|
|
|
y += pos.Y;
|
2016-04-19 09:35:28 +00:00
|
|
|
planeheight = sec->GetPortalPlaneZ(ceiling);
|
2016-03-01 15:47:10 +00:00
|
|
|
sec = P_PointInSector(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 15:05:03 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(_Sector, NextHighestCeilingAt)
|
|
|
|
{
|
|
|
|
PARAM_SELF_STRUCT_PROLOGUE(sector_t);
|
|
|
|
PARAM_FLOAT(x);
|
|
|
|
PARAM_FLOAT(y);
|
|
|
|
PARAM_FLOAT(bottomz);
|
|
|
|
PARAM_FLOAT(topz);
|
|
|
|
PARAM_INT_DEF(flags);
|
|
|
|
sector_t *resultsec;
|
|
|
|
F3DFloor *resultff;
|
|
|
|
double resultheight = self->NextHighestCeilingAt(x, y, bottomz, topz, flags, &resultsec, &resultff);
|
|
|
|
|
|
|
|
if (numret > 2)
|
|
|
|
{
|
|
|
|
ret[2].SetPointer(resultff, ATAG_GENERIC);
|
|
|
|
numret = 3;
|
|
|
|
}
|
|
|
|
if (numret > 1)
|
|
|
|
{
|
|
|
|
ret[1].SetPointer(resultsec, ATAG_GENERIC);
|
|
|
|
}
|
|
|
|
if (numret > 0)
|
|
|
|
{
|
|
|
|
ret[0].SetFloat(resultheight);
|
|
|
|
}
|
|
|
|
return numret;
|
|
|
|
}
|
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
double sector_t::NextLowestFloorAt(double x, double y, double z, int flags, double steph, sector_t **resultsec, F3DFloor **resultffloor)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
sector_t *sec = this;
|
2016-03-30 14:51:19 +00:00
|
|
|
double planeheight = FLT_MAX;
|
2016-03-01 15:47:10 +00:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
// Looking through planes from top to bottom
|
|
|
|
unsigned numff = sec->e->XFloor.ffloors.Size();
|
2016-03-30 14:51:19 +00:00
|
|
|
double realfloor = sec->floorplane.ZatPoint(x, y);
|
2016-03-01 15:47:10 +00:00
|
|
|
for (unsigned i = 0; i < numff; ++i)
|
|
|
|
{
|
|
|
|
F3DFloor *ff = sec->e->XFloor.ffloors[i];
|
|
|
|
|
|
|
|
|
|
|
|
// either with feet above the 3D floor or feet with less than 'stepheight' map units inside
|
|
|
|
if ((ff->flags & (FF_EXISTS | FF_SOLID)) == (FF_EXISTS | FF_SOLID))
|
|
|
|
{
|
2016-03-30 14:51:19 +00:00
|
|
|
double ffz = ff->top.plane->ZatPoint(x, y);
|
|
|
|
double ffb = ff->bottom.plane->ZatPoint(x, y);
|
2016-03-09 11:00:07 +00:00
|
|
|
|
|
|
|
if (ffz > realfloor && (z >= ffz || (!(flags & FFCF_3DRESTRICT) && (ffb < z && ffz < z + steph))))
|
2016-03-01 15:47:10 +00:00
|
|
|
{ // This floor is beneath our feet.
|
|
|
|
if (resultsec) *resultsec = sec;
|
|
|
|
if (resultffloor) *resultffloor = ff;
|
|
|
|
return ffz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-19 09:35:28 +00:00
|
|
|
if ((flags & FFCF_NOPORTALS) || sec->PortalBlocksMovement(sector_t::floor) || planeheight <= sec->GetPortalPlaneZ(floor))
|
2016-03-01 15:47:10 +00:00
|
|
|
{ // Use sector's floor
|
|
|
|
if (resultffloor) *resultffloor = NULL;
|
|
|
|
if (resultsec) *resultsec = sec;
|
2016-03-09 11:00:07 +00:00
|
|
|
return realfloor;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-19 09:35:28 +00:00
|
|
|
DVector2 pos = sec->GetPortalDisplacement(floor);
|
2016-03-30 14:51:19 +00:00
|
|
|
x += pos.X;
|
|
|
|
y += pos.Y;
|
2016-04-19 09:35:28 +00:00
|
|
|
planeheight = sec->GetPortalPlaneZ(floor);
|
2016-03-01 15:47:10 +00:00
|
|
|
sec = P_PointInSector(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-03-24 21:50:03 +00:00
|
|
|
double sector_t::GetFriction(int plane, double *pMoveFac) const
|
2016-03-19 23:54:18 +00:00
|
|
|
{
|
|
|
|
if (Flags & SECF_FRICTION)
|
|
|
|
{
|
|
|
|
if (pMoveFac) *pMoveFac = movefactor;
|
|
|
|
return friction;
|
|
|
|
}
|
|
|
|
FTerrainDef *terrain = &Terrains[GetTerrain(plane)];
|
|
|
|
if (terrain->Friction != 0)
|
|
|
|
{
|
|
|
|
if (pMoveFac) *pMoveFac = terrain->MoveFactor;
|
|
|
|
return terrain->Friction;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (pMoveFac) *pMoveFac = ORIG_FRICTION_FACTOR;
|
|
|
|
return ORIG_FRICTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2016-09-19 17:14:30 +00:00
|
|
|
FSerializer &Serialize(FSerializer &arc, const char *key, secspecial_t &spec, secspecial_t *def)
|
|
|
|
{
|
2016-09-19 17:58:04 +00:00
|
|
|
if (arc.BeginObject(key))
|
|
|
|
{
|
|
|
|
arc("special", spec.special)
|
|
|
|
("damageamount", spec.damageamount)
|
|
|
|
("damagetype", spec.damagetype)
|
|
|
|
("damageinterval", spec.damageinterval)
|
|
|
|
("leakydamage", spec.leakydamage)
|
|
|
|
("flags", spec.Flags)
|
|
|
|
.EndObject();
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool secplane_t::CopyPlaneIfValid (secplane_t *dest, const secplane_t *opp) const
|
|
|
|
{
|
|
|
|
bool copy = false;
|
|
|
|
|
|
|
|
// If the planes do not have matching slopes, then always copy them
|
|
|
|
// because clipping would require creating new sectors.
|
2016-04-03 17:46:00 +00:00
|
|
|
if (Normal() != dest->Normal())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
copy = true;
|
|
|
|
}
|
2016-04-03 17:46:00 +00:00
|
|
|
else if (opp->Normal() != -dest->Normal())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-03-30 14:51:19 +00:00
|
|
|
if (fD() < dest->fD())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
copy = true;
|
|
|
|
}
|
|
|
|
}
|
2016-03-30 14:51:19 +00:00
|
|
|
else if (fD() < dest->fD() && fD() > -opp->fD())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
copy = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy)
|
|
|
|
{
|
|
|
|
*dest = *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// P_AlignFlat
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool P_AlignFlat (int linenum, int side, int fc)
|
|
|
|
{
|
|
|
|
line_t *line = lines + linenum;
|
|
|
|
sector_t *sec = side ? line->backsector : line->frontsector;
|
|
|
|
|
|
|
|
if (!sec)
|
|
|
|
return false;
|
|
|
|
|
2016-05-11 09:35:56 +00:00
|
|
|
DAngle angle = line->Delta().Angle();
|
2016-03-30 14:51:19 +00:00
|
|
|
DAngle norm = angle - 90;
|
2016-05-11 09:35:56 +00:00
|
|
|
double dist = -(norm.Cos() * line->v1->fX() + norm.Sin() * line->v1->fY());
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
if (side)
|
|
|
|
{
|
2016-03-30 14:51:19 +00:00
|
|
|
angle += 180.;
|
2016-03-01 15:47:10 +00:00
|
|
|
dist = -dist;
|
|
|
|
}
|
|
|
|
|
2016-03-30 14:51:19 +00:00
|
|
|
sec->SetBase(fc, dist, -angle);
|
2016-03-01 15:47:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// P_BuildPolyBSP
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
static FNodeBuilder::FLevel PolyNodeLevel;
|
|
|
|
static FNodeBuilder PolyNodeBuilder(PolyNodeLevel);
|
|
|
|
|
|
|
|
void subsector_t::BuildPolyBSP()
|
|
|
|
{
|
|
|
|
assert((BSP == NULL || BSP->bDirty) && "BSP computed more than once");
|
|
|
|
|
|
|
|
// Set up level information for the node builder.
|
|
|
|
PolyNodeLevel.Sides = sides;
|
|
|
|
PolyNodeLevel.NumSides = numsides;
|
|
|
|
PolyNodeLevel.Lines = lines;
|
|
|
|
PolyNodeLevel.NumLines = numlines;
|
|
|
|
|
|
|
|
// Feed segs to the nodebuilder and build the nodes.
|
|
|
|
PolyNodeBuilder.Clear();
|
|
|
|
PolyNodeBuilder.AddSegs(firstline, numlines);
|
|
|
|
for (FPolyNode *pn = polys; pn != NULL; pn = pn->pnext)
|
|
|
|
{
|
|
|
|
PolyNodeBuilder.AddPolySegs(&pn->segs[0], (int)pn->segs.Size());
|
|
|
|
}
|
|
|
|
PolyNodeBuilder.BuildMini(false);
|
|
|
|
if (BSP == NULL)
|
|
|
|
{
|
|
|
|
BSP = new FMiniBSP;
|
|
|
|
}
|
|
|
|
PolyNodeBuilder.ExtractMini(BSP);
|
|
|
|
for (unsigned int i = 0; i < BSP->Subsectors.Size(); ++i)
|
|
|
|
{
|
|
|
|
BSP->Subsectors[i].sector = sector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
CUSTOM_CVAR(Int, r_fakecontrast, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
|
|
|
{
|
|
|
|
if (self < 0) self = 1;
|
|
|
|
else if (self > 2) self = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int side_t::GetLightLevel (bool foggy, int baselight, bool is3dlight, int *pfakecontrast) const
|
|
|
|
{
|
|
|
|
if (!is3dlight && (Flags & WALLF_ABSLIGHTING))
|
|
|
|
{
|
|
|
|
baselight = Light;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pfakecontrast != NULL)
|
|
|
|
{
|
|
|
|
*pfakecontrast = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!foggy || level.flags3 & LEVEL3_FORCEFAKECONTRAST) // Don't do relative lighting in foggy sectors
|
|
|
|
{
|
|
|
|
if (!(Flags & WALLF_NOFAKECONTRAST) && r_fakecontrast != 0)
|
|
|
|
{
|
2016-03-29 14:13:16 +00:00
|
|
|
DVector2 delta = linedef->Delta();
|
2016-03-01 15:47:10 +00:00
|
|
|
int rel;
|
|
|
|
if (((level.flags2 & LEVEL2_SMOOTHLIGHTING) || (Flags & WALLF_SMOOTHLIGHTING) || r_fakecontrast == 2) &&
|
2016-03-29 14:13:16 +00:00
|
|
|
delta.X != 0)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
rel = xs_RoundToInt // OMG LEE KILLOUGH LIVES! :/
|
|
|
|
(
|
|
|
|
level.WallHorizLight
|
2016-03-29 14:13:16 +00:00
|
|
|
+ fabs(atan(delta.Y / delta.X) / 1.57079)
|
2016-03-01 15:47:10 +00:00
|
|
|
* (level.WallVertLight - level.WallHorizLight)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-29 14:13:16 +00:00
|
|
|
rel = delta.X == 0 ? level.WallVertLight :
|
|
|
|
delta.Y == 0 ? level.WallHorizLight : 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
if (pfakecontrast != NULL)
|
|
|
|
{
|
|
|
|
*pfakecontrast = rel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
baselight += rel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!is3dlight && !(Flags & WALLF_ABSLIGHTING) && (!foggy || (Flags & WALLF_LIGHT_FOG)))
|
|
|
|
{
|
|
|
|
baselight += this->Light;
|
|
|
|
}
|
|
|
|
return baselight;
|
|
|
|
}
|