2022-03-09 21:27:57 +01:00
|
|
|
import pygame
|
2022-03-09 22:19:04 +01:00
|
|
|
from map import preparedMap
|
2022-03-09 22:39:34 +01:00
|
|
|
from agent import trashmaster
|
2022-03-24 21:20:07 +01:00
|
|
|
from house import House
|
2022-03-10 15:53:41 +01:00
|
|
|
|
2022-03-10 16:16:59 +01:00
|
|
|
class WalleGame():
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.SCREEN_SIZE = [512, 512]
|
|
|
|
self.BACKGROUND_COLOR = '#ffffff'
|
|
|
|
|
|
|
|
pygame.init()
|
|
|
|
pygame.display.set_caption('Wall-e')
|
|
|
|
|
|
|
|
|
2022-03-10 16:18:06 +01:00
|
|
|
self.screen = pygame.display.set_mode(self.SCREEN_SIZE)
|
2022-03-10 16:16:59 +01:00
|
|
|
self.screen.fill(pygame.Color(self.BACKGROUND_COLOR))
|
|
|
|
|
|
|
|
# krata
|
|
|
|
self.map = preparedMap(self.SCREEN_SIZE)
|
|
|
|
self.screen.blit(self.map, (0,0))
|
|
|
|
|
|
|
|
def update_window(self):
|
|
|
|
pygame.display.update()
|
|
|
|
|
2022-03-24 21:20:07 +01:00
|
|
|
def draw_object(self, drawable_object, pos):
|
2022-03-22 11:55:01 +01:00
|
|
|
# pos => (x, y)
|
2022-03-24 21:20:07 +01:00
|
|
|
# drawable object must have .image field inside class
|
|
|
|
self.screen.blit(drawable_object.image, pos )
|
|
|
|
|
2022-03-22 11:55:01 +01:00
|
|
|
def reloadMap(self):
|
|
|
|
self.screen.fill(pygame.Color(self.BACKGROUND_COLOR))
|
|
|
|
self.screen.blit(self.map, (0,0))
|
2022-03-10 16:16:59 +01:00
|
|
|
|
|
|
|
def main():
|
|
|
|
game = WalleGame()
|
|
|
|
game.update_window()
|
|
|
|
|
2022-03-24 20:35:06 +01:00
|
|
|
smieciara_object = trashmaster(16,16,"./resources/textures/garbagetruck/trashmaster_blu.png")
|
2022-03-24 21:20:07 +01:00
|
|
|
game.draw_object(smieciara_object, (0, 0))
|
|
|
|
|
|
|
|
house_object = House(20, 20)
|
|
|
|
# Test draw house object
|
|
|
|
game.draw_object(house_object, (20,20))
|
2022-03-09 22:39:34 +01:00
|
|
|
|
2022-03-10 16:16:59 +01:00
|
|
|
game.update_window()
|
2022-03-09 21:27:57 +01:00
|
|
|
|
2022-03-10 16:16:59 +01:00
|
|
|
running = True
|
|
|
|
|
|
|
|
while running:
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
running = False
|
2022-03-22 11:55:01 +01:00
|
|
|
if event.type == pygame.KEYDOWN:
|
|
|
|
game.reloadMap()
|
2022-03-24 21:20:07 +01:00
|
|
|
game.draw_object(smieciara_object,
|
|
|
|
smieciara_object.movement(event.key, 16))
|
|
|
|
|
2022-03-22 11:55:01 +01:00
|
|
|
game.update_window()
|
2022-03-24 21:20:07 +01:00
|
|
|
|
2022-03-10 16:16:59 +01:00
|
|
|
pygame.quit()
|
2022-03-09 21:27:57 +01:00
|
|
|
|
|
|
|
|
2022-03-10 16:16:59 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|