-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard_class.py
54 lines (32 loc) · 1.09 KB
/
card_class.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 17 14:47:28 2021
@author: robertblack
"""
class Card:
def __init__(self, suitEnum, typeEnum):
self.__m_suit = suitEnum
self.__m_type = typeEnum
#Getters
def getSuit(self):
return self.__m_suit
def getType(self):
return self.__m_type
def isEqualTo(self, card):
eCardSuit = card.getSuit()
eCardType = card.getType()
cardEq = False
if (self.__m_suit == eCardSuit and self.__m_type == eCardType):
cardEq = True
return cardEq
def isSameType(self, card):
eCardType = card.getType()
cardEq = False
if (self.__m_type == eCardType):
cardEq = True
return cardEq
def __str__(self):
cardType = self.__m_type.value
cardSuit = self.__m_suit.value
return str(cardType) + " of " + str(cardSuit)