re3/src/render/Draw.cpp

78 lines
1.5 KiB
C++
Raw Normal View History

2019-05-15 14:52:37 +00:00
#include "common.h"
2020-04-17 13:31:11 +00:00
2019-05-15 14:52:37 +00:00
#include "Draw.h"
2019-06-15 22:20:55 +00:00
#include "Frontend.h"
#include "Camera.h"
#include "CutsceneMgr.h"
2019-06-15 22:20:55 +00:00
#ifdef ASPECT_RATIO_SCALE
float CDraw::ms_fAspectRatio = DEFAULT_ASPECT_RATIO;
2020-06-21 12:50:00 +00:00
float CDraw::ms_fScaledFOV = 45.0f;
#endif
2019-05-15 14:52:37 +00:00
2020-04-17 05:54:14 +00:00
float CDraw::ms_fNearClipZ;
float CDraw::ms_fFarClipZ;
float CDraw::ms_fFOV = 45.0f;
float CDraw::ms_fLODDistance;
2019-05-30 11:35:13 +00:00
2020-04-17 05:54:14 +00:00
uint8 CDraw::FadeValue;
uint8 CDraw::FadeRed;
uint8 CDraw::FadeGreen;
uint8 CDraw::FadeBlue;
float
CDraw::FindAspectRatio(void)
2019-06-16 17:06:01 +00:00
{
2019-07-03 15:26:15 +00:00
#ifndef ASPECT_RATIO_SCALE
2019-07-02 20:05:11 +00:00
if(FrontEndMenuManager.m_PrefsUseWideScreen)
return 16.0f/9.0f;
2019-06-16 17:06:01 +00:00
else
return 4.0f/3.0f;
2019-07-03 15:26:15 +00:00
#else
switch (FrontEndMenuManager.m_PrefsUseWideScreen) {
case AR_AUTO:
return SCREEN_WIDTH / SCREEN_HEIGHT;
default:
2019-07-03 15:26:15 +00:00
case AR_4_3:
return 4.0f / 3.0f;
2020-12-29 17:24:16 +00:00
case AR_5_4:
return 5.0f / 4.0f;
case AR_16_10:
return 16.0f / 10.0f;
2019-07-03 15:26:15 +00:00
case AR_16_9:
return 16.0f / 9.0f;
2020-12-29 17:24:16 +00:00
case AR_21_9:
return 21.0f / 9.0f;
2019-07-03 15:26:15 +00:00
};
#endif
2019-06-15 22:20:55 +00:00
}
2019-07-03 15:26:15 +00: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 11:35:13 +00:00
{
2019-07-02 20:05:11 +00: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 20:05:11 +00:00
hfov = DEGTORAD(hfov);
float vfov = Atan(tan(hfov/2) / ar1) *2;
hfov = Atan(tan(vfov/2) * ar2) *2;
2019-07-02 20:05:11 +00:00
return RADTODEG(hfov);
2019-05-30 11:35:13 +00:00
}
2019-07-03 15:26:15 +00:00
#endif
2019-05-30 11:35:13 +00: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 12:50:00 +00:00
ms_fFOV = fov;
2021-01-08 16:31:48 +00:00
}