|
|
|
@ -18,11 +18,22 @@ void MainWindow::initialiseGameGrid() {
|
|
|
|
|
qDebug() << colors.value(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double max_width = MainWindow::width();
|
|
|
|
|
double max_height = MainWindow::height() - ui->menuBar->height() - ui->labelScore->height();
|
|
|
|
|
|
|
|
|
|
qDebug() << "gameGridLayout width: " << max_width << " height: " << max_height;
|
|
|
|
|
|
|
|
|
|
QSize button_size(max_width/n_columns, max_height/n_rows);
|
|
|
|
|
|
|
|
|
|
qDebug() << "Width: " << button_size.width() << " Height: " << button_size.height();
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < n_columns; i++)
|
|
|
|
|
{
|
|
|
|
|
for(int j = 0; j < n_rows; j++)
|
|
|
|
|
{
|
|
|
|
|
QPushButton * button = new QPushButton(this);
|
|
|
|
|
button->setFixedSize(button_size);
|
|
|
|
|
button->setStyleSheet("background-color: " + gameMatrix[j][i] + "; border: none;");
|
|
|
|
|
ui->gameGridLayout->addWidget(button, j, i);
|
|
|
|
|
|
|
|
|
|
// Set size text etc. for each button
|
|
|
|
@ -34,6 +45,28 @@ void MainWindow::initialiseGameGrid() {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::initialiseGameMatrix() {
|
|
|
|
|
gameMatrix = std::vector<std::vector<QString>>();
|
|
|
|
|
|
|
|
|
|
srand (time(NULL));
|
|
|
|
|
std::vector<QString> t_row;
|
|
|
|
|
for (int i = 0; i < n_rows; i++) {
|
|
|
|
|
t_row.clear();
|
|
|
|
|
for (int j = 0; j < n_columns; j++) {
|
|
|
|
|
// wähle zufällige Farbe aus den verfügbaren Farben
|
|
|
|
|
t_row.push_back( colors[rand() % colors.size()] );
|
|
|
|
|
}
|
|
|
|
|
gameMatrix.push_back(std::move(t_row));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < n_rows; i++) {
|
|
|
|
|
qDebug() << "row: " << i;
|
|
|
|
|
for (int j = 0; j < n_columns; j++) {
|
|
|
|
|
qDebug() << gameMatrix[i][j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::initialiseWindow() {
|
|
|
|
|
MainWindow::setWindowTitle("ThinkPink | SameGame in PINK by Isifluff");
|
|
|
|
|
MainWindow::setWindowIcon(QIcon(":/icons/ThinkPink.png"));
|
|
|
|
@ -42,7 +75,6 @@ void MainWindow::initialiseWindow() {
|
|
|
|
|
void MainWindow::initialiseMenuBar() {
|
|
|
|
|
ui->menuPlay->addAction(QIcon(":/icons/game.png"), "New Game");
|
|
|
|
|
ui->menuPlay->addSeparator();
|
|
|
|
|
//ui->menuPlay->addAction("Brag");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
|
|
@ -54,6 +86,7 @@ MainWindow::MainWindow(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
|
|
initialiseGameMatrix();
|
|
|
|
|
initialiseGameGrid();
|
|
|
|
|
initialiseWindow();
|
|
|
|
|
initialiseMenuBar();
|
|
|
|
|