aboutsummaryrefslogtreecommitdiffstats
path: root/include/thread.hpp
blob: 3adc43d8a151fad022734f5b2d7cd4865fe3d750 (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
#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:
	std::atomic_bool die;
	std::thread thread;

public:
	GameThread(std::function<void(void)> func) {
		die.store(false);
		thread = std::thread([&](std::function<void(void)> f) {
			while (!die.load())
				f();
		}, func);
	}

	~GameThread(void) {
		thread.join();
	}

	inline void stop(void) {
		die.store(true);
	}
};

#endif // THREAD_HPP_