-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFish.py
39 lines (29 loc) · 1.04 KB
/
Fish.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
import Animal
MAX_FISH_HEIGHT = 5
MAX_FISH_WIDTH = 8
class Fish(Animal.Animal):
def __init__(self, name, age, x, y, directionH, directionV):
super().__init__(name, age, x, y, directionH)
self.width = MAX_FISH_WIDTH
self.height = MAX_FISH_HEIGHT
self.directionV = directionV # random 0 - down / 1 - up
def __str__(self):
st = "The fish " + str(self.name) + " is " + str(self.age) + " years old and has " + str(self.food) + " food"
return st
def up(self):
self.y = self.y-1
return None
def down(self):
self.y = self.y + 1
return None
def starvation(self):
print("The fish " + str(self.name) + " died at the age of " + str(self.age) + " years Because he ran out of food!")
return None
def die(self):
print(str(self.name) + " died in good health")
return None
def get_directionV(self):
return self.directionV
def set_directionV(self, directionV):
self.directionV = directionV
return None