Re3/src/render/Draw.cpp

76 lines
1.6 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"
#ifdef ASPECT_RATIO_SCALE
float CDraw::ms_fAspectRatio = DEFAULT_ASPECT_RATIO;
#endif
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-08-15 10:51:39 -04:00
float &CDraw::ms_fLODDistance = *(float*)0x8F2C30;
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;
float
CDraw::FindAspectRatio(void)
2019-06-16 13:06:01 -04:00
{
2019-07-03 11:26:15 -04:00
#ifndef ASPECT_RATIO_SCALE
2019-07-02 16:05:11 -04:00
if(FrontEndMenuManager.m_PrefsUseWideScreen)
return 16.0f/9.0f;
2019-06-16 13:06:01 -04:00
else
return 4.0f/3.0f;
2019-07-03 11:26:15 -04:00
#else
switch (FrontEndMenuManager.m_PrefsUseWideScreen) {
case AR_AUTO:
return SCREEN_WIDTH / SCREEN_HEIGHT;
default:
2019-07-03 11:26:15 -04:00
case AR_4_3:
return 4.0f / 3.0f;
case AR_16_9:
return 16.0f / 9.0f;
};
#endif
2019-06-15 18:20:55 -04:00
}
2019-07-03 11:26:15 -04: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 07:35:13 -04:00
{
2019-07-02 16:05:11 -04: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 16:05:11 -04:00
hfov = DEGTORAD(hfov);
float vfov = Atan(tan(hfov/2) / ar1) *2;
hfov = Atan(tan(vfov/2) * ar2) *2;
2019-07-02 16:05:11 -04:00
return RADTODEG(hfov);
2019-05-30 07:35:13 -04:00
}
2019-07-03 11:26:15 -04:00
#endif
2019-05-30 07:35:13 -04:00
void
CDraw::SetFOV(float fov)
{
#ifdef ASPECT_RATIO_SCALE
ms_fFOV = ConvertFOV(fov);
#else
2019-05-30 07:35:13 -04:00
ms_fFOV = fov;
#endif
2019-05-30 07:35:13 -04:00
}
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