-
Notifications
You must be signed in to change notification settings - Fork 147
/
wave-2-game.rb
115 lines (90 loc) · 2.35 KB
/
wave-2-game.rb
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
require_relative 'lib/scrabble'
module Scrabble
class Game
def initialize
@words = []
@players = setup_players
end
def play
start
while continue?
@players.each do |player|
puts "It is #{player.name}'s turn"
player_word = get_word_for(player)
player_has_won = !player_word
if player_word
print_score(player_word)
end
if player_has_won
break
end
end
end
conclude
end
private
def setup_players
puts "How many players do you have?"
num_of_players = get_int_input
players = []
num_of_players.times do |player|
players << Player.new(get_player_name(player))
end
return players
end
def start
puts "Welcome to our Scrabble game!"
end
def continue?
return true if @words.length == 0 # haven't started playing yet
@players.each do |player|
if player.won?
crown_winner(player)
return false
end
end
puts "Would you like to play another round? (Y/N)"
continue = gets.chomp
(continue == "Y") ? true : false
end
def get_word_for(player)
puts "Enter a word to score:"
word = gets.chomp
@words << word
keep_playing = player.play(word)
if keep_playing
return word
else
return false
end
end
def print_score(word)
result = Scrabble::Scoring.score(word)
puts "The score of #{ word } is #{ result }"
end
def crown_winner(player)
puts "#{player.name} has won!"
end
def conclude
highest_word = Scrabble::Scoring.highest_score_from_array(@words)
puts "The final highest scoring word for all players is #{ highest_word }"
@players.each do |player|
puts "The highest scoring word for #{player.name} is \"#{player.highest_scoring_word}\" for #{player.highest_word_score} points"
end
end
def get_int_input
input = gets.chomp
while input.match(/\D/)
puts "Please put in a valid integer"
input = gets.chomp
end
return input.to_i
end
def get_player_name(player_number)
puts "What is the name of Player \##{player_number + 1}?"
return gets.chomp
end
end
end
game = Scrabble::Game.new
game.play