aggiunto una diagonale manca l'altra

This commit is contained in:
Lorenzo Bianchi 2023-05-15 12:05:29 +02:00
parent 775aebae46
commit 9017c9e075
1 changed files with 12 additions and 0 deletions

View File

@ -34,4 +34,16 @@ int checkWin(tile_t *board, int x, int y, int rows, int collums) {
}
// diagonal
for (i=0; i<4; i++) {
if (y + i - 3 >= 0 && y + i < rows && x + i - 3 >= 0 && x + i < collums) {
if (board[x - 3 + i + (y + i - 3) * collums] == board[x + i + (y + i) * collums] &&
board[x - 2 + i + (y + i - 2) * collums] == board[x + i + (y + i) * collums] &&
board[x - 1 + i + (y + i - 1) * collums] == board[x + i + (y + i) * collums]) {
return current;
}
}
}
// manca seconda diagonal
}