Codechange: migrate aystar to use YAPF's nodelist infrastructure
This commit is contained in:
+26
-153
@@ -13,69 +13,11 @@
|
||||
* <A HREF='http://en.wikipedia.org/wiki/A-star_search_algorithm'>http://en.wikipedia.org/wiki/A-star_search_algorithm</A>.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Friendly reminder:
|
||||
* Call (AyStar).free() when you are done with Aystar. It reserves a lot of memory
|
||||
* And when not free'd, it can cause system-crashes.
|
||||
* Also remember that when you stop an algorithm before it is finished, your
|
||||
* should call clear() yourself!
|
||||
*/
|
||||
|
||||
#include "../../stdafx.h"
|
||||
#include "../../core/alloc_func.hpp"
|
||||
#include "aystar.h"
|
||||
|
||||
#include "../../safeguards.h"
|
||||
|
||||
/**
|
||||
* This looks in the hash whether a node exists in the closed list.
|
||||
* @param node Node to search.
|
||||
* @return The #PathNode if it is available, else \c nullptr
|
||||
*/
|
||||
PathNode *AyStar::ClosedListIsInList(const AyStarNode *node)
|
||||
{
|
||||
return (PathNode*)this->closedlist_hash.Get(node->tile, node->direction);
|
||||
}
|
||||
|
||||
/**
|
||||
* This adds a node to the closed list.
|
||||
* It makes a copy of the data.
|
||||
* @param node Node to add to the closed list.
|
||||
*/
|
||||
void AyStar::ClosedListAdd(const PathNode *node)
|
||||
{
|
||||
/* Add a node to the ClosedList */
|
||||
PathNode *new_node = MallocT<PathNode>(1);
|
||||
*new_node = *node;
|
||||
this->closedlist_hash.Set(node->node.tile, node->node.direction, new_node);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check whether a node is in the open list.
|
||||
* @param node Node to search.
|
||||
* @return If the node is available, it is returned, else \c nullptr is returned.
|
||||
*/
|
||||
OpenListNode *AyStar::OpenListIsInList(const AyStarNode *node)
|
||||
{
|
||||
return (OpenListNode*)this->openlist_hash.Get(node->tile, node->direction);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the best node from the open list.
|
||||
* It deletes the returned node from the open list.
|
||||
* @returns the best node available, or \c nullptr of none is found.
|
||||
*/
|
||||
OpenListNode *AyStar::OpenListPop()
|
||||
{
|
||||
/* Return the item the Queue returns.. the best next OpenList item. */
|
||||
OpenListNode *res = (OpenListNode*)this->openlist_queue.Pop();
|
||||
if (res != nullptr) {
|
||||
this->openlist_hash.DeleteValue(res->path.node.tile, res->path.node.direction);
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a node to the open list.
|
||||
* It makes a copy of node, and puts the pointer of parent in the struct.
|
||||
@@ -83,61 +25,55 @@ OpenListNode *AyStar::OpenListPop()
|
||||
void AyStar::OpenListAdd(PathNode *parent, const AyStarNode *node, int f, int g)
|
||||
{
|
||||
/* Add a new Node to the OpenList */
|
||||
OpenListNode *new_node = MallocT<OpenListNode>(1);
|
||||
new_node->g = g;
|
||||
new_node->path.parent = parent;
|
||||
new_node->path.node = *node;
|
||||
this->openlist_hash.Set(node->tile, node->direction, new_node);
|
||||
|
||||
/* Add it to the queue */
|
||||
this->openlist_queue.Push(new_node, f);
|
||||
PathNode *new_node = this->nodes.CreateNewNode();
|
||||
new_node->Set(parent, node->m_tile, node->m_td, true);
|
||||
new_node->m_estimate = f;
|
||||
new_node->m_cost = g;
|
||||
this->nodes.InsertOpenNode(*new_node);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks one tile and calculate its f-value
|
||||
*/
|
||||
void AyStar::CheckTile(AyStarNode *current, OpenListNode *parent)
|
||||
void AyStar::CheckTile(AyStarNode *current, PathNode *parent)
|
||||
{
|
||||
int new_f, new_g, new_h;
|
||||
PathNode *closedlist_parent;
|
||||
OpenListNode *check;
|
||||
|
||||
/* Check the new node against the ClosedList */
|
||||
if (this->ClosedListIsInList(current) != nullptr) return;
|
||||
if (this->nodes.FindClosedNode(*current) != nullptr) return;
|
||||
|
||||
/* Calculate the G-value for this node */
|
||||
new_g = this->CalculateG(this, current, parent);
|
||||
int new_g = this->CalculateG(this, current, parent);
|
||||
/* If the value was INVALID_NODE, we don't do anything with this node */
|
||||
if (new_g == AYSTAR_INVALID_NODE) return;
|
||||
|
||||
/* There should not be given any other error-code.. */
|
||||
assert(new_g >= 0);
|
||||
/* Add the parent g-value to the new g-value */
|
||||
new_g += parent->g;
|
||||
if (this->max_path_cost != 0 && (uint)new_g > this->max_path_cost) return;
|
||||
new_g += parent->m_cost;
|
||||
if (this->max_path_cost != 0 && new_g > this->max_path_cost) return;
|
||||
|
||||
/* Calculate the h-value */
|
||||
new_h = this->CalculateH(this, current, parent);
|
||||
int new_h = this->CalculateH(this, current, parent);
|
||||
/* There should not be given any error-code.. */
|
||||
assert(new_h >= 0);
|
||||
|
||||
/* The f-value if g + h */
|
||||
new_f = new_g + new_h;
|
||||
int new_f = new_g + new_h;
|
||||
|
||||
/* Get the pointer to the parent in the ClosedList (the current one is to a copy of the one in the OpenList) */
|
||||
closedlist_parent = this->ClosedListIsInList(&parent->path.node);
|
||||
PathNode *closedlist_parent = this->nodes.FindClosedNode(parent->m_key);
|
||||
|
||||
/* Check if this item is already in the OpenList */
|
||||
check = this->OpenListIsInList(current);
|
||||
PathNode *check = this->nodes.FindOpenNode(*current);
|
||||
if (check != nullptr) {
|
||||
/* Yes, check if this g value is lower.. */
|
||||
if (new_g > check->g) return;
|
||||
this->openlist_queue.Delete(check, 0);
|
||||
if (new_g > check->m_cost) return;
|
||||
this->nodes.PopOpenNode(check->m_key);
|
||||
/* It is lower, so change it to this item */
|
||||
check->g = new_g;
|
||||
check->path.parent = closedlist_parent;
|
||||
check->m_estimate = new_f;
|
||||
check->m_cost = new_g;
|
||||
check->m_parent = closedlist_parent;
|
||||
/* Re-add it in the openlist_queue. */
|
||||
this->openlist_queue.Push(check, new_f);
|
||||
this->nodes.InsertOpenNode(*check);
|
||||
} else {
|
||||
/* A new node, add it to the OpenList */
|
||||
this->OpenListAdd(closedlist_parent, current, new_f, new_g);
|
||||
@@ -155,38 +91,32 @@ void AyStar::CheckTile(AyStarNode *current, OpenListNode *parent)
|
||||
*/
|
||||
int AyStar::Loop()
|
||||
{
|
||||
int i;
|
||||
|
||||
/* Get the best node from OpenList */
|
||||
OpenListNode *current = this->OpenListPop();
|
||||
PathNode *current = this->nodes.PopBestOpenNode();
|
||||
/* If empty, drop an error */
|
||||
if (current == nullptr) return AYSTAR_EMPTY_OPENLIST;
|
||||
|
||||
/* Check for end node and if found, return that code */
|
||||
if (this->EndNodeCheck(this, current) == AYSTAR_FOUND_END_NODE && (¤t->path)->parent != nullptr) {
|
||||
if (this->EndNodeCheck(this, current) == AYSTAR_FOUND_END_NODE && current->m_parent != nullptr) {
|
||||
if (this->FoundEndNode != nullptr) {
|
||||
this->FoundEndNode(this, current);
|
||||
}
|
||||
free(current);
|
||||
return AYSTAR_FOUND_END_NODE;
|
||||
}
|
||||
|
||||
/* Add the node to the ClosedList */
|
||||
this->ClosedListAdd(¤t->path);
|
||||
this->nodes.InsertClosedNode(*current);
|
||||
|
||||
/* Load the neighbours */
|
||||
this->GetNeighbours(this, current);
|
||||
|
||||
/* Go through all neighbours */
|
||||
for (i = 0; i < this->num_neighbours; i++) {
|
||||
for (int i = 0; i < this->num_neighbours; i++) {
|
||||
/* Check and add them to the OpenList if needed */
|
||||
this->CheckTile(&this->neighbours[i], current);
|
||||
}
|
||||
|
||||
/* Free the node */
|
||||
free(current);
|
||||
|
||||
if (this->max_search_nodes != 0 && this->closedlist_hash.GetSize() >= this->max_search_nodes) {
|
||||
if (this->max_search_nodes != 0 && this->nodes.ClosedCount() >= this->max_search_nodes) {
|
||||
/* We've expanded enough nodes */
|
||||
return AYSTAR_LIMIT_REACHED;
|
||||
} else {
|
||||
@@ -195,39 +125,6 @@ int AyStar::Loop()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function frees the memory it allocated
|
||||
*/
|
||||
void AyStar::Free()
|
||||
{
|
||||
this->openlist_queue.Free(false);
|
||||
/* 2nd argument above is false, below is true, to free the values only
|
||||
* once */
|
||||
this->openlist_hash.Delete(true);
|
||||
this->closedlist_hash.Delete(true);
|
||||
#ifdef AYSTAR_DEBUG
|
||||
Debug(misc, 0, "[AyStar] Memory free'd");
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
* This function make the memory go back to zero.
|
||||
* This function should be called when you are using the same instance again.
|
||||
*/
|
||||
void AyStar::Clear()
|
||||
{
|
||||
/* Clean the Queue, but not the elements within. That will be done by
|
||||
* the hash. */
|
||||
this->openlist_queue.Clear(false);
|
||||
/* Clean the hashes */
|
||||
this->openlist_hash.Clear(true);
|
||||
this->closedlist_hash.Clear(true);
|
||||
|
||||
#ifdef AYSTAR_DEBUG
|
||||
Debug(misc, 0, "[AyStar] Cleared AyStar");
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the function you call to run AyStar.
|
||||
* @return Possible values:
|
||||
@@ -251,10 +148,6 @@ int AyStar::Main()
|
||||
default: break;
|
||||
}
|
||||
#endif
|
||||
if (r != AYSTAR_STILL_BUSY) {
|
||||
/* We're done, clean up */
|
||||
this->Clear();
|
||||
}
|
||||
|
||||
switch (r) {
|
||||
case AYSTAR_FOUND_END_NODE: return AYSTAR_FOUND_END_NODE;
|
||||
@@ -272,7 +165,7 @@ int AyStar::Main()
|
||||
* @param start_node Node to start with.
|
||||
* @param g the cost for starting with this node.
|
||||
*/
|
||||
void AyStar::AddStartNode(AyStarNode *start_node, uint g)
|
||||
void AyStar::AddStartNode(AyStarNode *start_node, int g)
|
||||
{
|
||||
#ifdef AYSTAR_DEBUG
|
||||
Debug(misc, 0, "[AyStar] Starting A* Algorithm from node ({}, {}, {})\n",
|
||||
@@ -280,23 +173,3 @@ void AyStar::AddStartNode(AyStarNode *start_node, uint g)
|
||||
#endif
|
||||
this->OpenListAdd(nullptr, start_node, 0, g);
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize an #AyStar. You should fill all appropriate fields before
|
||||
* calling #Init (see the declaration of #AyStar for which fields are internal).
|
||||
*/
|
||||
void AyStar::Init(Hash_HashProc hash, uint num_buckets)
|
||||
{
|
||||
/* Allocated the Hash for the OpenList and ClosedList */
|
||||
this->openlist_hash.Init(hash, num_buckets);
|
||||
this->closedlist_hash.Init(hash, num_buckets);
|
||||
|
||||
/* Set up our sorting queue
|
||||
* BinaryHeap allocates a block of 1024 nodes
|
||||
* When that one gets full it reserves another one, till this number
|
||||
* That is why it can stay this high */
|
||||
this->openlist_queue.Init(102400);
|
||||
|
||||
/* Set a reasonable default limit */
|
||||
this->max_search_nodes = AYSTAR_DEF_MAX_SEARCH_NODES;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user