blob: 0dd20f9473810b72d0f4c0e587bafc1f7c9b806b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#ifndef THREAD_HPP_
#define THREAD_HPP_
#ifndef __WIN32__
#include <thread>
#else
#include <win32thread.hpp>
#endif // __WIN32__
#include <atomic>
#include <entityx/entityx.h>
class GameThread : public entityx::Receiver<GameThread> {
private:
static std::atomic_bool pause;
std::atomic_bool die;
std::thread thread;
public:
GameThread(std::function<void(void)> func) {
die.store(false);
pause.store(false);
thread = std::thread([&](std::function<void(void)> f) {
while (!die.load()) {
if (!pause.load())
f();
else
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
}, func);
}
~GameThread(void) {
thread.join();
}
inline void stop(void) {
die.store(true);
}
static inline void pauseAll(void) {
pause.store(true);
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
static inline void resumeAll(void)
{ pause.store(false); }
static inline bool isPaused(void)
{ return pause.load(); }
};
#endif // THREAD_HPP_
|