Re3/src/render/Draw.cpp

59 lines
1.2 KiB
C++
Raw Normal View History

2019-05-15 10:52:37 -04:00
#include "common.h"
2019-05-30 07:35:13 -04:00
#include "patcher.h"
2019-05-15 10:52:37 -04:00
#include "Draw.h"
2019-06-15 18:20:55 -04:00
#include "Frontend.h"
#include "Camera.h"
float CDraw::ms_fAspectRatio;
2019-05-15 10:52:37 -04:00
float &CDraw::ms_fNearClipZ = *(float*)0x8E2DC4;
float &CDraw::ms_fFarClipZ = *(float*)0x9434F0;
float &CDraw::ms_fFOV = *(float*)0x5FBC6C;
2019-05-30 07:35:13 -04:00
uint8 &CDraw::FadeValue = *(uint8*)0x95CD68;
uint8 &CDraw::FadeRed = *(uint8*)0x95CD90;
uint8 &CDraw::FadeGreen = *(uint8*)0x95CD71;
uint8 &CDraw::FadeBlue = *(uint8*)0x95CD53;
2019-06-15 18:20:55 -04:00
void CDraw::CalculateAspectRatio() {
if (FrontEndMenuManager.m_PrefsUseWideScreen) {
ms_fAspectRatio = 1.7777778f;
}
else if (TheCamera.m_WideScreenOn) {
ms_fAspectRatio = 1.25f;
}
else {
ms_fAspectRatio = 1.3333334f;
}
}
2019-05-30 07:35:13 -04:00
static float hFov2vFov(float hfov)
{
float w = SCREENW;
float h = SCREENH;
// => tan(hFOV/2) = tan(vFOV/2)*aspectRatio
// => tan(vFOV/2) = tan(hFOV/2)/aspectRatio
float ar1 = 4.0/3.0;
float ar2 = w/h;
hfov = DEGTORAD(hfov);
float vfov = atan(tan(hfov/2) / ar1) *2;
hfov = atan(tan(vfov/2) * ar2) *2;
return RADTODEG(hfov);
}
void
CDraw::SetFOV(float fov)
{
// TODO: fix FOV here or somewhere else?
// ms_fFOV = hFov2vFov(fov);
ms_fFOV = fov;
}
STARTPATCHES
InjectHook(0x4FE7B0, CDraw::SetFOV, PATCH_JUMP);
2019-06-14 19:34:19 -04:00
Nop(0x46B618, 2);
Patch<float>(0x5F0A64, 1.3333334f);
2019-05-30 07:35:13 -04:00
ENDPATCHES