-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.py
232 lines (176 loc) · 8.63 KB
/
main.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import re
import os
import sys
import ast
from enum import Enum
from datetime import datetime
import chess
import chess.pgn
import yaml
from github import Github
import src.markdown as markdown
import src.selftest as selftest
# TODO: Use an image instead of a raw link to start new games
class Action(Enum):
UNKNOWN = 0
MOVE = 1
NEW_GAME = 2
def update_top_moves(user):
"""Adds the given user to the top moves file"""
with open('data/top_moves.txt', 'r') as file:
contents = file.read()
dictionary = ast.literal_eval(contents)
if user not in dictionary:
dictionary[user] = 1 # First move
else:
dictionary[user] += 1
with open('data/top_moves.txt', 'w') as file:
file.write(str(dictionary))
def update_last_moves(line):
"""Adds the given line to the last moves file"""
with open('data/last_moves.txt', 'r+') as last_moves:
content = last_moves.read()
last_moves.seek(0, 0)
last_moves.write(line.rstrip('\r\n') + '\n' + content)
def replace_text_between(original_text, marker, replacement_text):
"""Replace text between `marker['begin']` and `marker['end']` with `replacement`"""
delimiter_a = marker['begin']
delimiter_b = marker['end']
if original_text.find(delimiter_a) == -1 or original_text.find(delimiter_b) == -1:
return original_text
leading_text = original_text.split(delimiter_a)[0]
trailing_text = original_text.split(delimiter_b)[1]
return leading_text + delimiter_a + replacement_text + delimiter_b + trailing_text
def parse_issue(title):
"""Parse issue title and return a tuple with (action, <move>)"""
if title.lower() == 'chess: start new game':
return (Action.NEW_GAME, None)
if 'chess: move' in title.lower():
match_obj = re.match('Chess: Move ([A-H][1-8]) to ([A-H][1-8])', title, re.I)
source = match_obj.group(1)
dest = match_obj.group(2)
return (Action.MOVE, (source + dest).lower())
return (Action.UNKNOWN, None)
def main(issue, issue_author, repo_owner):
action = parse_issue(issue.title)
gameboard = chess.Board()
with open('data/settings.yaml', 'r') as settings_file:
settings = yaml.load(settings_file, Loader=yaml.FullLoader)
if action[0] == Action.NEW_GAME:
if os.path.exists('games/current.pgn') and issue_author != repo_owner:
issue.create_comment(settings['comments']['invalid_new_game'].format(author=issue_author))
issue.edit(state='closed')
return False, 'ERROR: A current game is in progress. Only the repo owner can start a new game'
issue.create_comment(settings['comments']['successful_new_game'].format(author=issue_author))
issue.edit(state='closed')
with open('data/last_moves.txt', 'w') as last_moves:
last_moves.write('Start game: ' + issue_author)
# Create new game
game = chess.pgn.Game()
game.headers['Event'] = repo_owner + '\'s Online Open Chess Tournament'
game.headers['Site'] = 'https://github.com/' + os.environ['GITHUB_REPOSITORY']
game.headers['Date'] = datetime.now().strftime('%Y.%m.%d')
game.headers['Round'] = '1'
elif action[0] == Action.MOVE:
if not os.path.exists('games/current.pgn'):
return False, 'ERROR: There is no game in progress! Start a new game first'
# Load game from "games/current.pgn"
with open('games/current.pgn') as pgn_file:
game = chess.pgn.read_game(pgn_file)
gameboard = game.board()
with open('data/last_moves.txt') as moves:
line = moves.readline()
last_player = line.split(':')[1].strip()
last_move = line.split(':')[0].strip()
for move in game.mainline_moves():
gameboard.push(move)
if action[1][:2] == action[1][2:]:
issue.create_comment(settings['comments']['invalid_move'].format(author=issue_author, move=action[1]))
issue.edit(state='closed', labels=['Invalid'])
return False, 'ERROR: Move is invalid!'
# Try to move with promotion to queen
if chess.Move.from_uci(action[1] + 'q') in gameboard.legal_moves:
action = (action[0], action[1] + 'q')
move = chess.Move.from_uci(action[1])
# Check if player is moving twice in a row
if last_player == issue_author and 'Start game' not in last_move:
issue.create_comment(settings['comments']['consecutive_moves'].format(author=issue_author))
issue.edit(state='closed', labels=['Invalid'])
return False, 'ERROR: Two moves in a row!'
# Check if move is valid
if move not in gameboard.legal_moves:
issue.create_comment(settings['comments']['invalid_move'].format(author=issue_author, move=action[1]))
issue.edit(state='closed', labels=['Invalid'])
return False, 'ERROR: Move is invalid!'
# Check if board is valid
if not gameboard.is_valid():
issue.create_comment(settings['comments']['invalid_board'].format(author=issue_author))
issue.edit(state='closed', labels=['Invalid'])
return False, 'ERROR: Board is invalid!'
issue_labels = ['⚔️ Capture!'] if gameboard.is_capture(move) else []
issue_labels += ['White' if gameboard.turn == chess.WHITE else 'Black']
issue.create_comment(settings['comments']['successful_move'].format(author=issue_author, move=action[1]))
issue.edit(state='closed', labels=issue_labels)
update_last_moves(action[1] + ': ' + issue_author)
update_top_moves(issue_author)
# Perform move
gameboard.push(move)
game.end().add_main_variation(move, comment=issue_author)
game.headers['Result'] = gameboard.result()
elif action[0] == Action.UNKNOWN:
issue.create_comment(settings['comments']['unknown_command'].format(author=issue_author))
issue.edit(state='closed', labels=['Invalid'])
return False, 'ERROR: Unknown action'
# Save game to "games/current.pgn"
print(game, file=open('games/current.pgn', 'w'), end='\n\n')
last_moves = markdown.generate_last_moves()
# If it is a game over, archive current game
if gameboard.is_game_over():
win_msg = {
'1/2-1/2': 'It\'s a draw',
'1-0': 'White wins',
'0-1': 'Black wins'
}
with open('data/last_moves.txt', 'r') as last_moves_file:
lines = last_moves_file.readlines()
pattern = re.compile('.*: (@[a-z\\d](?:[a-z\\d]|-(?=[a-z\\d])){0,38})', flags=re.I)
player_list = { re.match(pattern, line).group(1) for line in lines }
if gameboard.result() == '1/2-1/2':
issue.add_to_labels('👑 Draw!')
else:
issue.add_to_labels('👑 Winner!')
issue.create_comment(settings['comments']['game_over'].format(
outcome=win_msg.get(gameboard.result(), 'UNKNOWN'),
players=', '.join(player_list),
num_moves=len(lines)-1,
num_players=len(player_list)))
os.rename('games/current.pgn', datetime.now().strftime('games/game-%Y%m%d-%H%M%S.pgn'))
os.remove('data/last_moves.txt')
with open('README.md', 'r') as file:
readme = file.read()
readme = replace_text_between(readme, settings['markers']['board'], '{chess_board}')
readme = replace_text_between(readme, settings['markers']['moves'], '{moves_list}')
readme = replace_text_between(readme, settings['markers']['turn'], '{turn}')
readme = replace_text_between(readme, settings['markers']['last_moves'], '{last_moves}')
readme = replace_text_between(readme, settings['markers']['top_moves'], '{top_moves}')
with open('README.md', 'w') as file:
# Write new board & list of movements
file.write(readme.format(
chess_board=markdown.board_to_markdown(gameboard),
moves_list=markdown.generate_moves_list(gameboard),
turn=('white' if gameboard.turn == chess.WHITE else 'black'),
last_moves=last_moves,
top_moves=markdown.generate_top_moves()))
return True, ''
if __name__ == '__main__':
if len(sys.argv) >= 2 and sys.argv[1] == '--self-test':
selftest.run(main)
sys.exit(0)
else:
repo = Github(os.environ['GITHUB_TOKEN']).get_repo(os.environ['GITHUB_REPOSITORY'])
issue = repo.get_issue(number=int(os.environ['ISSUE_NUMBER']))
issue_author = '@' + issue.user.login
repo_owner = '@' + os.environ['REPOSITORY_OWNER']
ret, reason = main(issue, issue_author, repo_owner)
if ret == False:
sys.exit(reason)