Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can someone help my update my code to include this updated class ' MAX_X = 800 MAX_Y = 600 class Person: def __init__(self, name=player 1,

Can someone help my update my code to include this updated class
image text in transcribed
'MAX_X = 800
MAX_Y = 600 class Person: def __init__(self, name="player 1", x=0, y=0): self.name = "player 1" self.name = name self.x = x self.y = y self.size = 1 #getter for name of person @property def name(self): return self._name #setter for name of person @name.setter def name(self, value): if len(value.strip()) > 3: self._name = value.strip() #getter for persons x value @property def x(self): return self._x #setter for persons x value @x.setter def x(self, value): if value >= 0 and value  MAX_X: self._x = MAX_X #getter for persons y value @property def y(self): return self._y #setter for persons y value @y.setter def y(self, value): if value >= 0 and value  MAX_Y: self._y = MAX_Y #getter for persons size @property def size(self): return self._size #setter for persons size @size.setter def size(self, value): if value >= 1: self._size = value def goLeft(self, distance=1): #decreases the x coordinate self.x = self.x - distance def goRight(self, distance=1): #increases the x coordinate self.x = self.x + distance def goUp(self, distance=1): #decreases the y coordinate self.y = self.y - distance def goDown(self, distance=1): #increases the y coordinate self.y = self.y + distance def getDistance(self, other): #formula to calculate distance between two people return ((self.x - other.x)**2 + (self.y - other.y)**2)**0.5 def __str__(self): #string method that formats the output and creates columns using the TAB(\t) return "Person({}):\tsize = {},\tx = {}\ty = {}".format(self.name, self.size, self.x, self.y)'
Note that the functionality that Person contained in the last assignment bas been moved to another class i.c. I tem. Person is a subelass of the I ten class and has a few extra iastance variables and functions. - color is represented by a list of 3 elements containing the hex values representation of a color e.g. [0xe3, 0x/b, 6x.23] which represents red. - surf is the name given to a pygame surface (a square region of the screen that will represent the Person object), surf's dimensions are determined by the size of the fe rson/tte= - setcolor is a function that randonly selects the value to be stored in the color instance varible, and then changes the color of the aurt to match that color. - setsi ze is a function that changes the sl ze of the Person/t cem to a random value between 10 and 100 , and then changes the size of the surf to match that sire. - updace receives as an argument a dictionary containing all the key pressed events and then updates the state of the Person based on what was pressed: 5. If the up direction was pressed, then goUp is executed. a if the down direction key was pressed, then goDown is executed b. if the left ditection key was pressed, then goleft is executed - if the right direction key was pressed, then goRight is executed o if the space bar key was pressed, then the si ze and color of the rerson is changed. - setRandomposition updates the Person's s x and y coordinutes to a nandomly selected value within the appropriate range i.e. HEICHT and wI DTH. - get Position calculates and returns the coordinates of the top left comer of the roctangle representing the Person. Note that when pygame is atterupting to draw a Sur face on the sereen, it requires the coordinates of the top left coener of the surface and yet the x and y coordinates of the Person should be the coordiantes of the center of the Sur face. get Poat t ion calculates the appropriate cootdinates using x,y and at ze and returns the result as a tuple. - A Peraon can be prised. The ster function adds the value of the color to the String representation of an Iten

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analytics Systems Engineering Cybersecurity Project Management

Authors: Christopher Greco

1st Edition

168392648X, 978-1683926481

More Books

Students also viewed these Databases questions

Question

2. Define identity.

Answered: 1 week ago

Question

1. Identify three communication approaches to identity.

Answered: 1 week ago

Question

4. Describe phases of majority identity development.

Answered: 1 week ago