2017-05-02 04:00:38 +00:00
|
|
|
#include "CPauseScreenBlur.hpp"
|
2017-05-29 19:55:44 +00:00
|
|
|
#include "CSimplePool.hpp"
|
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
#include "Audio/CSfxManager.hpp"
|
2017-05-02 04:00:38 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
namespace MP1
|
|
|
|
{
|
|
|
|
|
|
|
|
CPauseScreenBlur::CPauseScreenBlur()
|
2017-11-16 23:49:25 +00:00
|
|
|
: x4_mapLightQuarter(g_SimplePool->GetObj("TXTR_MapLightQuarter"))
|
2017-05-02 04:00:38 +00:00
|
|
|
{
|
2017-05-29 19:55:44 +00:00
|
|
|
x50_25_gameDraw = true;
|
2017-05-02 04:00:38 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
void CPauseScreenBlur::OnNewInGameGuiState(EInGameGuiState state, CStateManager& stateMgr)
|
2017-05-02 04:00:38 +00:00
|
|
|
{
|
2017-05-29 19:55:44 +00:00
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case EInGameGuiState::Zero:
|
|
|
|
case EInGameGuiState::InGame:
|
|
|
|
SetState(EState::InGame);
|
|
|
|
break;
|
|
|
|
case EInGameGuiState::MapScreen:
|
|
|
|
SetState(EState::MapScreen);
|
|
|
|
break;
|
|
|
|
case EInGameGuiState::PauseSaveGame:
|
|
|
|
SetState(EState::SaveGame);
|
|
|
|
break;
|
|
|
|
case EInGameGuiState::PauseHUDMessage:
|
|
|
|
SetState(EState::HUDMessage);
|
|
|
|
break;
|
|
|
|
case EInGameGuiState::PauseGame:
|
|
|
|
case EInGameGuiState::PauseLogBook:
|
|
|
|
SetState(EState::Pause);
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
2017-05-02 04:00:38 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
void CPauseScreenBlur::SetState(EState state)
|
2017-05-02 04:00:38 +00:00
|
|
|
{
|
2017-05-29 19:55:44 +00:00
|
|
|
if (x10_prevState == EState::InGame && state != EState::InGame)
|
|
|
|
{
|
|
|
|
CSfxManager::SetChannel(CSfxManager::ESfxChannels::PauseScreen);
|
|
|
|
if (state == EState::HUDMessage)
|
|
|
|
CSfxManager::SfxStart(1415, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
else if (state == EState::MapScreen)
|
|
|
|
CSfxManager::SfxStart(1378, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
x18_blurAmt = FLT_EPSILON;
|
|
|
|
}
|
2017-05-02 04:00:38 +00:00
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
if (state == EState::InGame && (x10_prevState != EState::InGame || x14_nextState != EState::InGame))
|
|
|
|
{
|
|
|
|
CSfxManager::SetChannel(CSfxManager::ESfxChannels::Game);
|
|
|
|
if (x10_prevState == EState::HUDMessage)
|
|
|
|
CSfxManager::SfxStart(1416, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
else if (x10_prevState == EState::MapScreen)
|
|
|
|
CSfxManager::SfxStart(1380, 1.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
x18_blurAmt = -1.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
x14_nextState = state;
|
2017-05-02 04:00:38 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
void CPauseScreenBlur::OnBlurComplete(bool b)
|
2017-05-18 19:27:21 +00:00
|
|
|
{
|
2017-05-29 19:55:44 +00:00
|
|
|
if (x14_nextState == EState::InGame && !b)
|
|
|
|
return;
|
|
|
|
x10_prevState = x14_nextState;
|
|
|
|
if (x10_prevState == EState::InGame)
|
|
|
|
x50_25_gameDraw = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CPauseScreenBlur::Update(float dt, const CStateManager& stateMgr, bool b)
|
|
|
|
{
|
|
|
|
if (x10_prevState == x14_nextState)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (x18_blurAmt < 0.f)
|
|
|
|
x18_blurAmt = std::min(0.f, 2.f * dt + x18_blurAmt);
|
|
|
|
else
|
|
|
|
x18_blurAmt = std::min(1.f, 2.f * dt + x18_blurAmt);
|
|
|
|
|
|
|
|
if (x18_blurAmt == 0.f || x18_blurAmt == 1.f)
|
|
|
|
OnBlurComplete(b);
|
2017-05-18 19:27:21 +00:00
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
if (x18_blurAmt == 0.f && b)
|
|
|
|
{
|
|
|
|
x1c_camBlur.DisableBlur(0.f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-01 05:34:24 +00:00
|
|
|
x1c_camBlur.SetBlur(EBlurType::HiBlur,
|
2017-05-29 19:55:44 +00:00
|
|
|
g_tweakGui->GetPauseBlurFactor() * std::fabs(x18_blurAmt), 0.f);
|
|
|
|
x50_24_blurring = true;
|
|
|
|
}
|
2017-05-18 19:27:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
void CPauseScreenBlur::Draw(const CStateManager&) const
|
2017-05-21 16:01:04 +00:00
|
|
|
{
|
2017-05-29 19:55:44 +00:00
|
|
|
const_cast<CCameraBlurPass&>(x1c_camBlur).Draw();
|
|
|
|
float t = std::fabs(x18_blurAmt);
|
2017-06-01 05:34:24 +00:00
|
|
|
if (x1c_camBlur.GetCurrType() != EBlurType::NoBlur)
|
2017-05-29 19:55:44 +00:00
|
|
|
{
|
|
|
|
zeus::CColor filterColor =
|
|
|
|
zeus::CColor::lerp(zeus::CColor::skWhite, g_tweakGuiColors->GetPauseBlurFilterColor(), t);
|
2017-11-16 23:49:25 +00:00
|
|
|
const_cast<CTexturedQuadFilter&>(m_quarterFilter).DrawFilter(EFilterShape::FullscreenQuarters, filterColor, t * (31.f/32.f));
|
2017-05-29 19:55:44 +00:00
|
|
|
zeus::CColor scanLinesColor =
|
|
|
|
zeus::CColor::lerp(zeus::CColor::skWhite, zeus::CColor(0.75f, 1.f), t);
|
2017-06-01 19:10:06 +00:00
|
|
|
const_cast<CScanLinesFilterEven&>(m_linesFilter).draw(scanLinesColor);
|
2017-05-29 19:55:44 +00:00
|
|
|
}
|
2017-05-21 16:01:04 +00:00
|
|
|
|
2017-05-29 19:55:44 +00:00
|
|
|
if (x50_24_blurring /*&& x1c_camBlur.x2d_noPersistentCopy*/)
|
|
|
|
{
|
|
|
|
const_cast<CPauseScreenBlur*>(this)->x50_24_blurring = false;
|
|
|
|
const_cast<CPauseScreenBlur*>(this)->x50_25_gameDraw = false;
|
|
|
|
}
|
2017-05-21 16:01:04 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 04:00:38 +00:00
|
|
|
}
|
|
|
|
}
|