Added filling 0 character for empty words array

This commit is contained in:
Niko Rost 2025-11-05 12:34:06 +01:00
parent a22ac56d40
commit 5d91ffc0b1
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,11 @@ void readWordsFromLine(char buffer[], int* wordCount, char words[][MAX_WORD_LEN]
// Read words from file and store in 'words' array
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
for (int i = 0; i < maxWordCount; i++) {
for (int j = 0; j < MAX_WORD_LEN; j++) {
words[i][j] = '\0';
}
}
char buffer[MAX_LINE_LEN]; // prepares a large enough buffer to read one line from the .txt-file
int readwords = 0;
int *wordCount = &readwords;

View File

@ -35,12 +35,15 @@ int main(int argc, char *argv[])
// Create the word salad by placing words into grid
placedWords = createWordSalad(wordSalad, SALAD_SIZE, words, wordCount);
printf("Checkpoint1");
// TODO:
// Check if all words were successfully placed
// Start the game if successful
// error message if some words couldn't be placed
int windowWidth = 720; //Fensterbreite outputfenster
if (placedWords == wordCount && placedWords <= MAX_NUMBER_OF_WORDS) {
startGame(wordSalad, MAX_SEARCH_FIELD_LEN, words, wordCount, windowWidth);
exitCode = EXIT_SUCCESS; //Start the game if placed words is equal to words in textfile
}
else {