home · contact · privacy
a75352625fba3ee7042091de2fa88874caf57296
[plomrogue2-experiments] / new2 / plomrogue / tasks.py
1 from plomrogue.errors import GameError
2 from plomrogue.mapping import YX
3
4
5
6 class Task:
7     argtypes = ''
8     todo = 3
9
10     def __init__(self, thing, args=()):
11         self.thing = thing
12         self.args = args
13
14     def check(self):
15         pass
16
17
18
19 class Task_WAIT(Task):
20     todo = 1
21
22     def do(self):
23         return 'success'
24
25
26
27 class Task_MOVE(Task):
28     argtypes = 'string:direction'
29
30     def get_move_target(self):
31         return self.thing.game.map_geometry.move(self.thing.position,
32                                                  self.args[0])
33
34     def check(self):
35         test_pos = self.get_move_target()
36         if test_pos.y < 0 or test_pos.x < 0 or test_pos.y >= 24 or test_pos.x >= 40: 
37             raise GameError('would move out of map')
38
39     def do(self):
40         self.thing.position = self.get_move_target()