metaforce/Editor/main.cpp

138 lines
3.6 KiB
C++
Raw Normal View History

2016-03-04 23:04:53 +00:00
#include "logvisor/logvisor.hpp"
#include "boo/boo.hpp"
#include "specter/specter.hpp"
#include "hecl/CVarManager.hpp"
#include "Runtime/CGameAllocator.hpp"
2015-11-22 08:01:51 +00:00
#include <functional>
#include "ViewManager.hpp"
2016-03-04 23:04:53 +00:00
#include "Runtime/Particle/CElementGen.hpp"
2015-11-21 01:16:07 +00:00
static logvisor::Module AthenaLog("Athena");
static void AthenaExc(athena::error::Level level, const char* file,
const char*, int line, const char* fmt, ...)
{
va_list ap;
va_start(ap, fmt);
AthenaLog.reportSource(logvisor::Level(level), file, line, fmt, ap);
va_end(ap);
}
2016-03-05 00:03:41 +00:00
namespace urde
2015-11-21 01:16:07 +00:00
{
2016-03-05 00:03:41 +00:00
static logvisor::Module Log{"URDE"};
2016-02-15 17:35:20 +00:00
2015-11-21 01:16:07 +00:00
struct Application : boo::IApplicationCallback
{
2016-03-04 23:04:53 +00:00
hecl::Runtime::FileStoreManager m_fileMgr;
hecl::CVarManager m_cvarManager;
2016-02-20 05:49:47 +00:00
std::unique_ptr<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")),
2016-02-20 05:49:47 +00:00
m_cvarManager(m_fileMgr)
{
m_viewManager.reset(new 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)
{
2016-02-15 17:35:20 +00:00
initialize(app);
2016-02-20 05:49:47 +00:00
m_viewManager->init(app);
2015-11-22 04:35:24 +00:00
while (m_running)
{
2016-02-20 05:49:47 +00:00
if (!m_viewManager->proc())
2015-11-26 23:04:11 +00:00
break;
2015-11-22 04:35:24 +00:00
}
2016-02-20 05:49:47 +00:00
m_viewManager->stop();
2015-12-04 01:44:35 +00:00
m_cvarManager.serialize();
2016-02-20 05:49:47 +00:00
m_viewManager.reset();
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>&)
{
}
2016-02-15 17:35:20 +00:00
void initialize(boo::IApplication* app)
{
2016-03-04 23:04:53 +00:00
zeus::detectCPU();
2016-02-15 17:35:20 +00:00
2016-03-04 23:04:53 +00:00
const zeus::CPUInfo& cpuInf = zeus::cpuFeatures();
Log.report(logvisor::Info, "CPU Name: %s", cpuInf.cpuBrand);
Log.report(logvisor::Info, "CPU Vendor: %s", cpuInf.cpuVendor);
hecl::SystemString features;
2016-02-15 17:52:43 +00:00
if (cpuInf.AESNI)
features += _S("AES-NI");
if (cpuInf.SSE1)
{
if (!features.empty())
features += _S(", SSE1");
else
features += _S("SSE1");
}
else
{
2016-03-04 23:04:53 +00:00
Log.report(logvisor::Fatal, _S("URDE requires SSE1 minimum"));
2016-02-15 17:52:43 +00:00
return;
}
if (cpuInf.SSE2)
features += _S(", SSE2");
else
{
2016-03-04 23:04:53 +00:00
Log.report(logvisor::Fatal, _S("URDE requires SSE2 minimum"));
2016-02-15 17:52:43 +00:00
return;
}
if (cpuInf.SSE3)
features += _S(", SSE3");
if (cpuInf.SSSE3)
features += _S(", SSSE3");
if (cpuInf.SSE4a)
features += _S(", SSE4a");
if (cpuInf.SSE41)
features += _S(", SSE4.1");
if (cpuInf.SSE42)
features += _S(", SSE4.2");
2016-03-04 23:04:53 +00:00
Log.report(logvisor::Info, _S("CPU Features: %s"), features.c_str());
2016-02-15 17:35:20 +00:00
}
2015-11-21 01:16:07 +00:00
};
}
#if _WIN32
int wmain(int argc, const boo::SystemChar** argv)
#else
int main(int argc, const boo::SystemChar** argv)
#endif
{
2016-03-04 23:04:53 +00:00
logvisor::RegisterConsoleLogger();
atSetExceptionHandler(AthenaExc);
2016-03-05 00:03:41 +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];
2016-03-04 23:04:53 +00:00
logvisor::CreateWin32Console();
2015-11-21 01:16:07 +00:00
return wmain(argc+1, booArgv);
}
#endif