forked from emilybache/Parrot-Refactoring-Kata
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparrot.py
43 lines (33 loc) · 1.23 KB
/
parrot.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
40
41
42
43
from enum import Enum
class ParrotType(Enum):
EUROPEAN = 1
AFRICAN = 2
NORWEGIAN_BLUE = 3
class Parrot:
def __init__(self, type_of_parrot, number_of_coconuts, voltage, nailed):
self._type = type_of_parrot
self._number_of_coconuts = number_of_coconuts
self._voltage = voltage
self._nailed = nailed
def speed(self):
match self._type:
case ParrotType.EUROPEAN:
return self._base_speed()
case ParrotType.AFRICAN:
return max(0, self._base_speed() - self._load_factor() * self._number_of_coconuts)
case ParrotType.NORWEGIAN_BLUE:
return 0 if self._nailed else self._compute_base_speed_for_voltage(self._voltage)
def cry(self):
match self._type:
case ParrotType.EUROPEAN:
return "Sqoork!"
case ParrotType.AFRICAN:
return "Sqaark!"
case ParrotType.NORWEGIAN_BLUE:
return "Bzzzzzz" if self._voltage > 0 else "..."
def _compute_base_speed_for_voltage(self, voltage):
return min([24.0, voltage * self._base_speed()])
def _load_factor(self):
return 9.0
def _base_speed(self):
return 12.0