X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue%2Ftasks.py;h=6d1a32a75e65b4a5a7fe74a40634f260e85e4d1c;hb=7abc6dcdbe60dce9b8efad07917fb274da06687a;hp=e73b174a1fed351c03cf8c22bd791900e4f76cb9;hpb=0747716a70ba46dbd6a8d7091b864e02b754f56f;p=plomrogue2 diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index e73b174..6d1a32a 100644 --- a/plomrogue/tasks.py +++ b/plomrogue/tasks.py @@ -20,7 +20,7 @@ class Task_WAIT(Task): todo = 1 def do(self): - return 'success' + pass @@ -44,6 +44,8 @@ class Task_MOVE(Task): def do(self): self.thing.position = self.get_move_target() + if self.thing.carrying: + self.thing.carrying.position = self.thing.position @@ -75,3 +77,37 @@ class Task_FLATTEN_SURROUNDINGS(Task): if not self.thing.game.can_do_tile_with_pw(yx, self.args[0]): continue self.thing.game.map[yx] = '.' + + + +class Task_PICK_UP(Task): + todo = 1 + + def check(self): + if self.thing.carrying: + raise PlayError('already carrying') + nothing_to_pick_up = True + for t in [t for t in self.thing.game.things + if t != self.thing and t.position == self.thing.position + and t.type_ != 'Player']: + nothing_to_pick_up = False + break + if nothing_to_pick_up: + raise PlayError('nothing to pick up') + + def do(self): + to_pick_up = [t for t in self.thing.game.things + if t != self.thing and t.position == self.thing.position][0] + self.thing.carrying = to_pick_up + + + +class Task_DROP(Task): + todo = 1 + + def check(self): + if not self.thing.carrying: + raise PlayError('nothing to drop') + + def do(self): + self.thing.carrying = None