当前位置: 首页>>代码示例>>Python>>正文


Python Message.get_info方法代码示例

本文整理汇总了Python中Message.get_info方法的典型用法代码示例。如果您正苦于以下问题:Python Message.get_info方法的具体用法?Python Message.get_info怎么用?Python Message.get_info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Message的用法示例。


在下文中一共展示了Message.get_info方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: display_start_tournament

# 需要导入模块: import Message [as 别名]
# 或者: from Message import get_info [as 别名]
    def display_start_tournament(msg):
        """
        :param msg: message to be displayed

        """
        indent_cushion()
        print(' Tournament Start! ')
        indent_cushion()
        m = Message.get_players(msg)
        print('\nPlayers: ' + m)
        #assuming for the time being that info will hold the specified game
        m = Message.get_info(msg)
        print('\nGame: ' + m)
开发者ID:rikachan58,项目名称:game-framework,代码行数:15,代码来源:Display.py

示例2: display_end_tournament

# 需要导入模块: import Message [as 别名]
# 或者: from Message import get_info [as 别名]
    def display_end_tournament(msg):
        """
        :param msg: message to be displayed

        """
        indent_cushion()
        print(' Tournament End! ')
        indent_cushion()
        #assuming for the time being that info will hold the winner of the tournament
        m = Message.get_info(msg)
        print('\nWinner: ' + m)
        indent_cushion()
        indent_cushion()
        print('\n')
        indent_cushion()
        indent_cushion()
开发者ID:rikachan58,项目名称:game-framework,代码行数:18,代码来源:Display.py

示例3: display_end_match

# 需要导入模块: import Message [as 别名]
# 或者: from Message import get_info [as 别名]
    def display_end_match(msg):
        """
        :param msg: message to be displayed

        """
        indent_cushion()
        print(' Match End! ')
        indent_cushion()
        m = Message.get_info(msg)
        #r is the winner
        #winnings is the number of times that r won
        if m[1] > m[2]:
            #player 1 won
            r = 'Player 1 '
            winnings = m[1]
        else:
            #player 2 won
            r = 'Player 2 '
            winnings = m[2]
        print('Winner: ' + r + '( ' + winnings + ' out of ' + (m[1] + m[2]) + ')')
开发者ID:rikachan58,项目名称:game-framework,代码行数:22,代码来源:Display.py

示例4: display_end_round

# 需要导入模块: import Message [as 别名]
# 或者: from Message import get_info [as 别名]
    def display_end_round(msg):
        """
        :param msg: message to be displayed

        """
        print('\nRound Results: ')
        m = Message.get_info(msg)
        #r is the winner of the round
        if m[2] == 0:
            r = 'Tied'
        elif m[2] == 1:
            #player 1 won
            r = 'Player 1 '
        elif m[2] == 1:
            #player 2 won
            r = 'Player 2 '
        print('Winner: ' + r)
        #find the moves that were played during this round
        moves = m[1]
        a = get_move(moves[1])
        b = get_move(moves[2])
        print('   Moves made: Player 1: ' + a + ' Player 2: ' + b)
开发者ID:rikachan58,项目名称:game-framework,代码行数:24,代码来源:Display.py


注:本文中的Message.get_info方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。