-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboardmodel.py
141 lines (119 loc) · 4.04 KB
/
boardmodel.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
from copy import copy
import random
# from ai import expectiMax
score = 0
boardsize =4
board=[]
def getScore ():
return score
def insertCell (index, val):
board[index[0]][index[1]] = val
def mergeonerowleft(row, state): #funtion to merge one row left
global score
for j in range(boardsize - 1): #repeat the moving left operation 3 times
for i in range (boardsize - 1, 0, -1): #moving everything as far left as possible
if row[i-1] ==0:
row[i-1] = row[i]
row[i] = 0
# Merging to the left
for i in range (boardsize - 1):
if row[i] == row[i+1]:
row[i] *=2
if state == "real":
score = score +row[i]
row[i+1] = 0
#move evrything to the left again
for i in range (boardsize-1,0,-1):
if row[i-1] == 0:
row[i-1] = row[i]
row[i] = 0
return row
#function to merge the whole board left
def mergeboardleft(currentboard, state):
for i in range (boardsize):
currentboard[i] = mergeonerowleft(currentboard[i], state)
return currentboard
def getAvailableCells(board):
availableCells=[]
for i, _ in enumerate(board):
for j, _ in enumerate(board[i]):
if board[i][j] == 0:
availableCells.append([i, j])
return availableCells
#function to reverse the order of one row
def reverse(row):
new = []
for i in range (boardsize-1,-1,-1):
new.append(row[i])
return new
def mergeboardright(currentboard, state): #funtion to merge the whole board right
for i in range(boardsize):
currentboard[i] = reverse(currentboard[i])
currentboard[i] = mergeonerowleft(currentboard[i], state)
currentboard[i] = reverse(currentboard[i])
return currentboard
#funtion to transpose the whole board
def transpose(currentboard):
for j in range(boardsize):
for i in range(j,boardsize):
if not i==j:
temp=currentboard[j][i]
currentboard[j][i] = currentboard[i][j]
currentboard[i][j] = temp
return currentboard
def mergeboardup(currentboard, state):
currentboard = transpose(currentboard)
currentboard= mergeboardleft(currentboard, state)
currentboard = transpose(currentboard)
return currentboard
def mergeboarddown(currentboard, state):
currentboard = transpose(currentboard)
currentboard = mergeboardright(currentboard, state)
currentboard =transpose(currentboard)
return currentboard
#function to initialize a 2 or 4 value on the starting board
def picknewvalue():
if random.randint(1,9) ==1:
return 4
else:
return 2
#function to add a new value to the board on an empty space
def addnewvalue():
rowNum = random.randint(0,boardsize-1)
colNum = random.randint(0,boardsize-1)
#finds an empty spot
while not board[rowNum][colNum]==0 :
rowNum = random.randint(0,boardsize-1)
colNum = random.randint(0,boardsize-1)
#insert new value in empty spot
board[rowNum][colNum] = picknewvalue()
def won():
for row in board:
if 2048 in row:
return True
return False
board= []
for i in range(boardsize):
row = []
for j in range(boardsize):
row.append(0)
board.append(row)
#selecting 2 random spots with random values (2,4)
numbersNeeded= 2
while numbersNeeded > 0:
rowNum = random.randint(0,boardsize-1)
colNum = random.randint(0,boardsize-1)
if board[rowNum][colNum] == 0:
board[rowNum][colNum] = picknewvalue()
numbersNeeded -= 1
# print("welcome to 2048)")
# display()
def move(newBoard, num, state):
if num == 0:
return mergeboardup(newBoard, state)
elif num == 1:
return mergeboardright(newBoard, state)
elif num == 2:
return mergeboarddown(newBoard, state)
elif num == 3:
return mergeboardleft(newBoard, state)