-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
300 lines (232 loc) · 9.03 KB
/
mainwindow.cpp
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#include "onlinegameboardwindow.h"
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "mainonlinewindow.h"
#include <QPushButton>
#include <math.h>
#include <iostream>
#include <QFile>
#include "customdialog.h"
#include <QPainter>
#include "mywidget.h"
#include "boardview3d.h"
#include <QSurfaceFormat>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent),
ui(new Ui::MainWindow())
{
ui->setupUi(this);
createHexagonalButtons(length,50,100,100);
set_enable_buttons(false);
}
void MainWindow::setup_object() {
}
MainWindow::~MainWindow()
{
//destroy_thread_manager();
delete ui;
}
void MainWindow::setupStyleSheet() {
QFile File(":/qss/stylesheet.qss");
File.open(QFile::ReadOnly);
QString StyleSheet = QLatin1String(File.readAll());
setStyleSheet(StyleSheet);
}
void MainWindow::createHexagonalButtons(int length, int size, int x_offset, int y_offset) {
double length_of_hexagon_side = (size*sin(30*M_PI/180))/sin(120*M_PI/180);
double move_up = sqrt(pow(length_of_hexagon_side,2)-pow(size/2,2));
double move_right = size/2;
QImage alpha_mask = QImage(":/images/hexagon_alpha.png").scaled(size,size,Qt::KeepAspectRatio);
alpha_mask.fill(Qt::transparent);
for(int j=0; j<length;j++) {
for(int i=0; i< length; i++) {
int var = j*length+i;
HexButton* hex_btn = new HexButton(ui->boardWidget);
connect(
hex_btn, &QPushButton::clicked,
this , [var,this]{ on_HexagonalButton_clicked(var); }
);
hex_btn->setVisible(true);
hex_btn->setFixedSize(QSize(size,size));
QPixmap mask = QPixmap::fromImage(alpha_mask);
hex_btn->setMask(mask.mask());
hex_btn->setGeometry(i*size+j*convertToInt(move_right)+x_offset,j*size-j*convertToInt(move_up)+y_offset,size,size);
hex_button_vector.append(hex_btn);
}
}
}
void MainWindow::computer_move() {
set_enable_buttons(false);
if(ui) {
ui->lineEdit->setText("Computer is thinking...");
}
setup_thread_manager();
emit operate(QString(), board, player_colour, mc_trials);
}
void MainWindow::on_HexagonalButton_clicked(int val) {
QPair<int,int> move = board->convert_index_to_location(val, board->get_length());
if(board->is_legal(move.first,move.second,player_colour)) {
set_button_colour(val,player_colour);
board->make_move(move.first,move.second,player_colour);
//std::cout << *board << std::endl;
Colour winner = board->has_winner(false);
if(winner != Colour::EMPTY) {
if(player_colour == winner) {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Win!");
msg_box.exec();
end_game();
}
else {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Lose!");
msg_box.exec();
end_game();
}
ui->startGameButton->setEnabled(true);
set_enable_buttons(false);
}
else {
turn = switch_turn(turn);
computer_move();
}
}
}
void MainWindow::on_startGameButton_clicked()
{
std::string name = "First Last"; // NOTE: these lines of code (the variables you wish to change)
int colour = 0;
bool colour_checked = true;
int difficulty = 0;
bool difficulty_checked = true;
CustomDialog d("Choose your colour", this); // We want our custom dialog called "Registration".
d.addLabel ("Please choose your colour below (Blue starts first) ..."); // The first element is just a text label (non interactive).
d.addLineEdit ("name: ", &name, "No middle name!");
d.addRadioGrp ("Colour: ", "Blue|Red", &colour, "Blue starts first, Red starts second", "Blue colour|Red colour", false, &colour_checked);
d.addLabel ("Please choose your difficulty (Easy is fastest) ..."); // The first element is just a text label (non interactive).
d.addRadioGrp ("Difficulty: ", "Easy|Intermediate|Hard", &difficulty, "Based on Monte Carlo AI method", "MC trials=50|MC trials=200|MC trials=1000", false, &difficulty_checked);
d.exec(); // Execution stops here until user closes dialog
if(d.wasCancelled()){ // If the user hit cancel, your values stay the same
return;
} // and you probably don't need to do anything
else {
if(colour != -1) {
player_name = QString::fromStdString(name);
player_colour = colour==0?Colour::BLUE:Colour::RED;
switch(difficulty){
case 0:
mc_trials = 50;
break;
case 1:
mc_trials = 200;
break;
case 2:
mc_trials = 1000;
break;
default:
mc_trials= 50;
}
ui->startGameButton->setEnabled(false);
turn = Colour::BLUE;
start_game();
set_move();
return;
}
}
}
void MainWindow::set_move() {
if(player_colour == turn) { // Player starts first
set_enable_buttons(true);
set_colour_turn(player_colour);
}
else { // Computer moves
computer_move();
}
}
void MainWindow::set_colour_turn(Colour c) {
if(c == Colour::BLUE)
setStyleSheet("HexButton:hover{border-image:url(\":/images/hexagon_blue.png\");}");
else {
setStyleSheet("HexButton:hover{border-image:url(\":/images/hexagon_red.png\");}");
}
}
void MainWindow::setup_thread_manager() {
Worker *worker = new Worker;
worker->moveToThread(&workerThread);
connect(&workerThread, &QThread::finished, worker, &QObject::deleteLater);
connect(this, &MainWindow::operate, worker, &Worker::doWork);
connect(worker, &Worker::resultReady, this, &MainWindow::handleResults);
workerThread.start();
//std::cout << "thread started" << std::endl;
}
void MainWindow::destroy_thread_manager(){
workerThread.quit();
workerThread.wait();
}
void MainWindow::handleResults(const QString &str) {
destroy_thread_manager();
int move_int = str.toInt();
QPair<int,int> move_pair = board->convert_index_to_location(move_int, board->get_length());
if(board->is_legal(move_pair.first, move_pair.second, switch_turn(player_colour))) {
board->make_move(move_pair.first, move_pair.second, switch_turn(player_colour));
set_button_colour(board->convert_location_to_index(move_pair.first, move_pair.second), switch_turn(player_colour));
turn = switch_turn(turn);
}
else {
std::cout << "AI making illegal move. Should not be here" << std::endl;
}
Colour winner = board->has_winner(false);
if(winner != Colour::EMPTY) {
if(player_colour == winner) {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Win!");
msg_box.exec();
}
else {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Lose!");
msg_box.exec();
}
ui->startGameButton->setEnabled(true);
set_enable_buttons(false);
}
else {
//std::cout << *board << std::endl;
set_enable_buttons(true);
if(ui)
ui->lineEdit->setText("Player's turn.");
set_colour_turn(player_colour);
}
}
// Play Online Button
void MainWindow::on_pushButton_clicked()
{
MainOnlineWindow* online_window = new MainOnlineWindow();
this->close();
online_window->show();
destroy_thread_manager();
}
// 3D Mode button
void MainWindow::on_pushButton_2_clicked()
{
int colour = 0;
bool colour_checked = true;
int difficulty = 0;
bool difficulty_checked = true;
CustomDialog d("This will start a new game", this); // We want our custom dialog called "Registration".
d.addLabel ("Please choose your colour below (Blue starts first) ..."); // The first element is just a text label (non interactive).
d.addRadioGrp ("Colour: ", "Blue|Red", &colour, "Blue starts first, Red starts second", "Blue colour|Red colour", false, &colour_checked);
d.addLabel ("Please choose your difficulty (Easy is fastest) ..."); // The first element is just a text label (non interactive).
d.addRadioGrp ("Difficulty: ", "Easy|Intermediate|Hard", &difficulty, "Based on Monte Carlo AI method", "MC trials=50|MC trials=200|MC trials=1000", false, &difficulty_checked);
d.exec(); // Execution stops here until user closes dialog
if(d.wasCancelled()){ // If the user hit cancel, your values stay the same
//Do nothing
}
else {
BoardView3D* board_3d = new BoardView3D(this);
this->setVisible(false);
board_3d->init(11, colour, difficulty);
board_3d->show();
destroy_thread_manager();
}
}