File size: 3,507 Bytes
17149e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9aee0fd
17149e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
import chess
import chess.pgn

# credit code https://github.com/notnil/chess-gpt
def get_legal_moves(board):
    """Returns a list of legal moves in UCI notation."""
    return list(map(board.san, board.legal_moves))

def init_game() -> tuple[chess.pgn.Game, chess.Board]:
    """Initializes a new game."""
    board = chess.Board()
    game = chess.pgn.Game()
    game.headers["White"] = "User"
    game.headers["Black"] = "Chess-engine"
    del game.headers["Event"]
    del game.headers["Date"]
    del game.headers["Site"]
    del game.headers["Round"]
    del game.headers["Result"]
    game.setup(board)
    return game, board

def generate_prompt(game: chess.pgn.Game, board: chess.Board) -> str:

    moves = get_legal_moves(board)
    moves_str = ",".join(moves)
    return f"""
    The task is play a Chess game:
    You are the Chess-engine playing a chess match against the user as black and trying to win.

    The current FEN notation is:
    {board.fen()}

    The next valid moves are:
    {moves_str}

    Continue the game.
    {str(game)[:-2]}"""

def get_move(content, moves):
    lines = content.splitlines()
    for line in lines:
      for lm in moves:
        if lm in line:
          return lm

class ChessGame:
    def __init__(self, docschatllm):
      self.docschatllm = docschatllm

    def start_game(self):
        self.game, self.board = init_game()
        self.game_cp, _ = init_game()
        self.node = self.game
        self.node_copy = self.game_cp

        svg_board = chess.svg.board(self.board, size=350)
        return svg_board, "Valid moves: "+",".join(get_legal_moves(self.board)) # display(self.board)

    def user_move(self, move_input):
        try:
          self.board.push_san(move_input)
        except ValueError:
          print("Invalid move")
          svg_board = chess.svg.board(self.board, size=350)
          return svg_board, "Valid moves: "+",".join(get_legal_moves(self.board)), 'Invalid move'
        self.node = self.node.add_variation(self.board.move_stack[-1])
        self.node_copy = self.node_copy.add_variation(self.board.move_stack[-1])

        if self.board.is_game_over():
          svg_board = chess.svg.board(self.board, size=350)
          return svg_board, ",".join(get_legal_moves(self.board)), 'GAME OVER'

        prompt = generate_prompt(self.game, self.board)
        print("Prompt: \n"+prompt)
        print("#############")
        for i in range(10): #tries
          if i == 9:
            svg_board = chess.svg.board(self.board, size=350)
            return svg_board, ",".join(get_legal_moves(self.board)), "The model can't do a valid move. Restart the game"
          try:
            """Returns the move from the prompt."""
            content = self.docschatllm.llm.predict(prompt) ### from selected model ###
            #print(moves)
            print("Response: \n"+content)
            print("#############")

            moves = get_legal_moves(self.board)
            move = get_move(content, moves)
            print(move)
            print("#############")
            self.board.push_san(move)
            break
          except:
            prompt = prompt[1:]
            print("attempt a move.")
        self.node = self.node.add_variation(self.board.move_stack[-1])
        self.node_copy = self.node_copy.add_variation(self.board.move_stack[-1])
        svg_board = chess.svg.board(self.board, size=350)
        return svg_board, "Valid moves: "+",".join(get_legal_moves(self.board)), ''