-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQwixxPlayer.cpp
More file actions
219 lines (162 loc) · 6.7 KB
/
QwixxPlayer.cpp
File metadata and controls
219 lines (162 loc) · 6.7 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#include "QwixxPlayer.h"
QwixxPlayer::QwixxPlayer(const std::string _name) : Player( new QwixxScoreSheet(_name) ) {}
QwixxPlayer::~QwixxPlayer() { delete d_ScoreSheet; }
RollOfDice QwixxPlayer::inputBeforeRoll(RollOfDice& _roll)
{
d_active = true;
std::vector<Color> dice_colors;
dice_colors.push_back(Color::WHITE_1);
dice_colors.push_back(Color::WHITE_2);
std::vector<Color> tmp = d_ScoreSheet->getUnlockedColorsVector();
for (auto c : tmp){
dice_colors.push_back(c);
}
RollOfDice rd;
for(auto color : dice_colors)
rd.push_back(_roll[convert_to_index(color)]);
rd.roll();
std::cout << std::endl << std::endl << std::endl;
std::cout << " " << "Rolling " << d_ScoreSheet->getName() << "'s Dice" << std::endl;
std::cout << std::endl << std::endl << std::endl;
return rd;
}
//TODO if you have time combine these to have less duplicate code
void QwixxPlayer::inputAfterRoll(const RollOfDice& _roll)
{
std::cout << std::endl << std::endl << std::endl;
std::cout << " " << d_ScoreSheet->getName() << std::endl;
std::cout << "-------------------------------------------" << std::endl;
std::cout << _roll;
std::cout << *d_ScoreSheet;
if(!d_active)
{
int index;
char answer;
std::cout << std::endl;
std::cout << d_ScoreSheet->getName() << ", ";
std::cout << "Would you like to score the active player's white dice this roll? [y/n] " << std::endl;
std::cin >> answer;
std::cin.ignore(256, '\n');
if (answer == 'y'){
bool validMove = true;
do {
std::cout << std::endl;
std::cout << "What row would like to play in?";
//TODO weird hanging behaviour here, likely stray cin.ignore();
Color color = get_color_index_vect(std::cin)[0];
std::cin.ignore(256, '\n');
RollOfDice whiteDice;
whiteDice.push_back(_roll[0]);
whiteDice.push_back(_roll[1]);
int count = 0;
for (auto d : whiteDice){
count += d.d_face;
}
//TODO you can score colored dice anywhere you want... that's not good
index = 0; // TODO find a way to get the index from row given a color and a value
if(d_ScoreSheet->score(_roll, color, count)){
std::cout << _roll;
std::cout << *d_ScoreSheet;
return;
}
else
{
std::cout << std::endl;
std::cout << "That is not a valid location please try another" << std::endl;
validMove = false;
}
} while (!validMove);
}
}
else if (d_active)
{
char answer;
std::cout << std::endl;
std::cout << d_ScoreSheet->getName() << ", ";
std::cout << "Would you like to score your white dice this roll? [y/n] " << std::endl;
std::cin >> answer;
std::cin.ignore(256, '\n');
bool scoreWhite = true;
if(answer == 'n')
scoreWhite = false;
if (scoreWhite){
bool validMove = true;
do {
std::cout << std::endl;
std::cout << "What row would like to play in?" << std::endl;
Color color = get_color_index_vect(std::cin)[0];
RollOfDice whiteDice;
whiteDice.push_back(_roll[0]);
whiteDice.push_back(_roll[1]);
int count = 0;
for (auto d : whiteDice){
count += d.d_face;
}
if(d_ScoreSheet->score(_roll, color, count)){
std::cout << _roll;
std::cout << *d_ScoreSheet;
//return;
}
else
{
std::cout << std::endl;
std::cout << "That is not a valid location please try another" << std::endl;
validMove = false;
}
} while (!validMove);
}
std::cout << std::endl;
std::cout << std::endl << "Would you like to score your colored dice? [y/n]" << std::endl;
bool scoreColored = true;
std::cin >> answer;
std::cin.ignore(256, '\n');
if(answer == 'n')
scoreColored = false;
if(scoreColored){
Color color;
std::cout << std::endl;
std::cout << "What row would like to play in?" << std::endl;
color = get_color_index_vect(std::cin)[0];
int num = -1;
std::cout << std::endl;
std::cout << "What number would you like to play?" << std::endl;
std::cin >> num;
std::cin.ignore(256, '\n');
if(d_ScoreSheet->score(_roll, color, num)){
std::cout << std::endl << std::endl << std::endl;
std::cout << _roll;
std::cout << *d_ScoreSheet;
return;
}
else
{
std::cout << std::endl;
std::cout << "That is not a valid location please try another" << std::endl;
if(d_active)
std::cout << std::endl;
std::cout << "(last try before being marked as failed throw)" << std::endl;
}
}
if ( scoreWhite == false && scoreColored == false ){
d_ScoreSheet->addFailedThrow();
}
d_active = false;
}
}
int QwixxPlayer::convert_to_index(const Color _color) const
{
if(_color == Color::RED)
return 0;
else if(_color == Color::YELLOW)
return 1;
else if(_color == Color::GREEN)
return 2;
else if(_color == Color::BLUE)
return 3;
else if(_color == Color::WHITE_1)
return 4;
else if(_color == Color::WHITE_2)
return 5;
else
return -1;
}