-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLI.go
53 lines (42 loc) · 1.04 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
package poker
import (
"bufio"
"fmt"
"io"
"strconv"
"strings"
)
// CLI helps players through a game of poker
type CLI struct {
playerStore PlayerStore
in *bufio.Scanner
out io.Writer
game *Game
}
// NewCLI creates a CLI for playing poker
func NewCLI(in io.Reader, out io.Writer, game *Game) *CLI {
return &CLI{
in: bufio.NewScanner(in),
out: out,
game: game,
}
}
// PlayerPrompt is the text asking the user for the number of players
const PlayerPrompt = "Please enter the number of players: "
// PlayPoker starts the game
func (cli *CLI) PlayPoker() {
fmt.Fprint(cli.out, PlayerPrompt)
numberOfPlayersInput := cli.readLine()
numberOfPlayers, _ := strconv.Atoi(strings.Trim(numberOfPlayersInput, "\n"))
cli.game.Start(numberOfPlayers)
winnerInput := cli.readLine()
winner := extractWinner(winnerInput)
cli.game.Finish(winner)
}
func extractWinner(userInput string) string {
return strings.Replace(userInput, " wins", "", 1)
}
func (cli *CLI) readLine() string {
cli.in.Scan()
return cli.in.Text()
}