It returns the values (21, 2, 0, -1, -1 etc), when it should actually only return the origin and the target, as there is a clear path between both. I can't understand what I've done wrong. Note: The code just seems to return the closest node to the origin (pathfinding object), then the target (0), regardless of the location of the origin. Update: The new code (now shown below in place of the other code) just returns the target node as the next in the sequence, regardless of whether that particular path is obstructed or not.
def Dijkstra(NodeDistanceApart, Target):
#finds the shortest path according to node distances
#0 - Initializes values for pathfinding
NodeDistanceFromOrigin = [10000.0] * NUMBEROFNODES
NodeSolved = [False] * NUMBEROFNODES
NodeArcSet = [[-1] * NUMBEROFNODES for x in range(NUMBEROFNODES)]
ClosestNode = 0
PreviousNode = 0
#1 - Sets the origin node (the NPC node) and the target node (the player node) values
NodeSolved[NUMBEROFNODES2] = True
NodeDistanceFromOrigin[NUMBEROFNODES2] = 0
NodeArcSet[NUMBEROFNODES2][0] = NUMBEROFNODES2
#2 - finds the shortest path
while NodeSolved[0] == False:
ClosestNode = 0
for n in range(NUMBEROFNODES):
if NodeSolved[n] == True:#loops through nodes, if a node is solved, find connected nodes
for i in range(NUMBEROFNODES):
if NodeSolved[i] == False and NodeDistanceApart[n][i] < 10000:#loops through nodes, if a node is solved or unconnected, then ignore it
if (NodeDistanceFromOrigin[n] + NodeDistanceApart[n][i]) < NodeDistanceFromOrigin[i]:
NodeDistanceFromOrigin[i] = NodeDistanceFromOrigin[n] + NodeDistanceApart[n][i]
if NodeDistanceFromOrigin[i] < NodeDistanceFromOrigin[ClosestNode]:
ClosestNode = i
PreviousNode = n
NextInArray = -1
n = 0
while NextInArray == -1:#finds the next unused index in the array for a nodes arc set
if NodeArcSet[ClosestNode][n] == -1:
NextInArray = n
n = n + 1
NodeSolved[ClosestNode] = True
NodeArcSet[ClosestNode] = NodeArcSet[PreviousNode]
NodeArcSet[ClosestNode][NextInArray] = ClosestNode
print(NodeArcSet[0])
return NodeArcSet