當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。