-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteractive.py
114 lines (87 loc) · 3.84 KB
/
interactive.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
"""
Run the solver with a user interface.
"""
from queue import Queue
import logging
from cli import CLIInput
from sweepersolver import GameBoard, TileBank, Point, Player, make_move
log = logging.getLogger(__name__)
def _get_initial_parameters(to_user_q, from_user_q):
log.debug("Retrieving initial parameters")
to_user_q.put("We'll need some initial information.")
to_user_q.put("1. Please enter the width of the board, in squares:")
width = int(from_user_q.get())
to_user_q.put("2. Please enter the height of the board, in squares:")
height = int(from_user_q.get())
to_user_q.put("3. Please provide the counts of enemies on the board. "
"Enter them in the format: '<enemy_level>: <count>', with "
"each entry on a new line. Once all have been entered, "
"enter 'q' on its own line.")
enemies = {}
response = from_user_q.get().strip()
while response != 'q':
level_str, count_str = response.split(':')
level = int(level_str.strip())
count = int(count_str.strip())
enemies[level] = count
response = from_user_q.get().strip()
return width, height, enemies
def _output_game_state(to_user_q, board, level):
to_user_q.put("Current board state:")
to_user_q.put(str(board))
to_user_q.put("Player level: %s" % level)
def _output_next_move(to_user_q, game_board, level):
next_move = make_move(Player(level=level), game_board)
to_user_q.put("Next move: %s" % next_move)
def _get_new_level(to_user_q, from_user_q):
to_user_q.put("Please enter current level:")
level = int(from_user_q.get().strip())
return level
def _get_more_board_state(to_user_q, from_user_q, game_board, tile_bank):
user_input = None
while user_input != 'q':
to_user_q.put("Please enter a revealed tile, in the format: \n"
"<x_coord>, <y_coord>, <monster_level>, "
"<neighbour_levels_sum>\n"
"Enter q to stop entering tiles.")
user_input = from_user_q.get().strip()
split_input = user_input.split(',')
if len(split_input) == 4:
x_coord = int(split_input[0].strip())
y_coord = int(split_input[1].strip())
monster_level = int(split_input[2].strip())
neighbour_levels_sum = int(split_input[3].strip())
game_board.set_revealed_tile(Point(x_coord, y_coord),
tile_bank.take(monster_level,
neighbour_levels_sum))
def _main_loop(to_user_q, from_user_q, game_board, tile_bank):
level = 1
action = None
while action != 'q':
_output_game_state(to_user_q, game_board, level)
to_user_q.put("Please select one of the following:\n"
" i: input more data about the state of the board\n"
" n: get next move\n"
" l: update level\n"
" q: quit")
action = from_user_q.get().strip()
if action == 'i':
_get_more_board_state(to_user_q,
from_user_q,
game_board,
tile_bank)
elif action == 'l':
level = _get_new_level(to_user_q, from_user_q)
elif action == 'n':
_output_next_move(to_user_q, game_board, level)
def run_interactive():
to_user_q = Queue()
from_user_q = Queue()
interface = CLIInput(to_user_q, from_user_q)
interface.start()
to_user_q.put("Welcome to the sweepersolver!")
width, height, enemies = _get_initial_parameters(to_user_q, from_user_q)
tile_bank = TileBank(enemies)
game_board = GameBoard(width, height, tile_bank)
_main_loop(to_user_q, from_user_q, game_board, tile_bank)
interface.stop()