metaforce/Runtime/IMain.hpp

58 lines
1.2 KiB
C++
Raw Normal View History

2016-09-17 06:40:45 +00:00
#ifndef __URDE_IMAIN_HPP__
#define __URDE_IMAIN_HPP__
#include <boo/boo.hpp>
#include <boo/graphicsdev/GL.hpp>
#include <boo/audiodev/IAudioVoiceEngine.hpp>
#include <hecl/Runtime.hpp>
#include <amuse/amuse.hpp>
#include "RetroTypes.hpp"
2018-01-15 16:00:20 +00:00
namespace hecl
{
class CVarManager;
}
2016-09-17 06:40:45 +00:00
namespace urde
{
class CStopWatch;
enum class EGameplayResult
{
None,
Win,
Lose,
Playing
};
enum class EFlowState
{
None,
WinBad,
WinGood,
WinBest,
LoseGame,
Default,
StateSetter,
};
2016-09-17 06:40:45 +00:00
class IMain
{
public:
virtual ~IMain() = default;
2016-09-17 06:40:45 +00:00
virtual void Init(const hecl::Runtime::FileStoreManager& storeMgr,
2018-01-15 16:00:20 +00:00
hecl::CVarManager* cvarMgr,
boo::IWindow* window,
boo::IAudioVoiceEngine* voiceEngine,
amuse::IBackendVoiceAllocator& backend)=0;
2016-09-17 06:40:45 +00:00
virtual void Draw()=0;
virtual bool Proc()=0;
virtual void Shutdown()=0;
2017-10-17 05:51:53 +00:00
virtual boo::IWindow* GetMainWindow() const= 0;
2017-11-27 05:06:53 +00:00
virtual EFlowState GetFlowState() const = 0;
virtual void SetFlowState(EFlowState) = 0;
2017-08-13 05:26:14 +00:00
virtual size_t GetExpectedIdSize() const = 0;
2017-10-17 05:51:53 +00:00
virtual void WarmupShaders() = 0;
2016-09-17 06:40:45 +00:00
};
}
#endif // __URDE_IMAIN_HPP__