mirror of https://github.com/AxioDL/metaforce.git
168 lines
4.6 KiB
C++
168 lines
4.6 KiB
C++
#ifndef __URDE_CGAMEOPTIONS_HPP__
|
|
#define __URDE_CGAMEOPTIONS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
#include "Audio/CAudioSys.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
/** Options tracked persistently between game sessions */
|
|
class CPersistentOptions
|
|
{
|
|
friend class CGameState;
|
|
u8 x0_[98] = {};
|
|
bool x68_[64] = {};
|
|
std::vector<std::pair<ResId, TEditorId>> xac_cinematicStates; /* (MLVL, Cinematic) */
|
|
u32 xbc_ = 0;
|
|
u32 xc0_ = 0;
|
|
u32 xc4_ = 0;
|
|
u32 xc8_ = 0;
|
|
u32 xcc_logScanCount = 0;
|
|
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
bool xd0_24_fusionLinked : 1;
|
|
bool xd0_25_normalModeBeat : 1;
|
|
bool xd0_26_hardModeBeat : 1;
|
|
bool xd0_27_fusionBeat : 1;
|
|
bool xd0_28_fusionSuitActive : 1;
|
|
bool xd0_29_allItemsCollected : 1;
|
|
};
|
|
u16 _dummy = 0;
|
|
};
|
|
|
|
public:
|
|
CPersistentOptions() = default;
|
|
CPersistentOptions(CBitStreamReader& stream);
|
|
|
|
bool GetCinematicState(ResId mlvlId, TEditorId cineId) const;
|
|
void SetCinematicState(ResId mlvlId, TEditorId cineId, bool state);
|
|
bool GetPlayerLinkedFusion() const { return xd0_24_fusionLinked; }
|
|
void SetPlayerLinkedFusion(bool v) { xd0_24_fusionLinked = v; }
|
|
bool GetPlayerBeatNormalMode() const { return xd0_25_normalModeBeat; }
|
|
void SetPlayerBeatNormalMode(bool v) { xd0_25_normalModeBeat = v; }
|
|
bool GetPlayerBeatHardMode() const { return xd0_26_hardModeBeat; }
|
|
void SetPlayerBeatHardMode(bool v) { xd0_26_hardModeBeat = v; }
|
|
bool GetPlayerBeatFusion() const { return xd0_27_fusionBeat; }
|
|
void SetPlayerBeatFusion(bool v) { xd0_27_fusionBeat = v; }
|
|
bool GetPlayerFusionSuitActive() const { return xd0_28_fusionSuitActive; }
|
|
void SetPlayerFusionSuitActive(bool v) { xd0_28_fusionSuitActive = v; }
|
|
bool GetAllItemsCollected() const { return xd0_29_allItemsCollected; }
|
|
void SetAllItemsCollected(bool v) { xd0_29_allItemsCollected = v; }
|
|
u32 GetLogScanCount() const { return xcc_logScanCount; }
|
|
void SetLogScanCount(u32 v) { xcc_logScanCount = v; }
|
|
void PutTo(CBitStreamWriter& w) const;
|
|
|
|
u8* GetNESState() { return x0_; }
|
|
};
|
|
|
|
/** Options tracked per game session */
|
|
class CGameOptions
|
|
{
|
|
public:
|
|
enum class ESoundMode
|
|
{
|
|
Mono,
|
|
Stereo,
|
|
Surround
|
|
};
|
|
|
|
private:
|
|
bool x0_[64] = {};
|
|
ESoundMode x44_soundMode = ESoundMode::Stereo;
|
|
u32 x48_ = 4;
|
|
s32 x4c_screenXOffset = 0;
|
|
s32 x50_screenYOffset = 0;
|
|
s32 x54_screenStretch = 0;
|
|
u32 x58_sfxVol = 0x7f;
|
|
u32 x5c_musicVol = 0x7f;
|
|
u32 x60_helmetAlpha = 0xff;
|
|
u32 x64_hudAlpha = 0xff;
|
|
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
bool x68_24_hudLag : 1;
|
|
bool x68_25_invertY : 1;
|
|
bool x68_26_rumble : 1;
|
|
bool x68_27_swapBeamsControls : 1;
|
|
bool x68_28_hintSystem : 1;
|
|
};
|
|
u16 _dummy = 0;
|
|
};
|
|
|
|
u32 x70_ = 0;
|
|
u32 x74_ = 0;
|
|
u32 x78_ = 0;
|
|
|
|
public:
|
|
CGameOptions();
|
|
CGameOptions(CBitStreamReader& stream);
|
|
void ResetToDefaults();
|
|
void InitSoundMode();
|
|
void EnsureSettings();
|
|
void PutTo(CBitStreamWriter& writer) const;
|
|
u32 GetMusicVolume() const { return x5c_musicVol; }
|
|
|
|
float sub8020F054();
|
|
void sub8020F098(int, bool);
|
|
void SetScreenPositionX(s32, bool);
|
|
void SetScreenPositionY(s32, bool);
|
|
void SetScreenStretch(s32, bool);
|
|
void SetSfxVolume(s32, bool);
|
|
void SetMusicVolume(s32, bool);
|
|
//void SetSurroundMode(CAudioSys::ESurroundModes, int);
|
|
void SetHUDAlpha(u32);
|
|
u32 GetHUDAlpha() const;
|
|
void SetHelmetAlpha(u32);
|
|
u32 GetHelmetAlpha() const;
|
|
void SetHUDLag(bool);
|
|
bool GetHUDLag() const;
|
|
void SetInvertYAxis(bool);
|
|
bool GetInvertYAxis() const;
|
|
void SetIsRumbleEnabled(bool);
|
|
bool IsRumbleEnabled() const;
|
|
void ToggleControls(bool);
|
|
void SetIsHintSystemEnabled(bool);
|
|
bool IsHintSystemEnabled() const;
|
|
void SetControls(s32);
|
|
void ResetControllerAssets();
|
|
};
|
|
|
|
class CHintOptions
|
|
{
|
|
public:
|
|
enum class EHintState
|
|
{
|
|
Zero,
|
|
One,
|
|
Two
|
|
};
|
|
struct SHintState
|
|
{
|
|
EHintState x0_state = EHintState::Zero;
|
|
float x4_time = 0.f;
|
|
bool x8_flag = false;
|
|
|
|
SHintState() = default;
|
|
SHintState(EHintState state, float time, bool flag)
|
|
: x0_state(state), x4_time(time), x8_flag(flag) {}
|
|
};
|
|
private:
|
|
std::vector<SHintState> x0_hintStates;
|
|
u32 x10_nextHintIdx = -1;
|
|
public:
|
|
CHintOptions() = default;
|
|
CHintOptions(CBitStreamReader& stream);
|
|
void PutTo(CBitStreamWriter& writer) const;
|
|
void SetNextHintTime();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CGAMEOPTIONS_HPP__
|