Example #1
0
    def __init__(self):
        self.ext_level = Level5D()
        self.ext_view = ExteriorView(self.ext_level)
        self.chat = ChatServer()

        self.clients = {}
        self.players = {}
        self.spaceships = {}

        spaceship = misc.add_spaceship(
            'Enterprise', (0, 0, 10, 10),
            (14, 4), self.ext_level)
        self.spaceships['Enterprise'] = spaceship
        spaceship = misc.add_spaceship(
            'Galactica', (0, 0, 16, 16),
            (5, 2), self.ext_level)
        self.spaceships['Galactica'] = spaceship
        self.requests = False
        self.command_factory = False
Example #2
0
 def setUp(self):
     self.chatserver = ChatServer()
     self.recipient = 'Mike'
     self.not_recipient = 'Josh'
Example #3
0
class GameServer(object):

    def __init__(self):
        self.ext_level = Level5D()
        self.ext_view = ExteriorView(self.ext_level)
        self.chat = ChatServer()

        self.clients = {}
        self.players = {}
        self.spaceships = {}

        spaceship = misc.add_spaceship(
            'Enterprise', (0, 0, 10, 10),
            (14, 4), self.ext_level)
        self.spaceships['Enterprise'] = spaceship
        spaceship = misc.add_spaceship(
            'Galactica', (0, 0, 16, 16),
            (5, 2), self.ext_level)
        self.spaceships['Galactica'] = spaceship
        self.requests = False
        self.command_factory = False

    def main(self):
        if not self.requests:
            return
        requests = self.requests.get_requests()

        # first: process players' actions which affect the world
        for uid, data in requests.items():
            if not data:
                continue
            for evt, arg in data:
                if uid in self.players:
                    player, client = self.players[uid], self.clients[uid]
                if evt == 'connect' and uid not in self.players:
                    name, spaceship = arg
                    spaceship = self.spaceships[spaceship]
                    player = misc.add_player(name, spaceship)
                    self.players[uid] = player
                    # I keep track of previous and current status bars,
                    # view a list as a mutable tuple (old, new)
                    self.clients[uid] = {
                        'view': '',
                        'colors': {},
                        'top_status_bar': ['', ''],
                        'bottom_status_bar': ['', ''],
                        'is_pilot': False,
                        'target': [None, None],
                        'look_coords': [None, None]}
                    client = self.clients[uid]
                spaceship = player.get_interior().get_spaceship()
                if not player.is_alive():
                    continue
                int_level = player.get_interior()
                if player.is_pilot() and not spaceship.is_alive():
                    continue
                if evt == 'activate':
                    dx, dy = arg
                    x, y = player.get_coords()
                    client['top_status_bar'][-1] = misc.activate_obj(
                        (x + dx, y + dy),
                        int_level, player)
                elif evt == 'pickup':
                    dx, dy = arg
                    x, y = player.get_coords()
                    client['top_status_bar'][-1] = misc.pick_up_obj(
                        player, (x + dx, y + dy),
                        int_level)
                elif evt == 'move':
                    dx, dy = arg
                    x, y = player.get_coords()
                    client['top_status_bar'][-1] = misc.move(
                        player, (x + dx, y + dy),
                        int_level, self.chat)
                elif evt == 'rotate':
                    spaceship.rotate_pointer(arg)
                elif evt == 'accelerate':
                    spaceship.accelerate(arg)
                elif evt == 'ext_fire':
                    misc.exterior_fire(
                        spaceship.get_coords(),
                        spaceship.get_pointer(),
                        self.ext_level)
                elif evt == 'int_fire':
                    client['top_status_bar'][-1] = misc.interior_fire(
                        player, int_level, self.chat)
                elif evt == 'say':
                    self.chat.add_single(
                        'public', "%s: %s" % (player.get_name(), arg), 0)
                elif evt == 'unpilot':
                    client['top_status_bar'][-1] = \
                        "You are done piloting the spaceship..."
                    player.set_pilot()
                elif evt == 'equip':
                    if ', ' in arg:
                        item, slot = arg.split(', ')
                    else:
                        item, slot = arg, 'hands'
                    client['top_status_bar'][-1] = misc.equip_item(
                        player, item, slot)
                elif evt == 'unequip':
                    client['top_status_bar'][-1] = misc.unequip_item(
                        player, arg)
                elif evt == 'drop':
                    client['top_status_bar'][-1] = misc.drop_item(player, arg)

        # second: let the world process one tick
        self.ext_level.update()

        # third: process insignificant actions and generate views
        for uid, data in requests.items():
            if uid not in self.players.keys():
                continue
            player, client = self.players[uid], self.clients[uid]
            int_radius = 11
            ext_radius = 11
            spaceship = player.get_interior().get_spaceship()
            int_level = player.get_interior()
            if not player.is_pilot():
                view = player.get_interior().get_spaceship().get_view()
                visible_tiles = view.visible_tiles(
                    player.get_coords(),
                    int_radius,
                    player.get_sight())
            for evt, arg in data:
                msg = None
                if evt == 'inventory':
                    msg = misc.inventory(player)
                elif evt == 'equipment':
                    msg = misc.equipment(player)
                elif evt == 'target':
                    client['top_status_bar'][-1] = misc.set_target(
                        player, int_level)
                elif evt == 'look':
                    client['top_status_bar'][-1] = misc.look(
                        player, (0, 0),
                        int_level, visible_tiles)
                elif evt == 'look_dir':
                    dx, dy = arg
                    _tmp = misc.look(
                        player, (dx, dy),
                        int_level, visible_tiles)
                    if _tmp:
                        client['top_status_bar'][-1] = _tmp
                elif evt == 'look_done':
                    player.set_looking()
                if msg is not None:
                    self.chat.add_single(player, msg, 1)
            # generate a view for player or spaceship
            if not player.is_pilot():
                view = player.get_interior().get_spaceship().get_view()
                view, colors, target, look_coords = view.generate(
                    player.get_coords(),
                    int_radius,
                    player.get_sight(),
                    visible_tiles,
                    player.get_target(),
                    player.get_look_coords())
                client['target'][-1] = target
                client['look_coords'][-1] = look_coords
                # create bottom status bar
                hp = str(player.get_health())
                client['bottom_status_bar'][-1] = \
                    "HP %s%s " % (' ' * (3 - len(hp)), hp)
                if player.get_equipment('hands') is not None:
                    weapon = player.get_equipment('hands').get_name()
                    client['bottom_status_bar'][-1] += "(%s) " % weapon
            else:
                view, colors = self.ext_view.generate(
                    spaceship.get_coords(),
                    ext_radius,
                    ext_radius,
                    spaceship.get_abs_pointer())
                # create bottom status bar
                spd = str(spaceship.get_speed())
                client['bottom_status_bar'][-1] = \
                    "SPD %s%s " % (' ' * (3 - len(spd)), spd)
                hp = str(spaceship.get_health())
                client['bottom_status_bar'][-1] += \
                    "HP %s%s " % (' ' * (3 - len(hp)), hp)
            recent_chat_msgs = self.chat.get_recent_for_recipient(player)
            if len(recent_chat_msgs):
                self.command_factory.callCommand(
                    uid, 'add_chat_messages', recent_chat_msgs)
            if view != client['view'] or \
                    colors != client['colors']:
                client['view'] = view
                client['colors'] = colors
                self.command_factory.callCommand(uid, 'set_view', view, colors)
            if player.is_pilot() != client['is_pilot']:
                client['is_pilot'] = player.is_pilot()
                self.command_factory.callCommand(
                    uid, 'set_pilot',
                    player.is_pilot())
            bar = client['bottom_status_bar']
            if bar[-1] != bar[0]:
                bar[0] = bar[1]
                self.command_factory.callCommand(
                    uid, 'set_bottom_status_bar',
                    bar[0])
                client['bottom_status_bar'] = bar
            bar = client['top_status_bar']
            if bar[-1] != bar[0]:
                bar[0] = bar[-1]
                self.command_factory.callCommand(
                    uid, 'set_top_status_bar',
                    bar[0])
                client['top_status_bar'] = bar
            if client['target'][-1] != client['target'][0]:
                client['target'][0] = client['target'][-1]
                if client['target'][0]:
                    self.command_factory.callCommand(
                        uid, 'set_target', client['target'][0])
                else:
                    self.command_factory.callCommand(uid, 'unset_target')
            if client['look_coords'][-1] != client['look_coords'][0]:
                client['look_coords'][0] = client['look_coords'][-1]
                if client['look_coords'][0]:
                    self.command_factory.callCommand(
                        uid, 'set_look_pointer', client['look_coords'][0])
                else:
                    self.command_factory.callCommand(uid, 'unset_look_pointer')

    #--------------------------------------------------------------------------
    # accessors

    def set_command_factory(self, command_factory):
        self.command_factory = command_factory

    def set_requests(self, requests):
        self.requests = requests
