aboutsummaryrefslogtreecommitdiff
path: root/src/world.h
blob: a09eb5aa10b8e56b5487769f464e38f2c1b83516 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#ifndef LIFE_SRC_WORLD_H_
#define LIFE_SRC_WORLD_H_

#include <stack>
#include <tuple>
#include <cstdint>

#include "util/box_traverser.h"
#include "util/torus_array.h"

namespace life {

template<
	std::size_t WIDTH,
	std::size_t HEIGHT
>
class World {
	public:
		static const std::size_t width  = WIDTH;
		static const std::size_t height = HEIGHT;

		World():
			area_(width, height) {
			this->area_.for_each([&](std::size_t i, std::size_t j) {
				this->matrix_.set(i, j, false);
			});
		}

		bool isLifeAt(const std::ptrdiff_t x, const std::ptrdiff_t y) const {
			return this->matrix_.get(x, y);
		}

		std::uint8_t lifeDensityAt(
			const std::ptrdiff_t x, const std::ptrdiff_t y) const {
			std::uint8_t counter{};

			counter += this->isLifeAt(x - 1, y);
			counter += this->isLifeAt(x + 1, y);
			counter += this->isLifeAt(x,     y - 1);
			counter += this->isLifeAt(x,     y + 1);
			counter += this->isLifeAt(x - 1, y + 1);
			counter += this->isLifeAt(x - 1, y - 1);
			counter += this->isLifeAt(x + 1, y + 1);
			counter += this->isLifeAt(x + 1, y - 1);

			return counter;
		}

		std::size_t getAge() const {
			return this->age_;
		}

		std::size_t getPopulation() const {
			return this->population_;
		}

		void summonLifeAt(const std::ptrdiff_t x, const std::ptrdiff_t y) {
			if ( this->area_(x, y) ) {
				if ( !this->matrix_.get(x, y) ) {
					this->matrix_.set(x, y, true);
					this->population_ += 1;
				}
			}
		}

		void extinguishLifeAt(const std::ptrdiff_t x, const std::ptrdiff_t y) {
			if ( this->area_(x, y) ) {
				if ( this->matrix_.get(x, y) ) {
					this->matrix_.set(x, y, false);
					this->population_ -= 1;
				}
			}
		}

		void tick() {
			this->age_++;

			std::stack<std::tuple<std::size_t, std::size_t, bool>> updates;

			this->area_.for_each([&](std::size_t i, std::size_t j) {
				const std::uint8_t d{this->lifeDensityAt(i, j)};

				if ( this->matrix_.get(i, j) ) {
					if ( d < 2 ) {
						updates.emplace(i, j, false);
					} else if ( d == 2 || d == 3 ) {
						updates.emplace(i, j, true);
					} else if ( d > 3 ) {
						updates.emplace(i, j, false);
					}
				} else {
					if ( d == 3 ) {
						updates.emplace(i, j, true);
					}
				}
			});

			while ( !updates.empty() ) {
				const auto& update = updates.top();

				if ( std::get<2>(update) ) {
					this->summonLifeAt(
						std::get<0>(update),
						std::get<1>(update)
					);
				} else {
					this->extinguishLifeAt(
						std::get<0>(update),
						std::get<1>(update)
					);
				}

				updates.pop();
			}
		}

	private:
		const util::BoxTraverser area_;

		std::size_t age_{};
		std::size_t population_{};
		util::TorusArray<bool, WIDTH, HEIGHT> matrix_;

};

}

#endif  // LIFE_SRC_WORLD_H_