1 from plomrogue.errors import PlayError, GameError
9 def __init__(self, thing, args=()):
18 class Task_WAIT(Task):
25 class Task_MOVE(Task):
26 argtypes = 'string:direction'
28 def get_move_target(self):
29 return self.thing.game.map_geometry.move_yxyx(self.thing.position,
33 test_yxyx = self.get_move_target()
34 if test_yxyx in [t.position for t in self.thing.game.things
36 raise PlayError('blocked by other thing')
37 elif self.thing.game.maps[test_yxyx[0]][test_yxyx[1]] != '.':
38 raise PlayError('blocked by impassable tile')
41 self.thing.position = self.get_move_target()
42 if self.thing.carrying:
43 self.thing.carrying.position = self.thing.position
47 class Task_WRITE(Task):
48 argtypes = 'string:char string'
51 if not self.thing.game.can_do_tile_with_pw(*self.thing.position,
53 raise GameError('wrong password for tile')
56 big_yx = self.thing.position[0]
57 little_yx = self.thing.position[1]
58 self.thing.game.maps[big_yx][little_yx] = self.args[0]
62 class Task_FLATTEN_SURROUNDINGS(Task):
69 for yxyx in [self.thing.position] + \
70 list(self.thing.game.map_geometry.get_neighbors_yxyx(
71 self.thing.position).values()):
72 if not self.thing.game.can_do_tile_with_pw(*yxyx, self.args[0]):
74 self.thing.game.maps[yxyx[0]][yxyx[1]] = '.'
78 class Task_PICK_UP(Task):
81 if self.thing.carrying:
82 raise PlayError('already carrying something')
83 nothing_to_pick_up = True
84 for t in [t for t in self.thing.game.things
86 and t != self.thing and t.position == self.thing.position and
88 nothing_to_pick_up = False
90 if nothing_to_pick_up:
91 raise PlayError('nothing to pick up')
94 to_pick_up = [t for t in self.thing.game.things
96 and t != self.thing and t.position == self.thing.position][0]
97 self.thing.carrying = to_pick_up
101 class Task_DROP(Task):
104 if not self.thing.carrying:
105 raise PlayError('nothing to drop')
108 self.thing.carrying = None
112 class Task_DOOR(Task):
115 self.thing.carrying = None
116 action_radius = list(self.thing.game.map_geometry.
117 get_neighbors_yxyx(self.thing.position).values())
118 for t in [t for t in self.thing.game.things if
119 t.type_ == 'Door' and t.position in action_radius]:
127 class Task_INTOXICATE(Task):
130 if self.thing.carrying is None:
131 raise PlayError('nothing to consume')
132 if self.thing.carrying.type_ != 'Consumable':
133 raise PlayError('cannot consume non-consumable')
136 self.thing.game.things.remove(self.thing.carrying)
137 self.thing.carrying = None
138 for c_id in self.thing.game.sessions:
139 if self.thing.game.sessions[c_id]['thing_id'] == self.thing.id_:
140 self.thing.game.io.send('RANDOM_COLORS', c_id)
141 self.thing.game.io.send('CHAT "You are drunk now."', c_id)
143 self.thing.drunk = 10000
146 class Task_COMMAND(Task):
150 if self.thing.carrying is None:
151 raise PlayError('nothing to command')
152 if not self.thing.carrying.commandable:
153 raise PlayError('cannot command this item type')
156 from plomrogue.misc import quote
157 reply = self.thing.carrying.interpret(self.args[0])
158 for c_id in self.thing.game.sessions:
159 if self.thing.game.sessions[c_id]['thing_id'] == self.thing.id_:
160 self.thing.game.io.send('REPLY ' + quote(reply), c_id)