2024-03-22 20:11:58 +01:00
|
|
|
from animal import Animal
|
|
|
|
import pygame
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
class Giraffe(Animal):
|
|
|
|
def __init__(self, x, y, adult=False):
|
|
|
|
Giraffe_image = pygame.image.load('images/giraffe.png')
|
2024-03-23 13:55:16 +01:00
|
|
|
name = 'giraffe'
|
2024-03-24 17:33:58 +01:00
|
|
|
environment = "hot"
|
2024-05-10 18:32:23 +02:00
|
|
|
activity = 'diurnal'
|
|
|
|
ill = self.is_ill()
|
2024-03-23 13:55:16 +01:00
|
|
|
food_image = 'images/leaves.png'
|
|
|
|
giraffe_food = 'leaves'
|
2024-05-10 18:32:23 +02:00
|
|
|
super().__init__(x, y, name, Giraffe_image, food_image,giraffe_food, environment, activity, ill, adult)
|
2024-03-22 20:11:58 +01:00
|
|
|
self._starttime = datetime.now()
|
|
|
|
|
2024-05-10 22:29:08 +02:00
|
|
|
def getting_hungry(self, const):
|
2024-03-22 20:11:58 +01:00
|
|
|
checktime = datetime.now()
|
|
|
|
delta = checktime - self._starttime
|
2024-05-10 01:56:12 +02:00
|
|
|
minutes_passed = delta.total_seconds() / 30
|
|
|
|
self._starttime = checktime
|
2024-05-10 22:29:08 +02:00
|
|
|
|
|
|
|
if not const.IS_NIGHT and self._feed < 5:
|
|
|
|
self._feed += minutes_passed
|
|
|
|
self._feed = min(self._feed, 5)
|
2024-05-10 01:56:12 +02:00
|
|
|
return self._feed
|