2024-03-24 19:19:49 +01:00
|
|
|
import Akcja
|
2024-03-24 23:30:02 +01:00
|
|
|
import random
|
2024-03-24 19:19:49 +01:00
|
|
|
|
2024-03-23 16:22:13 +01:00
|
|
|
class Stan:
|
|
|
|
nawodnienie = None #[int] 0-100 (0-60: trzeba podlać), spada w zaleznosci od rosliny: aktualizowane bedzie "w tle"
|
|
|
|
zyznosc = None #[int] 0-100 (0-60: trzeba użyźnić), spada w zaleznosci od rosliny: aktualizowane bedzie "w tle"
|
|
|
|
wzrost = None #[int] 0-100 (75-100: scinanie), wzrasta w zaleznosci od rosliny: aktualizowane bedzie "w tle"
|
2024-05-11 13:31:06 +02:00
|
|
|
choroba = None #[int] brak-0,choroba-1
|
2024-03-23 16:22:13 +01:00
|
|
|
akcja = None #[Akcja]
|
2024-04-24 22:16:34 +02:00
|
|
|
koszt = None #[int] 0-15, im więcej tym trudniej wjechać
|
2024-03-23 16:22:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, nawodnienie, zyznosc, wzrost, choroba):
|
|
|
|
self.nawodnienie = nawodnienie
|
|
|
|
self.zyznosc = zyznosc
|
|
|
|
self.wzrost = wzrost
|
|
|
|
self.choroba = choroba
|
|
|
|
|
2024-03-24 23:30:02 +01:00
|
|
|
def __init__(self):
|
|
|
|
self.nawodnienie=0
|
|
|
|
|
|
|
|
def set_random(self):
|
|
|
|
self.nawodnienie=random.randint(0,100)
|
|
|
|
self.zyznosc=random.randint(0,100)
|
|
|
|
self.wzrost=random.randint(0,100)
|
2024-05-11 13:31:06 +02:00
|
|
|
self.choroba=random.randint(0,1)
|
2024-03-23 16:22:13 +01:00
|
|
|
|
|
|
|
def checkStan(self):
|
|
|
|
# sprawdza stan rośliny i podejmuje akcje jeśli potrzebna
|
|
|
|
|
|
|
|
if self.nawodnienie <= 60:
|
2024-03-24 19:19:49 +01:00
|
|
|
self.akcja = Akcja.Akcja("nawodnienie")
|
2024-03-23 16:22:13 +01:00
|
|
|
return
|
|
|
|
elif self.zyznosc <= 60:
|
2024-03-24 19:19:49 +01:00
|
|
|
self.akcja = Akcja.Akcja("zyznosc")
|
2024-03-23 16:22:13 +01:00
|
|
|
return
|
|
|
|
elif self.wzrost >= 75:
|
2024-03-24 19:19:49 +01:00
|
|
|
self.akcja = Akcja.Akcja("wzrost")
|
2024-03-23 16:22:13 +01:00
|
|
|
return
|
|
|
|
elif self.choroba != "brak":
|
2024-03-24 19:19:49 +01:00
|
|
|
self.akcja = Akcja.Akcja(self.choroba)
|
2024-03-23 16:22:13 +01:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.akcja = None
|
2024-03-24 23:30:02 +01:00
|
|
|
return
|
|
|
|
|
2024-04-13 01:39:39 +02:00
|
|
|
def return_hydrate(self):
|
|
|
|
return self.nawodnienie
|
2024-05-11 13:31:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def return_disease(self):
|
|
|
|
return self.choroba
|
|
|
|
|
|
|
|
def return_disease_as_string(self):
|
|
|
|
if(self.choroba==0):
|
|
|
|
return "Zdrowa"
|
|
|
|
if(self.choroba==1):
|
|
|
|
return "Chora"
|
2024-05-11 14:18:40 +02:00
|
|
|
|
|
|
|
def return_stan_for_tree(self):
|
|
|
|
return [self.nawodnienie,self.wzrost,self.choroba,self.zyznosc]
|
|
|
|
|
2024-03-24 23:30:02 +01:00
|
|
|
def report_all(self):
|
2024-05-12 14:59:23 +02:00
|
|
|
return f"Nawodnienie: {self.nawodnienie} Zyznosc: {self.zyznosc} Wzrost: {self.wzrost} Choroba: {self.return_disease_as_string()}"
|
|
|
|
|