input und main in Start_Windows und Start_Linux geupdated

This commit is contained in:
Manuel Nitsche 2025-10-28 13:53:10 +01:00
parent 6f176e51aa
commit 9e3c8e697d
4 changed files with 97 additions and 10 deletions

View File

@ -4,9 +4,42 @@
// TODO:
// eine Funktion implementieren, die ein einzelnes Wort aus einer Textdatei (words.txt) einliest und als C-String zurückgibt.
/**
* @param file Zeiger auf die geöffnete Datei
* @param words 2D-Array zum Speichern der Wörter
* @param maxWordCount Maximale Anzahl von Wörtern, die eingelesen werden sollen
* @return Anzahl der eingelesenen Wörter
*/
// Read words from file and store in 'words' array
// ERLEDIGT
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
if (file == NULL || words == NULL || maxWordCount == 0) {
return 0;
}
int wordCount = 0;
char line[MAX_LINE_LEN];
// Zeilen einlesen
while (wordCount < maxWordCount && fgets(line, MAX_LINE_LEN, file) != NULL) {
// Zeile in Wörter aufteilen (Trennzeichen: Leerzeichen, Komma, Semikolon, Newline)
char *token = strtok(line, " ,;\t\n\r");
while (token != NULL && wordCount < maxWordCount) {
// Prüfen ob Token nicht leer ist
if (strlen(token) > 0 && strlen(token) < MAX_WORD_LEN) {
// Wort kopieren und in Großbuchstaben umwandeln
strcpy(words[wordCount], token);
for (int i = 0; words[wordCount][i] != '\0'; i++) {
words[wordCount][i] = toupper((unsigned char)words[wordCount][i]);
}
wordCount++;
}
// Nächstes Wort
token = strtok(NULL, " ,;\t\n\r");
}
}
return wordCount;
}

View File

@ -37,9 +37,20 @@ int main(int argc, char *argv[])
placedWords = createWordSalad(wordSalad, SALAD_SIZE, words, wordCount);
// TODO:
// Check if all words were successfully placed
if(placedWords == wordCount)
{
// Start the game if successful
// error message if some words couldn't be placed
startGame(wordSalad,SALAD_SIZE,words,wordCount,SALAD_SIZE);
}
else
{
// Error message if some words couldn't be placed
fprintf(stderr, "Error: Only %u out of %u words could be placed in the word salad.\n",
placedWords, wordCount);
exitCode = EXIT_FAILURE;
}
}
else

View File

@ -4,9 +4,42 @@
// TODO:
// eine Funktion implementieren, die ein einzelnes Wort aus einer Textdatei (words.txt) einliest und als C-String zurückgibt.
/**
* @param file Zeiger auf die geöffnete Datei
* @param words 2D-Array zum Speichern der Wörter
* @param maxWordCount Maximale Anzahl von Wörtern, die eingelesen werden sollen
* @return Anzahl der eingelesenen Wörter
*/
// Read words from file and store in 'words' array
// ERLEDIGT
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
if (file == NULL || words == NULL || maxWordCount == 0) {
return 0;
}
int wordCount = 0;
char line[MAX_LINE_LEN];
// Zeilen einlesen
while (wordCount < maxWordCount && fgets(line, MAX_LINE_LEN, file) != NULL) {
// Zeile in Wörter aufteilen (Trennzeichen: Leerzeichen, Komma, Semikolon, Newline)
char *token = strtok(line, " ,;\t\n\r");
while (token != NULL && wordCount < maxWordCount) {
// Prüfen ob Token nicht leer ist
if (strlen(token) > 0 && strlen(token) < MAX_WORD_LEN) {
// Wort kopieren und in Großbuchstaben umwandeln
strcpy(words[wordCount], token);
for (int i = 0; words[wordCount][i] != '\0'; i++) {
words[wordCount][i] = toupper((unsigned char)words[wordCount][i]);
}
wordCount++;
}
// Nächstes Wort
token = strtok(NULL, " ,;\t\n\r");
}
}
return wordCount;
}

View File

@ -37,10 +37,20 @@ int main(int argc, char *argv[])
placedWords = createWordSalad(wordSalad, SALAD_SIZE, words, wordCount);
// TODO:
// Check if all words were successfully placed
// Start the game if successful
// error message if some words couldn't be placed
// Check if all words were successfully placed
if(placedWords == wordCount)
{
// Start the game if successful
startGame(wordSalad,SALAD_SIZE,words,wordCount,SALAD_SIZE);
}
else
{
// Error message if some words couldn't be placed
fprintf(stderr, "Error: Only %u out of %u words could be placed in the word salad.\n",
placedWords, wordCount);
exitCode = EXIT_FAILURE;
}
}
else
{