aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-18 06:46:36 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-18 06:46:36 -0500
commit8452b199d28bea53bf2c5e3b3d604064000fc73d (patch)
treefd3f6f2dbbf64329a1a17dee0cfdcddce4814f27 /main.cpp
parentd20633705e53a122467fb39fdbb2de3cfec279f7 (diff)
inventory bar
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/main.cpp b/main.cpp
index 49199a0..7e06d7d 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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) {