1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/main.cpp
Daniel Evans 95481c6d2e Catch fatal exceptions and show an error dialog
We also print to stderr, but sometimes stderr is unavailable so we should
show a dialog.
2016-08-25 23:32:30 +01:00

29 lines
726 B
C++

#include "RWGame.hpp"
#include "SDL.h"
#include <iostream>
int main(int argc, char* argv[])
{
try {
RWGame game(argc, argv);
return game.run();
} 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";
std::cerr << kErrorTitle << "\n" << ex.what() << std::endl;
if (SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, kErrorTitle,
ex.what(), NULL) < 0) {
SDL_Log("Failed to show message box\n");
}
return -1;
}
}