summaryrefslogtreecommitdiff
path: root/dealconvert/formats/stdout.py
blob: eb1aedd771ce6d681c1b96e578f7f6ae1388c45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from . import DealFormat

class STDOUTFormat(DealFormat):
    def match_file(self, filename):
        return filename == '-'

    def parse(self, input_file):
        return []

    def output(self, output_file, deal):
        width = 9
        for board in deal:
            lines = []
            header = '%3d/%s' % (
                board.number,
                ('All' if board.vulnerable['NS'] else 'EW') \
                if board.vulnerable['EW'] else \
                ('NS' if board.vulnerable['NS'] else '-'))
            for suit in board.hands[0]:
                suit = ''.join(suit) if len(suit) else '=='
                lines.append(' ' * width + suit)
            for idx, suit in enumerate(board.hands[3]):
                suit = ''.join(suit) if len(suit) else '=='
                suit = ('%-' + str(width) + 's') % (suit)
                east_suit = ''.join(board.hands[1][idx]) \
                    if len(board.hands[1][idx]) else '=='
                lines.append(suit + ' ' * width + east_suit)
            for suit in board.hands[2]:
                suit = ''.join(suit) if len(suit) else '=='
                lines.append(' ' * width + suit)
            lines.append('')
            lines[1] = header + lines[1][len(header):]
            print '\n'.join(lines)