-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCLI.go
62 lines (50 loc) · 1.18 KB
/
CLI.go
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package poker
import (
"bufio"
"errors"
"fmt"
"io"
"strconv"
"strings"
)
type CLI struct {
in *bufio.Scanner
out io.Writer
game Game
}
func NewCLI(in io.Reader, out io.Writer, game Game) *CLI {
return &CLI{
in: bufio.NewScanner(in),
out: out,
game: game,
}
}
const PlayerPrompt = "Please enter the number of players: "
const BadPlayerInputErrMsg = "Bad value received for number of players, please try again with a number"
const BadWinnerInputMsg = "Bad winner entry, please enter '<name> wins'"
func (cli *CLI) PlayPoker() {
fmt.Fprint(cli.out, PlayerPrompt)
numberOfPlayers, err := strconv.Atoi(cli.readLine())
if err != nil {
fmt.Fprint(cli.out, BadPlayerInputErrMsg)
return
}
cli.game.Start(numberOfPlayers, cli.out)
winnerInput := cli.readLine()
winner, err := extractWinner(winnerInput)
if err != nil {
fmt.Fprint(cli.out, BadWinnerInputMsg)
return
}
cli.game.Finish(winner)
}
func extractWinner(userInput string) (string, error) {
if strings.Contains(userInput, " wins") {
return strings.Replace(userInput, " wins", "", 1), nil
}
return "", errors.New(BadWinnerInputMsg)
}
func (cli *CLI) readLine() string {
cli.in.Scan()
return cli.in.Text()
}