2019-04-07 23:39:18 +02:00
|
|
|
import pygame as pg
|
2019-04-25 20:56:02 +02:00
|
|
|
import numpy as np
|
2019-04-25 18:25:37 +02:00
|
|
|
import random
|
2019-04-29 13:49:54 +02:00
|
|
|
from UI.grid import Grid, Node
|
2019-05-01 02:21:02 +02:00
|
|
|
from Logic.Apath import a_path
|
2019-04-07 23:39:18 +02:00
|
|
|
|
2019-04-08 12:16:50 +02:00
|
|
|
|
2019-04-07 23:39:18 +02:00
|
|
|
class Window():
|
2019-04-28 16:13:41 +02:00
|
|
|
def __init__(self, grid: Grid,start: (int,int),end: (int,int),mode: int):
|
2019-04-15 12:54:29 +02:00
|
|
|
pg.init() # pylint: disable=no-member
|
2019-04-07 23:39:18 +02:00
|
|
|
# setup window
|
|
|
|
pg.display.set_caption('Inteligentna śmieciarka')
|
2019-04-28 16:09:06 +02:00
|
|
|
|
|
|
|
self.start = start
|
|
|
|
self.end = end
|
2019-04-07 23:39:18 +02:00
|
|
|
self.grid = grid
|
2019-04-28 16:09:06 +02:00
|
|
|
|
2019-04-07 23:39:18 +02:00
|
|
|
# assign to variables for brevity
|
2019-04-08 01:15:47 +02:00
|
|
|
cols = self.grid.cols
|
|
|
|
rows = self.grid.rows
|
|
|
|
width = Node.r_width
|
|
|
|
height = Node.r_height
|
|
|
|
margin = Node.r_margin
|
2019-04-07 23:39:18 +02:00
|
|
|
|
2019-04-28 16:09:06 +02:00
|
|
|
|
2019-04-07 23:39:18 +02:00
|
|
|
screen_width = cols * (width + margin) + 2 * margin
|
|
|
|
screen_height = rows * (height + margin) + 2 * margin
|
|
|
|
|
|
|
|
self.screen = pg.display.set_mode([screen_width, screen_height])
|
|
|
|
|
|
|
|
self.end = False
|
|
|
|
|
|
|
|
self.clock = pg.time.Clock()
|
2019-04-28 16:09:06 +02:00
|
|
|
|
|
|
|
|
2019-04-29 12:51:48 +02:00
|
|
|
def obstacles(self, grid: Grid,option: int):
|
2019-04-28 16:09:06 +02:00
|
|
|
if option == 1:
|
2019-04-28 16:13:41 +02:00
|
|
|
for x in range(len(grid.table)*8):
|
|
|
|
grid.change_field(random.randint(1,len(grid.table)-2),random.randint(1,len(grid.table)-2),3)
|
2019-04-29 12:51:48 +02:00
|
|
|
elif option == 2:
|
2019-04-28 16:09:06 +02:00
|
|
|
for x in range (13):
|
|
|
|
grid.change_field(x,14,3)
|
|
|
|
for x in range (8):
|
|
|
|
grid.change_field(12,x+6,3)
|
|
|
|
|
2019-04-25 18:25:37 +02:00
|
|
|
|
|
|
|
|
2019-04-29 12:51:48 +02:00
|
|
|
obstacles(self,grid,mode)
|
2019-04-28 16:09:06 +02:00
|
|
|
grid.change_field(start[0], start[1], 1)
|
|
|
|
grid.change_field(end[0], end[1], 2)
|
|
|
|
|
|
|
|
#draw starting map
|
2019-04-07 23:39:18 +02:00
|
|
|
self.grid.draw_map(self.screen)
|
2019-04-25 18:25:37 +02:00
|
|
|
|
2019-04-27 18:23:33 +02:00
|
|
|
#copy table
|
2019-04-25 20:56:02 +02:00
|
|
|
array = [[self.grid.table[col][row] for row in range(cols)] for col in range(rows)]
|
2019-04-29 13:45:56 +02:00
|
|
|
path = a_path(array,(start[0],start[1]),(end[0],end[1]))
|
2019-04-28 16:09:06 +02:00
|
|
|
print("Path:",path)
|
2019-04-28 16:13:41 +02:00
|
|
|
|
2019-04-27 18:24:51 +02:00
|
|
|
#draw movement of garbage truck
|
2019-04-27 18:23:33 +02:00
|
|
|
for index, t in enumerate(path):
|
|
|
|
x,y =t
|
|
|
|
if index != 0:
|
|
|
|
self.grid.change_field(path[index-1][0],path[index-1][1],4)
|
2019-04-07 23:39:18 +02:00
|
|
|
self.grid.change_field(x, y, 1)
|
2019-04-27 18:23:33 +02:00
|
|
|
self.grid.draw_node(self.screen, path[index-1][0],path[index-1][1])
|
2019-04-07 23:39:18 +02:00
|
|
|
self.grid.draw_node(self.screen, x, y)
|
|
|
|
pg.time.delay(500)
|
2019-04-15 12:54:29 +02:00
|
|
|
pg.quit() # pylint: disable=no-member
|