2016-03-04 23:04:53 +00:00
|
|
|
#include "logvisor/logvisor.hpp"
|
|
|
|
#include "boo/boo.hpp"
|
|
|
|
#include "specter/specter.hpp"
|
|
|
|
#include "hecl/CVarManager.hpp"
|
2016-12-24 06:08:48 +00:00
|
|
|
#include "Runtime/CBasics.hpp"
|
2015-11-22 08:01:51 +00:00
|
|
|
#include <functional>
|
2015-12-06 01:27:02 +00:00
|
|
|
#include "ViewManager.hpp"
|
2015-11-21 01:16:07 +00:00
|
|
|
|
2016-03-07 22:48:54 +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);
|
2016-09-11 21:17:27 +00:00
|
|
|
AthenaLog.report(logvisor::Level(level), fmt, ap);
|
2016-03-07 22:48:54 +00:00
|
|
|
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-12-06 01:27:02 +00:00
|
|
|
|
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
|
|
|
|
2016-07-09 06:53:20 +00:00
|
|
|
virtual ~Application() = default;
|
|
|
|
|
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();
|
2016-12-13 02:56:43 +00:00
|
|
|
m_viewManager->projectManager().saveProject();
|
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
|
|
|
}
|
2017-01-22 06:28:55 +00:00
|
|
|
void appFilesOpen(boo::IApplication*, const std::vector<boo::SystemString>& paths)
|
|
|
|
{
|
|
|
|
for (const auto& path : paths)
|
|
|
|
{
|
|
|
|
hecl::ProjectRootPath projPath = hecl::SearchForProject(path);
|
|
|
|
if (projPath)
|
|
|
|
{
|
2017-01-23 10:13:36 +00:00
|
|
|
m_viewManager->deferOpenProject(path);
|
2017-01-22 06:28:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-15 17:35:20 +00:00
|
|
|
|
2017-01-22 06:28:55 +00:00
|
|
|
void initialize(boo::IApplication* app)
|
2016-02-15 17:35:20 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
zeus::detectCPU();
|
2017-01-22 06:28:55 +00:00
|
|
|
for (const boo::SystemString& arg : app->getArgs())
|
|
|
|
{
|
|
|
|
if (arg.find(_S("--verbosity=")) == 0)
|
|
|
|
{
|
|
|
|
hecl::SystemUTF8View utf8Arg(arg.substr(arg.find_last_of('=') + 1));
|
|
|
|
hecl::VerbosityLevel = atoi(utf8Arg.c_str());
|
|
|
|
hecl::LogModule.report(logvisor::Info, "Set verbosity level to %i", hecl::VerbosityLevel);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-02-24 08:28:44 +00:00
|
|
|
static hecl::SystemChar CwdBuf[1024];
|
|
|
|
hecl::SystemString ExeDir;
|
|
|
|
|
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-09-08 06:16:46 +00:00
|
|
|
logvisor::RegisterStandardExceptions();
|
2016-03-04 23:04:53 +00:00
|
|
|
logvisor::RegisterConsoleLogger();
|
2016-03-07 22:48:54 +00:00
|
|
|
atSetExceptionHandler(AthenaExc);
|
2017-02-24 08:28:44 +00:00
|
|
|
|
|
|
|
if (hecl::SystemChar* cwd = hecl::Getcwd(CwdBuf, 1024))
|
|
|
|
{
|
2017-02-25 07:59:37 +00:00
|
|
|
if (hecl::PathRelative(argv[0]))
|
2017-02-24 08:28:44 +00:00
|
|
|
ExeDir = hecl::SystemString(cwd) + _S('/');
|
|
|
|
hecl::SystemString Argv0(argv[0]);
|
|
|
|
hecl::SystemString::size_type lastIdx = Argv0.find_last_of(_S("/\\"));
|
|
|
|
if (lastIdx != hecl::SystemString::npos)
|
|
|
|
ExeDir.insert(ExeDir.end(), Argv0.begin(), Argv0.begin() + lastIdx);
|
|
|
|
}
|
|
|
|
|
2016-03-05 00:03:41 +00:00
|
|
|
urde::Application appCb;
|
2015-12-06 01:27:02 +00:00
|
|
|
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
|