-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgame_field.h
122 lines (88 loc) · 2.33 KB
/
game_field.h
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
//
// game_field.h
// GameOfLive
//
// Created by Кирилл on 10.10.17.
// Copyright © 2017 Кирилл. All rights reserved.
//
#ifndef GAME_FIELD_H
#define GAME_FIELD_H
#include <exception>
#include <ostream>
#include <vector>
class BadGameFieldException : public std::exception {
public:
BadGameFieldException(size_t line, size_t pos, const std::string& reason);
const char* what() const noexcept override;
private:
std::string reason;
};
class GameField {
public:
class SubGameField;
GameField(size_t width, size_t height);
GameField(const GameField& toCopy)
: width(toCopy.width), height(toCopy.height), field(toCopy.field) {}
/**
* Parse string and creates field from it.
* Living Cell: '#'
* Dead Cell: '.'
*
* @param str String for parse.
*/
GameField(const std::string& str);
SubGameField operator[](int pos);
const SubGameField operator[](int pos) const;
size_t getWidth() const;
size_t getHeight() const;
GameField& operator=(const GameField& copy);
bool operator==(const GameField& equal) const;
private:
size_t width;
size_t height;
std::vector<std::vector<bool>> field;
friend SubGameField;
friend std::ostream& operator<<(std::ostream& stream, const GameField& field);
};
/**
* Outputs field to stream.
* Living Cell: '#'
* Dead Cell: '.'
*/
std::ostream& operator<<(std::ostream& stream, const GameField& field);
class GameField::SubGameField {
public:
class Cell;
/**
* @return Cell at position, considering loop.
*/
Cell operator[](int pos);
/**
* @return Cell at position, considering loop.
*/
const Cell operator[](int pos) const;
private:
const size_t posX;
const size_t height;
std::vector<std::vector<bool>>& field;
SubGameField(size_t posX, GameField& game)
: posX(posX), field(game.field), height(game.height) {}
SubGameField& operator=(SubGameField const&) = delete;
friend GameField;
};
class GameField::SubGameField::Cell {
public:
bool isLife() const;
size_t getX() const;
size_t getY() const;
void bornLife();
void kill();
private:
const size_t posX;
const size_t posY;
std::vector<std::vector<bool>>& field;
Cell(size_t posX, size_t posY, std::vector<std::vector<bool>>& field)
: posX(posX), posY(posY), field(field) {}
friend SubGameField;
};
#endif /* GAME_FIELD_H */