diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-18 06:46:36 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-18 06:46:36 -0500 |
commit | 8452b199d28bea53bf2c5e3b3d604064000fc73d (patch) | |
tree | fd3f6f2dbbf64329a1a17dee0cfdcddce4814f27 /main.cpp | |
parent | d20633705e53a122467fb39fdbb2de3cfec279f7 (diff) |
inventory bar
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -20,29 +20,29 @@ using namespace std::literals::chrono_literals; #include <world.hpp> #include <render.hpp> #include <ui.hpp> +#include <inventory.hpp> class GameThread : public entityx::Receiver<GameThread> { private: std::atomic_bool die; - bool running; std::thread thread; public: template<typename F> GameThread(F&& func) { die.store(false); - running = true; thread = std::thread([this](F&& f) { while (!die.load()) f(); - running = false; }, std::forward<F>(func)); } + ~GameThread(void) { + thread.join(); + } + void stop(void) { die.store(true); - while (running) - std::this_thread::sleep_for(2ms); } }; @@ -133,6 +133,10 @@ int main(int argc, char *argv[]) // // ///////////////////////////// + + game::engine.getSystem<InventorySystem>()->add("Debug", 3); + + std::list<SDL_Event> eventQueue; if (!worldDontReallyRun) { |