diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-25 15:57:39 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-25 15:57:39 -0400 |
commit | be36802aee32566f08f850480f3f950181fd8f29 (patch) | |
tree | 1821fb348843ea23dd9e312f1e3a2f427942c40d /src/main.cpp | |
parent | 8b2ec199c616d80ef496c13a4ba827d3b7f5fced (diff) | |
parent | 92756db816a6e0fc7ff06c6fd83d512ecb4d61f6 (diff) |
Added Lua to lib folder and played around with EntityX before abandoning it because of old code
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 47 |
1 files changed, 45 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index bd53101..778ae73 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,13 +20,21 @@ #include <SDL2/SDL.h> +#include <atomic> +#include <chrono> #include <iostream> #include <memory> +#include <thread> constexpr const char *title = "gamedev2"; constexpr int width = 640; constexpr int height = 480; +std::atomic_bool shouldRun; + +static void renderLoop(void); +static void logicLoop(void); + int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) { // Initialize SDL @@ -49,9 +57,44 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) return -1; } - // TODO game - SDL_Delay(1000); + // Start game + shouldRun.store(true); + std::thread logic (logicLoop); + renderLoop(); + logic.join(); return 0; } +void renderLoop(void) +{ + using namespace std::chrono_literals; + + // TODO render + while (shouldRun.load()) + std::this_thread::sleep_for(100ms); +} + +void logicLoop(void) +{ + using namespace std::chrono_literals; + + std::cout << "Press escape to exit." << std::endl; + + while (shouldRun.load()) { + for (SDL_Event event; SDL_PollEvent(&event);) { + switch (event.type) { + case SDL_KEYUP: + // Exit game on escape + if (event.key.keysym.sym == SDLK_ESCAPE) + shouldRun.store(false); + break; + default: + break; + } + } + + std::this_thread::sleep_for(100ms); + } +} + |