metaforce/Editor/main.cpp

78 lines
1.9 KiB
C++
Raw Normal View History

2015-11-21 01:16:07 +00:00
#include <LogVisor/LogVisor.hpp>
#include <boo/boo.hpp>
#include <Specter/Specter.hpp>
2015-12-02 21:14:31 +00:00
#include <HECL/CVarManager.hpp>
2015-11-22 06:51:25 +00:00
#include <Runtime/CGameAllocator.hpp>
2015-11-22 08:01:51 +00:00
#include <functional>
#include "ViewManager.hpp"
2015-11-21 01:16:07 +00:00
2016-01-05 09:53:16 +00:00
namespace URDE
2015-11-21 01:16:07 +00:00
{
struct Application : boo::IApplicationCallback
{
2015-11-22 04:35:24 +00:00
HECL::Runtime::FileStoreManager m_fileMgr;
2015-12-02 21:14:31 +00:00
HECL::CVarManager m_cvarManager;
ViewManager m_viewManager;
2015-11-22 04:35:24 +00:00
bool m_running = true;
2015-11-23 08:47:57 +00:00
Application() :
2016-01-05 09:53:16 +00:00
m_fileMgr(_S("urde")),
m_cvarManager(m_fileMgr),
m_viewManager(m_fileMgr, m_cvarManager) {}
2015-11-22 04:35:24 +00:00
2015-11-21 01:16:07 +00:00
int appMain(boo::IApplication* app)
{
m_viewManager.init(app);
2015-11-22 04:35:24 +00:00
while (m_running)
{
if (!m_viewManager.proc())
2015-11-26 23:04:11 +00:00
break;
2015-11-22 04:35:24 +00:00
}
m_viewManager.stop();
2015-12-04 01:44:35 +00:00
m_cvarManager.serialize();
2015-11-21 01:16:07 +00:00
return 0;
}
void appQuitting(boo::IApplication*)
{
2015-11-22 04:35:24 +00:00
m_running = false;
2015-11-21 01:16:07 +00:00
}
void appFilesOpen(boo::IApplication*, const std::vector<boo::SystemString>&)
{
}
};
}
#if _WIN32
int wmain(int argc, const boo::SystemChar** argv)
#else
int main(int argc, const boo::SystemChar** argv)
#endif
{
LogVisor::RegisterConsoleLogger();
2016-01-05 09:53:16 +00:00
URDE::Application appCb;
int ret = boo::ApplicationRun(boo::IApplication::EPlatformType::Auto,
2016-01-05 09:53:16 +00:00
appCb, _S("urde"), _S("URDE"), argc, argv, false);
2015-11-21 01:16:07 +00:00
printf("IM DYING!!\n");
return ret;
}
#if _WIN32
int APIENTRY wWinMain(HINSTANCE hInstance, HINSTANCE, LPWSTR lpCmdLine, int)
{
int argc = 0;
const boo::SystemChar** argv = (const wchar_t**)(CommandLineToArgvW(lpCmdLine, &argc));
static boo::SystemChar selfPath[1024];
GetModuleFileNameW(nullptr, selfPath, 1024);
static const boo::SystemChar* booArgv[32] = {};
booArgv[0] = selfPath;
for (int i=0 ; i<argc ; ++i)
booArgv[i+1] = argv[i];
LogVisor::CreateWin32Console();
return wmain(argc+1, booArgv);
}
#endif