-
Notifications
You must be signed in to change notification settings - Fork 1
/
Move.h
121 lines (97 loc) · 2.46 KB
/
Move.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
/*
* File: Move.h
* Author: Tomáš Čerevka, Adam Činčura
*
* Created on November 2, 2011, 10:21 AM
*/
#ifndef MOVE_H
#define MOVE_H
#include <iostream>
#include <mpi.h>
#include "global.h"
using namespace std;
/**
* Tah ve hre - co, odkud a kam.
* @author Tomáš Čerevka
* @author Adam Činčura
*/
class Move {
public:
/**
* Konstruktor.
*/
Move();
/**
* Konstruktor.
* @param int Index veze, ze ktere byl token odebran.
* @param int Index veze, na kterou byl token pridan.
* @param int Hodnota presuneteho tokenu.
*/
Move(int, int, int);
/**
* Vrati index veze, ze ktere byl token odebran.
* @return int Index veze.
*/
inline int getFrom(void) const {
return this->from;
}
/**
* Vrati index veze, na kterou byl token pridan.
* @return int Index veze.
*/
inline int getTo(void) const {
return this->to;
}
/**
* Vrati hodnotu presunuteho tokenu.
* @return int Hodnota tokenu.
*/
inline int getValue(void) const {
return this->to;
}
/**
* Rozhodne, zda jsou tahy inverzni.
* @param const Move& Tah, se kterym porovnava.
* @return TRUE jsou reverzni, jinak FALSE
*/
bool isReverse(const Move&) const;
/**
* Vytvori reverzeni tah.
* @param const Move& Tah, ke kteremu se bude konstruovat inverzni tah.
* @param Move& Tah, do ktereho se inverzni tah zkonstruuje.
*/
void getReverse(const Move&, Move&) const;
/**
* Serializuje tah.
* @param char* Buffer.
* @param int& Pozice v bufferu.
*/
void serialize(char*, int&) const;
/**
* Deserialuzuje tah.
* @param char* Buffer.
* @param int& Pozice v bufferu.
*/
void deserialize(char*, int&);
/**
* Pretizeny operator pro porovnani dvou tahu.
* @param Move& Tah, se kterym se porovnava.
* @return TRUE jsou-li tahy stejne, jinak FALSE.
*/
bool operator==(const Move&);
/**
* Pretizeny operator vypisu do streamu.
* @param ostream& Vstupni stream.
* @param const Move& Vypisovany tah.
* @return ostream& Vystupni stream.
*/
friend ostream& operator<<(ostream&, const Move&);
private:
/** Index veze, ze ktere byl token odebran. */
int from;
/** Index veze, na kterou byl token pridan. */
int to;
/** Hodnota presunuteho tokenu, pouze pro kontrolu. */
int value;
};
#endif /* MOVE_H */