changed Interactable, Collidable, Npc, Entity
This commit is contained in:
parent
ef798b02e7
commit
9efad498f7
@ -3,9 +3,29 @@ from src.entities.Entity import Entity
|
||||
|
||||
class Collidable(Entity):
|
||||
|
||||
def __init__(self, texture, pos, id):
|
||||
super().__init__(texture, pos, id)
|
||||
|
||||
def check_for_collision(self, x_pos, y_pos):
|
||||
if self.pos[0] == x_pos:
|
||||
if self.pos[1] == y_pos:
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
||||
col = Collidable(1, 1, 1)
|
||||
|
||||
|
||||
"""
|
||||
def interact_with_hp(self, hp, Statistics):
|
||||
Statistics.set_hp(hp)
|
||||
|
||||
def interact_with_hunger(self, hunger, Statistics):
|
||||
Statistics.set_hunger(hunger)
|
||||
|
||||
def interact_with_thirst(self, thirst, Statistics):
|
||||
Statistics.set_thirst(thirst)
|
||||
|
||||
def interact_with_stamina(self, stamina, Statistics):
|
||||
Statistics.set_stamina(stamina)"""
|
@ -1,6 +1,6 @@
|
||||
class Entity:
|
||||
|
||||
def __init__(self):
|
||||
self.texture = None
|
||||
self.pos = None
|
||||
self.id = None
|
||||
def __init__(self, texture, pos, id):
|
||||
self.texture = texture
|
||||
self.pos = pos
|
||||
self.id = id
|
||||
|
@ -1,5 +1,24 @@
|
||||
import src.entities.Entity as Entity
|
||||
from src.entities.Entity import Entity
|
||||
|
||||
|
||||
class Interactable(Entity):
|
||||
pass
|
||||
|
||||
def __init__(self, texture, pos, id):
|
||||
super().__init__(texture, pos, id)
|
||||
|
||||
@staticmethod
|
||||
def interact_with_hp(hp, Statistics):
|
||||
Statistics.set_hp(hp)
|
||||
|
||||
@staticmethod
|
||||
def interact_with_hunger(hunger, Statistics):
|
||||
Statistics.set_hunger(hunger)
|
||||
|
||||
@staticmethod
|
||||
def interact_with_thirst(thirst, Statistics):
|
||||
Statistics.set_thirst(thirst)
|
||||
|
||||
@staticmethod
|
||||
def interact_with_stamina(stamina, Statistics):
|
||||
Statistics.set_stamina(stamina)
|
||||
|
||||
|
@ -1,7 +1,10 @@
|
||||
import src.entities.Collidable as Collidable
|
||||
from src.entities.Collidable import Collidable
|
||||
from src.entities.Interactable import Interactable
|
||||
|
||||
|
||||
class Npc(Collidable):
|
||||
def __init__(self):
|
||||
self.path
|
||||
self.speed
|
||||
class Npc(Collidable, Interactable):
|
||||
def __init__(self, texture, pos, id, path, speed):
|
||||
Collidable.__init__(self, texture, pos, id)
|
||||
Interactable.__init__(self, texture, pos, id)
|
||||
self.path = path
|
||||
self.speed = speed
|
||||
|
Loading…
Reference in New Issue
Block a user