2019-05-15 16:52:37 +02:00
|
|
|
#include "common.h"
|
2020-04-17 15:31:11 +02:00
|
|
|
|
2019-05-15 16:52:37 +02:00
|
|
|
#include "Draw.h"
|
2019-06-16 00:20:55 +02:00
|
|
|
#include "Frontend.h"
|
|
|
|
#include "Camera.h"
|
2020-07-11 11:03:56 +02:00
|
|
|
#include "CutsceneMgr.h"
|
2019-06-16 00:20:55 +02:00
|
|
|
|
2019-07-03 13:13:55 +02:00
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
|
|
|
float CDraw::ms_fAspectRatio = DEFAULT_ASPECT_RATIO;
|
2020-06-21 14:50:00 +02:00
|
|
|
float CDraw::ms_fScaledFOV = 45.0f;
|
2019-07-03 13:13:55 +02:00
|
|
|
#endif
|
2019-05-15 16:52:37 +02:00
|
|
|
|
2020-04-17 07:54:14 +02:00
|
|
|
float CDraw::ms_fNearClipZ;
|
|
|
|
float CDraw::ms_fFarClipZ;
|
|
|
|
float CDraw::ms_fFOV = 45.0f;
|
|
|
|
float CDraw::ms_fLODDistance;
|
2019-05-30 13:35:13 +02:00
|
|
|
|
2020-04-17 07:54:14 +02:00
|
|
|
uint8 CDraw::FadeValue;
|
|
|
|
uint8 CDraw::FadeRed;
|
|
|
|
uint8 CDraw::FadeGreen;
|
|
|
|
uint8 CDraw::FadeBlue;
|
2019-05-30 21:24:47 +02:00
|
|
|
|
2019-07-03 13:13:55 +02:00
|
|
|
float
|
2020-05-24 01:59:30 +02:00
|
|
|
CDraw::CalculateAspectRatio(void)
|
2019-06-16 19:06:01 +02:00
|
|
|
{
|
2020-05-24 01:59:30 +02:00
|
|
|
if (FrontEndMenuManager.m_PrefsUseWideScreen) {
|
|
|
|
if (TheCamera.m_WideScreenOn)
|
|
|
|
CDraw::ms_fAspectRatio = 5.f / 3.f; // It's used on theatrical showings according to Wiki
|
|
|
|
else
|
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
|
|
|
CDraw::ms_fAspectRatio = FrontEndMenuManager.m_PrefsUseWideScreen == AR_AUTO ? SCREEN_WIDTH / SCREEN_HEIGHT : 16.f / 9.f;
|
2019-07-03 17:26:15 +02:00
|
|
|
#else
|
2020-05-24 01:59:30 +02:00
|
|
|
CDraw::ms_fAspectRatio = 16.f / 9.f;
|
2019-07-03 17:26:15 +02:00
|
|
|
#endif
|
2020-05-24 01:59:30 +02:00
|
|
|
} else if (TheCamera.m_WideScreenOn) {
|
|
|
|
CDraw::ms_fAspectRatio = 5.f/4.f;
|
|
|
|
} else {
|
|
|
|
CDraw::ms_fAspectRatio = 4.f/3.f;
|
|
|
|
}
|
|
|
|
return CDraw::ms_fAspectRatio;
|
2019-06-16 00:20:55 +02:00
|
|
|
}
|
|
|
|
|
2019-07-03 17:26:15 +02:00
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
2019-07-03 13:13:55 +02:00
|
|
|
// convert a 4:3 hFOV to vFOV,
|
|
|
|
// then convert that vFOV to hFOV for our aspect ratio,
|
|
|
|
// i.e. HOR+
|
|
|
|
float
|
|
|
|
CDraw::ConvertFOV(float hfov)
|
2019-05-30 13:35:13 +02:00
|
|
|
{
|
2019-07-02 22:05:11 +02:00
|
|
|
// => tan(hFOV/2) = tan(vFOV/2)*aspectRatio
|
|
|
|
// => tan(vFOV/2) = tan(hFOV/2)/aspectRatio
|
2019-07-03 13:13:55 +02:00
|
|
|
float ar1 = DEFAULT_ASPECT_RATIO;
|
|
|
|
float ar2 = GetAspectRatio();
|
2019-07-02 22:05:11 +02:00
|
|
|
hfov = DEGTORAD(hfov);
|
2019-07-10 17:34:11 +02:00
|
|
|
float vfov = Atan(tan(hfov/2) / ar1) *2;
|
|
|
|
hfov = Atan(tan(vfov/2) * ar2) *2;
|
2019-07-02 22:05:11 +02:00
|
|
|
return RADTODEG(hfov);
|
2019-05-30 13:35:13 +02:00
|
|
|
}
|
2019-07-03 17:26:15 +02:00
|
|
|
#endif
|
2019-05-30 13:35:13 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
CDraw::SetFOV(float fov)
|
|
|
|
{
|
2019-07-03 13:13:55 +02:00
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
2020-07-11 11:03:56 +02:00
|
|
|
if (!CCutsceneMgr::IsRunning())
|
|
|
|
ms_fScaledFOV = ConvertFOV(fov);
|
|
|
|
else
|
|
|
|
ms_fScaledFOV = fov;
|
2019-07-03 13:13:55 +02:00
|
|
|
#endif
|
2020-06-21 14:50:00 +02:00
|
|
|
ms_fFOV = fov;
|
2019-05-30 13:35:13 +02:00
|
|
|
}
|