mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 01:07:43 +00:00
More class stubs
This commit is contained in:
59
Runtime/MP1/CFrontEndUI.hpp
Normal file
59
Runtime/MP1/CFrontEndUI.hpp
Normal file
@@ -0,0 +1,59 @@
|
||||
#ifndef __RETRO_CFRONTENDUI_HPP__
|
||||
#define __RETRO_CFRONTENDUI_HPP__
|
||||
|
||||
#include "CIOWin.hpp"
|
||||
#include "CGameDebug.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CGuiSliderGroup;
|
||||
class CGuiTableGroup;
|
||||
class SObjectTag;
|
||||
|
||||
namespace MP1
|
||||
{
|
||||
|
||||
class CFrontEndUI : public CIOWin
|
||||
{
|
||||
public:
|
||||
enum EMenuMovie
|
||||
{
|
||||
};
|
||||
enum EScreen
|
||||
{
|
||||
};
|
||||
|
||||
CFrontEndUI(CArchitectureQueue& queue);
|
||||
void OnSliderSelectionChange(CGuiSliderGroup* grp, float);
|
||||
void OnCheckBoxSelectionChange(CGuiTableGroup* grp);
|
||||
void OnOptionSubMenuCancel(CGuiTableGroup* grp);
|
||||
void OnOptionsMenuCancel(CGuiTableGroup* grp);
|
||||
void OnNewGameMenuCancel(CGuiTableGroup* grp);
|
||||
void OnFileMenuCancel(CGuiTableGroup* grp);
|
||||
void OnGenericMenuSelectionChange(CGuiTableGroup* grp, int, int);
|
||||
void OnOptionsMenuAdvance(CGuiTableGroup* grp);
|
||||
void OnNewGameMenuAdvance(CGuiTableGroup* grp);
|
||||
void OnFileMenuAdvance(CGuiTableGroup* grp);
|
||||
void OnMainMenuAdvance(CGuiTableGroup* grp);
|
||||
const char* GetAttractMovieFileName(int idx);
|
||||
const char* GetNextAttractMovieFileName(int idx);
|
||||
void SetCurrentMovie(EMenuMovie movie);
|
||||
void StopAttractMovie();
|
||||
void StartAttractMovie(int idx);
|
||||
void UpdateMenuHighlights(CGuiTableGroup* grp);
|
||||
void CompleteStateTransition();
|
||||
bool CanBuild(const SObjectTag& tag);
|
||||
void StartStateTransition(EScreen screen);
|
||||
void HandleDebugMenuReturnValue(CGameDebug::EReturnValue val, CArchitectureQueue& queue);
|
||||
void Draw() const;
|
||||
void UpdateMovies(float dt);
|
||||
void Update(float dt, CArchitectureQueue& queue);
|
||||
EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue);
|
||||
void StartGame();
|
||||
void InitializeFrame();
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif // __RETRO_CFRONTENDUI_HPP__
|
||||
Reference in New Issue
Block a user