2018-02-05 21:31:34 +00:00
|
|
|
import numpy as np
|
2018-02-13 13:38:49 +00:00
|
|
|
import itertools
|
2018-02-05 21:31:34 +00:00
|
|
|
|
|
|
|
class Board:
|
|
|
|
|
2018-02-15 12:03:43 +00:00
|
|
|
initial_state = ( 0,
|
2018-02-13 13:38:49 +00:00
|
|
|
2, 0, 0, 0, 0, -5,
|
|
|
|
0, -3, 0, 0, 0, 5,
|
|
|
|
-5, 0, 0, 0, 3, 0,
|
|
|
|
5, 0, 0, 0, 0, -2,
|
2018-02-15 12:03:43 +00:00
|
|
|
0 )
|
2018-02-13 13:38:49 +00:00
|
|
|
|
2018-02-15 11:21:42 +00:00
|
|
|
@staticmethod
|
|
|
|
def idxs_with_checkers_of_player(board, player):
|
|
|
|
idxs = []
|
|
|
|
for idx, checker_count in enumerate(board):
|
|
|
|
if checker_count * player >= 1:
|
|
|
|
idxs.append(idx)
|
|
|
|
return idxs
|
|
|
|
|
2018-03-11 19:00:24 +00:00
|
|
|
|
|
|
|
# TODO: Write a test for this
|
|
|
|
# TODO: Make sure that the bars fit, 0 represents the -1 player and 25 represents the 1 player
|
|
|
|
# index 26 is player 1 home, index 27 is player -1 home
|
|
|
|
@staticmethod
|
|
|
|
def board_features_to_pubeval(board, player):
|
|
|
|
|
|
|
|
if player == -1:
|
|
|
|
board = Board.flip(board)
|
|
|
|
|
|
|
|
board = list(board)
|
|
|
|
positives = [x if x > 0 else 0 for x in board]
|
|
|
|
negatives = [x if x < 0 else 0 for x in board]
|
2018-03-28 10:00:47 +00:00
|
|
|
board.append( 15 - sum(positives))
|
2018-03-11 19:00:24 +00:00
|
|
|
board.append(-15 - sum(negatives))
|
2018-03-14 11:47:27 +00:00
|
|
|
return tuple(board)
|
2018-03-27 00:26:15 +00:00
|
|
|
|
2018-03-28 10:00:47 +00:00
|
|
|
# quack
|
2018-03-27 22:33:39 +00:00
|
|
|
@staticmethod
|
2018-03-28 10:00:47 +00:00
|
|
|
def board_features_quack(board, player):
|
2018-03-27 22:33:39 +00:00
|
|
|
board = list(board)
|
|
|
|
board += ([1, 0] if np.sign(player) > 0 else [0, 1])
|
2018-05-10 08:49:25 +00:00
|
|
|
return np.array(board).reshape(1,28)
|
2018-03-27 22:33:39 +00:00
|
|
|
|
2018-03-28 10:00:47 +00:00
|
|
|
# quack-fat
|
2018-03-27 02:06:08 +00:00
|
|
|
@staticmethod
|
2018-03-28 10:00:47 +00:00
|
|
|
def board_features_quack_fat(board, player):
|
2018-03-27 02:06:08 +00:00
|
|
|
board = list(board)
|
|
|
|
positives = [x if x > 0 else 0 for x in board]
|
|
|
|
negatives = [x if x < 0 else 0 for x in board]
|
2018-03-28 10:00:47 +00:00
|
|
|
board.append( 15 - sum(positives))
|
2018-03-27 02:06:08 +00:00
|
|
|
board.append(-15 - sum(negatives))
|
2018-03-27 22:16:50 +00:00
|
|
|
board += ([1, 0] if np.sign(player) > 0 else [0, 1])
|
2018-05-10 08:49:25 +00:00
|
|
|
return np.array(board).reshape(1,30)
|
2018-03-27 02:06:08 +00:00
|
|
|
|
|
|
|
|
2018-04-22 22:35:25 +00:00
|
|
|
# quack-fatter
|
|
|
|
@staticmethod
|
|
|
|
def board_features_quack_norm(board, player):
|
|
|
|
board = list(board)
|
|
|
|
positives = [x if x > 0 else 0 for x in board]
|
|
|
|
negatives = [x if x < 0 else 0 for x in board]
|
|
|
|
board[0] = board[0] / 2
|
|
|
|
board[25] = board[25] / 2
|
2018-05-06 18:41:07 +00:00
|
|
|
|
|
|
|
board = [board[x] if x == 0 or 25 else board[x] / 15 for x in range(0, 26)]
|
|
|
|
|
2018-04-22 22:35:25 +00:00
|
|
|
board.append(15 - sum(positives))
|
|
|
|
board.append(-15 - sum(negatives))
|
|
|
|
board += ([1, 0] if np.sign(player) > 0 else [0, 1])
|
2018-05-10 08:49:25 +00:00
|
|
|
return np.array(board).reshape(1,30)
|
2018-04-22 22:35:25 +00:00
|
|
|
|
2018-03-28 10:00:47 +00:00
|
|
|
# tesauro
|
2018-04-15 21:51:28 +00:00
|
|
|
@staticmethod
|
|
|
|
def board_features_tesauro(board, cur_player):
|
|
|
|
def ordinary_trans(val, player):
|
|
|
|
abs_val = val * player
|
|
|
|
if abs_val <= 0: return (0,0,0,0)
|
|
|
|
elif abs_val == 1: return (1,0,0,0)
|
|
|
|
elif abs_val == 2: return (1,1,0,0)
|
|
|
|
elif abs_val == 3: return (1,1,1,0)
|
|
|
|
else: return (1,1,1, (abs_val - 3) / 2)
|
2018-03-27 00:26:15 +00:00
|
|
|
|
2018-04-15 21:51:28 +00:00
|
|
|
def bar_trans(board, player):
|
|
|
|
if player == 1: return (abs(board[0]/2),)
|
|
|
|
elif player == -1: return (abs(board[25]/2),)
|
2018-03-28 12:36:52 +00:00
|
|
|
|
2018-04-15 21:51:28 +00:00
|
|
|
# def ordinary_trans_board(board, player):
|
|
|
|
# return np.array(
|
|
|
|
# [ordinary_trans(x, player) for x in board[1:25]]
|
|
|
|
# ).flatten()
|
2018-03-28 12:36:52 +00:00
|
|
|
|
2018-04-15 21:51:28 +00:00
|
|
|
board_rep = []
|
|
|
|
for player in [1,-1]:
|
|
|
|
for x in board[1:25]:
|
|
|
|
board_rep += ordinary_trans(x, player)
|
|
|
|
board_rep += bar_trans(board, player)
|
|
|
|
board_rep += (15 - Board.num_of_checkers_for_player(board, player),)
|
2018-03-28 12:36:52 +00:00
|
|
|
|
2018-04-15 21:51:28 +00:00
|
|
|
board_rep += ([1,0] if cur_player == 1 else [1,0])
|
2018-03-28 12:36:52 +00:00
|
|
|
|
2018-04-15 21:51:28 +00:00
|
|
|
return np.array(board_rep).reshape(1,198)
|
2018-03-11 19:00:24 +00:00
|
|
|
|
|
|
|
|
2018-05-06 18:41:07 +00:00
|
|
|
@staticmethod
|
|
|
|
def board_features_tesauro_wrong(board, cur_player):
|
|
|
|
features = []
|
|
|
|
for player in [-1,1]:
|
|
|
|
sum = 0.0
|
|
|
|
for board_range in range(1,25):
|
|
|
|
pin = board[board_range]
|
|
|
|
#print("PIIIN:",pin)
|
|
|
|
feature = [0.0]*4
|
|
|
|
if np.sign(pin) == np.sign(player):
|
|
|
|
sum += abs(pin)
|
|
|
|
for i in range(min(abs(pin), 3)):
|
|
|
|
feature[i] = 1
|
|
|
|
if (abs(pin) > 3):
|
|
|
|
feature[3] = (abs(pin)-3)/2
|
|
|
|
features += feature
|
|
|
|
#print("SUUUM:",sum)
|
|
|
|
# Append the amount of men on the bar of the current player divided by 2
|
|
|
|
features.append((board[0] if np.sign(player) < 0 else board[25]) / 2.0)
|
|
|
|
# Calculate how many pieces there must be in the home state and divide it by 15
|
|
|
|
features.append((15 - sum) / 15)
|
|
|
|
features += ([1,0] if np.sign(cur_player) > 0 else [0,1])
|
2018-05-10 08:49:25 +00:00
|
|
|
test = np.array(features)
|
2018-05-06 18:41:07 +00:00
|
|
|
#print("TEST:",test)
|
2018-05-10 08:49:25 +00:00
|
|
|
return test.reshape(1,198)
|
2018-02-14 10:48:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
@staticmethod
|
|
|
|
def is_move_valid(board, player, face_value, move):
|
|
|
|
if face_value == 0:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
def sign(a):
|
|
|
|
return (a > 0) - (a < 0)
|
|
|
|
|
|
|
|
from_idx = move[0]
|
|
|
|
to_idx = move[1]
|
|
|
|
to_state = None
|
|
|
|
from_state = board[from_idx]
|
|
|
|
delta = to_idx - from_idx
|
|
|
|
direction = sign(delta)
|
|
|
|
bearing_off = None
|
|
|
|
|
|
|
|
# FIXME: Use get instead of array-like indexing
|
|
|
|
if to_idx >= 1 and to_idx <= 24:
|
|
|
|
to_state = board[to_idx]
|
|
|
|
bearing_off = False
|
|
|
|
else: # Bearing off
|
|
|
|
to_state = 0
|
|
|
|
bearing_off = True
|
|
|
|
|
|
|
|
# print("_"*20)
|
|
|
|
# print("board:", board)
|
|
|
|
# print("to_idx:", to_idx, "board[to_idx]:", board[to_idx], "to_state:", to_state)
|
|
|
|
# print("+"*20)
|
|
|
|
|
|
|
|
def is_forward_move():
|
|
|
|
return direction == player
|
2018-02-14 10:48:07 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
def face_value_match_move_length():
|
|
|
|
return abs(delta) == face_value
|
2018-02-14 10:48:07 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
def bear_in_if_checker_on_bar():
|
|
|
|
if player == 1:
|
|
|
|
bar = 0
|
|
|
|
else:
|
|
|
|
bar = 25
|
2018-02-14 10:48:07 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
bar_state = board[bar]
|
2018-02-14 10:48:07 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
if bar_state != 0:
|
|
|
|
return from_idx == bar
|
2018-02-15 11:21:42 +00:00
|
|
|
else:
|
2018-04-14 12:51:50 +00:00
|
|
|
return True
|
2018-02-15 11:21:42 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
def checkers_at_from_idx():
|
|
|
|
return sign(from_state) == player
|
|
|
|
|
|
|
|
def no_block_at_to_idx():
|
|
|
|
if -sign(to_state) == player:
|
|
|
|
return abs(to_state) == 1
|
2018-02-15 11:21:42 +00:00
|
|
|
else:
|
2018-04-14 12:51:50 +00:00
|
|
|
return True
|
2018-02-15 11:21:42 +00:00
|
|
|
|
2018-04-14 12:51:50 +00:00
|
|
|
def can_bear_off():
|
|
|
|
checker_idxs = Board.idxs_with_checkers_of_player(board, player)
|
|
|
|
def is_moving_backmost_checker():
|
|
|
|
if player == 1:
|
|
|
|
return all([(idx >= from_idx) for idx in checker_idxs])
|
|
|
|
else:
|
|
|
|
return all([(idx <= from_idx) for idx in checker_idxs])
|
|
|
|
|
|
|
|
def all_checkers_in_last_quadrant():
|
|
|
|
if player == 1:
|
|
|
|
return all([(idx >= 19) for idx in checker_idxs])
|
|
|
|
else:
|
|
|
|
return all([(idx <= 6) for idx in checker_idxs])
|
|
|
|
|
|
|
|
return all([ is_moving_backmost_checker(),
|
|
|
|
all_checkers_in_last_quadrant() ])
|
2018-02-15 11:21:42 +00:00
|
|
|
|
|
|
|
# TODO: add switch here instead of wonky ternary in all
|
2018-04-14 12:51:50 +00:00
|
|
|
# print("is_forward:",is_forward_move())
|
|
|
|
# print("face_value:",face_value_match_move_length())
|
|
|
|
# print("Checkes_at_from:",checkers_at_from_idx())
|
|
|
|
# print("no_block:",no_block_at_to_idx())
|
|
|
|
|
|
|
|
return all([ is_forward_move(),
|
|
|
|
face_value_match_move_length(),
|
|
|
|
bear_in_if_checker_on_bar(),
|
|
|
|
checkers_at_from_idx(),
|
|
|
|
no_block_at_to_idx(),
|
|
|
|
can_bear_off() if bearing_off else True ])
|
2018-02-15 11:41:38 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def any_move_valid(board, player, roll):
|
|
|
|
for die in roll:
|
|
|
|
idxs = Board.idxs_with_checkers_of_player(board, player)
|
|
|
|
for idx in idxs:
|
|
|
|
if Board.is_move_valid(board, player, die,
|
|
|
|
(idx, idx + (die * player))):
|
|
|
|
return True
|
|
|
|
return False
|
2018-02-15 12:57:59 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def num_of_checkers_for_player(board,player):
|
|
|
|
return player * sum([board[idx] for idx in Board.idxs_with_checkers_of_player(board, player)])
|
2018-02-13 13:38:49 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2018-02-15 12:57:59 +00:00
|
|
|
def outcome(board):
|
|
|
|
def all_checkers_in_first_quadrant(player):
|
|
|
|
checker_idxs = Board.idxs_with_checkers_of_player(board, player)
|
|
|
|
if player == 1:
|
|
|
|
return all([(idx <= 6) for idx in checker_idxs])
|
|
|
|
else:
|
|
|
|
return all([(idx >= 19) for idx in checker_idxs])
|
|
|
|
winner = None
|
|
|
|
|
|
|
|
for player in [1, -1]:
|
|
|
|
if Board.idxs_with_checkers_of_player(board, player) == []:
|
|
|
|
winner = player
|
|
|
|
|
|
|
|
if winner == None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
#backgammon = all_checkers_in_first_quadrant(-winner)
|
|
|
|
gammon = Board.num_of_checkers_for_player(board, -winner) == 15
|
|
|
|
score = 2 if gammon else 1
|
|
|
|
return {winner: score, -winner: -score}
|
|
|
|
|
2018-03-09 13:19:31 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def apply_moves_to_board(board, player, moves):
|
|
|
|
for move in moves:
|
|
|
|
from_idx, to_idx = move.split("/")
|
|
|
|
board[int(from_idx)] -= int(player)
|
|
|
|
board[int(to_idx)] += int(player)
|
|
|
|
return board
|
|
|
|
|
2018-02-13 13:38:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def calculate_legal_states(board, player, roll):
|
2018-02-22 13:01:28 +00:00
|
|
|
# Find all points with checkers on them belonging to the player
|
2018-02-05 22:36:32 +00:00
|
|
|
# Iterate through each index and check if it's a possible move given the roll
|
2018-02-14 10:48:07 +00:00
|
|
|
|
|
|
|
# TODO: make sure that it is not possible to do nothing on first part of
|
|
|
|
# turn and then do something with the second die
|
2018-02-05 21:31:34 +00:00
|
|
|
|
2018-02-13 13:38:49 +00:00
|
|
|
def calc_moves(board, face_value):
|
2018-02-15 11:21:42 +00:00
|
|
|
idxs_with_checkers = Board.idxs_with_checkers_of_player(board, player)
|
2018-02-22 13:01:28 +00:00
|
|
|
if len(idxs_with_checkers) == 0:
|
|
|
|
return [board]
|
2018-02-15 12:03:43 +00:00
|
|
|
boards = [(Board.do_move(board,
|
2018-02-13 13:38:49 +00:00
|
|
|
player,
|
2018-02-15 11:21:42 +00:00
|
|
|
(idx, idx + (face_value * player)))
|
2018-02-15 12:03:43 +00:00
|
|
|
if Board.is_move_valid(board,
|
|
|
|
player,
|
|
|
|
face_value,
|
|
|
|
(idx, idx + (face_value * player)))
|
2018-02-15 11:21:42 +00:00
|
|
|
else None)
|
|
|
|
for idx in idxs_with_checkers]
|
2018-04-14 12:51:50 +00:00
|
|
|
# print("pls:",boards)
|
2018-02-22 13:01:28 +00:00
|
|
|
board_list = list(filter(None, boards)) # Remove None-values
|
|
|
|
# if len(board_list) == 0:
|
|
|
|
# return [board]
|
2018-04-14 12:51:50 +00:00
|
|
|
# print("board list:", board_list)
|
2018-02-22 13:01:28 +00:00
|
|
|
return board_list
|
|
|
|
|
|
|
|
# Problem with cal_moves: Method can return empty list (should always contain at least same board).
|
|
|
|
# *Update*: Seems to be fixed.
|
2018-02-13 13:38:49 +00:00
|
|
|
|
|
|
|
# ------------------
|
|
|
|
# 1. Determine if dice have identical face value
|
|
|
|
# 2. Iterate through remaining dice
|
|
|
|
|
|
|
|
legal_moves = set()
|
2018-04-14 12:51:50 +00:00
|
|
|
|
2018-02-15 12:03:43 +00:00
|
|
|
if not Board.any_move_valid(board, player, roll):
|
2018-04-15 22:24:24 +00:00
|
|
|
return { board }
|
2018-02-13 13:38:49 +00:00
|
|
|
dice_permutations = list(itertools.permutations(roll)) if roll[0] != roll[1] else [[roll[0]]*4]
|
2018-04-14 16:47:38 +00:00
|
|
|
# print("Dice permuts:",dice_permutations)
|
2018-02-15 12:03:43 +00:00
|
|
|
for roll in dice_permutations:
|
2018-02-13 13:38:49 +00:00
|
|
|
# Calculate boards resulting from first move
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("initial board: ", board)
|
|
|
|
#print("roll:", roll)
|
2018-02-15 12:03:43 +00:00
|
|
|
boards = calc_moves(board, roll[0])
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("boards after first die: ", boards)
|
2018-02-13 13:38:49 +00:00
|
|
|
|
2018-02-15 12:03:43 +00:00
|
|
|
for die in roll[1:]:
|
2018-02-13 13:38:49 +00:00
|
|
|
# Calculate boards resulting from second move
|
2018-02-15 12:03:43 +00:00
|
|
|
nested_boards = [calc_moves(board, die) for board in boards]
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("nested boards: ", nested_boards)
|
2018-02-13 13:38:49 +00:00
|
|
|
boards = [board for boards in nested_boards for board in boards]
|
2018-02-22 13:01:28 +00:00
|
|
|
# What the fuck
|
|
|
|
#for board in boards:
|
|
|
|
# print(board)
|
|
|
|
# print("type__:",type(board))
|
2018-02-13 13:38:49 +00:00
|
|
|
# Add resulting unique boards to set of legal boards resulting from roll
|
2018-02-06 22:29:51 +00:00
|
|
|
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("printing boards from calculate_legal_states: ", boards)
|
|
|
|
legal_moves = legal_moves | set(boards)
|
|
|
|
# print("legal moves: ", legal_moves)
|
|
|
|
if len(legal_moves) == 0:
|
|
|
|
legal_moves = { tuple(board) }
|
|
|
|
|
|
|
|
return legal_moves
|
2018-02-13 13:38:49 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def pretty(board):
|
2018-02-22 13:01:28 +00:00
|
|
|
def black(count):
|
|
|
|
return "\033[0;30m\033[47m{}\033[0m\033[47m".format(count)
|
|
|
|
def white(count):
|
|
|
|
return "\033[0;31m\033[47m{}\033[0m\033[47m".format(count)
|
|
|
|
|
2018-02-06 22:29:51 +00:00
|
|
|
temp = []
|
2018-02-13 13:38:49 +00:00
|
|
|
for x in board:
|
2018-02-22 13:01:28 +00:00
|
|
|
if x > 0:
|
2018-03-04 16:35:36 +00:00
|
|
|
temp.append(" {}".format(x))
|
2018-02-22 13:01:28 +00:00
|
|
|
elif x < 0:
|
2018-03-04 16:35:36 +00:00
|
|
|
temp.append("{}".format(x))
|
2018-02-22 13:01:28 +00:00
|
|
|
else: temp.append(" ")
|
2018-02-07 15:27:03 +00:00
|
|
|
|
2018-03-04 16:35:36 +00:00
|
|
|
return """
|
2018-02-07 23:00:18 +00:00
|
|
|
13 14 15 16 17 18 19 20 21 22 23 24
|
2018-02-22 13:01:28 +00:00
|
|
|
+--------------------------------------------------------------------------+
|
2018-03-28 12:36:52 +00:00
|
|
|
| {13}| {14}| {15}| {16}| {17}| {18}| bar -1: {25} | {19}| {20}| {21}| {22}| {23}| {24}| end -1: TODO|
|
2018-02-22 13:01:28 +00:00
|
|
|
|---|---|---|---|---|---|------------|---|---|---|---|---|---| |
|
2018-03-28 12:36:52 +00:00
|
|
|
| {12}| {11}| {10}| {9}| {8}| {7}| bar 1: {0} | {6}| {5}| {4}| {3}| {2}| {1}| end 1: TODO|
|
2018-02-22 13:01:28 +00:00
|
|
|
+--------------------------------------------------------------------------+
|
2018-02-07 23:00:18 +00:00
|
|
|
12 11 10 9 8 7 6 5 4 3 2 1
|
2018-03-04 16:35:36 +00:00
|
|
|
""".format(*temp)
|
2018-02-07 15:09:09 +00:00
|
|
|
|
2018-02-13 13:38:49 +00:00
|
|
|
@staticmethod
|
|
|
|
def do_move(board, player, move):
|
|
|
|
# Implies that move is valid; make sure to check move validity before calling do_move(...)
|
|
|
|
|
|
|
|
def move_to_bar(board, to_idx):
|
|
|
|
board = list(board)
|
|
|
|
if player == 1:
|
2018-02-22 13:01:28 +00:00
|
|
|
board[25] -= player
|
2018-02-13 13:38:49 +00:00
|
|
|
else:
|
2018-02-22 13:01:28 +00:00
|
|
|
board[0] -= player
|
2018-02-13 13:38:49 +00:00
|
|
|
|
2018-02-22 13:01:28 +00:00
|
|
|
board[to_idx] = 0
|
|
|
|
return board
|
2018-02-07 15:09:09 +00:00
|
|
|
|
2018-02-13 13:38:49 +00:00
|
|
|
# TODO: Moving in from bar is handled by the representation
|
|
|
|
# TODONE: Handle bearing off
|
2018-02-05 21:31:34 +00:00
|
|
|
|
2018-02-13 13:38:49 +00:00
|
|
|
from_idx = move[0]
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("from_idx: ", from_idx)
|
2018-02-13 13:38:49 +00:00
|
|
|
to_idx = move[1]
|
2018-02-22 13:01:28 +00:00
|
|
|
#print("to_idx: ", to_idx)
|
|
|
|
# pdb.set_trace()
|
2018-02-15 12:03:43 +00:00
|
|
|
board = list(board) # Make mutable copy of board
|
2018-02-13 13:38:49 +00:00
|
|
|
|
|
|
|
# 'Lift' checker
|
|
|
|
board[from_idx] -= player
|
|
|
|
|
|
|
|
# Handle bearing off
|
|
|
|
if to_idx < 1 or to_idx > 24:
|
2018-02-22 13:01:28 +00:00
|
|
|
return tuple(board)
|
2018-02-13 13:38:49 +00:00
|
|
|
|
|
|
|
# Handle hitting checkers
|
|
|
|
if board[to_idx] * player == -1:
|
|
|
|
board = move_to_bar(board, to_idx)
|
|
|
|
|
|
|
|
# Put down checker
|
|
|
|
board[to_idx] += player
|
|
|
|
|
2018-02-15 12:03:43 +00:00
|
|
|
return tuple(board)
|
2018-02-22 13:01:28 +00:00
|
|
|
|
2018-03-06 10:43:10 +00:00
|
|
|
@staticmethod
|
|
|
|
def flip(board):
|
|
|
|
return tuple((-x for x in reversed(board)))
|