-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartTile.hpp
112 lines (95 loc) · 3.19 KB
/
StartTile.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
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
//----------------------------------------------------------------------------------------------------------------------
// StartTile.hpp
//
// Class StartTile contains methods and objects for storing
// the StartTile objects that will be later used when creating
// the board using the provided random Class
//
// Author: 11804229
// 11814996
// 00713374
//----------------------------------------------------------------------------------------------------------------------
//
#ifndef A2_STARTTILE_HPP
#define A2_STARTTILE_HPP
#include "Tile.hpp"
#include "Player.hpp"
#include <string>
static const char SPACE_START_TILE = ' ';
class StartTile : public Tile
{
private:
std::string player_color_;
size_t number_of_spaces;
std::string helper_string;
std::vector<Player*> helper_vector;
public:
//------------------------------------------------------------------------------------------------------------------
///
/// Default StartTile constructor.
///
///
///
//
StartTile(TileType type, Rotation rotation, std::string player_color);
//------------------------------------------------------------------------------------------------------------------
///
/// StartTile copy-constructor.
///
///
///
//
StartTile(StartTile const&) = delete;
//------------------------------------------------------------------------------------------------------------------
///
/// StartTile destructor.
///
///
///
//
virtual ~StartTile();
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the player color as string.
///
/// @return string color of player
//
std::string getPlayerColor() const;
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the tile string.
///
/// @return string tile string
//
virtual std::string getTileString() override;
// pure virtual helper functions
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the tile string of zero degrees.
///
/// @return string tile string
//
virtual std::string zero() override;
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the tile string of 90 degrees.
///
/// @return string tile string
//
virtual std::string ninety() override;
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the tile string of 180 degrees.
///
/// @return string tile string
//
virtual std::string oneEighty() override;
//------------------------------------------------------------------------------------------------------------------
///
/// Returns the tile string of 270 degrees.
///
/// @return string tile string
//
virtual std::string twoSeventy() override;
};
#endif // A2_STARTTILE_HPP