-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoFish.rb
321 lines (279 loc) · 4.48 KB
/
GoFish.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
class GoFish
require_relative "Deck"
$deckObj = Deck.new
$deck = $deckObj.createCards()
$outOfDeck = Array.new
$player1Hand = Array.new
$compHand = Array.new
$compValues = Array.new
$playerPoints = 0
$compPoints = 0
def initialize
end
def goFish()
puts "Welcome To Go Fish!"
puts
puts "Get 5 Matches to win"
puts
goFishPlayer1()
end
def goFishPlayer1()
generatePlayer1Hand()
generateCompHand()
compValues()
compMatches()
action()
reset()
end
def showHelp()
print "Enter [v]iew to look at your hand, [g]uess to make a guess at your "
puts "opponent's hand, or [m]atches to drop matches in your hand: "
end
def action()
puts "P: " + $playerPoints.to_s + " and C: " + $compPoints.to_s
showHelp()
word = gets.chop
while $playerPoints < 5 and $compPoints < 5
case word
when "view"
when "v"
displayPlayer1Hand()
puts
puts "P: " + $playerPoints.to_s + " and C: " + $compPoints.to_s
puts
showHelp()
word = gets.chop
when "guess"
when "g"
goFishStep()
puts
puts "P: " + $playerPoints.to_s + " and C: " + $compPoints.to_s
puts
showHelp()
word = gets.chop
when "matches"
when "m"
puts "What match do you want to take out: "
number = gets.chop
dropMatches($player1Hand, number,"player1")
puts "P: " + $playerPoints.to_s + " and C: " + $compPoints.to_s
showHelp()
word = gets.chop
end
end
if $playerPoints >= 5
puts "You Win!"
else
puts "Sorry You Lost"
end
end
def goFishStep()
puts "Please enter a number you want to guess: "
number = gets.chop
case number
when "ace"
number = 1
when "1"
number = 1
when "2"
number = 2
when "3"
number = 3
when "4"
number = 4
when "5"
number = 5
when "6"
number = 6
when "7"
number = 7
when "8"
number = 8
when "9"
number = 9
when "10"
number = 10
when "j"
number = 11
when "q"
number = 12
when "k"
number = 13
end
getCardValue(number)
result()
if $result == 3
puts "Computer's Turn"
$result = 0
compMove($compValues[rand($compValues.size - 1)])
compMatches()
result()
$result = 0
end
end
def generatePlayer1Hand()
for i in 1 .. 5
cardNum = rand($deck.size - 1)
$player1Hand.push($deck[cardNum])
$outOfDeck.push($deck[cardNum])
$deck.delete_at(cardNum)
end
end
def generateCompHand()
for i in 1 .. 5
cardNum = rand($deck.size - 1)
$compHand.push($deck[cardNum])
$outOfDeck.push($deck[cardNum])
$deck.delete_at(cardNum)
end
end
def displayPlayer1Hand()
$player1Hand.each do |card|
card.toString
end
end
def displayCompHand()
$compHand.each do |card|
card.toString
end
end
def getCardValue(number)
count = 0
num = number
$player1Hand.each_with_index do |card, pIndex|
if num == card.getValue()
$compHand.each_with_index do |card, cIndex|
if num == card.getValue()
count = 1
$player1Hand.delete_at(pIndex)
$compHand.delete_at(cIndex)
end
end
end
end
if count == 1
$result = 1
$playerPoints += 1
else
drawCard($player1Hand)
$result = 3
end
count = 0
end
def compMove(number)
count = 0
num = number
$compHand.each_with_index do |card, cIndex|
if num == card.getValue()
$player1Hand.each_with_index do |card, pIndex|
if num == card.getValue()
count = 1
$player1Hand.delete_at(pIndex)
$compHand.delete_at(cIndex)
end
end
end
end
if count == 1
$result = 2
$compPoints += 1
else
drawCard($compHand)
$result = 4
end
count = 0
end
def drawCard(array)
cardNum = rand($deck.size - 1)
array.push($deck[cardNum])
$outOfDeck.push($deck[cardNum])
$deck.delete_at(cardNum)
end
def result()
case $result
when 1
puts "You have a found a match"
when 2
puts "Computer has found a match!"
when 3
puts "You did not find a match."
when 4
puts "Computer did not find a match!"
end
end
def dropMatches(array, number,who)
case number
when "ace"
num = 1
when "1"
num = 1
when "2"
num = 2
when "3"
num = 3
when "4"
num = 4
when "5"
num = 5
when "6"
num = 6
when "7"
num = 7
when "8"
num = 8
when "9"
num = 9
when "10"
num = 10
when "j"
num = 11
when "q"
num = 12
when "k"
num = 13
end
array.each_with_index do |card, pIndex|
if num == card.getValue()
array.each_with_index do |card, cIndex|
if num == card.getValue()
if pIndex != cIndex
array.delete_at(pIndex)
array.delete_at(cIndex - 1)
if who == "player1"
$playerPoints += 1
else
$compPoints += 1
end
end
end
end
end
end
end
def compValues()
$compHand.each do |card|
$compValues.push(card.getValue())
end
end
def compMatches()
for i in 0 ... $compValues.size - 1
dropMatches($compHand, $compValues[i], "comp")
end
$compValues = []
compValues()
end
def reset()
$deck = $deckObj.createCards()
$outOfDeck = Array.new
$player1Hand = []
$compHand = []
$compValues = []
$playerPoints = 0
$compPoints = 0
size = $outOfDeck.size - 1
for i in 0 ... size
$deck.push($outOfDeck[i])
end
$outOfDeck = []
end
end