-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathView.cs
28 lines (24 loc) · 1.01 KB
/
View.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 📃 View.cs
namespace GuessingGame;
public static partial class ElmFuncs
{
public static object View(Model model, Action<Message> dispatch) =>
$"\n" +
$" ╔═══════════════╗\n" +
$" ║ Guessing game ║\n" +
$" ╚═══════════════╝\n" +
$"\n" +
$" Please choose a number between 0 and 9 or press [q] to Quit\n" +
$"{model.PlayerGuessView()}";
internal static string PlayerGuessView(this Model model)
{
// The player hasn't made a guess yet
if (model.CurrentPlayerGuess is not int playerGuess)
return string.Empty;
var guessQuality =
(playerGuess < model.NumberToBeGuessed) ? "too low." :
(playerGuess > model.NumberToBeGuessed) ? "too high." :
"perfect! Congratulations! (★‿★)";
return $"\n You guessed [{playerGuess}]. Your guess is {guessQuality}\n";
}
}