3rd part AStar implementation

This commit is contained in:
Marcin Dobrowolski 2020-04-27 21:56:17 +02:00
parent 96b42fb6c0
commit 0fa109ef35
6 changed files with 189 additions and 68 deletions

30
main.py
View File

@ -1,4 +1,5 @@
import sys import sys
import secrets
from src.graphics import * from src.graphics import *
from src.waiter import * from src.waiter import *
@ -7,15 +8,17 @@ if __name__ == "__main__":
# SETUP # SETUP
pygame.init() pygame.init()
clock = pygame.time.Clock() clock = pygame.time.Clock()
fps = 40 fps = 2
graphics = Graphics() graphics = Graphics()
waiter = Waiter(graphics) waiter = Waiter(graphics)
# init functions # init functions
graphics.drawBackground(waiter.matrix) graphics.drawBackground(waiter.matrix)
graphics.update(waiter.X, waiter.Y) graphics.update(waiter.X, waiter.Y)
print(waiter.findPath((1, 10)))
goal = None
path = [(0, 0)]
# print(waiter.findPath())
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
if event.type == pygame.QUIT: if event.type == pygame.QUIT:
@ -29,9 +32,26 @@ if __name__ == "__main__":
sys.exit() sys.exit()
break break
graphics.clear(waiter.X, waiter.Y) if event.key == pygame.K_r:
temp = False
while not temp:
x = secrets.randbelow(graphics.width)
y = secrets.randbelow(graphics.height)
if waiter.matrix.matrix[x][y].walk_through == 1:
temp = True
goal = (x, y)
path = waiter.findPath(goal)
if path != []:
temp = path.pop(0)
print(temp)
waiter.travel(temp, graphics)
#graphics.clear(waiter.X, waiter.Y)
#waiter.update(event, graphics)
#graphics.update(waiter.X, waiter.Y)
waiter.update(event, graphics)
graphics.update(waiter.X, waiter.Y)
pygame.display.flip() pygame.display.flip()
clock.tick(fps) clock.tick(fps)

Binary file not shown.

View File

@ -6,7 +6,7 @@ class Tile:
if self.type == 'wall': if self.type == 'wall':
self.watch_through = 0 self.watch_through = 0
self.walk_through = 0 self.walk_through = 0
elif self.type == 'table' or self.type == 'bar' or self.type == 'chair': elif self.type == 'table' or self.type == 'bar' or self.type == 'chair_front' or self.type == 'chair_back' or self.type == 'chair_left' or self.type == 'chair_right':
self.watch_through = 1 self.watch_through = 1
self.walk_through = 0 self.walk_through = 0
else: else:

View File

