subject

Please answer the following in python: Answering the ones that have #TODO from DiceQuad import DiceQuadclass PigPlayer:
WINNING_SCORE = 100
AUTO_WIN_RECOGNITION_ON = True
numPlayers = 0
def __init__(self, owner, name = "Player"):
self. owner = owner
self. name = name
self. dice = DiceQuad()
self. score = 0
self. roundScore = 0
self. isPlayerTurn = False
PigPlayer. numPlayers += 1
def reset(self):
''Resets all player values to their default value at the start of a game''
#TODO
pass
def getName(self):
'''Return the name of the player'''
return self. name
def getCurrentScore(self):
'''Return the current score of the player. If it is currently the player's turn,
include the round score'''
#TODO
pass
def hasWon(self):
'''Return boolean if the player has won'''
#TODO
pass
def __str__(self):
'''String representation of this class is the current total score, along with the
current round score (which could still be lost, in the case the turn is still
on), or the last round score, if it's the other player's turn'''
return (self. name + "\'s score: \t" + str(self. getCurrentScore()) + "\t"+
(" (this round so far: " if self. isPlayerTurn else " (last round's score: ")+ "\t" + str(self. roundScore) + ")")
def displayNum1s(self):
'''Prints a message about how many 1s were rolled. Also prints what happens as a consequence.
EX:
Player 1 rolled 3 ones
Player 1 loses all points'''
num1s = self. dice. num1s()
print(self. name + " rolled " + str(num1s) + " ones")
if(num1s == 1):
#TODO
pass
elif(num1s == 2):
#TODO
pass
elif(num1s == 3):
#TODO
pass
elif(num1s == 4):
#TODO
pass
def displayDice(self):
print(self. dice)
def displayDoRoll(self):
self. owner. displayScores()
print(self. name + " rolls... ")
def doRoll(self):
'''Rolls the dice for the player. Based on the number of 1s left, either asks the player if they want to roll again
or ends the turn with the proper consequence. If AUTO_WIN_RECOGNITION_ON is True, ends the turn automatically when
player has won including the most recent roll'''
self. displayDoRoll()
self. dice. roll()
self. displayDice()
num1s = self. dice. num1s()
if(num1s == 0):
#TODO
pass
elif(num1s == 1):
#TODO
pass
elif(num1s == 2):
#TODO
pass
elif(num1s == 3):
#TODO
pass
elif(num1s == 4):
#TODO
pass
def doTurn(self):
'''Performs a full turn for the player'''
self. roundScore = 0
self. isPlayerTurn = True
while (self. isPlayerTurn):
self. doRoll()
if(self. isPlayerTurn):
self. isPlayerTurn = not self. wantsHandOver()
self. score += self. roundScore

ansver
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 20:00, bowmanari2154
What is used to analyze and summarize your data without graphical support
Answers: 1
image
Computers and Technology, 23.06.2019 17:00, Need1ng
The more powerful, 60 volt cables and the main power shut-off on an hev are both colored orange.
Answers: 1
image
Computers and Technology, 23.06.2019 21:30, shadoris26
To move a file or folder in microsoft windows, you can click and hold down the left mouse button while moving your mouse pointer to the location you want the file or folder to be, which is also known as.
Answers: 3
image
Computers and Technology, 24.06.2019 01:30, jadaroyval
Write a program that asks the user to enter the name of an input file. if the file does not exist, the program should prompt the user to enter the file name again. if the user types quit in any uppercase/lowercase combinations, then the program should exit without any further output.
Answers: 3
You know the right answer?
Please answer the following in python: Answering the ones that have #TODO from DiceQuad import Dice...

Questions in other subjects:

Konu
Chemistry, 07.12.2020 07:10