gzdoom/code/R_bsp.h

59 lines
1.5 KiB
C
Raw Normal View History

1998-04-07 00:00:00 +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.
//
// DESCRIPTION:
// Refresh module, BSP traversal and handling.
//
//-----------------------------------------------------------------------------
#ifndef __R_BSP__
#define __R_BSP__
1998-07-26 00:00:00 +00:00
extern seg_t* curline;
extern side_t* sidedef;
extern line_t* linedef;
extern sector_t* frontsector;
extern sector_t* backsector;
1998-04-07 00:00:00 +00:00
1998-07-14 00:00:00 +00:00
extern BOOL skymap;
1998-04-07 00:00:00 +00:00
1998-07-26 00:00:00 +00:00
extern drawseg_t *drawsegs;
extern drawseg_t* ds_p;
1998-04-07 00:00:00 +00:00
typedef void (*drawfunc_t) (int start, int stop);
1999-02-17 00:00:00 +00:00
extern cvar_t* r_drawflat; // [RH] Don't texture segs?
1998-04-07 00:00:00 +00:00
// BSP?
void R_ClearClipSegs (void);
void R_ClearDrawSegs (void);
void R_RenderBSPNode (int bspnum);
1998-07-26 00:00:00 +00:00
int R_DoorClosed(void); // killough 1/17/98
// killough 4/13/98: fake floors/ceilings for deep water / fake ceilings:
sector_t *R_FakeFlat(sector_t *, sector_t *, int *, int *, BOOL);
1998-04-07 00:00:00 +00:00
#endif
//-----------------------------------------------------------------------------
//
// $Log:$
//
//-----------------------------------------------------------------------------