-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfield.h
64 lines (49 loc) · 1.39 KB
/
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
#ifndef FIELD_H
#define FIELD_H
#include "point.h"
#include "piece.h"
#include <cstdint>
#include <array>
constexpr int FIELD_WIDTH = 10;
constexpr int FIELD_HEIGHT = 20;
class Field {
public:
Field();
~Field();
void Clear();
bool IsEmpty() const;
// Tile
int GetTileKind(Point pos) const;
void SetTileKind(Point pos, int kind);
void SetPiece(const Piece &piece);
void SetTopHole(int start_x, int end_x);
// Cleared lines
int GetClearedLineCount() const;
void GetClearedLines(int *cleared_line_y) const;
void ClearLines();
private:
struct Line {
std::array<int8_t, FIELD_WIDTH> elem {0};
bool is_cleared = false;
int8_t tile_count = 0;
Line () {}
const int8_t operator[](int i) const { return elem[i]; }
int8_t &operator[](int i) { return elem[i]; }
bool IsFilled() const { return tile_count == FIELD_WIDTH; }
void MarkCleared() { is_cleared = true; }
void SetTile(int x, int kind)
{
assert(IsValidTile(kind));
assert(IsEmptyTile((*this)[x]));
(*this)[x] = kind;
tile_count++;
if (IsFilled())
MarkCleared();
}
};
std::array<Line, FIELD_HEIGHT> lines_;
int cleared_line_count_ = 0;
int hole_start_ = -1, hole_end_ = -1;
bool is_inside_hole(Point pos) const;
};
#endif