generated from grellert/ine5404-aula-03-nov-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.dip.py
46 lines (33 loc) · 1.09 KB
/
5.dip.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
44
45
46
"""
Dependency Inversion Principle
Dependências devem ser feitas sobre abstrações, não sobre implementações concretas
=> A dependência de StatsReporter é de uma classe concreta (Player), não uma interface abstrata(como deveria ser).
=> Para solucionar o problema, deveria ser criada uma interface abstrata, chamada Personagem.
=> Usando o mecanismo de herança, tal impasse é solucionado, agora tem-se duas classes dependendo de uma interface abstrata.
"""
from abc import ABC, abstractmethod
class IPersonagem(ABC):
@abstractmethod
def hp(self):
pass
@abstractmethod
def name(self):
pass
class Player:
def __init__(self, name):
self.stats = StatsReporter(self)
self.__name = name
self.__hp = 100
self.__speed = 1
@property
def hp(self):
return self.__hp
@property
def name(self):
return self.__name
class StatsReporter:
def __init__(self, char: IPersonagem):
self.char = char
def report(self):
print(f'Name:{self.char.name()}')
print(f'HP:{self.char.hp()}')