2024-03-13 23:25:49 +01:00
|
|
|
import pygame
|
|
|
|
import prefs
|
2024-03-14 13:53:26 +01:00
|
|
|
from classes.beerKeg import BeerKeg
|
2024-03-14 14:22:16 +01:00
|
|
|
from classes.coffeMachine import CoffeMachine
|
2024-04-15 10:43:01 +02:00
|
|
|
from classes.table import Table
|
2024-03-13 23:25:49 +01:00
|
|
|
from pygame.locals import K_w, K_s, K_a, K_d
|
|
|
|
from classes.cell import Cell
|
|
|
|
from classes.agent import Agent
|
2024-04-12 13:44:55 +02:00
|
|
|
from collections import deque
|
2024-04-13 11:53:13 +02:00
|
|
|
import threading
|
|
|
|
import time
|
2024-03-13 23:25:49 +01:00
|
|
|
pygame.init()
|
|
|
|
window = pygame.display.set_mode((prefs.WIDTH, prefs.HEIGHT))
|
|
|
|
pygame.display.set_caption("Game Window")
|
|
|
|
|
|
|
|
def initBoard():
|
|
|
|
global cells
|
|
|
|
cells = []
|
|
|
|
for i in range(prefs.GRID_SIZE):
|
|
|
|
row = []
|
|
|
|
for j in range(prefs.GRID_SIZE):
|
|
|
|
cell = Cell(i, j)
|
|
|
|
row.append(cell)
|
|
|
|
cells.append(row)
|
2024-03-14 13:53:26 +01:00
|
|
|
|
2024-03-19 11:20:31 +01:00
|
|
|
#test
|
2024-03-13 23:25:49 +01:00
|
|
|
# Na potrzeby prezentacji tworzę sobie prostokatne sciany na które nie da się wejść
|
|
|
|
x1 = 3
|
2024-03-14 14:33:51 +01:00
|
|
|
y1 = 6
|
2024-03-13 23:25:49 +01:00
|
|
|
for i in range(x1, x1+4):
|
|
|
|
for j in range(y1, y1+2):
|
2024-03-13 23:31:18 +01:00
|
|
|
cells[i][j].prepareTexture("sprites/wall.png")
|
2024-03-13 23:25:49 +01:00
|
|
|
cells[i][j].blocking_movement = True
|
|
|
|
|
2024-03-14 14:33:51 +01:00
|
|
|
cells[6][4].interactableItem = BeerKeg(cells[6][4], "Beer Keg")
|
|
|
|
cells[4][10].interactableItem = CoffeMachine(cells[4][10], "Coffe Machine")
|
2024-04-15 10:43:01 +02:00
|
|
|
cells[9][10].interactableItem = Table(cells[9][10], "Table")
|
|
|
|
cells[8][2].interactableItem = Table(cells[8][2], "Table")
|
|
|
|
cells[6][2].interactableItem = Table(cells[6][2], "Table")
|
|
|
|
cells[4][2].interactableItem = Table(cells[4][2], "Table")
|
2024-03-13 23:25:49 +01:00
|
|
|
|
2024-03-14 14:50:46 +01:00
|
|
|
def draw_grid(window, cells, agent):
|
2024-03-13 23:25:49 +01:00
|
|
|
for i in range(prefs.GRID_SIZE):
|
|
|
|
for j in range(prefs.GRID_SIZE):
|
2024-03-14 14:33:51 +01:00
|
|
|
cells[i][j].update(window)
|
2024-03-14 13:53:26 +01:00
|
|
|
if(cells[i][j].interactableItem):
|
2024-03-14 14:33:51 +01:00
|
|
|
cells[i][j].interactableItem.update(window)
|
2024-03-14 14:50:46 +01:00
|
|
|
font = pygame.font.SysFont('Comic Sans MS', 30)
|
|
|
|
scoreText = font.render("Score: {}".format(str(round(agent.score,2))), 1, (0, 0, 0))
|
|
|
|
multiplierText = font.render("Multiplier: {}".format(str(round(agent.multiplier,2))), 1, (0, 0, 0))
|
|
|
|
|
|
|
|
window.blit(scoreText, (0, 0))
|
|
|
|
window.blit(multiplierText, (0, 50))
|
2024-03-13 23:25:49 +01:00
|
|
|
|
|
|
|
initBoard()
|
2024-04-15 22:49:39 +02:00
|
|
|
agent = Agent(prefs.SPAWN_POINT[0], prefs.SPAWN_POINT[1], cells)
|
2024-04-12 13:44:55 +02:00
|
|
|
|
2024-04-13 11:53:13 +02:00
|
|
|
#Wpisujemy miejsce w ktorym znajduje sie agent i miejsce docelowe do funkcji znajdujacej najkrotsza sciezke
|
2024-04-12 13:44:55 +02:00
|
|
|
start_cell = cells[5][5]
|
2024-04-15 22:39:31 +02:00
|
|
|
target_cell = cells[9][11]
|
2024-04-15 22:49:39 +02:00
|
|
|
shortest_path = agent.bfs(start_cell, target_cell, cells)
|
2024-04-13 11:53:13 +02:00
|
|
|
|
2024-04-12 13:44:55 +02:00
|
|
|
if shortest_path:
|
|
|
|
print("Sciezka: ", [(cell.X, cell.Y) for cell in shortest_path])
|
|
|
|
else:
|
|
|
|
print("Brak sciezki")
|
|
|
|
|
2024-04-15 22:49:39 +02:00
|
|
|
path = agent.convert_to_coordinates(shortest_path)
|
2024-04-13 11:53:13 +02:00
|
|
|
|
|
|
|
#osobny watek dla sciezki agenta zeby co *iles czasu* poruszal sie tam gdzie mowi path
|
|
|
|
def watekDlaSciezkiAgenta():
|
|
|
|
while True:
|
2024-04-15 22:49:39 +02:00
|
|
|
agent.sciezkaAgenta(agent,path)
|
2024-04-13 11:53:13 +02:00
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
watek = threading.Thread(target=watekDlaSciezkiAgenta)
|
|
|
|
watek.daemon = True
|
|
|
|
watek.start()
|
|
|
|
|
2024-03-13 23:25:49 +01:00
|
|
|
running = True
|
|
|
|
while running:
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
running = False
|
|
|
|
|
|
|
|
# takie głupie kontrolki do usunięcia potem, tylko do preznetacji
|
|
|
|
|
|
|
|
keys = pygame.key.get_pressed()
|
|
|
|
if keys[K_w] and not agent.moved:
|
|
|
|
agent.move_up()
|
|
|
|
if keys[K_s] and not agent.moved:
|
|
|
|
agent.move_down()
|
|
|
|
if keys[K_a] and not agent.moved:
|
|
|
|
agent.move_left()
|
|
|
|
if keys[K_d] and not agent.moved:
|
|
|
|
agent.move_right()
|
|
|
|
if not any([keys[K_w], keys[K_s], keys[K_a], keys[K_d]]):
|
|
|
|
agent.moved = False
|
2024-03-14 13:53:26 +01:00
|
|
|
if pygame.key.get_pressed()[pygame.K_e]:
|
|
|
|
if agent.current_cell.interactableItem and pygame.time.get_ticks() - agent.last_interact_time > 500:
|
|
|
|
agent.last_interact_time = pygame.time.get_ticks()
|
|
|
|
agent.current_cell.interactableItem.interact(agent)
|
2024-03-13 23:25:49 +01:00
|
|
|
|
|
|
|
|
2024-04-12 14:11:05 +02:00
|
|
|
|
2024-03-13 23:25:49 +01:00
|
|
|
window.fill((255, 0, 0))
|
2024-03-14 14:50:46 +01:00
|
|
|
draw_grid(window, cells, agent)
|
2024-03-14 14:33:51 +01:00
|
|
|
agent.update(window)
|
2024-03-13 23:25:49 +01:00
|
|
|
pygame.display.update()
|
2024-04-13 11:53:13 +02:00
|
|
|
time.sleep(0.1)
|
2024-03-13 23:25:49 +01:00
|
|
|
|
|
|
|
pygame.quit()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|