From 036816eee4972b96196c8becbfc534c8b045150a Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sun, 25 Aug 2019 15:28:57 -0400 Subject: added logic and render loops --- src/main.cpp | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index bd53101..707c912 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,13 +20,21 @@ #include +#include +#include #include #include +#include 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,28 @@ 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) +{ + // TODO handle logic + SDL_Delay(1000); + shouldRun.store(false); +} + -- cgit v1.2.3 From 92756db816a6e0fc7ff06c6fd83d512ecb4d61f6 Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sun, 25 Aug 2019 15:49:06 -0400 Subject: added SDL key events --- src/main.cpp | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 707c912..778ae73 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -77,8 +77,24 @@ void renderLoop(void) void logicLoop(void) { - // TODO handle logic - SDL_Delay(1000); - shouldRun.store(false); + 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); + } } -- cgit v1.2.3