re3/src/render/Draw.cpp

93 lines
2.2 KiB
C++
Raw Normal View History

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"
#include "CutsceneMgr.h"
2019-06-16 00:20: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;
#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;
#ifdef PROPER_SCALING
bool CDraw::ms_bProperScaling = true;
#endif
#ifdef FIX_RADAR
bool CDraw::ms_bFixRadar = true;
#endif
#ifdef FIX_SPRITES
bool CDraw::ms_bFixSprites = true;
#endif
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) {
2020-10-12 11:16:24 +02:00
#ifdef ASPECT_RATIO_SCALE
2020-05-24 01:59:30 +02:00
if (TheCamera.m_WideScreenOn)
2020-10-12 11:16:24 +02:00
CDraw::ms_fAspectRatio = FrontEndMenuManager.m_PrefsUseWideScreen == AR_AUTO ?
(5.f / 3.f) * (SCREEN_WIDTH / SCREEN_HEIGHT) / (16.f / 9.f) :
5.f / 3.f; // It's used on theatrical showings according to Wiki
2020-05-24 01:59:30 +02:00
else
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-10-12 11:16:24 +02:00
if (TheCamera.m_WideScreenOn)
CDraw::ms_fAspectRatio = 5.f / 3.f; // It's used on theatrical showings according to Wiki
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
// 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
float ar1 = DEFAULT_ASPECT_RATIO;
float ar2 = GetAspectRatio();
2019-07-02 22:05:11 +02:00
hfov = DEGTORAD(hfov);
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)
{
#ifdef ASPECT_RATIO_SCALE
if (!CCutsceneMgr::IsRunning())
ms_fScaledFOV = ConvertFOV(fov);
else
ms_fScaledFOV = fov;
#endif
2020-06-21 14:50:00 +02:00
ms_fFOV = fov;
2019-05-30 13:35:13 +02:00
}
#ifdef PROPER_SCALING
float CDraw::ScaleY(float y)
{
return ms_bProperScaling ? y : y * ((float)DEFAULT_SCREEN_HEIGHT/SCREEN_HEIGHT_NTSC);
}
#endif