2016-03-01 15:47:10 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// Copyright 1993-1996 id Software
|
|
|
|
// Copyright 1999-2016 Randy Heit
|
|
|
|
// Copyright 2002-2016 Christoph Oelckers
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2016-03-01 15:47:10 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-04-17 11:33:19 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
// DESCRIPTION:
|
|
|
|
// Sky rendering.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __R_SKY_H__
|
|
|
|
#define __R_SKY_H__
|
|
|
|
|
|
|
|
#include "textures/textures.h"
|
|
|
|
|
|
|
|
extern FTextureID skyflatnum;
|
|
|
|
extern FTextureID sky1texture, sky2texture;
|
|
|
|
extern double sky1pos, sky2pos;
|
2018-04-27 22:18:49 +00:00
|
|
|
extern float hw_sky1pos, hw_sky2pos;
|
2016-03-01 15:47:10 +00:00
|
|
|
extern bool skystretch;
|
2016-04-23 03:54:04 +00:00
|
|
|
extern int freelookviewheight;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
#define SKYSTRETCH_HEIGHT 228
|
|
|
|
|
|
|
|
// Called whenever the sky changes.
|
|
|
|
void R_InitSkyMap ();
|
2017-11-16 01:33:08 +00:00
|
|
|
void R_UpdateSky (uint64_t mstime);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2018-06-18 16:18:28 +00:00
|
|
|
// 57 world units roughly represent one sky texel for the glTranslate call.
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
skyoffsetfactor = 57
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
#endif //__R_SKY_H__
|