-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaseGame.py
75 lines (63 loc) · 2.51 KB
/
baseGame.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
import numpy as np
class Connect4:
def __init__(self, rows=6, cols=7):
if rows < 4 or cols < 4:
raise ValueError("Board size must be at least 4x4")
self.rows = rows
self.cols = cols
self.reset()
def reset(self):
self.board = np.zeros((self.rows, self.cols), dtype=int)
self.current_player = 1
self.game_over = False
self.winner = None
self.last_move = None
return self.get_state()
def get_state(self):
return self.board.copy()
def make_move(self, col):
if self.game_over or not self.is_valid_move(col):
return False, self.get_state(), -10, True
for row in range(self.rows - 1, -1, -1):
if self.board[row][col] == 0:
self.board[row][col] = self.current_player
self.last_move = (row, col)
break
reward = self._check_winner(row, col)
self.game_over = reward != 0 or len(self.get_valid_moves()) == 0
self.current_player = 3 - self.current_player
return True, self.get_state(), reward, self.game_over
def _check_winner(self, row, col):
player = self.board[row][col]
directions = [(0, 1), (1, 0), (1, 1), (1, -1)]
for dr, dc in directions:
count = 1
for i in range(1, 4):
r, c = row + i*dr, col + i*dc
if 0 <= r < self.rows and 0 <= c < self.cols and self.board[r][c] == player:
count += 1
else:
break
for i in range(1, 4):
r, c = row - i*dr, col - i*dc
if 0 <= r < self.rows and 0 <= c < self.cols and self.board[r][c] == player:
count += 1
else:
break
if count >= 4:
self.winner = player
return 1 if player == 1 else -1
return 0
def is_valid_move(self, col):
return 0 <= col < self.cols and self.board[0][col] == 0 and not self.game_over
def get_valid_moves(self):
return [col for col in range(self.cols) if self.is_valid_move(col)]
def is_game_over(self):
return self.game_over
def render(self):
for row in self.board:
print("|" + "|".join([" " if cell == 0 else "X" if cell == 1 else "O" for cell in row]) + "|")
print("-" * (2 * self.cols + 1))
print(" " + " ".join([str(i) for i in range(self.cols)]))
def __str__(self):
return str(self.board)