oSumAtrIX / mastermind

🎲 Mastermind - A code-breaking CLI game for two players written in C89
1 stars 0 forks source link

Technische Mindestanforderungen #15

Closed alphakilo11 closed 2 years ago

alphakilo11 commented 2 years ago
alphakilo11 commented 2 years ago

I removed some of the checks, since these checks can only be passed when the code is complete.

alphakilo11 commented 2 years ago

User interface snippets:

printf("\
Select number of players:\n\
1: Singleplayer\n\
2: Vs-Mode\n");

printf("\
Select game mode:\n\
1: Mastermind\n\
2. Super Mastermind\n");

printf("\
Enter name of player 1:\n");

printf("\
Enter name of player 2:\n");

printf("\
%s enter your Code (BGVRYO):\n", player1);

printf("\
%s enter your Code (BGVRYO):\n", player2);

printf("\
%s\t%s 2\n", player1, player2);

printf("\
%s won the game in %i turns!\n\
Choose:\n\
n new round\n\
v change variant\n\
r restart game\n\
q quit game\n", winner, turns);