@ -22,9 +22,8 @@ class Waiter(pygame.sprite.Sprite):
self.X += x self.X += x
self.Y += y self.Y += y
def update(self, event, graphics): def update(self, instruction, graphics):
if event.type == pygame.KEYDOWN: if instruction == 'L':
if event.key == pygame.K_RIGHT:
if self.direction == 'N': if self.direction == 'N':
self.direction = 'W' self.direction = 'W'
elif self.direction == 'S': elif self.direction == 'S':
@ -33,7 +32,7 @@ class Waiter(pygame.sprite.Sprite):
self.direction = 'N' self.direction = 'N'
elif self.direction == 'W': elif self.direction == 'W':
self.direction = 'S' self.direction = 'S'
if event.key == pygame.K_LEFT: if instruction == 'R':
if self.direction == 'N': if self.direction == 'N':
self.direction = 'E' self.direction = 'E'
elif self.direction == 'S': elif self.direction == 'S':
@ -42,19 +41,20 @@ class Waiter(pygame.sprite.Sprite):
self.direction = 'S' self.direction = 'S'
elif self.direction == 'W': elif self.direction == 'W':
self.direction = 'N' self.direction = 'N'
if event.key == pygame.K_UP: if instruction == 'F':
if self.direction == 'N': if self.direction == 'N':
self.move(0, 1, graphics)
if self.direction == 'S':
self.move(0, -1, graphics) self.move(0, -1, graphics)
if self.direction == 'S':
self.move(0, 1, graphics)
if self.direction == 'E': if self.direction == 'E':
self.move(1, 0, graphics) self.move(1, 0, graphics)
if self.direction == 'W': if self.direction == 'W':
self.move(-1, 0, graphics) self.move(-1, 0, graphics)
print(self.X, self.Y) #print(self.X, self.Y)
# AStar # AStar
def findPath(self, goal): def findPath(self, goal):
# Stworzenie startowego i koncowego wierzcholka # Stworzenie startowego i koncowego wierzcholka
startNode = self.matrix.matrix[self.X][self.Y] startNode = self.matrix.matrix[self.X][self.Y]
goalNode = self.matrix.matrix[goal[0]][goal[1]] goalNode = self.matrix.matrix[goal[0]][goal[1]]
@ -67,17 +67,10 @@ class Waiter(pygame.sprite.Sprite):
while len(openList) > 0: while len(openList) > 0:
openList.sort(key=getTotalCost) openList.sort(key=getTotalCost)
currentNode = openList.pop(0) currentNode = openList.pop(0)
closedList.append(currentNode) closedList.append(currentNode)
print("\nOpenList")
for tile in openList:
print(tile.position, end=" ")
print("\nClosed List")
for tile in closedList:
print(tile.position, end=' ')
# Tutaj odbywac sie bedzie budowanie sciezki gdy algorytm osiagnie cel # Tutaj odbywac sie bedzie budowanie sciezki gdy algorytm osiagnie cel
if currentNode == goalNode: if currentNode == goalNode:
path = [] path = []
@ -88,6 +81,7 @@ class Waiter(pygame.sprite.Sprite):
return path[::-1] return path[::-1]
children = [] children = []
if currentNode.position[0] >= 0: if currentNode.position[0] >= 0:
if currentNode.position[1] + 1 < len(self.matrix.matrix[0]): if currentNode.position[1] + 1 < len(self.matrix.matrix[0]):
if self.matrix.matrix[currentNode.position[0]][currentNode.position[1] + 1].walk_through == 1: if self.matrix.matrix[currentNode.position[0]][currentNode.position[1] + 1].walk_through == 1:
@ -99,54 +93,161 @@ class Waiter(pygame.sprite.Sprite):
self.matrix.matrix[currentNode.position[0]][currentNode.position[1] - 1]) self.matrix.matrix[currentNode.position[0]][currentNode.position[1] - 1])
if currentNode.position[0] + 1 < len(self.matrix.matrix): if currentNode.position[0] + 1 < len(self.matrix.matrix):
if currentNode.position[1] + 1 < len(self.matrix.matrix[0]):
if self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1] + 1].walk_through == 1:
children.append(
self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1] + 1])
if currentNode.position[1] - 1 >= 0:
if self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1] - 1].walk_through == 1:
children.append(
self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1] - 1])
if currentNode.position[1] >= 0: if currentNode.position[1] >= 0:
if self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1]].walk_through == 1: if self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1]].walk_through == 1:
children.append( children.append(
self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1]]) self.matrix.matrix[currentNode.position[0] + 1][currentNode.position[1]])
if currentNode.position[0] - 1 >= 0: if currentNode.position[0] - 1 >= 0:
if currentNode.position[1] + 1 < len(self.matrix.matrix[0]):
if self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1] + 1].walk_through == 1:
children.append(
self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1] + 1])
if currentNode.position[1] - 1 >= 0:
if self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1] - 1].walk_through == 1:
children.append(
self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1] - 1])
if currentNode.position[1] >= 0: if currentNode.position[1] >= 0:
if self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1]].walk_through == 1: if self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1]].walk_through == 1:
children.append( children.append(
self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1]]) self.matrix.matrix[currentNode.position[0] - 1][currentNode.position[1]])
perm = 0
for child in children: for child in children:
#child.parent = currentNode
for closedChild in closedList: for closedChild in closedList:
if child == closedChild: if child == closedChild:
perm = 1
break
if perm == 1:
perm = 0
continue continue
child.parent = currentNode
child.startCost = currentNode.startCost + 1 child.startCost = currentNode.startCost + 1
child.heuristic = ((child.position[0] - goalNode.position[0]) ** 2) + ( child.heuristic = abs(
(child.position[1] - goalNode.position[1]) ** 2) goal[0] - child.position[0]) + abs(goal[1] - child.position[1])
child.totalCost = child.startCost + child.heuristic child.totalCost = child.startCost + child.heuristic
for openNode in openList: for openNode in openList:
if child == openNode and child.startCost > openNode.startCost:
if child == openNode and child.startCost >= openNode.startCost: perm = 1
continue
if perm == 1:
perm = 0
continue continue
#child.parent = currentNode
openList.append(child) openList.append(child)
def translatePath(self, path):
currentPosition = (self.X, self.Y)
currentDirection = self.direction
output = ''
for node in path:
if currentDirection == 'N':
if currentPosition[0] == node[0]:
if currentPosition[1] + 1 == node[1]:
output += 'LLF'
currentDirection = 'S'
if currentPosition[1] - 1 == node[1]:
output += 'F'
elif currentPosition[1] == node[1]:
if currentPosition[0] + 1 == node[0]:
output += 'RF'
currentDirection = 'E'
if currentPosition[0] - 1 == node[0]:
output += 'LF'
currentDirection = 'W'
elif currentDirection == 'E':
if currentPosition[0] == node[0]:
if currentPosition[1] + 1 == node[1]:
output += 'RF'
currentDirection = 'S'
if currentPosition[1] - 1 == node[1]:
output += 'LF'
currentDirection = 'N'
elif currentPosition[1] == node[1]:
if currentPosition[0] + 1 == node[0]:
output += 'F'
if currentPosition[0] - 1 == node[0]:
output += 'LLF'
currentDirection = 'W'
elif currentDirection == 'S':
if currentPosition[0] == node[0]:
if currentPosition[1] + 1 == node[1]:
output += 'F'
if currentPosition[1] - 1 == node[1]:
output += 'LLF'
currentDirection = 'N'
elif currentPosition[1] == node[1]:
if currentPosition[0] + 1 == node[0]:
output += 'LF'
currentDirection = 'E'
if currentPosition[0] - 1 == node[0]:
output += 'RF'
currentDirection = 'W'
elif currentDirection == 'W':
if currentPosition[0] == node[0]:
if currentPosition[1] + 1 == node[1]:
output += 'LF'
currentDirection = 'S'
if currentPosition[1] - 1 == node[1]:
output += 'RF'
currentDirection = 'N'
elif currentPosition[1] == node[1]:
if currentPosition[0] + 1 == node[0]:
output += 'LLF'
currentDirection = 'E'
if currentPosition[0] - 1 == node[0]:
output += 'F'
currentPosition = node
return output
def travel(self, goal, graphics):
translatedPath = self.translatePath([goal])
print('{} - {} - {}'.format(self.direction, goal, translatedPath))
for character in translatedPath:
if character == 'F':
graphics.clear(self.X, self.Y)
self.update('F', graphics)
graphics.update(self.X, self.Y)
if character == 'R':
#graphics.clear(self.X, self.Y)
self.update('R', graphics)
#graphics.update(self.X, self.Y)
if character == 'L':
#graphics.clear(self.X, self.Y)
self.update('L', graphics)
#graphics.update(self.X, self.Y)
def getTotalCost(tile): def getTotalCost(tile):
return tile.totalCost return tile.totalCost