final
This commit is contained in:
parent
3e0fe5f977
commit
25f7fb4d39
@ -14,98 +14,121 @@
|
||||
int createWordSalad(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsigned int searchFieldLen, const char words[][MAX_WORD_LEN], unsigned int wordCount)
|
||||
{
|
||||
srand(time(NULL));
|
||||
unsigned int placedWordsCount = 0;
|
||||
// salad = spielfeld (100*100)
|
||||
// searchFieldLen = salad Size = 20
|
||||
// words = array mit den zu plazierenden wörtern
|
||||
// anzahl an zu plazierenden wörtern
|
||||
const char buchstaben[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
const int anzahlBuchstaben = 26;
|
||||
|
||||
const char buchstaben[26] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
for (int i = 0; i < MAX_SEARCH_FIELD_LEN; i++)
|
||||
{
|
||||
for (int j = 0; j < MAX_SEARCH_FIELD_LEN; j++)
|
||||
{
|
||||
salad[i][j] = EMPTY_CHAR;
|
||||
}
|
||||
}
|
||||
|
||||
int placedWords = 0;
|
||||
typedef enum
|
||||
{
|
||||
VERTIKAL,
|
||||
HORIZONTAL
|
||||
} Richtung;
|
||||
|
||||
for (int i = 0; i < wordCount; i++)
|
||||
{
|
||||
|
||||
int vertikal = rand() % 2;
|
||||
|
||||
size_t länge = strlen(words[i]);
|
||||
int positionX;
|
||||
int positionY;
|
||||
Richtung vertikal_horizontal = rand() % 2; // 1 = vertikal //0 = horizontal
|
||||
int leange = strlen(words[i]);
|
||||
int positionX = 0;
|
||||
int positionY = 0;
|
||||
int voll = 0;
|
||||
int tries = 0;
|
||||
int belegt;
|
||||
|
||||
while (tries <= MAX_RAND_TRIES_PER_WORD)
|
||||
if (vertikal_horizontal == VERTIKAL)
|
||||
{
|
||||
if (vertikal)
|
||||
|
||||
tries = 0;
|
||||
do
|
||||
{
|
||||
voll = 0;
|
||||
positionX = rand() % (searchFieldLen);
|
||||
positionY = rand() % (searchFieldLen - länge);
|
||||
|
||||
for (int y = positionY; y < (länge + positionY); y++)
|
||||
{
|
||||
if (salad[y][positionX] != '0')
|
||||
positionY = rand() % (searchFieldLen - leange);
|
||||
for (int j = positionY; j < positionY + leange; j++)
|
||||
{ // überprüfung ob alle positionen 0 sind
|
||||
if (salad[j][positionX] != EMPTY_CHAR)
|
||||
{
|
||||
tries++;
|
||||
belegt = 1;
|
||||
break;
|
||||
voll = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if(belegt){
|
||||
continue;
|
||||
belegt = 0;
|
||||
}
|
||||
|
||||
|
||||
for (int y = positionY, j = 0; y < (länge + positionY); y++, j++)
|
||||
{
|
||||
salad[y][positionX] = words[i][j];
|
||||
}
|
||||
placedWords++;
|
||||
break; // Wort wurde hinzugefügt, while Schleife wird verlassen
|
||||
}
|
||||
else
|
||||
tries++;
|
||||
} while (voll == 1 && tries <= MAX_RAND_TRIES_PER_WORD);
|
||||
if (voll == 0)
|
||||
{
|
||||
positionX = rand() % (searchFieldLen - länge);
|
||||
positionY = rand() % (searchFieldLen);
|
||||
for (int k = positionY, l = 0; k < positionY + leange; k++, l++)
|
||||
{ // buchstaben holen und setzen
|
||||
salad[k][positionX] = words[i][l];
|
||||
}
|
||||
placedWordsCount++;
|
||||
}
|
||||
else if (voll == 1)
|
||||
printf("Das Wort '%s' konnte nicht plaziert werden", words[i]);
|
||||
}
|
||||
else if (vertikal_horizontal == HORIZONTAL)
|
||||
{
|
||||
|
||||
for (int x = positionX; x < (länge + positionX); x++)
|
||||
{
|
||||
if (salad[positionY][x] != '0')
|
||||
tries = 0;
|
||||
do
|
||||
{
|
||||
voll = 0;
|
||||
positionY = rand() % (searchFieldLen);
|
||||
positionX = rand() % (searchFieldLen - leange);
|
||||
for (int j = positionX; j < positionX + leange; j++)
|
||||
{ // überprüfung ob alle positionen 0 sind
|
||||
if (salad[positionY][j] != EMPTY_CHAR)
|
||||
{
|
||||
tries++;
|
||||
break;
|
||||
voll = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if(belegt){
|
||||
continue;
|
||||
belegt = 0;
|
||||
tries++;
|
||||
} while (voll == 1 && tries <= MAX_RAND_TRIES_PER_WORD);
|
||||
if (voll == 0)
|
||||
{
|
||||
for (int k = positionX, l = 0; k < positionX + leange; k++, l++)
|
||||
{ // buchstaben holen und setzen
|
||||
salad[positionY][k] = words[i][l];
|
||||
}
|
||||
placedWordsCount++;
|
||||
}
|
||||
else if (voll == 1)
|
||||
printf("Das Wort '%s' konnte nicht plaziert werden", words[i]);
|
||||
}
|
||||
else
|
||||
printf("Fehler bei Vertikal Horizontal Wert: %d", vertikal_horizontal);
|
||||
}
|
||||
|
||||
for (int x = positionX, j = 0; x < (länge + positionX); x++, j++)
|
||||
{
|
||||
salad[positionY][x] = words[i][j];
|
||||
}
|
||||
placedWords++;
|
||||
break; // Wort wurde hinzugefügt, while Schleife wird verlassen
|
||||
for (int i = 0; i < searchFieldLen; i++)
|
||||
{
|
||||
for (int j = 0; j < searchFieldLen; j++)
|
||||
{
|
||||
if (salad[i][j] == EMPTY_CHAR)
|
||||
{
|
||||
salad[i][j] = buchstaben[rand() % anzahlBuchstaben];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for(int i = 0; i< searchFieldLen;i++){
|
||||
for(int j = 0; j< searchFieldLen;j++){
|
||||
if(salad[i][j] == '0'){
|
||||
salad[i][j] = buchstaben[rand() % 26];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return placedWords;
|
||||
return placedWordsCount;
|
||||
}
|
||||
|
||||
// Prints the word salad to console
|
||||
void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsigned int searchFieldLen)
|
||||
{
|
||||
for(int i = 0; i< searchFieldLen;i++){
|
||||
for(int j = 0; j< searchFieldLen;j++){
|
||||
printf("%c",salad[i][j]);
|
||||
for (int i = 0; i < searchFieldLen; i++)
|
||||
{
|
||||
for (int j = 0; j < searchFieldLen; j++)
|
||||
{
|
||||
printf(" %c", salad[i][j]);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -31,6 +31,11 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
|
||||
return count;
|
||||
}
|
||||
|
||||
//hier müsste man den token string in großbuchstaben formatieren
|
||||
for (int i = 0; i < strlen(token); i++)
|
||||
{
|
||||
token[i] = toupper(token[i]);
|
||||
}
|
||||
strncpy(words[count], token, MAX_WORD_LEN-1);
|
||||
words[count][MAX_WORD_LEN-1] = '\0';
|
||||
|
||||
@ -43,4 +48,14 @@ int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// 00M 01a 02x
|
||||
// 10W 11a 12l 13t 14e 15r
|
||||
// 20T 21o 22b 23i 24a 25s
|
||||
|
||||
// array[3][2]
|
||||
// 00 01
|
||||
// 10 11
|
||||
// 20 21
|
||||
|
||||
Binary file not shown.
@ -29,14 +29,6 @@ int main(int argc, char *argv[])
|
||||
unsigned int placedWords = 0;
|
||||
char wordSalad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN]; // 2D array to store the word salad
|
||||
|
||||
for (int i = 0; i < MAX_SEARCH_FIELD_LEN; i++)
|
||||
{
|
||||
for (int j = 0; j < MAX_SEARCH_FIELD_LEN; j++)
|
||||
{
|
||||
wordSalad[i][j] = '0';
|
||||
}
|
||||
}
|
||||
|
||||
// Read words from file and store in 'words' array
|
||||
wordCount = readWords(file, words, MAX_NUMBER_OF_WORDS);
|
||||
fclose(file);
|
||||
|
||||
Binary file not shown.
BIN
Start_Windows/runTests.exe
Normal file
BIN
Start_Windows/runTests.exe
Normal file
Binary file not shown.
1
Start_Windows/testwords_delims.txt
Normal file
1
Start_Windows/testwords_delims.txt
Normal file
@ -0,0 +1 @@
|
||||
Hund,Katze; Maus
|
||||
0
Start_Windows/testwords_empty.txt
Normal file
0
Start_Windows/testwords_empty.txt
Normal file
3
Start_Windows/testwords_simple.txt
Normal file
3
Start_Windows/testwords_simple.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Apfel
|
||||
Banane
|
||||
Kiwi
|
||||
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user