-
Notifications
You must be signed in to change notification settings - Fork 0
/
Info.py
20 lines (20 loc) · 934 Bytes
/
Info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DRIVER_LINK: str = 'https://sites.google.com/a/chromium.org/chromedriver/downloads'
DIFFICULTIES: list = [(9, 9, 10, 'http://minesweeperonline.com/#beginner'),
(16, 16, 40, 'http://minesweeperonline.com/#intermediate'),
(16, 30, 99, 'http://minesweeperonline.com/')]
LOG_FLAG: str = 'FLAGGING'
LOG_REVEAL: str = 'REVEALING'
LOG_REVEAL_RANDOM: str = 'REVEALING RANDOM'
LOG_GAME_RESET: str = '\n---------------------RESETTING GAME------------------------------\n\n\n'
LOG_GAME_COMPLETE: str = 'GAME SHOULD BE COMPLETE'
REPS: dict = {'square blank': '_',
'square bombflagged': 'f',
'square open0': 0,
'square open1': 1,
'square open2': 2,
'square open3': 3,
'square open4': 4,
'square open5': 5,
'square open6': 6,
'square open7': 7,
'square open8': 8}