-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor.py
176 lines (160 loc) · 7.75 KB
/
editor.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
import pygame
from shake import WIDTH, HEIGHT, CELL_SIZE, NOT_BIG_FONT, Portal, \
Wall, Game, BLOCK_SIZE, snake_color, bg_fill_color, \
wall_color, portals_color
pygame.init()
pygame.display.set_caption('level editor')
single_portal_color = pygame.Color('aquamarine')
def draw_messages(surface):
render_q = NOT_BIG_FONT.render('Press "q" to save level1',
0, pygame.Color('green'))
render_w = NOT_BIG_FONT.render('Press "w" to save level2',
0, pygame.Color('green'))
render_e = NOT_BIG_FONT.render('Press "e" to save level3',
0, pygame.Color('green'))
render_message1 = NOT_BIG_FONT.render('Press left mouse button',
0, pygame.Color('gray55'))
render_message2 = NOT_BIG_FONT.render('to draw walls',
0, pygame.Color('gray55'))
render_message3 = NOT_BIG_FONT.render('Press right mouse button',
0, pygame.Color('red'))
render_message4 = NOT_BIG_FONT.render('to erase walls',
0, pygame.Color('red'))
render_message5 = NOT_BIG_FONT.render('Press "d" keyboard button',
0, pygame.Color('white'))
render_message6 = NOT_BIG_FONT.render('to draw portals',
0, pygame.Color('white'))
render_message7 = NOT_BIG_FONT.render('Press "s" keyboard button',
0, pygame.Color('orange'))
render_message8 = NOT_BIG_FONT.render('to draw snake position',
0, pygame.Color('orange'))
render_message9 = NOT_BIG_FONT.render('Press space to erase all',
0, pygame.Color('red'))
surface.blit(render_q, (WIDTH + 10, 5))
surface.blit(render_w, (WIDTH + 10, 30))
surface.blit(render_e, (WIDTH + 10, 55))
surface.blit(render_message1, (WIDTH + 10, 100))
surface.blit(render_message2, (WIDTH + 10, 125))
surface.blit(render_message3, (WIDTH + 10, 160))
surface.blit(render_message4, (WIDTH + 10, 185))
surface.blit(render_message5, (WIDTH + 10, 220))
surface.blit(render_message6, (WIDTH + 10, 245))
surface.blit(render_message7, (WIDTH + 10, 280))
surface.blit(render_message8, (WIDTH + 10, 305))
surface.blit(render_message9, (WIDTH + 10, 350))
def save_level(level_path, walls, portals, is_snake_add, snake_cords):
"""Function save walls, portals and snake cords to .txt file"""
with open(level_path, "w") as file:
for w in walls:
print('w' + str(w), file=file)
for p in portals:
print('p' + str(p), file=file)
if is_snake_add:
print('s' + str(snake_cords), file=file)
print(f'{level_path.split("/")[1]} was saved!')
def is_all_conditions(x, y, block, walls, portals_tmp, portals):
"""Function check that new block in game grid and not in walls, portals"""
if block[0] < x < block[0] + CELL_SIZE \
and block[1] < y < block[1] + CELL_SIZE \
and block not in walls \
and block not in portals_tmp \
and block not in [(p[0], p[1]) for p in portals] \
and block not in [(p[2], p[3]) for p in portals]:
return True
def main():
surface = pygame.display.set_mode((WIDTH + 300, HEIGHT))
_wall = Wall(0, 0, wall_color)
_portal = Portal(0, 0, 0, 0, portals_color, portals_color)
cells = []
walls = []
portals = []
portals_temp = []
snake_cords = ()
is_snake_add = False
is_portal_add = False
# adding all cells cords
for row in range(int(HEIGHT / CELL_SIZE)):
for column in range(int(WIDTH / CELL_SIZE)):
cells.append((column * CELL_SIZE, row * CELL_SIZE))
while True:
game = Game()
surface.fill(bg_fill_color)
game.draw_bg(surface)
# draw snake position
if is_snake_add:
pygame.draw.rect(surface, snake_color,
(snake_cords[0], snake_cords[1],
BLOCK_SIZE, BLOCK_SIZE))
for wall in walls:
pygame.draw.rect(surface, wall_color,
(wall[0], wall[1], BLOCK_SIZE, BLOCK_SIZE))
for portal in portals:
pygame.draw.rect(surface, portals_color,
(portal[0], portal[1], BLOCK_SIZE, BLOCK_SIZE))
pygame.draw.rect(surface, portals_color,
(portal[2], portal[3], BLOCK_SIZE, BLOCK_SIZE))
# draw single portal that don't have partner
if is_portal_add:
pygame.draw.rect(surface, single_portal_color,
(portals_temp[0][0], portals_temp[0][1],
BLOCK_SIZE, BLOCK_SIZE))
# draw help text
draw_messages(surface)
pygame.display.flip()
key = pygame.key.get_pressed()
mouse = pygame.mouse.get_pressed()
x, y = pygame.mouse.get_pos()
for event in pygame.event.get():
# left mouse button
if mouse[0]:
for cell in cells:
if is_all_conditions(x, y, cell, walls, portals_temp, portals):
walls.append((cell[0], cell[1]))
# right mouse button
if mouse[2]:
for cell in cells:
if cell[0] < x < cell[0] + CELL_SIZE \
and cell[1] < y < cell[1] + CELL_SIZE:
if cell in walls:
walls.remove((cell[0], cell[1]))
for portal in portals:
if cell[0] in portal and cell[1] in portal:
portals.remove(portal)
if cell == snake_cords:
is_snake_add = False
snake_cords = ()
if key[pygame.K_d]:
for cell in cells:
if is_all_conditions(x, y, cell, walls, portals_temp, portals):
if is_portal_add:
portals_temp.append((cell[0], cell[1]))
portals.append((portals_temp[0][0], portals_temp[0][1],
portals_temp[1][0], portals_temp[1][1]))
portals_temp.clear()
is_portal_add = False
else:
portals_temp.append((cell[0], cell[1]))
is_portal_add = True
if key[pygame.K_s]:
for cell in cells:
if is_all_conditions(x, y, cell, walls, portals_temp, portals):
snake_cords = (cell[0], cell[1])
is_snake_add = True
if event.type == pygame.QUIT:
exit()
if key[pygame.K_SPACE]:
walls.clear()
portals.clear()
portals_temp.clear()
snake_cords = ()
is_snake_add = False
is_portal_add = False
if key[pygame.K_q]:
save_level('levels/level1.txt', walls, portals, is_snake_add, snake_cords)
if key[pygame.K_w]:
save_level('levels/level2.txt', walls, portals, is_snake_add, snake_cords)
if key[pygame.K_e]:
save_level('levels/level3.txt', walls, portals, is_snake_add, snake_cords)
pygame.display.update()
if __name__ == '__main__':
main()