aboutsummaryrefslogtreecommitdiff
path: root/Museum.h
blob: ae7e71eb579c135def8c310b0b13645ef003f1ca (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
#pragma once

#include <thread>
#include <chrono>

using namespace std::chrono_literals;

#include "People.h"
#include "Canvas.h"

class Museum {
public:
	Museum();
	virtual ~Museum();

public:
	People people;
	Canvas canvas;

public:
	void set_pause(bool paused);
	bool get_pause() { return this->paused; }
	void update();
	void skip_forward();
	void skip_backward();

private:
	bool paused = true;
	unsigned long jump = 0;

private:
	bool working = true;
	std::thread * worker = nullptr;
	void work();

private:
	unsigned long long tick = 0;
	static constexpr unsigned snapshot_ticks = 50;
	static constexpr std::chrono::milliseconds tick_interval = 15ms;
};