Python minimax for tictactoe

拈花ヽ惹草 提交于 2021-01-28 04:46:59

问题


After completely failing the minimax implementation for tic tac toe, I fail to see what's wrong. Right now, my AI just goes around in a circle...

import collections
class InvalidLocationError(Exception): pass
import copy
class Board(object):
    def __init__(self, board=None):
        if board is None:
            self.clear()
        else:
            self._board = board[:]

    def place(self, i, row, column):
        if not ((0 <= row <= 2) and (0 <= column <= 2)):
            raise InvalidLocationError("Invalid Location.")
        if self._board[row][column]:
            raise InvalidLocationError("There's already a piece there")
        self._board[row][column] = i
        return self.checkVictory()

    def check(self, row, column):
        return self._board[row][column]

    def checkVictory(self, board=None):
        if board is None:
            board = self._board
        draw = True
        for i in xrange(3):
            r = self.rowcount(i)
            c = self.colcount(i)
            if i < 3:
                d = self.diagcount(i)
            else:
                d = {0: 0, 1: 0, 2: 0}

            for j in xrange(1, 3):
                if d[j] == 3 or r[j] == 3 or c[j] == 3:
                    return j
            if r[0] > 0 or c[0] > 0:
                draw = False
        if draw:
            return -1
        return 0

    def rowcount(self, row):
        return collections.Counter(self._board[row])

    def colcount(self, col):
        return collections.Counter([self._board[i][col] for i in xrange(3)])

    def diagcount(self, left=True):
        if left:
            a = [self._board[0][0], self._board[1][1], self._board[2][2]]
        else:
            a = [self._board[0][2], self._board[1][1], self._board[2][0]]

        return collections.Counter(a)

    def clear(self):
        self._board = ([0, 0, 0], [0, 0, 0], [0, 0, 0])

    def __str__(self):
        return "\n".join(map(lambda x: " ".join(map(lambda y : str(y), x)), self._board))

    @staticmethod
    def flipPiece(p):
        return int(not (p - 1)) + 1

class AI(object):
    class Node(object):
        def __init__(self, board, nextMove):
            self.board = board
            self.nextMove = nextMove
            self.paths = []
            self.score = None

            template = self.board._board[:]
            for r, row in enumerate(template):
                for c, val in enumerate(row):
                    if val == 0:
                        template[r][c] = nextMove
                        self.paths.append(copy.deepcopy(template))
                        template[r][c] = 0

    def __init__(self, mypiece, depth=8):
        self.mypiece = mypiece
        self.enemypiece = Board.flipPiece(mypiece)
        self.depth = depth

    def decide(self, board):
        startNode = self.Node(board, self.mypiece)
        best = self.minimax(startNode, self.depth)
        for node in startNode.paths:
            if node.value == best:
                break
        found = False
        for row in xrange(3):
            for col in xrange(3):
                if board.check(row, col) != node.board.check(row, col):
                    found = True
                    break
            if found:
                break
        print row, col
        return row, col

    def minimax(self, node, depth):
        victory = node.board.checkVictory()
        if victory:
            if victory == self.mypiece:
                h = 1
            elif victory == -1:
                h = 0
                else:
                h = -1
            node.value = h
            return h

        if depth <= 0:
            # h = self.heuristic(node.board, node.nextMove) # This is to the heuristic, which uses nextMove to evalate.
            node.value = 0
            return 0

        h = -1
        flip = Board.flipPiece(node.nextMove)
        for i, board in enumerate(node.paths):
            node.paths[i] = self.Node(Board(board), flip) # This is to the Node, which takes the nextMove of itself (which translates to the next next move from the current node)
            score = self.minimax(node.paths[i], depth-1)
            h = max(h, score) if node.nextMove == self.mypiece else min(h, score)

        node.value = h
        return h

Why is this happening?

来源:https://stackoverflow.com/questions/7856588/python-minimax-for-tictactoe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!