sztuczna_inteligencja_2023_.../main.py

30 lines
773 B
Python
Raw Normal View History

2023-03-09 19:44:02 +01:00
import pygame
from gameEventHandler import handle_game_event
2023-03-12 16:08:54 +01:00
from gameContext import GameContext
2023-03-12 16:47:18 +01:00
from gameContext import startup
2023-03-12 16:08:54 +01:00
from PIL import Image
2023-03-09 19:44:02 +01:00
pygame.init()
canvas = pygame.display.set_mode((800, 800))
pygame.display.set_caption("Inteligentna śmieciarka")
2023-03-12 16:49:32 +01:00
stick_man_pil = Image.open('imgs/stickMan.jpg')
2023-03-12 16:08:54 +01:00
2023-03-12 16:47:18 +01:00
game_context = GameContext()
game_context.stick_man_pil = stick_man_pil
game_context.stick_man_pygame = pygame.image.frombuffer(stick_man_pil.tobytes(), stick_man_pil.size, 'RGB')
game_context.canvas = canvas
startup(game_context)
2023-03-12 16:08:54 +01:00
2023-03-09 19:44:02 +01:00
exit = False
while not exit:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit = True
else:
2023-03-12 16:47:18 +01:00
handle_game_event(event, game_context)
2023-03-09 19:44:02 +01:00
pygame.display.update()