-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
158 lines (128 loc) · 4.23 KB
/
main.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
from random import randrange
def initialize():
""" 4x4 Matrix initialisieren """
liste = [[0 for i in range(4)] for j in range(4)]
liste[0][1] = 2
liste[2][2] = 2
return liste
def print_list(field):
""" Ausgabe der Matrix """
for i in range(4):
print("| ", end="")
for j in range(4):
print(field[i][j], end=" | ")
print("")
def move(field, direction):
if direction == 0:
for y in range(4):
x = 0
while x < 4:
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
elif x > 0 and field[x][y] == field[x-1][y]:
field[x-1][y] *= 2
field = shift(field, direction, x, y)
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
x += 1
elif direction == 1:
for x in range(4):
y = 3
while y >= 0:
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
elif y < 3 and field[x][y] == field[x][y+1]:
field[x][y+1] *= 2
field = shift(field, direction, x, y)
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
y -= 1
elif direction == 2:
for y in range(4):
x = 3
while x >= 0:
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
elif x < 3 and field[x][y] == field[x+1][y]:
field[x+1][y] *= 2
field = shift(field, direction, x, y)
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
x -= 1
elif direction == 3:
for x in range(4):
y = 0
while y < 4:
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
elif y > 0 and field[x][y] == field[x][y-1]:
field[x][y-1] *= 2
field = shift(field, direction, x, y)
while field[x][y] == 0:
field = shift(field, direction, x, y)
if field[x][y] == -1:
field[x][y] = 0
y += 1
return random(field)
def shift(field, direction, x, y):
if direction == 3:
for i in range(y, 3):
field[x][i] = field[x][i+1]
field[x][3] = -1
elif direction == 0:
for i in range(x, 3):
field[i][y] = field[i+1][y]
field[3][y] = -1
elif direction == 1:
for i in range(y, 0, -1):
field[x][i] = field[x][i-1]
field[x][0] = -1
elif direction == 2:
for i in range(x, 0, -1):
field[i][y] = field[i-1][y]
field[0][y] = -1
return field
def main():
field = initialize()
print_list(field)
while 1:
direction = input("direction (wasd): ")
if direction == "w":
field = move(field, 0)
elif direction == "a":
field = move(field, 3)
elif direction == "s":
field = move(field, 2)
elif direction == "d":
field = move(field, 1)
else:
print("Wrong input! Please enter wasd!")
continue
print_list(field)
def random(field):
x = randrange(4)
y = randrange(0, 3)
while field[x][y] != 0:
x = randrange(4)
y = randrange(4)
if randrange(10) > 1:
field[x][y] = 2
else:
field[x][y] = 4
return field
if __name__ == "__main__":
main()