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

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 23:00
Lucas put a lot of thought into the design for his company's new white paper. he made sure to include repeating design elements such as color schemes and decorative images. his goal was to a.add symmetry b.create a unified publication c.provide consistency d.save money
Answers: 1
question
Computers and Technology, 24.06.2019 02:30
Which option completes the explanation for conflict of interest in an organization
Answers: 1
question
Computers and Technology, 24.06.2019 05:30
Someone plzz me which of these defines a social search? a. asking a search engine a question that is answered by a real person on the other sideb. modifying search results based on popularity of a web pagec.modifying search results based on a ranking of a web page
Answers: 2
question
Computers and Technology, 24.06.2019 14:00
What are the different components of the cloud architecture?
Answers: 2
You know the right answer?
Please answer the following in python: Answering the ones that have #TODO from DiceQuad import Dice...
Questions
question
Mathematics, 11.06.2021 05:10
question
Physics, 11.06.2021 05:20
question
Mathematics, 11.06.2021 05:20
question
Chemistry, 11.06.2021 05:20
question
Mathematics, 11.06.2021 05:20
Questions on the website: 13722367