X-Git-Url: https://plomlompom.com/repos/processes?a=blobdiff_plain;f=new%2Fplomrogue%2Fthings.py;h=243547b2ffb854b330fcb998a27882d8ecda2ef9;hb=c7ed14237418f807473b11e49f17a878ff344f97;hp=a80e9e40913e9eac6e06221577cfe5815477a1a5;hpb=7d8ed36999f496383de39a76aee8dfb8e1bfbef7;p=plomrogue2-experiments diff --git a/new/plomrogue/things.py b/new/plomrogue/things.py index a80e9e4..243547b 100644 --- a/new/plomrogue/things.py +++ b/new/plomrogue/things.py @@ -3,16 +3,33 @@ from plomrogue.errors import GameError class ThingBase: + type_ = '?' - def __init__(self, world, id_, type_='?', position=[0,0]): + def __init__(self, world, id_=None, position=[0,0]): self.world = world - self.id_ = id_ - self.type_ = type_ self.position = position + if id_ is None: + self.id_ = self.world.new_thing_id() + else: + self.id_ = id_ class Thing(ThingBase): + blocking = False + + def proceed(self): + pass + + + +class ThingItem(Thing): + type_ = 'item' + + + +class ThingAnimate(Thing): + blocking = True def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -126,3 +143,13 @@ class Thing(ThingBase): if stencil[thing.position] == '.': visible_things += [thing] return visible_things + + + +class ThingHuman(ThingAnimate): + type_ = 'human' + + + +class ThingMonster(ThingAnimate): + type_ = 'monster'