-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpowerup.py
39 lines (27 loc) · 952 Bytes
/
powerup.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
from turtle import RawTurtle
from constants import PowerupType, SOUTH, PowerupAttributes
class Powerup(RawTurtle):
def __init__(self, screen, powerup_type: PowerupType, location, **kwargs):
super().__init__(screen, **kwargs)
self.type = powerup_type
self.image = None
self.set_default_powerup(location)
def set_default_powerup(self, location):
self.penup()
self.shape(PowerupAttributes.SHAPE)
self.color(PowerupAttributes.COLOR)
self.setheading(SOUTH)
self.setposition(location)
self.hideturtle()
def set_image(self, canvas_image):
self.image = canvas_image
def get_image(self):
return self.image
def move(self):
self.forward(PowerupAttributes.SPEED)
def remove(self):
self.hideturtle()
def get_type(self):
return self.type
def get_location(self):
return self.xcor(), self.ycor()