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, 21.06.2019 13:30
What should her next step be if she is attempting to highlight cells with values greater than 90 but less than 100?
Answers: 2
question
Computers and Technology, 23.06.2019 10:00
How do i delete my account on this because i didn't read this agreements and also i put age at xd
Answers: 1
question
Computers and Technology, 23.06.2019 10:30
How would you categorize the software that runs on mobile devices? break down these apps into at least three basic categories and give an example of each.
Answers: 1
question
Computers and Technology, 24.06.2019 14:00
Fast answer i need for apex ! smartphones should be banned from the classroom in public schools so that students cannot cheat on test so easily? which is an example of a counter argument to the thesis above? a.the classroom is a place for learning not for making phone calls b. smartphones are useful learning tools in the modern classroom c.banning smartphones will not students pay attention to teachers any better d. banning smartphones would decreased incidents of theft
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
Computers and Technology, 09.02.2021 19:50
question
Mathematics, 09.02.2021 19:50
question
Chemistry, 09.02.2021 19:50
question
Mathematics, 09.02.2021 19:50
question
Mathematics, 09.02.2021 19:50
question
Mathematics, 09.02.2021 19:50