summaryrefslogtreecommitdiff
path: root/__main__.py
blob: c98633bbfbc06418932bcb150e686a8383d7fcb3 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
""" __main__.py - Tästä suoritus alkaa """
import sys
from app import App

from cmdline import args

vars(args)['board'] = None

if args.count is None and args.file is None:
    app = App(args)
    is_win = app.run()
    del app
    sys.exit(not is_win)	# Exit koodeissa 0 on onnistunut suoritus

win_count = 0

if args.file is None:
    args.autoplay = 2
    run_count = args.count
    for i in range(run_count):
        print(end=f"    \rSuoritus {i+1:>6}/{run_count} ")
        print(end=f"({100*win_count/(i if i else 1):.1f}%)..")
        if not args.quiet:
            print()
        app = App(args)
        win_count+=app.run()
        del app
else:
    run_count = 0
    with open(args.file, "r", encoding="utf-8") as bfile:
        board = []
        while True:
            line = bfile.readline()
            if not line or (line[0]!='.' and line[0]!='@'):
                if board:
                    win_percent = (100*win_count/run_count) if run_count else 0
                    print(end=
                        f"    \rAjo ...{args.file[-18:]:} ({run_count+1}): "
                        f"({win_percent:.1f}%).."
                    )
                    if not args.quiet:
                        print()
                    args.board = board
                    app = App(args)
                    win_count += app.run()
                    run_count += 1
                    del app
                    board = []
                if not line:
                    break
                continue
            board.append([x=='@' for x in line if x in ('.', '@')])

print(
    f"\n## Voittoja {win_count}/{run_count} "
    f"({(100*win_count/run_count) if run_count else 0:.1f}%)"
)