set up graphical game

This commit is contained in:
Simon Wiesend 2025-11-03 20:12:14 +01:00
parent cbf806ae1b
commit 4ba1251b56
No known key found for this signature in database
GPG Key ID: 711FA2FAE3A80C81

View File

@ -38,23 +38,17 @@ int main(int argc, char *argv[])
// Check if all words were successfully placed
// error message if some words couldn't be placed
printf("placed words: %d\n", placedWords);
printf("word count: %d\n", wordCount);
if (placedWords < wordCount)
{
int notPlacedNum = wordCount - placedWords;
fprintf(stderr, "%d word(s) couldn't be placed\n", notPlacedNum);
exitCode = EXIT_FAILURE;
}
// TODO:
// correct parameters for startGame
// Start the game if at least 1 word has been successfully placed
else if (placedWords >= 1)
// Start the game if all words were successfully placed
else
{
startGame(wordSalad, 80, words, placedWords, 800);
startGame(wordSalad, SALAD_SIZE, words, wordCount, 800);
}
}
else