56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
import heapq
|
|
|
|
|
|
def heurystyka(a, b):
|
|
return abs((b[0] - a[0])) + abs((b[1] - a[1]))
|
|
|
|
|
|
def stepcost(obiekty, b):
|
|
cost = 1
|
|
if obiekty["plansza"][b[0], b[1]].jestDomem is True:
|
|
cost += 2
|
|
if obiekty["plansza"][b[0], b[1]].jestWysypiskiem is True:
|
|
cost += 1
|
|
if obiekty["plansza"][b[0], b[1]].jestKontenerem is True:
|
|
cost += 2
|
|
return cost
|
|
|
|
|
|
def astar(obiekty, start, cel):
|
|
sasiedzi = [(0, 1), (0, -1), (1, 0), (-1, 0)]
|
|
close_set = set()
|
|
came_from = {}
|
|
hscore = {start: heurystyka(start, cel)}
|
|
gscore = {start: 0}
|
|
fscore = {start: heurystyka(start, cel)}
|
|
oheap = []
|
|
heapq.heappush(oheap, (fscore[start], start))
|
|
while oheap:
|
|
current = heapq.heappop(oheap)[1]
|
|
if current == cel:
|
|
data = []
|
|
while current in came_from:
|
|
data.append(current)
|
|
current = came_from[current]
|
|
return data[::-1]
|
|
close_set.add(current)
|
|
for i, j in sasiedzi:
|
|
sasiad = current[0] + i, current[1] + j
|
|
|
|
if 14 < sasiad[0] or sasiad[0] < 0:
|
|
continue
|
|
elif 14 < sasiad[1] or sasiad[1] < 0:
|
|
continue
|
|
elif 6 <= sasiad[0] <= 7 and 10 <= sasiad[1] <= 11:
|
|
continue
|
|
tentative_h_score = heurystyka(sasiad, cel) + stepcost(obiekty, sasiad)
|
|
|
|
if sasiad in [i[1] for i in oheap] and tentative_h_score < hscore.get(current, 0):
|
|
continue
|
|
elif sasiad not in close_set and sasiad not in [i[1] for i in oheap]:
|
|
came_from[sasiad] = current
|
|
hscore[sasiad] = tentative_h_score
|
|
fscore[sasiad] = tentative_h_score + gscore[current]
|
|
gscore[sasiad] = gscore[current] + heurystyka(current, sasiad)
|
|
heapq.heappush(oheap, (fscore[sasiad], sasiad))
|
|
return False |