-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMove.h
More file actions
40 lines (32 loc) · 730 Bytes
/
Move.h
File metadata and controls
40 lines (32 loc) · 730 Bytes
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
#ifndef MOVE_H
#define MOVE_H
#include <vector>
#include <string>
#include "MicroMove.h"
using namespace std;
class Move
{
private:
vector<MicroMove> moveSeq;
public:
/**
* @Constructor with input in cartesian notation
*/
Move(vector<MicroMove> moveSeq);
/**
* @Constructor creating an empty move sequence
*/
Move();
vector<MicroMove> getMoveSeq() const {
return moveSeq;
}
/**
* @Constructor with input in polar notation, and the board Size
*/
Move(string move, int boardSize);
/**
* Returns the polar representation of the full move in the form of a string
*/
string cartesianToPolarString(int boardSize);
};
#endif // MOVE_H