Example #4
0
class TestChatServer(unittest.TestCase):

    def setUp(self):
        self.chatserver = ChatServer()
        self.recipient = 'Mike'
        self.not_recipient = 'Josh'

    def test_recipient_receives_related_message(self):
        self.chatserver.add_single(self.recipient, "You see a wolf.", 1)
        self.assertEqual(self.chatserver.get_recent_for_recipient(
                         self.recipient), [("You see a wolf.", 1)],
                         "recipient should receive related message")

    def test_recipient_does_not_receive_unrelated_message(self):
        self.chatserver.add_single(self.recipient, "You see a wolf.", 1)
        self.chatserver.add_single(self.not_recipient, "You see a boar.", 1)
        self.assertEqual(self.chatserver.get_recent_for_recipient(
                         self.recipient), [("You see a wolf.", 1)],
                         "recipient should not see unrelated message")

    def test_recipient_does_not_receive_same_message_twice(self):
        self.chatserver.add_single(self.recipient, "You see a wolf.", 1)
        self.chatserver.get_recent_for_recipient(self.recipient)
        self.assertEqual(self.chatserver.get_recent_for_recipient(
                         self.recipient), [],
                         "recipient should not receive same message twice")

    def test_recipient_receives_public_messages(self):
        self.chatserver.add_single(self.recipient, "You see a wolf.", 1)
        self.chatserver.add_single('public', "Someone cries.", 2)
        self.assertEqual(self.chatserver.get_recent_for_recipient(
                         self.recipient), [("You see a wolf.", 1),
                         ("Someone cries.", 2)],
                         "recipient should receive public message")

    def test_chat_log_is_shorter_than_limit(self):
        limit = 1000
        for _ in xrange(0, 1024):
            self.chatserver.add_single('public', "Someone laughs.", 2)
        self.assertLessEqual(len(self.chatserver.get_recent_for_recipient(
                         self.recipient)), limit,
                         "number of chat log entries should not exceed limit")