metaforce/Editor/main.cpp

205 lines
5.7 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/CBasics.hpp"
#include "ViewManager.hpp"
2017-11-19 07:10:54 +00:00
#include "hecl/hecl.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);
2016-09-11 21:17:27 +00:00
AthenaLog.report(logvisor::Level(level), 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 = std::make_unique<ViewManager>(m_fileMgr, m_cvarManager);
2016-02-20 05:49:47 +00:00
}
2015-11-22 04:35:24 +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
}
void appFilesOpen(boo::IApplication*, const std::vector<boo::SystemString>& paths)
{
for (const auto& path : paths)
{
hecl::ProjectRootPath projPath = hecl::SearchForProject(path);
if (projPath)
{
m_viewManager->deferOpenProject(path);
break;
}
}
}
2016-02-15 17:35:20 +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();
for (const boo::SystemString& arg : app->getArgs())
{
if (arg.find(_S("--verbosity=")) == 0 || arg.find(_S("-v=")) == 0)
{
2017-11-13 06:19:18 +00:00
hecl::SystemUTF8Conv 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;
2017-11-19 07:10:54 +00:00
static void SetupBasics(bool logging)
2017-10-24 03:12:10 +00:00
{
logvisor::RegisterStandardExceptions();
2017-11-19 07:10:54 +00:00
if (logging)
logvisor::RegisterConsoleLogger();
2017-10-24 03:12:10 +00:00
atSetExceptionHandler(AthenaExc);
}
2017-11-19 07:10:54 +00:00
static bool IsClientLoggingEnabled(int argc, const boo::SystemChar** argv)
{
bool logging = false;
for (int i = 1; i < argc; ++i)
if (!hecl::StrNCmp(argv[i], _S("-l"), 2))
{
logging = true;
break;
}
return logging;
}
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
{
2017-11-19 07:10:54 +00:00
SetupBasics(IsClientLoggingEnabled(argc, argv));
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;
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;
}
2017-10-24 03:12:10 +00:00
#if WINAPI_FAMILY && !WINAPI_PARTITION_DESKTOP
using namespace Windows::ApplicationModel::Core;
[Platform::MTAThread]
int WINAPIV main(Platform::Array<Platform::String^>^ params)
{
SetupBasics();
urde::Application appCb;
auto viewProvider = ref new ViewProvider(appCb, _S("urde"), _S("URDE"), params, false);
CoreApplication::Run(viewProvider);
return 0;
}
#elif _WIN32
2015-11-21 01:16:07 +00:00
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];
2017-11-19 07:10:54 +00:00
if (IsClientLoggingEnabled(argc+1, booArgv))
logvisor::CreateWin32Console();
2015-11-21 01:16:07 +00:00
return wmain(argc+1, booArgv);
}
#endif
2017-10-24 03:12:10 +00:00