metaforce/Runtime/CGameOptions.hpp

137 lines
3.3 KiB
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CGAMEOPTIONS_HPP__
#define __URDE_CGAMEOPTIONS_HPP__
2015-08-17 20:33:58 +00:00
2015-08-31 03:44:42 +00:00
#include "RetroTypes.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
{
2016-09-25 01:58:20 +00:00
/** Options tracked persistently between game sessions */
class CPersistentOptions
{
2016-12-20 21:51:50 +00:00
friend class CGameState;
2016-12-31 00:51:51 +00:00
u8 x0_[98] = {};
2016-09-25 01:58:20 +00:00
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;
2016-12-16 23:05:29 +00:00
u32 xcc_logScanCount = 0;
2016-09-25 01:58:20 +00:00
union
{
struct
{
2016-12-16 23:05:29 +00:00
bool xd0_24_ : 1;
bool xd0_25_hasHardMode : 1;
bool xd0_26_hardModeBeat : 1;
bool xd0_27_ : 1;
bool xd0_28_hasFusion : 1;
bool xd0_29_allItemsCollected : 1;
2016-09-25 01:58:20 +00:00
};
u16 _dummy = 0;
};
public:
CPersistentOptions() = default;
CPersistentOptions(CBitStreamReader& stream);
2016-12-23 06:41:39 +00:00
bool GetCinematicState(ResId mlvlId, TEditorId cineId) const;
2016-09-25 01:58:20 +00:00
void SetCinematicState(ResId mlvlId, TEditorId cineId, bool state);
2016-12-20 21:51:50 +00:00
bool GetPlayerHasHardMode() const { return xd0_25_hasHardMode; }
void SetPlayerHasHardMode(bool v) { xd0_25_hasHardMode = v; }
bool GetPlayerBeatHardMode() const { return xd0_26_hardModeBeat; }
void SetPlayerBeatHardMode(bool v) { xd0_26_hardModeBeat = v; }
bool GetPlayerHasFusion() const { return xd0_28_hasFusion; }
void SetPlayerHasFusion(bool v) { xd0_28_hasFusion = v; }
bool GetAllItemsCollected() const { return xd0_29_allItemsCollected; }
void SetAllItemsCollected(bool v) { xd0_29_allItemsCollected = v; }
2016-12-16 23:05:29 +00:00
u32 GetLogScanCount() const { return xcc_logScanCount; }
2016-12-20 21:51:50 +00:00
void SetLogScanCount(u32 v) { xcc_logScanCount = v; }
2016-12-23 06:41:39 +00:00
void PutTo(CBitStreamWriter& w) const;
2016-12-31 00:51:51 +00:00
u8* GetNESState() { return x0_; }
2016-09-25 01:58:20 +00:00
};
/** Options tracked per game session */
2015-08-17 20:33:58 +00:00
class CGameOptions
{
2016-09-25 01:58:20 +00:00
public:
enum class ESoundMode
{
Mono,
Stereo,
Surround
};
private:
bool x0_[64] = {};
ESoundMode x44_soundMode = ESoundMode::Stereo;
u32 x48_ = 4;
u32 x4c_ = 0;
u32 x50_ = 0;
u32 x54_ = 0;
u32 x58_ = 0x7f;
2016-12-14 22:56:59 +00:00
u32 x5c_musicVol = 0x7f;
2016-09-25 01:58:20 +00:00
u32 x60_ = 0xff;
u32 x64_ = 0xff;
union
{
struct
{
2016-12-16 23:05:29 +00:00
bool x68_24_ : 1;
bool x68_25_ : 1;
bool x68_26_ : 1;
bool x68_27_ : 1;
bool x68_28_ : 1;
2016-09-25 01:58:20 +00:00
};
u16 _dummy = 0;
};
u32 x70_ = 0;
u32 x74_ = 0;
u32 x78_ = 0;
public:
CGameOptions();
CGameOptions(CBitStreamReader& stream);
void InitSoundMode();
2016-10-09 21:41:23 +00:00
void PutTo(CBitStreamWriter& writer) const;
2016-12-14 22:56:59 +00:00
u32 GetMusicVolume() const { return x5c_musicVol; }
2016-09-25 01:58:20 +00:00
};
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);
2016-10-09 21:41:23 +00:00
void PutTo(CBitStreamWriter& writer) const;
2016-12-22 02:48:22 +00:00
void SetNextHintTime();
2015-08-17 20:33:58 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CGAMEOPTIONS_HPP__