-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSquare.hpp
49 lines (38 loc) · 1.44 KB
/
Square.hpp
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
#ifndef CHESS_ENGINE_SQUARE_HPP
#define CHESS_ENGINE_SQUARE_HPP
#include <optional>
#include <iosfwd>
#include <string>
class Square {
public:
using Coordinate = unsigned;
using Index = unsigned;
using Optional = std::optional<Square>;
static Optional fromCoordinates(Coordinate file, Coordinate rank);
static Optional fromIndex(Index index);
static Optional fromName(const std::string& name);
static int HammingDist(const Square& x,const Square& y);
Coordinate file() const;
Coordinate rank() const;
Index index() const;
std::string getName() const;
static const Square A1, B1, C1, D1, E1, F1, G1, H1;
static const Square A2, B2, C2, D2, E2, F2, G2, H2;
static const Square A3, B3, C3, D3, E3, F3, G3, H3;
static const Square A4, B4, C4, D4, E4, F4, G4, H4;
static const Square A5, B5, C5, D5, E5, F5, G5, H5;
static const Square A6, B6, C6, D6, E6, F6, G6, H6;
static const Square A7, B7, C7, D7, E7, F7, G7, H7;
static const Square A8, B8, C8, D8, E8, F8, G8, H8;
private:
//Columns (called files) are labeled a through h while rows (called ranks) are labeled 1 through 8.
Index i;
Coordinate r;
Coordinate f;
Square(Index index);
};
std::ostream& operator<<(std::ostream& os, const Square& square);
// Necessary to support Square as the key in std::map.
bool operator<(const Square& lhs, const Square& rhs);
bool operator==(const Square& lhs, const Square& rhs);
#endif