From fa341a962e351de9efba3cd6d3dccb582b625721 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 22 Jan 2017 12:03:22 -0500 Subject: windows --- include/thread.hpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 include/thread.hpp (limited to 'include/thread.hpp') diff --git a/include/thread.hpp b/include/thread.hpp new file mode 100644 index 0000000..3adc43d --- /dev/null +++ b/include/thread.hpp @@ -0,0 +1,36 @@ +#ifndef THREAD_HPP_ +#define THREAD_HPP_ + +#ifndef __WIN32__ +#include +#else +#include +#endif // __WIN32__ + +#include +#include + +class GameThread : public entityx::Receiver { +private: + std::atomic_bool die; + std::thread thread; + +public: + GameThread(std::function func) { + die.store(false); + thread = std::thread([&](std::function f) { + while (!die.load()) + f(); + }, func); + } + + ~GameThread(void) { + thread.join(); + } + + inline void stop(void) { + die.store(true); + } +}; + +#endif // THREAD_HPP_ \ No newline at end of file -- cgit v1.2.3