mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 13:00:30 +00:00
4ac64b6df7
SVN r2448 (trunk)
93 lines
2.3 KiB
C++
93 lines
2.3 KiB
C++
// 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:
|
|
// Main loop menu stuff.
|
|
// Random number LUT.
|
|
// Default Config File.
|
|
// PCX Screenshots.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "m_bbox.h"
|
|
#include "p_local.h"
|
|
|
|
void FBoundingBox::AddToBox (fixed_t x, fixed_t y)
|
|
{
|
|
if (x < m_Box[BOXLEFT])
|
|
m_Box[BOXLEFT] = x;
|
|
if (x > m_Box[BOXRIGHT])
|
|
m_Box[BOXRIGHT] = x;
|
|
|
|
if (y < m_Box[BOXBOTTOM])
|
|
m_Box[BOXBOTTOM] = y;
|
|
if (y > m_Box[BOXTOP])
|
|
m_Box[BOXTOP] = y;
|
|
}
|
|
|
|
//==========================================================================
|
|
//
|
|
// FBoundingBox :: BoxOnLineSide
|
|
//
|
|
// Considers the line to be infinite
|
|
// Returns side 0 or 1, -1 if box crosses the line.
|
|
//
|
|
//==========================================================================
|
|
|
|
int FBoundingBox::BoxOnLineSide (const line_t *ld) const
|
|
{
|
|
int p1;
|
|
int p2;
|
|
|
|
switch (ld->slopetype)
|
|
{
|
|
case ST_HORIZONTAL:
|
|
p1 = m_Box[BOXTOP] > ld->v1->y;
|
|
p2 = m_Box[BOXBOTTOM] > ld->v1->y;
|
|
if (ld->dx < 0)
|
|
{
|
|
p1 ^= 1;
|
|
p2 ^= 1;
|
|
}
|
|
break;
|
|
|
|
case ST_VERTICAL:
|
|
p1 = m_Box[BOXRIGHT] < ld->v1->x;
|
|
p2 = m_Box[BOXLEFT] < ld->v1->x;
|
|
if (ld->dy < 0)
|
|
{
|
|
p1 ^= 1;
|
|
p2 ^= 1;
|
|
}
|
|
break;
|
|
|
|
case ST_POSITIVE:
|
|
p1 = P_PointOnLineSide (m_Box[BOXLEFT], m_Box[BOXTOP], ld);
|
|
p2 = P_PointOnLineSide (m_Box[BOXRIGHT], m_Box[BOXBOTTOM], ld);
|
|
break;
|
|
|
|
case ST_NEGATIVE:
|
|
default: // Just to assure GCC that p1 and p2 really do get initialized
|
|
p1 = P_PointOnLineSide (m_Box[BOXRIGHT], m_Box[BOXTOP], ld);
|
|
p2 = P_PointOnLineSide (m_Box[BOXLEFT], m_Box[BOXBOTTOM], ld);
|
|
break;
|
|
}
|
|
|
|
return (p1 == p2) ? p1 : -1;
|
|
}
|
|
|