blob: cb2daa82d03c9cbb05dcc3343930d2d782fd5553 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#include "Event.hpp"
#include "Utility.hpp"
#include "GlobalState.hpp"
#include <set>
#include <SDL.h>
#include <easylogging++.h>
const char *getTimeSinceProgramStart(void) {
static auto initialTime = std::chrono::steady_clock().now();
auto now = std::chrono::steady_clock().now();
std::chrono::duration<double> seconds = now - initialTime;
static char buffer[30];
sprintf(buffer, "%.2f", seconds.count());
return buffer;
}
INITIALIZE_EASYLOGGINGPP
void initLogger() {
el::Configurations loggerConfiguration;
el::Helpers::installCustomFormatSpecifier(el::CustomFormatSpecifier("%startTime", std::bind(getTimeSinceProgramStart)));
std::string format = "[%startTime][%level][%thread][%fbase]: %msg";
loggerConfiguration.set(el::Level::Info, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Error, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Fatal, el::ConfigurationType::Format, format);
loggerConfiguration.set(el::Level::Warning, el::ConfigurationType::Format, format);
el::Helpers::setThreadName("Render");
el::Loggers::reconfigureAllLoggers(loggerConfiguration);
el::Loggers::addFlag(el::LoggingFlag::ColoredTerminalOutput);
LOG(INFO) << "Logger is configured";
}
#ifndef USE_SDL_MAIN
#undef main
#endif
int main(int argc, char** argv) {
srand(time(0));
initLogger();
try {
if (SDL_Init(0) == -1)
throw std::runtime_error(std::string("SDL initialization failed: ") + SDL_GetError());
} catch (std::exception& e) {
LOG(ERROR) << e.what();
return -1;
}
GlobalState::Exec();
return 0;
}
|