Compare commits

..

No commits in common. "7869bd002b403b1d7d390ef225ce868e1de9e791" and "8c1495992f81583f239b664b98b3f995795299c8" have entirely different histories.

7 changed files with 4 additions and 66 deletions

View File

@ -16,9 +16,3 @@ class Jednostka(ABC):
if self.zdrowie > 0:
return True
return False
def wyswietl_stan(self):
print(f'Zdrowie: {self.zdrowie}')
print(f'Sila: {self.sila_ataku}')
print(f'Zasieg: {self.zasieg_ataku}')
print(f'Szybkosc: {self.szybkosc_ruchu}')

View File

@ -7,7 +7,3 @@ class Kusznik(Jednostka):
def __str__(self):
return 'K'
def wyswietl_stan(self):
print('Kusznik')
super().wyswietl_stan()

View File

@ -7,7 +7,3 @@ class Lucznik(Jednostka):
def __str__(self):
return 'L'
def wyswietl_stan(self):
print('Łucznik')
super().wyswietl_stan()

17
main.py
View File

@ -7,19 +7,10 @@ from piechur import Piechur
if __name__ == '__main__':
plansza = Plansza()
r1 = Rycerz()
l1 = Lucznik()
k1 = Kusznik()
p1 = Piechur()
plansza.dodaj_jednostke(r1, 1, 1)
plansza.dodaj_jednostke(l1, 2, 1)
plansza.dodaj_jednostke(Rycerz(), 1, 1)
plansza.dodaj_jednostke(Lucznik(), 2, 1)
plansza = Plansza()
plansza.dodaj_jednostke(k1, 5, 5)
plansza.dodaj_jednostke(p1, 3, 5)
plansza.wykonaj_atak(r1, l1)
l1.wyswietl_stan()
plansza.dodaj_jednostke(Kusznik(), 5, 5)
plansza.dodaj_jednostke(Piechur(), 3, 5)

View File

@ -7,7 +7,3 @@ class Piechur(Jednostka):
def __str__(self):
return 'P'
def wyswietl_stan(self):
print('Piechur')
super().wyswietl_stan()

View File

@ -1,6 +1,3 @@
import math
class Plansza:
_instance = None
@ -44,31 +41,3 @@ class Plansza:
print(self.pole[x][y], end=' ')
print()
print()
def wykonaj_atak(self, atakujacy, cel):
if self.sprawdz_zasieg(atakujacy, cel):
cel.otrzymaj_obrazenia(self.oblicz_obrazenia(atakujacy, cel))
else:
print('Cel jest za daleko')
def sprawdz_zasieg(self, atakujacy, cel):
x1, y1 = self.znajdz(atakujacy)
x2, y2 = self.znajdz(cel)
dystans = math.sqrt(math.pow(math.fabs(x1 - x2), 2) + math.pow(math.fabs(y1- y2), 2))
dystans = round(dystans, 0)
if atakujacy.zasieg_ataku >= dystans:
return True
else:
return False
def oblicz_obrazenia(self, atakujacy, cel):
obrazenia = atakujacy.sila_ataku
return obrazenia
def znajdz(self, jednostka):
for y in range(5):
for x in range(5):
if self.pole[x][y] == jednostka:
return x, y

View File

@ -7,7 +7,3 @@ class Rycerz(Jednostka):
def __str__(self):
return 'R'
def wyswietl_stan(self):
print('Rycerz')
super().wyswietl_stan()