#include <iostream>
#include "Game.hxx"
#include "MainMenu.hxx"
#include "Exception.hxx"
#include "LOG.hxx"
#include "engine/WindowManager.hxx"
#include <UIManager.hxx>
#include <SDL.h>
#include <SDL_ttf.h>
Go to the source code of this file.
◆ initialize()
bool initialize |
( |
const char * |
videoDriver | ) |
|
Definition at line 13 of file main.cxx.
22 if (SDL_VideoInit(videoDriver) != 0)
24 LOG(
LOG_ERROR) <<
"Unknown video driver " << videoDriver;
25 int nbDriver = SDL_GetNumRenderDrivers();
26 for (
int i = 0; i < nbDriver; i++)
28 SDL_RendererInfo info;
29 SDL_GetRenderDriverInfo(i, &info);
30 LOG(
LOG_ERROR) <<
"Found driver " << i <<
": " << (info.name ? info.name :
"Invalid driver")
31 <<
" with flags=" << info.flags;
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 103 of file main.cxx.
111 catch (std::exception &e)
◆ protected_main()
int protected_main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 48 of file main.cxx.
56 auto has_args = [argv, argc](
const std::string ¶m)
58 for (
int i = 1; i < argc; ++i)
66 bool skipMenu = has_args(
"--skipMenu");
67 uint32_t videoOpt = has_args(
"--video");
68 const char *videoDriver =
nullptr;
71 videoDriver = argv[videoOpt + 1];
85 bool startGame =
true;