-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeck.rb
58 lines (50 loc) · 1.23 KB
/
deck.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
class Card
attr_reader :rank, :suit
def initialize(rank, suit)
@rank = rank.to_s.upcase
@suit = suit.upcase.slice(0..0)
end
def value
%w(0 2 3 4 5 6 7 8 9 10 J Q K A).index(rank)
end
def ==(other)
return self.rank == other.rank && self.suit == other.suit if other.class == Card
return super == other if other.class != Card
end
def eql?(other)
return self.rank == other.rank && self.suit == other.suit if other.class == Card
return super.eql?(other) if other.class != Card
end
def hash
return (rank+suit).hash
end
end
class DeckOfCards
attr_accessor :cards
def initialize
rank = ["2","3","4","5","6","7","8","9","10","J", "Q", "K", "A"]
suit = ["C", "D", "S", "H"]
@cards = []
rank.map{|r| suit.map {|s| @cards << Card.new(r,s)}}
return @cards
end
def draw
@cards.shift
end
def number_of_cards
@cards.size
end
def shuffle
@cards.shuffle!
end
def add_cards(input)
if input.is_a?(String) then cards_in = input.scan(/\b([2-9JQKA]|10)\w*[-_]*([CDSH])/i)
elsif input.is_a?(Card) then cards_in = [input]
else cards_in = input end
cards_in.each do |c|
if c.class == Card then @cards << c else
@cards << Card.new(c[0],c[1])
end
end
end
end