-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlack_Jack.rb
529 lines (449 loc) · 10.7 KB
/
Black_Jack.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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# Blackjack game by Julius Osagiede
#=================================== v METHODS v =====================================#
# Slows down text by 1/20 of a second
def slowText(statement)
statement.each_char { |letter|
sleep 0.050
print letter
}
puts
end
# Shows you the index of each deck array object starting at 1
def cardIndexes
@counter = 0
@deck.each do |card|
@counter += 1
puts @counter.to_s + " - " + card.to_s
end
end
# Display commands
def blackJackCommands
@understand = false
help = %(
-----------------------------
| -------------------------- |
| | To Hit: Type in "Hit" | |
| | To Stay: Type in "Stay" | |
| | For Help: Type in "Help"| |
| |To See cards: Type "Show"| |
| -------------------------- |
-----------------------------
)
puts help
puts
while @understand == false
print "Please type in \"Quit\" to quit help: "
userInput = gets.chomp
puts
@understand = true if userInput == "Quit"
end
end
def showUserCards # Displays user cards
lengthOfUserPoints = "You:#{@userPoints}".length
puts "Your cards:"
puts " ------------------------ "
puts "|" + "You:#{@userPoints}".rjust(15) + "|".rjust(16 - lengthOfUserPoints)
puts " ------------------------ "
@userCards.each do |card|
lengthOfCardName = "#{card[0]} of #{card[1]}".length
puts "|" + "#{card[0]} of #{card[1]}" + "|".rjust(25 - lengthOfCardName)
end
puts " ------------------------ "
puts
end
def showCPUOpponentCards # Displays computer's cards
lengthOfCPUPoints = "CPU: #{@cpuOpponentPoints}".length
puts "Computer's cards:"
puts " ------------------------ "
puts "|" + "CPU:#{@cpuOpponentPoints}".rjust(15) + "|".rjust(17 - lengthOfCPUPoints)
puts " ------------------------ "
@cpuOpponentCards.each do |card|
lengthOfCardName = "#{card[0]} of #{card[1]}".length
puts "|" + "#{card[0]} of #{card[1]}" + "|".rjust(25 - lengthOfCardName)
end
puts " ------------------------ "
puts
end
#=================================== ^ METHODS ^ =====================================#
# Deck elements, cardType, cardSuit,
cardLabel = ["2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King", "Ace"]
cardSuit = ["Hearts", "Spades", "Clubs", "Diamonds"]
@deck = []
# Makes deck using deck elements
cardLabel.each do |label|
cardSuit.each do |suit|
@deck.push([label, suit])
end
end
# Gives all aces two values of 1 or 11
@deck[48..51].each do |ace|
ace.push(1).push(11)
end
# Gives all twos a value of 2
@deck[0..3].each do |two|
two.push(2)
end
# Gives all threes a value of 3
@deck[4..7].each do |three|
three.push(3)
end
# Gives all fours a value of 4
@deck[8..11].each do |four|
four.push(4)
end
# Gives all fives a value of 5
@deck[12..15].each do |five|
five.push(5)
end
# Gives all sixs a value of 6
@deck[16..19].each do |six|
six.push(6)
end
# Gives all sevens a value of 7
@deck[20..23].each do |seven|
seven.push(7)
end
# Gives all eights a value of 8
@deck[24..27].each do |eight|
eight.push(8)
end
# Gives all nines a value of 9
@deck[28..31].each do |nine|
nine.push(9)
end
# Gives all face cards (J,Q,K) values of 10
@deck[32..47].each do |faceCard|
faceCard.push(10)
end
# Greeting text
welcomeBlackJack = %(
-------------------
| B l a c k j a c k |
-------------------
)
slowText(welcomeBlackJack)
# Asks user if they would like to play a game of Blackjack
slowText("Welcome to Blackjack, would you like to play?")
print "Please enter Yes or No: "
userInput = gets.chomp
if (userInput != "Yes") && userInput != "No"
until (userInput == "Yes") || userInput == "No"
puts
puts "Error: Unknown Command"
print "Please enter in \"Yes\" or \"No\": "
userInput = gets.chomp
end
end
case userInput
when "Yes"
puts
slowText("Progress 50%")
puts
when "No"
puts
slowText("Have a good one!")
puts
abort
end
# Asks user if they're familiar with all commands available during game
slowText("Do you know all of the commands to play Blackjack?")
print "Please enter Yes or No: "
userInput = gets.chomp
while userInput != "Yes" && userInput != "No"
puts
puts "Error: Unknown Command"
print "Please enter \"Yes\" or \"No\": "
userInput = gets.chomp
end
case userInput
when "Yes"
puts
slowText("Progress 100%")
puts
when "No"
puts
blackJackCommands
slowText("Progress 100%")
puts
end
puts "Have fun and good luck!"
slowText("Dealing cards.......")
puts "#{puts} #{puts}"
# Shuffles deck
@deck.shuffle!
@blackJack = %(
-----------
| Blackjack |
-----------
)
# Computer's points and an array(list) containing what cards it has
@cpuOpponentPoints = 0
@cpuOpponentCards = []
# User's points and an array(list) containing what cards it has
@userPoints = 0
@userCards = []
# Computer and User are both dealt their first two cards
2.times do
dealtCard = @deck.first
if dealtCard.size == 4
if @cpuOpponentPoints + dealtCard[3] <= 21
@cpuOpponentPoints += dealtCard[3]
@cpuOpponentCards << dealtCard
@deck.shift
next
else @cpuOpponentPoints + dealtCard[2] <= 21
@cpuOpponentPoints += dealtCard[2]
@cpuOpponentCards << dealtCard
@deck.shift
next
end
end
@cpuOpponentPoints += dealtCard[2]
@cpuOpponentCards << dealtCard
@deck.shift
dealtCard = @deck.first
if dealtCard.size == 4
puts "You were dealt an #{dealtCard[0]} of #{dealtCard[1]}!"
print "What value would you like to make it? Enter in 1 or 11: "
puts
userInput = gets.chomp
puts "#{puts}"
until userInput == "1" || userInput == "11"
if userInput == "Show"
showUserCards
print "Please enter 1 or 11: "
userInput = gets.chomp
puts
elsif userInput == "Help"
blackJackCommands
print "Please enter 1 or 11: "
userInput = gets.chomp
puts
else
puts "Error: Unknown Command"
print "Please enter 1 or 11: "
userInput = gets.chomp
puts
end
end
if userInput == "1"
puts
dealtCard.delete(11)
else
puts
dealtCard.delete(1)
end
else
if dealtCard[0] == "8"
puts "You were dealt an #{dealtCard[0]}!"
else
puts "You were dealt a #{dealtCard[0]}!"
end
end
@userPoints += dealtCard[2]
@userCards << dealtCard
@deck.shift
end
puts
puts "Your Points: #{@userPoints}"
puts "#{puts}"
if @cpuOpponentPoints == 21 && @userPoints == 21
slowText(@blackJack)
sleep 2.5
puts "It's a tie. How rare is this!!"
puts
showCPUOpponentCards
showUserCards
abort
end
if @cpuOpponentPoints == 21 && @userPoints != 21
slowText(@blackJack)
sleep 2.5
puts "You lose! Good Game."
puts
showCPUOpponentCards
showUserCards
abort
end
if @userPoints == 21 && @cpuOpponentPoints != 21
slowText(@blackJack)
sleep 2.5
puts "Congratulations! You win!"
puts
showCPUOpponentCards
showUserCards
abort
end
# Computer and User are dealt a card once per iteration of the loops
loop do
unless @cpuOpponentPoints >= 17 then
1.times do
if @cpuOpponentPoints == 21
break
elsif @cpuOpponentPoints >= 17
break
elsif @cpuOpponentPoints > 21
break
else
nil
end
dealtCard = @deck.first
if dealtCard.size == 4
if @cpuOpponentPoints + dealtCard[3] > 21
dealtCard.delete(11)
else
dealtCard.delete(1)
end
end
@cpuOpponentPoints += dealtCard[2]
@cpuOpponentCards << dealtCard
@deck.shift
end
end
1.times do
print "What would you like to do?: "
userInput = gets.chomp
@loopBreaker = userInput
puts
until userInput == "Hit" || userInput == "Stay" || userInput == "Show" || userInput == "Help"
puts "Error: Unknown Command"
print "Please enter \"Hit\" or \"Stay\": "
userInput = gets.chomp
puts
end
case
when userInput == "Hit"
dealtCard = @deck.first
if dealtCard.size == 4
puts
puts "You were dealt an #{dealtCard[0]} of #{dealtCard[1]}!"
print "What value would you like to make it? Enter in 1 or 11: "
userInput = gets.chomp
puts
until userInput == "1" || userInput == "11"
puts "Error: Unknown Command"
print "Please enter \"1\" or \"11\": "
@userInput = gets.chomp
puts
end
if userInput == "1"
puts
dealtCard.delete(11)
else
puts
dealtCard.delete(1)
end
else
if dealtCard[0] == "8"
puts
puts "You were dealt an #{dealtCard[0]}!"
else
puts
puts "You were dealt a #{dealtCard[0]}!"
end
end
@userPoints += dealtCard[2]
@userCards << dealtCard
puts
puts "Your Points: #{@userPoints}"
puts
puts
@deck.shift
when userInput == "Show"
showUserCards
when userInput == "Help"
blackJackCommands
end
end
break if @loopBreaker == "Stay"
break if @userPoints >= 21
end
# Compares User points and Computer points to determine winner
case
when @userPoints == 21 && @cpuOpponentPoints == 21
slowText(@blackJack)
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "It's a tie. How rare is this!!"
showCPUOpponentCards
showUserCards
abort
when @userPoints && @cpuOpponentPoints < 21 && @userPoints == @cpuOpponentPoints
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "It's a tie. How rare is this!!"
showCPUOpponentCards
showUserCards
abort
when @userPoints == 21 && @cpuOpponentPoints != 21
slowText(@blackJack)
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "Congratulations, You win!"
showCPUOpponentCards
showUserCards
abort
when @userPoints != 21 && @cpuOpponentPoints == 21
slowText(@blackJack)
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "You lose, Good Game!"
showCPUOpponentCards
showUserCards
abort
when @userPoints > 21 && @cpuOpponentPoints > 21
slowText("Bust!")
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "It's a draw."
showCPUOpponentCards
showUserCards
abort
when @userPoints > 21 && @cpuOpponentPoints < 21 # USER BUST >:(
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "You lose, Good Game!"
showCPUOpponentCards
showUserCards
abort
when @userPoints < 21 && @cpuOpponentPoints > 21 # CPU BUST! >:)
slowText("Bust!")
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "Congratulations, You win!"
showCPUOpponentCards
showUserCards
abort
when @userPoints < @cpuOpponentPoints && @userPoints < 21 && @cpuOpponentPoints < 21
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "You lose, Good Game!"
showCPUOpponentCards
showUserCards
abort
when @userPoints > @cpuOpponentPoints && @userPoints < 21 && @cpuOpponentPoints < 21
sleep 2.5
slowText("And the winner is.....")
puts "#{puts}"
sleep 2.5
puts "Congratulations, You win!"
showCPUOpponentCards
showUserCards
abort
end