wydzielono map.py
This commit is contained in:
parent
70e4b7ba69
commit
97a42dab72
33
main.py
33
main.py
@ -1,32 +1,33 @@
|
|||||||
import pygame
|
import pygame
|
||||||
|
from map import preparedMap
|
||||||
|
|
||||||
|
#config
|
||||||
|
SCREEN_SIZE = [512, 512]
|
||||||
|
BACKGROUND_COLOR = '#ffffff'
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
|
||||||
pygame.init()
|
pygame.init()
|
||||||
|
|
||||||
|
# tytul okna
|
||||||
pygame.display.set_caption('Wall-e')
|
pygame.display.set_caption('Wall-e')
|
||||||
|
|
||||||
screen = pygame.display.set_mode([512, 512])
|
screen = pygame.display.set_mode(SCREEN_SIZE)
|
||||||
screen.fill(pygame.Color('#ffffff'))
|
screen.fill(pygame.Color(BACKGROUND_COLOR))
|
||||||
|
|
||||||
|
# krata
|
||||||
|
map = preparedMap(SCREEN_SIZE)
|
||||||
|
screen.blit(map, (0,0))
|
||||||
|
|
||||||
tileImage = pygame.image.load('tile1.png')
|
# update okna
|
||||||
|
|
||||||
surfaceSize = width, height = (512, 512)
|
|
||||||
surface = pygame.Surface(surfaceSize)
|
|
||||||
|
|
||||||
for x in range(0, 512, 16):
|
|
||||||
for y in range(0, 512, 16):
|
|
||||||
surface.blit(tileImage, (x, y))
|
|
||||||
|
|
||||||
screen.blit(surface, (0,0))
|
|
||||||
|
|
||||||
pygame.display.update()
|
pygame.display.update()
|
||||||
|
|
||||||
|
# event loop
|
||||||
running = True
|
running = True
|
||||||
while running:
|
while running:
|
||||||
for event in pygame.event.get():
|
for event in pygame.event.get():
|
||||||
if event.type == pygame.QUIT:
|
if event.type == pygame.QUIT:
|
||||||
running = False
|
running = False
|
||||||
|
|
||||||
|
# end
|
||||||
pygame.quit()
|
pygame.quit()
|
||||||
|
|
||||||
# test push
|
|
13
map.py
Normal file
13
map.py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import pygame
|
||||||
|
|
||||||
|
# config
|
||||||
|
TILE_SIZE = 16
|
||||||
|
|
||||||
|
def preparedMap(screenSize):
|
||||||
|
tileImage = pygame.image.load('tile1.png')
|
||||||
|
surface = pygame.Surface(screenSize)
|
||||||
|
|
||||||
|
for x in range(0, screenSize[0], TILE_SIZE):
|
||||||
|
for y in range(0, screenSize[1], TILE_SIZE):
|
||||||
|
surface.blit(tileImage, (x, y))
|
||||||
|
return surface
|
Loading…
Reference in New Issue
Block a user