1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/rwgame/main.cpp
2018-09-16 00:52:41 +02:00

43 lines
1.3 KiB
C++

#define SDL_MAIN_HANDLED
#include <iostream>
#include "RWGame.hpp"
#include <SDL.h>
#include <core/Logger.hpp>
int main(int argc, char* argv[]) {
SDL_SetMainReady();
// Initialise Logging before anything else happens
StdOutReceiver logstdout;
Logger logger({ &logstdout });
try {
RWGame game(logger, argc, argv);
return game.run();
} catch (std::invalid_argument&) {
// This exception is thrown when either an invalid command line option
// or a --help is found. The RWGame constructor prints a usage message
// in this case and then throws this exception.
return -2;
} catch (std::runtime_error& ex) {
// Catch runtime_error as these are fatal issues the user may want to
// know about like corrupted files or GL initialisation failure.
// Catching other types (out_of_range, bad_alloc) would just make
// debugging them more difficult.
const char* kErrorTitle = "Fatal Error";
logger.error("exception", ex.what());
if (SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, kErrorTitle,
ex.what(), nullptr) < 0) {
SDL_Log("Failed to show message box\n");
}
SDL_Quit();
return -1;
}
}