2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-04-26 06:43:48 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include "Runtime/CToken.hpp"
|
|
|
|
#include "Runtime/Camera/CCameraFilter.hpp"
|
|
|
|
#include "Runtime/Graphics/CTexture.hpp"
|
|
|
|
#include "Runtime/Graphics/Shaders/CTexturedQuadFilter.hpp"
|
|
|
|
#include "Runtime/Graphics/Shaders/CScanLinesFilter.hpp"
|
|
|
|
#include "Runtime/MP1/CInGameGuiManagerCommon.hpp"
|
2017-04-26 06:43:48 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2017-04-26 06:43:48 +00:00
|
|
|
class CStateManager;
|
2017-05-29 19:55:44 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace MP1 {
|
|
|
|
|
|
|
|
class CPauseScreenBlur {
|
|
|
|
enum class EState { InGame, MapScreen, SaveGame, HUDMessage, Pause };
|
2017-05-29 19:55:44 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
TLockedToken<CTexture> x4_mapLightQuarter;
|
|
|
|
EState x10_prevState = EState::InGame;
|
|
|
|
EState x14_nextState = EState::InGame;
|
|
|
|
float x18_blurAmt = 0.f;
|
|
|
|
CCameraBlurPass x1c_camBlur;
|
2020-04-21 07:22:41 +00:00
|
|
|
bool x50_24_blurring : 1 = false;
|
|
|
|
bool x50_25_gameDraw : 1 = true;
|
2020-04-10 19:25:40 +00:00
|
|
|
|
2020-03-31 03:52:22 +00:00
|
|
|
CTexturedQuadFilter m_quarterFilter{EFilterType::Multiply, x4_mapLightQuarter};
|
|
|
|
CScanLinesFilterEven m_linesFilter{EFilterType::Multiply};
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
void OnBlurComplete(bool);
|
|
|
|
void SetState(EState state);
|
2017-05-29 19:55:44 +00:00
|
|
|
|
2017-04-26 06:43:48 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CPauseScreenBlur();
|
|
|
|
void OnNewInGameGuiState(EInGameGuiState state, CStateManager& stateMgr);
|
|
|
|
bool IsGameDraw() const { return x50_25_gameDraw; }
|
|
|
|
void Update(float dt, const CStateManager& stateMgr, bool);
|
2020-03-16 01:38:25 +00:00
|
|
|
void Draw(const CStateManager& stateMgr);
|
2018-12-08 05:30:43 +00:00
|
|
|
float GetBlurAmt() const { return std::fabs(x18_blurAmt); }
|
|
|
|
bool IsNotTransitioning() const { return x10_prevState == x14_nextState; }
|
2017-04-26 06:43:48 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace MP1
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|