jak-project/game/main.cpp

27 lines
793 B
C++
Raw Normal View History

2020-08-22 22:30:12 -04:00
/*!
* @file main.cpp
* Main for the game. Launches the runtime.
*/
#include <cstdio>
#include "runtime.h"
#include "common/versions.h"
#include "third-party/spdlog/include/spdlog/spdlog.h"
#include "third-party/spdlog/include/spdlog/sinks/basic_file_sink.h"
2020-08-22 22:30:12 -04:00
int main(int argc, char** argv) {
2020-08-26 01:21:33 -04:00
while (true) {
spdlog::set_level(spdlog::level::debug);
auto game_logger = spdlog::basic_logger_mt("GOAL Runtime", "logs/runtime.log");
spdlog::set_default_logger(game_logger);
spdlog::flush_on(spdlog::level::info);
2020-08-22 22:30:12 -04:00
// run the runtime in a loop so we can reset the game and have it restart cleanly
spdlog::info("gk {}.{} OK!", versions::GOAL_VERSION_MAJOR, versions::GOAL_VERSION_MINOR);
if (exec_runtime(argc, argv) == 2) {
return 0;
}
2020-08-22 22:30:12 -04:00
}
return 0;
2020-10-01 12:27:58 -04:00
}