-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsokoban.py
359 lines (290 loc) · 11.7 KB
/
sokoban.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# -*- coding: utf-8 -*-
"""
Created on Mon Dec 24 11:38:22 2018
@author: tisco
"""
import pickle
import pygame
niveis = []
## Lers os niveis a partir do ficheiro
def ler_nivel(nivel):
with open('data/niveis.txt') as f:
while nivel > 0:
linha = f.readline()
if linha == '---------------\n': # acabou de ler nivel
nivel -= 1
linhas = []
for linha in f:
if linha == '---------------\n':
break
linhas.append(linha)
tipos = (' ', '#', '*', '.')
altura = len(linhas)
largura = max(map(len, linhas))-1
caixotes = []
paredes=[]
deposito=[]
matriz = [[0 for _ in range(largura)] for _ in range(altura)]
for l in range(altura):
for c in range(largura):
if c < len(linhas[l])-1:
if linhas[l][c] == '@':
jogador = [l, c]
elif linhas[l][c] == '$':
caixotes.append([l, c])
else:
matriz[l][c] = tipos.index(linhas[l][c])
if linhas[l][c] == '#':
paredes.append([l,c])
elif linhas[l][c]== '.':
deposito.append([l,c])
return jogador, caixotes, matriz, paredes, deposito
##################################################
def carregar_nivel(nivel):
global nivel_atual, pos_jogador, pos_caixotes, matriz, screen, pos_paredes, pos_depositos
nivel_atual = nivel
pos_jogador, pos_caixotes, matriz, pos_paredes, pos_depositos = ler_nivel(nivel)
# muda tamanho do ecrã para tamanho do nível
altura = len(matriz)
largura = len(matriz[0])
screen = pygame.display.set_mode((largura*40, altura*40))
def jogo(level, theme):
global pos_caixotes, pos_jogador
score=0
tema=theme
## Abrir ecra e etc
nivel = level
carregar_nivel(nivel)
inicial_pos_jogador = pos_jogador.copy()
# carregar tema
caixa_img = pygame.image.load('data/' + theme + "_caixa.png")
parede_img = pygame.image.load('data/' + theme + "_parede.png")
jogador_img = pygame.image.load('data/' + theme + "_jogador.png")
deposito_img = pygame.image.load('data/' + theme + "_deposito.png")
## Ciclo
sair = False
while not sair:
## Desenhar nível
#Espaço vazio - 0
#Paredes - 1
#deposito - 3
for i, row in enumerate(matriz):
for j, local in enumerate(row):
if (i, j) not in pos_caixotes and (i, j) != pos_jogador:
if local == 0: #Espaço vazio
block = pygame.Surface((40, 40))
block.fill((255,255,255))
#Tirar as duas linhas em cima e colocar imageload do espaço vazio
pos = (40*j, 40*i)
screen.blit(block, pos)
elif local == 1 or local == 2: #Paredes
pos = (40*j, 40*i)
screen.blit(parede_img, pos)
elif local == 3: #Entregar caixas
pos = (40*j, 40*i)
screen.blit(deposito_img, pos)
#Caixas
for pos in pos_caixotes:
x, y = pos
pos = (40*y, 40*x)
screen.blit(caixa_img, pos)
#Jogador
x, y = pos_jogador
pos = (40*y, 40*x)
screen.blit(jogador_img, pos)
pygame.draw.rect(screen, (255, 255, 255), (0, 0, 110, 20))
pygame.draw.rect(screen, (0, 0, 0), (0, 0, 110, 20), 2)
screen.blit(font.render("Level: {} / {}".format(nivel,"89"), 1, (0,0,0)), (4, 4))
pygame.display.update()
# Eventos
event = pygame.event.wait()
if event.type == pygame.QUIT:
sair = True
print(pos_caixotes)
if event.type == pygame.KEYDOWN:
# cima, baixo, esquerda, direito
#LEFT
if event.key == pygame.K_LEFT:
move=True
#ver se vai contra a parede
if [pos_jogador[0], pos_jogador[1]-1] in pos_paredes:
move=False
#ver se vai contra a caixa
elif [pos_jogador[0], pos_jogador[1]-1] in pos_caixotes:
for pos_caixote in pos_caixotes:
if pos_caixote == [pos_jogador[0], pos_jogador[1]-1]:
caixote=pos_caixote
if [caixote[0],caixote[1]-1] in pos_paredes or [caixote[0],caixote[1]-1] in pos_caixotes:
move=False
else:
caixote[1] -= 1
move=True
if move:
pos_jogador[1] -= 1
score+=1
#RIGHT
if event.key == pygame.K_RIGHT:
move=True
#ver se vai contra a parede
if [pos_jogador[0], pos_jogador[1]+1] in pos_paredes:
move=False
#ver se vai contra a caixa
elif [pos_jogador[0], pos_jogador[1]+1] in pos_caixotes:
for pos_caixote in pos_caixotes:
if pos_caixote == [pos_jogador[0], pos_jogador[1]+1]:
caixote=pos_caixote
if [caixote[0],caixote[1]+1] in pos_paredes or [caixote[0],caixote[1]+1] in pos_caixotes:
move=False
else:
caixote[1] += 1
move=True
if move:
pos_jogador[1] += 1
score+=1
#UP
if event.key == pygame.K_UP:
move=True
#ver se vai contra a parede
if [pos_jogador[0]-1, pos_jogador[1]] in pos_paredes:
move=False
#ver se vai contra a caixa
elif [pos_jogador[0]-1, pos_jogador[1]] in pos_caixotes:
for pos_caixote in pos_caixotes:
if pos_caixote == [pos_jogador[0]-1, pos_jogador[1]]:
caixote=pos_caixote
if [caixote[0]-1,caixote[1]] in pos_paredes or [caixote[0]-1,caixote[1]] in pos_caixotes:
move=False
else:
caixote[0] -= 1
move=True
if move:
pos_jogador[0] -= 1
score+=1
#DOWN
if event.key == pygame.K_DOWN:
move=True
#ver se vai contra a parede
if [pos_jogador[0]+1, pos_jogador[1]] in pos_paredes:
move=False
#ver se vai contra a caixa
elif [pos_jogador[0]+1, pos_jogador[1]] in pos_caixotes:
for pos_caixote in pos_caixotes:
if pos_caixote == [pos_jogador[0]+1, pos_jogador[1]]:
caixote=pos_caixote
if [caixote[0]+1,caixote[1]] in pos_paredes or [caixote[0]+1,caixote[1]] in pos_caixotes:
move=False
else:
caixote[0] += 1
move=True
if move:
pos_jogador[0] += 1
score+=1
if event.key == pygame.K_n:
# cheat code: end level
pos_caixotes = pos_depositos
print("jogador: ", pos_jogador)
# escape para sair do jogo
if event.key == pygame.K_ESCAPE:
if inicial_pos_jogador == pos_jogador:
sair = True
else:
carregar_nivel(nivel)
inicial_pos_jogador = pos_jogador.copy()
pos_caixotes.sort()
pos_depositos.sort()
## Se o utilizador ganhou, fazer:
if pos_caixotes == pos_depositos:
if nivel < 89:
nivel += 1
else:
sair = True
win()
carregar_nivel(nivel)
inicial_pos_jogador = pos_jogador.copy()
# nivel += 1
# carregar_nivel(nivel)
print(score)
#save game
global foo
foo = [nivel,tema]
with open("savegame", "wb") as f:
pickle.dump(foo, f)
#SELECT THEME
def menu_theme():
while True:
#Cria o ecrã global do jogo
global screen
screen = pygame.display.set_mode((600, 600))
bg = pygame.image.load("data/desenho_theme.png")
screen.blit(bg, (0, 0))
pygame.display.update()
event = pygame.event.wait()
if event.type == pygame.MOUSEBUTTONDOWN:
(j, i) = pygame.mouse.get_pos()
#standard
if 96 < j < 223 and 134 < i < 258:
return "standard"
#rainbow
if 350 < j < 485 and 134 < i < 258:
return "rainbow"
#ghost
if 96 < j < 223 and 366 < i < 500:
return "ghost"
#space
if 350 < j < 485 and 366 < i < 500:
return "space"
if event.type == pygame.QUIT:
return "standard"
#NEXT LEVEL
def win():
screen = pygame.display.set_mode((600, 600))
bg = pygame.image.load("data/desenho_complete.png")
screen.blit(bg, (0, 0))
pygame.display.update()
pygame.time.delay(1000)
#MENU PRINCIPAL
def menu(main_theme):
## Abrir ecra e etc
while True:
#Cria o ecrã global do jogo
global screen
screen = pygame.display.set_mode((600, 600))
bg = pygame.image.load("data/desenho_menu_1.png")
screen.blit(bg, (0, 0))
pygame.display.update()
event = pygame.event.wait()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE:
break
if event.type == pygame.MOUSEBUTTONDOWN:
(j, i) = pygame.mouse.get_pos()
#CONTINUE
if 380 < j < 545 and 150 < i < 210:
with open("savegame", "rb") as f:
foo = pickle.load(f)
n=foo[0]
t=foo[1]
jogo(n,t)
#NEW GAME
if 380 < j < 545 and 260 < i < 315:
jogo(0,main_theme)
#SELECT THEME
if 380 < j < 545 and 370 < i < 426:
main_theme = menu_theme()
#EXIT
if 380 < j < 545 and 475 < i < 533:
break
if event.type == pygame.QUIT:
break
# Main code
pygame.init()
pygame.display.set_caption('Sokoban')
pygame.event.set_allowed(None)
pygame.event.set_allowed(pygame.QUIT)
pygame.event.set_allowed(pygame.MOUSEBUTTONDOWN)
pygame.event.set_allowed(pygame.KEYDOWN)
pygame.key.set_repeat(1, 200)
pygame.font.init()
font = pygame.font.Font(pygame.font.get_default_font(), 16)
menu("standard")
pygame.quit()