1 from plomrogue.errors import GameError, PlayError
2 from plomrogue.mapping import YX, FovMap
3 from plomrogue.misc import quote
12 def __init__(self, game, id_=0, position=(YX(0, 0), YX(0, 0))):
15 self.id_ = self.game.new_thing_id()
18 self.position = position
22 class Thing(ThingBase):
23 blocks_movement = False
31 def __init__(self, *args, **kwargs):
32 super().__init__(*args, **kwargs)
39 return self.__class__.get_type()
43 return cls.__name__[len('Thing_'):]
45 def sound(self, name, msg):
46 from plomrogue.mapping import DijkstraMap
49 def lower_msg_by_volume(msg, volume, largest_audible_distance,
51 factor = largest_audible_distance / 4
58 in_url = False if in_url else True
60 while random.random() > volume * factor:
63 elif c != '.' and c != ' ':
71 largest_audible_distance = 20
72 obstacles = [t.position for t in self.game.things if t.blocks_sound]
73 sound_blockers = self.game.get_sound_blockers()
74 dijkstra_map = DijkstraMap(sound_blockers, obstacles, self.game.maps,
75 self.position, largest_audible_distance,
78 for m in re.finditer('https?://[^\s]+', msg):
79 url_limits += [m.start(), m.end()]
80 for c_id in self.game.sessions:
81 listener = self.game.get_player(c_id)
82 target_yx = dijkstra_map.target_yx(*listener.position, True)
85 listener_distance = dijkstra_map[target_yx]
86 if listener_distance > largest_audible_distance:
88 volume = 1 / max(1, listener_distance)
89 lowered_msg = lower_msg_by_volume(msg, volume,
90 largest_audible_distance,
92 lowered_nick = lower_msg_by_volume(name, volume,
93 largest_audible_distance)
95 # if listener.fov_test(self.position[0], self.position[1]):
96 # TODO: We might want to only show chat faces of players that are
97 # in the listener's FOV. However, if we do a fov_test here,
98 # this might set up a listener._fov where previously there was None,
99 # with ._fov = None serving to Game.send_gamestate() as an indicator
100 # that map view data for listener might be subject to change and
101 # therefore needs to be re-sent. If we generate an un-set ._fov
102 # here, this inhibits send_gamestate() from sending new map view
103 # data to listener. We need to re-structure this whole process
104 # if we want to use a FOV test on listener here.
105 if listener_distance < largest_audible_distance / 2:
106 self.game.io.send('CHATFACE %s' % self.id_, c_id)
107 if self.type_ == 'Player' and hasattr(self, 'thing_char'):
108 symbol = '/@' + self.thing_char
109 self.game.io.send('CHAT ' +
110 quote('vol:%.f%s %s%s: %s' % (volume * 100, '%',
111 lowered_nick, symbol,
117 class Thing_Item(Thing):
123 class ThingSpawner(Thing):
127 for t in [t for t in self.game.things
128 if t != self and t.position == self.position]:
130 self.game.add_thing(self.child_type, self.position)
134 class Thing_ItemSpawner(ThingSpawner):
139 class Thing_SpawnPointSpawner(ThingSpawner):
140 child_type = 'SpawnPoint'
144 class Thing_SpawnPoint(Thing):
151 class ThingInstallable(Thing):
156 self.portable = False
163 class Thing_DoorSpawner(ThingSpawner):
168 class Thing_Door(ThingInstallable):
170 blocks_movement = False
173 self.blocks_movement = False
174 self.blocks_light = False
175 self.blocks_sound = False
179 self.blocks_movement = True
180 self.blocks_light = True
181 self.blocks_sound = True
182 self.thing_char = '#'
186 class Thing_Psychedelic(Thing):
192 class Thing_PsychedelicSpawner(ThingSpawner):
194 child_type = 'Psychedelic'
198 class Thing_Bottle(Thing):
206 self.thing_char = '_'
210 all_players = [t for t in self.game.things if t.type_ == 'Player']
211 # TODO: refactor with ThingPlayer.prepare_multiprocessible_fov_stencil
212 # and ThingPlayer.fov_test
214 light_blockers = self.game.get_light_blockers()
215 obstacles = [t.position for t in self.game.things if t.blocks_light]
216 fov = FovMap(light_blockers, obstacles, self.game.maps,
217 self.position, fov_radius, self.game.get_map)
220 for p in all_players:
221 test_position = fov.target_yx(p.position[0], p.position[1])
222 if fov.inside(test_position) and fov[test_position] == '.':
223 visible_players += [p]
224 if len(visible_players) == 0:
225 self.sound('BOTTLE', 'no visible players in spin range')
226 pick = random.choice(visible_players)
227 self.sound('BOTTLE', 'BOTTLE picks: ' + pick.name)
231 class Thing_BottleSpawner(ThingSpawner):
232 child_type = 'Bottle'
236 class Thing_Hat(Thing):
239 design = ' +--+ ' + ' | | ' + '======'
244 new_design += self.design[12]
245 new_design += self.design[13]
246 new_design += self.design[6]
247 new_design += self.design[7]
248 new_design += self.design[0]
249 new_design += self.design[1]
250 new_design += self.design[14]
251 new_design += self.design[15]
252 new_design += self.design[8]
253 new_design += self.design[9]
254 new_design += self.design[2]
255 new_design += self.design[3]
256 new_design += self.design[16]
257 new_design += self.design[17]
258 new_design += self.design[10]
259 new_design += self.design[11]
260 new_design += self.design[4]
261 new_design += self.design[5]
262 self.design = ''.join(new_design)
266 class Thing_HatRemixer(Thing):
269 def accept(self, hat):
272 legal_chars = string.ascii_letters + string.digits + string.punctuation + ' '
274 new_design += random.choice(list(legal_chars))
275 hat.design = new_design
276 self.sound('HAT REMIXER', 'remixing a hat …')
277 self.game.changed = True
278 self.game.record_change(self.position, 'other')
283 class Thing_MusicPlayer(Thing):
288 next_song_start = datetime.datetime.now()
292 def __init__(self, *args, **kwargs):
293 super().__init__(*args, **kwargs)
294 self.next_song_start = datetime.datetime.now()
298 if (not self.playing) or len(self.playlist) == 0:
300 if datetime.datetime.now() > self.next_song_start:
301 self.playlist_index += 1
302 if self.playlist_index == len(self.playlist):
303 self.playlist_index = 0
307 song_data = self.playlist[self.playlist_index]
308 self.next_song_start = datetime.datetime.now() +\
309 datetime.timedelta(seconds=song_data[1])
310 self.sound('MUSICPLAYER', song_data[0])
311 self.game.changed = True
313 def interpret(self, command):
315 if command == 'HELP':
316 msg_lines += ['available commands:']
317 msg_lines += ['HELP – show this help']
318 msg_lines += ['ON/OFF – toggle playback on/off']
319 msg_lines += ['REWIND – return to start of playlist']
320 msg_lines += ['LIST – list programmed songs, durations']
321 msg_lines += ['SKIP – to skip to next song']
322 msg_lines += ['REPEAT – toggle playlist repeat on/off']
323 msg_lines += ['ADD LENGTH SONG – add SONG to playlist, with LENGTH in format "minutes:seconds", i.e. something like "0:47" or "11:02"']
325 elif command == 'LIST':
326 msg_lines += ['playlist:']
328 for entry in self.playlist:
329 minutes = entry[1] // 60
330 seconds = entry[1] % 60
332 seconds = '0%s' % seconds
333 selector = 'next:' if i == self.playlist_index else ' '
334 msg_lines += ['%s %s:%s – %s' % (selector, minutes, seconds, entry[0])]
337 elif command == 'ON/OFF':
338 self.playing = False if self.playing else True
339 self.game.changed = True
344 elif command == 'REMOVE':
345 if len(self.playlist) == 0:
346 return ['playlist already empty']
347 del self.playlist[max(0, self.playlist_index)]
348 self.playlist_index -= 1
349 if self.playlist_index < -1:
350 self.playlist_index = -1
351 self.game.changed = True
352 return ['removed song']
353 elif command == 'REWIND':
354 self.playlist_index = -1
355 self.next_song_start = datetime.datetime.now()
356 self.game.changed = True
357 return ['back at start of playlist']
358 elif command == 'SKIP':
359 self.next_song_start = datetime.datetime.now()
360 self.game.changed = True
362 elif command == 'REPEAT':
363 self.repeat = False if self.repeat else True
364 self.game.changed = True
366 return ['playlist repeat turned on']
368 return ['playlist repeat turned off']
369 elif command.startswith('ADD '):
370 tokens = command.split(' ', 2)
372 return ['wrong syntax, see HELP']
373 length = tokens[1].split(':')
375 return ['wrong syntax, see HELP']
377 minutes = int(length[0])
378 seconds = int(length[1])
380 return ['wrong syntax, see HELP']
381 self.playlist += [(tokens[2], minutes * 60 + seconds)]
382 self.game.changed = True
385 return ['cannot understand command']
389 class Thing_BottleDeposit(Thing):
394 if self.bottle_counter >= 3:
395 self.bottle_counter = 0
396 choice = random.choice(['MusicPlayer', 'Hat'])
397 self.game.add_thing(choice, self.position)
398 msg = 'here is a gift as a reward for ecological consciousness –'
399 if choice == 'MusicPlayer':
400 msg += 'pick it up and then use "command thing" on it!'
401 elif choice == 'Hat':
402 msg += 'pick it up and then use "(un-)wear" on it!'
403 self.sound('BOTTLE DEPOSITOR', msg)
406 self.bottle_counter += 1
407 self.sound('BOTTLE DEPOSITOR',
408 'thanks for this empty bottle – deposit %s more for a gift!' %
409 (3 - self.bottle_counter))
413 class Thing_Cookie(Thing):
417 def __init__(self, *args, **kwargs):
419 super().__init__(*args, **kwargs)
420 legal_chars = string.ascii_letters + string.digits + string.punctuation + ' '
421 self.thing_char = random.choice(list(legal_chars))
425 class Thing_CookieSpawner(Thing):
428 def accept(self, thing):
429 self.sound('OVEN', '*heat* *brrzt* here\'s a cookie!')
430 self.game.add_thing('Cookie', self.position)
434 class ThingAnimate(Thing):
435 blocks_movement = True
437 def __init__(self, *args, **kwargs):
438 super().__init__(*args, **kwargs)
439 self.next_task = [None]
441 self.invalidate('fov')
442 self.invalidate('other') # currently redundant though
444 def invalidate(self, type_):
447 self._visible_terrain = None
448 self._visible_control = None
449 self.invalidate('other')
450 elif type_ == 'other':
451 self._seen_things = None
452 self._seen_annotation_positions = None
453 self._seen_portal_positions = None
455 def set_next_task(self, task_name, args=()):
456 task_class = self.game.tasks[task_name]
457 self.next_task = [task_class(self, args)]
459 def get_next_task(self):
460 if self.next_task[0]:
461 task = self.next_task[0]
462 self.next_task = [None]
467 if self.task is None:
468 self.task = self.get_next_task()
472 except (PlayError, GameError) as e:
476 if self.task.todo <= 0:
478 self.game.changed = True
479 self.task = self.get_next_task()
481 def prepare_multiprocessible_fov_stencil(self):
482 fov_radius = 3 if self.drunk > 0 else 12
483 light_blockers = self.game.get_light_blockers()
484 obstacles = [t.position for t in self.game.things if t.blocks_light]
485 self._fov = FovMap(light_blockers, obstacles, self.game.maps,
486 self.position, fov_radius, self.game.get_map)
488 def multiprocessible_fov_stencil(self):
489 self._fov.init_terrain()
492 def fov_stencil(self):
495 # due to the pre-multiprocessing in game.send_gamestate,
496 # the following should actually never be called
497 self.prepare_multiprocessible_fov_stencil()
498 self.multiprocessible_fov_stencil()
501 def fov_test(self, big_yx, little_yx):
502 test_position = self.fov_stencil.target_yx(big_yx, little_yx)
503 if self.fov_stencil.inside(test_position):
504 if self.fov_stencil[test_position] == '.':
508 def fov_stencil_map(self, map_type):
510 for yx in self.fov_stencil:
511 if self.fov_stencil[yx] == '.':
512 big_yx, little_yx = self.fov_stencil.source_yxyx(yx)
513 map_ = self.game.get_map(big_yx, map_type)
514 visible_terrain += map_[little_yx]
516 visible_terrain += ' '
517 return visible_terrain
520 def visible_terrain(self):
521 if self._visible_terrain:
522 return self._visible_terrain
523 self._visible_terrain = self.fov_stencil_map('normal')
524 return self._visible_terrain
527 def visible_control(self):
528 if self._visible_control:
529 return self._visible_control
530 self._visible_control = self.fov_stencil_map('control')
531 return self._visible_control
534 def seen_things(self):
535 if self._seen_things is not None:
536 return self._seen_things
537 self._seen_things = [t for t in self.game.things
538 if self.fov_test(*t.position)]
539 return self._seen_things
542 def seen_annotation_positions(self):
543 if self._seen_annotation_positions is not None:
544 return self._seen_annotation_positions
545 self._seen_annotation_positions = []
546 for big_yx in self.game.annotations:
547 for little_yx in [little_yx for little_yx
548 in self.game.annotations[big_yx]
549 if self.fov_test(big_yx, little_yx)]:
550 self._seen_annotation_positions += [(big_yx, little_yx)]
551 return self._seen_annotation_positions
554 def seen_portal_positions(self):
555 if self._seen_portal_positions is not None:
556 return self._seen_portal_positions
557 self._seen_portal_positions = []
558 for big_yx in self.game.portals:
559 for little_yx in [little_yx for little_yx
560 in self.game.portals[big_yx]
561 if self.fov_test(big_yx, little_yx)]:
562 self._seen_portal_positions += [(big_yx, little_yx)]
563 return self._seen_portal_positions
567 class Thing_Player(ThingAnimate):
574 def __init__(self, *args, **kwargs):
575 super().__init__(*args, **kwargs)
582 if self.tripping >= 0:
584 if self.need_for_toilet > 0:
585 self.need_for_toilet += 1
586 terrain = self.game.maps[self.position[0]][self.position[1]]
587 if terrain in self.game.terrains:
588 terrain_type = self.game.terrains[terrain]
589 if 'toilet' in terrain_type.tags:
590 self.send_msg('CHAT "You use the toilet. What a relief!"')
591 self.need_for_toilet = 0
592 if 10000 * random.random() < self.need_for_toilet / 100000:
593 self.send_msg('CHAT "You need to go to a toilet."')
594 if self.need_for_toilet > 1000000:
595 self.send_msg('CHAT "You pee into your pants. Eww!"')
596 self.need_for_toilet = 0
598 self.send_msg('CHAT "You sober up."')
599 self.invalidate('fov')
600 self.game.changed = True
601 if self.tripping == 0:
602 self.send_msg('DEFAULT_COLORS')
603 self.send_msg('CHAT "You sober up."')
604 self.game.changed = True
605 elif self.tripping > 0 and self.tripping % 250 == 0:
606 self.send_msg('RANDOM_COLORS')
607 self.game.changed = True
609 def send_msg(self, msg):
610 for c_id in self.game.sessions:
611 if self.game.sessions[c_id]['thing_id'] == self.id_:
612 self.game.io.send(msg, c_id)
621 def add_cookie_char(self, c):
622 if not self.name in self.game.players_hat_chars:
623 self.game.players_hat_chars[self.name] = ' #' # default
624 if not c in self.game.players_hat_chars[self.name]:
625 self.game.players_hat_chars[self.name] += c
627 def get_cookie_chars(self):
628 if self.name in self.game.players_hat_chars:
629 return self.game.players_hat_chars[self.name]
630 return ' #' # default