-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc4bot.py
178 lines (135 loc) · 4.66 KB
/
c4bot.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
# -*- coding: utf-8 *-*
"""
c4bot
The connect four player classes, including AI and Human opponents. Subclass the
C4Bot class to create your own player.
"""
"""
Copyright 2012 Michael Bell
This file is part of connectfour.
connectfour is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
connectfour is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with connectfour. If not, see <http://www.gnu.org/licenses/>.
"""
import os
import numpy as np
import sqlite3 as sql
import init_db
class C4Bot(object):
"""
The generic connect 4 player class.
"""
def __init__(self, pnum):
"""
Sets the player number for the current class instance.
"""
if pnum > 2 or pnum < 1:
raise Exception("Illegal player number!")
self.pnum = pnum
def move(self, board):
"""
Given the current board setup, make a move. Children must implement
this method.
"""
raise NotImplemented("C4Bot does not have a default move. Children must" +
" implement this method!")
class Human(C4Bot):
"""
A human controlled player. Moves are made using the standard input.
"""
def __init__(self, pnum):
"""
"""
super(Human, self).__init__(pnum)
def move(self, board):
"""
Given the current board setup, make a move.
"""
move = int(raw_input('Enter move (0 to quit): ')) - 1
return move
class Random(C4Bot):
"""
A computer controlled player that chooses moves at random from the
available options.
"""
def __init__(self, pnum):
"""
"""
super(Random, self).__init__(pnum)
def move(self, board):
"""
Given the current board setup, make a move.
"""
ml = board.get_move_list()
if len(ml) == 0:
return None
else:
return ml[np.random.randint(0, len(ml))]
class BotA(C4Bot):
"""
A computer controlled player that chooses that move that has the highest
probability of leading to victory, as determined using a simple learning
algorithm.
"""
db_name = init_db.db_name
table_name = init_db.table_name
def __init__(self, pnum):
"""
Initialize the class. Sets the player number.
"""
super(BotA, self).__init__(pnum)
if not os.path.isfile(init_db.db_name):
# create an empty DB if one doesn't already exist
init_db.init_db()
self.con = sql.connect(self.db_name)
# Don't care about synchronization. Runs WAY faster without
cur = self.con.cursor()
cur.execute("PRAGMA synchronous=0")
self.con.commit()
if self.pnum == 1:
self.prob_key = "prob1"
else:
self.prob_key = "prob2"
def move(self, board):
"""
Given the current board setup, make a move.
"""
ml = board.get_move_list()
max_prob = 0.
# The move(s) having the highest probability of winning.
selected_moves = []
cur = self.con.cursor()
for i in range(len(ml)):
testboard = board.get_new_board(ml[i])
tbid = board.get_board_id(testboard)
cur.execute("SELECT " + self.prob_key +
" FROM " + self.table_name +
" WHERE board_id=? " +
"OR mirror_id=?",
(str(tbid), str(tbid)))
# returns None if there is no matching entry
# returns a tuple with one entry otherwise.
test_prob = cur.fetchone()
if test_prob is None:
# the board config is not in the data base, in which case we
# say that there is a 50% chance of winning with it.
test_prob = 0.5
else:
test_prob = test_prob[0]
if test_prob > max_prob:
max_prob = test_prob
selected_moves = [ml[i]]
elif test_prob == max_prob:
selected_moves.append(ml[i])
if len(selected_moves) == 0:
return None
else:
selected_move = selected_moves[np.random.randint(0, len(selected_moves))]
return selected_move