-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgofish_player.rb
99 lines (92 loc) · 2.49 KB
/
gofish_player.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
class GF_Player < Player
attr_accessor :hand, :name, :books, :mygame, :ui
def initialize(name, game)
@hand = []
@name = name
@books = []
@mygame = game
end
def opponents
mygame.players.select{|p| p != self}
end
def give(rank)
requested = hand.select{|c| c.rank==rank}
@hand -= requested
if requested.size != 0 then return requested else return [] end
end
def take_turn
#return ui.take_turn
command = ui.ask_for_input
next_player = self
opponent = command[0]
rank = command[1]
cards = opponent.give(rank)
if cards != [] then
cards.each {|c| hand << c}
ui.received(opponent, cards.size, rank)
else
card = mygame.deck.draw
if card != nil then
ui.go_fish(card.rank)
hand << card
if card.rank != rank then next_player = opponent end
end
end
#check for books
check_for_books
return next_player
end
def check_for_books
handrank = hand.group_by(&:rank)
#p handrank.select{|r| handrank[r].size == 2}
hand.group_by(&:rank).select{|r| handrank[r].size == 4}.each do |bookrank|
@books << Book.new(bookrank[0])
ui.got_books(bookrank[0])
hand.delete_if{|c| c.rank == bookrank[0]}
end
end
def take_turn_backup
top_rank = search_for_top_rank
#@opponents.shuffle! #this line randomizes first player to ask for a card
last_player_asked = nil
opponents.each do |opponent|
last_player_asked = opponent
cards = opponent.give(top_rank)
if cards != [] then yield([name, " received a ", cards.first.rank, ".\n"]) if block_given?
cards.each {|c| hand << c}
else
# print("GO FISH:\n")
card = mygame.deck.draw
if card != nil then
print(name, " received a ", card.rank, "!\n")
hand << card
else
print("The deck is out of cards and the game is over!\n")
return end
break if card.rank != top_rank
end
if number_of_cards(top_rank) == 4 then
@books << Book.new(top_rank)
print(name, " got a book of ", top_rank, "'s!\n")
hand.delete_if{|c| c.rank == top_rank}
if hand.size != 0 then
top_rank = search_for_top_rank
else
print(name, " is out of cards and the game is over!\n")
return end
end
end
return last_player_asked
end
def search_for_top_rank
#used code for determining the mode of the distribution from StackOverflow
hand.group_by(&:rank).sort_by{|a,b| b.size<=>a.size}.last[0]
end
def number_of_cards(*rank)
if rank != [] then
return hand.select{|c| c.rank == rank[0]}.size
else
return hand.size
end
end
end