-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparticipant_class.py
89 lines (53 loc) · 1.98 KB
/
participant_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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Feb 18 08:33:01 2021
@author: robertblack
"""
import hand_class as hnd
from os import name, system
class Participant:
def __init__(self, name = "name"):
self._m_name = name
self._m_hand = hnd.Hand()
self._m_spoons = []
self._m_currentPlayer = False
#Getters.
def getName(self):
return self._m_name
def isCurrentPlayer(self):
return self._m_currentPlayer
def getCards(self):
return self._m_hand.getCards()
def getNumOfCards(self):
return len(self._m_hand.getCards())
def takeCard(self, card):
self._m_hand.addCard(card)
def getCardsLeft(self):
return self._m_hand.getNumberOfCardsLeft()
def setCurrentPlayer(self, currentPlayer):
self._m_currentPlayer = currentPlayer
def takeSpoon(self, spoon):
self._m_spoons.append(spoon)
def discardSpoon(self):
return self._m_spoons.pop()
def getNumberOfSpoons(self):
return len(self._m_spoons)
def checkFourMatchingCards(self):
return self._m_hand.checkFourCardSameValue()
def setCardsToZero(self):
self._m_hand = hnd.Hand()
#Function to lear the console.
#Numlines is an optional argument used only as a fall-back.
def clearScreen(self, numlines=100):
if name == "posix":
# Unix/Linux/MacOS/BSD/etc
system('clear')
elif name in ("nt", "dos", "ce"):
# DOS/Windows
system('CLS')
else:
# Fallback for other operating systems.
print('\n' * numlines)
def __str__(self):
return "My name is: " + self._m_name + " and I am a participant"