2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
|
|
This file is part of PCExhumed.
|
|
|
|
PCExhumed is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-10-11 10:41:38 +00:00
|
|
|
#pragma once
|
2019-11-08 16:55:26 +00:00
|
|
|
#include "build.h"
|
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
2021-11-21 19:34:15 +00:00
|
|
|
extern bool bSubTitles;
|
2021-10-21 20:18:29 +00:00
|
|
|
extern DExhumedActor* bestTarget;
|
2020-09-27 05:46:04 +00:00
|
|
|
extern bool bCamera;
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-08-19 22:55:31 +00:00
|
|
|
void DrawStatusBar();
|
2020-08-24 03:22:52 +00:00
|
|
|
void DrawView(double smoothRatio, bool sceneonly = false);
|
2019-08-26 03:59:14 +00:00
|
|
|
void ResetView();
|
|
|
|
void NoClip();
|
|
|
|
void Clip();
|
|
|
|
|
2021-11-21 20:09:27 +00:00
|
|
|
extern int16_t dVertPan[];
|
|
|
|
extern int16_t nQuake[];
|
2019-08-26 03:59:14 +00:00
|
|
|
extern int nCamerax;
|
|
|
|
extern int nCameray;
|
|
|
|
extern int nCameraz;
|
2021-11-21 20:09:27 +00:00
|
|
|
extern bool bTouchFloor;
|
|
|
|
extern int nChunkTotal;
|
2019-11-26 15:37:47 +00:00
|
|
|
extern int gFov;
|
|
|
|
|
2021-12-04 18:08:50 +00:00
|
|
|
extern tspritetype* mytsprite;
|
2021-04-02 08:28:40 +00:00
|
|
|
extern int* myspritesortcnt;
|
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|
|
|
|
|