From 5e3a2492c7bb73daa4e27398daaf490d09980ff3 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 22 Jun 2022 17:41:59 -0400 Subject: Base system viewer with data loaded from csv files --- src/main.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..9ff09a6 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,26 @@ +#include +#include "game.hpp" + +#include +#include +#include + +int +main(int argc, char **argv) +{ + (void)argc; + (void)argv; + + struct winsize w; + ioctl(STDOUT_FILENO, TIOCGWINSZ, &w); + fcntl(STDIN_FILENO, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK); + + Game::setup(w.ws_col, w.ws_row); + + while(Game::running()) { + Game::turn(); + } + + Game::cleanup(); + return 0; +} -- cgit v1.2.1