2019-05-15 14:52:37 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-07-03 15:26:15 +00:00
|
|
|
enum eAspectRatio
|
|
|
|
{
|
2019-07-12 16:28:40 +00:00
|
|
|
// Make sure these work the same as FrontEndMenuManager.m_PrefsUseWideScreen
|
|
|
|
// without widescreen support
|
2019-07-03 15:26:15 +00:00
|
|
|
AR_4_3,
|
|
|
|
AR_16_9,
|
2019-07-12 16:28:40 +00:00
|
|
|
|
|
|
|
AR_AUTO,
|
2019-07-03 15:26:15 +00:00
|
|
|
};
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
class CDraw
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
static float &ms_fNearClipZ;
|
|
|
|
static float &ms_fFarClipZ;
|
|
|
|
static float &ms_fFOV;
|
2019-08-15 14:51:39 +00:00
|
|
|
public:
|
|
|
|
static float &ms_fLODDistance; // set but unused?
|
2019-07-03 11:13:55 +00:00
|
|
|
|
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
|
|
|
// we use this variable to scale a lot of 2D elements
|
|
|
|
// so better cache it
|
2019-06-15 22:20:55 +00:00
|
|
|
static float ms_fAspectRatio;
|
2019-07-03 11:13:55 +00:00
|
|
|
#endif
|
2019-06-15 22:20:55 +00:00
|
|
|
|
2019-05-30 19:24:47 +00:00
|
|
|
static uint8 &FadeValue;
|
|
|
|
static uint8 &FadeRed;
|
|
|
|
static uint8 &FadeGreen;
|
|
|
|
static uint8 &FadeBlue;
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
static void SetNearClipZ(float nearclip) { ms_fNearClipZ = nearclip; }
|
|
|
|
static float GetNearClipZ(void) { return ms_fNearClipZ; }
|
|
|
|
static void SetFarClipZ(float farclip) { ms_fFarClipZ = farclip; }
|
|
|
|
static float GetFarClipZ(void) { return ms_fFarClipZ; }
|
2019-06-15 22:20:55 +00:00
|
|
|
|
2019-05-30 11:35:13 +00:00
|
|
|
static void SetFOV(float fov);
|
2019-05-15 14:52:37 +00:00
|
|
|
static float GetFOV(void) { return ms_fFOV; }
|
2019-06-15 22:20:55 +00:00
|
|
|
|
2019-07-03 11:13:55 +00:00
|
|
|
static float FindAspectRatio(void);
|
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
|
|
|
static float ConvertFOV(float fov);
|
2019-06-15 22:20:55 +00:00
|
|
|
static float GetAspectRatio(void) { return ms_fAspectRatio; }
|
2019-07-03 11:13:55 +00:00
|
|
|
static void SetAspectRatio(float ratio) { ms_fAspectRatio = ratio; }
|
|
|
|
#else
|
|
|
|
static float GetAspectRatio(void) { return FindAspectRatio(); }
|
|
|
|
#endif
|
2019-05-15 14:52:37 +00:00
|
|
|
};
|