metaforce/Runtime/CGameDebug.hpp

43 lines
1.0 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-26 17:23:46 -07:00
#include <string>
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-02-03 22:46:47 -08:00
struct CFinalInput;
2015-08-26 17:23:46 -07:00
const char* StringForControlOption(int);
2018-12-07 21:30:43 -08:00
enum class EDebugMenu {};
2015-08-26 17:23:46 -07:00
2018-12-07 21:30:43 -08:00
enum class EDebugOptions {};
2015-08-26 17:23:46 -07:00
2018-12-07 21:30:43 -08:00
enum class EDebugMainMenu {};
2015-08-26 17:23:46 -07:00
2018-12-07 21:30:43 -08:00
class CDebugOption {
2015-08-26 17:23:46 -07:00
public:
2018-12-07 21:30:43 -08:00
CDebugOption(EDebugMenu, EDebugOptions, const std::string&, bool);
CDebugOption(EDebugMenu, EDebugOptions, const std::string&, float, float, float, float);
2015-08-26 17:23:46 -07:00
};
2018-12-07 21:30:43 -08:00
class CGameDebug {
2015-08-26 17:23:46 -07:00
public:
2018-12-07 21:30:43 -08:00
enum class EReturnValue {};
void DeactivateMenu();
void AddDebugOption(EDebugMenu, EDebugOptions, const char*, bool);
void AddDebugOption(EDebugMenu, EDebugOptions, const char*, float, float, float, float);
void SetCaptureMovieTimeLeft(float);
const std::string& GetCaptureMovieName();
void SetCaptureMovieName(const std::string&);
void AddDebugOptions();
void CopyDebugToTweaks();
void CopyTweaksToDebug();
void ProcessControllerInput(const CFinalInput&);
void Update(float);
void Draw(void) const;
void ActivateMenu(EDebugMainMenu, int);
void AddDebugOption(const CDebugOption&);
2015-08-26 17:23:46 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce