Ejemplo n.º 1
0
 //添加节点
 void AstarAddNode(AstarListNode head, AstarListNode node)
 {
     while (head.next != null)
     {
         head = head.next;
     }
     head.next = node;
 }
Ejemplo n.º 2
0
    //获得成本最小的节点
    AstarListNode AstarGetMinCostList(AstarList astar)
    {
        AstarListNode min     = astar.openHead.next;
        AstarListNode current = min.next;

        while (current != null)
        {
            if (current.h < min.h)
            {
                min = current;
            }
            current = current.next;
        }
        return(min);
    }
Ejemplo n.º 3
0
 void AstarNodeInit(AstarListNode current, AstarListNode father, int x, int y, int endX, int endY)
 {
     current.x      = x;
     current.y      = y;
     current.father = father;
     current.next   = null;
     if (father != null)
     {
         current.f = father.f + 1;
     }
     else
     {
         current.f = 0;
     }
     current.g = Math.Abs(endX - x) + Math.Abs(endY - y);
     current.h = current.f + current.g;
 }
Ejemplo n.º 4
0
    //检查(x,y)是否在列表中
    bool AstarCheckNodeInList(int x, int y, AstarListNode head)
    {
        bool result = false;

        head = head.next;
        while (head != null)
        {
            if (head.x == x && head.y == y)
            {
                result = true;
                break;
            }
            else
            {
                head = head.next;
            }
        }
        return(result);
    }
Ejemplo n.º 5
0
    //删除节点
    void AstarRemoveNode(AstarListNode head, AstarListNode node)
    {
        AstarListNode current = head;

        head = head.next;
        while (head != null)
        {
            if (head == node)
            {
                current.next = head.next;
                head.next    = null;
                break;
            }
            else
            {
                current = head;
                head    = head.next;
            }
        }
    }
Ejemplo n.º 6
0
    public bool AStarSearch(List <List <int> > map, int startX, int startY, int endX, int endY)
    {
        astarPathCount = 0;
        astarPathList.Clear();
        _map    = map;
        _startX = startX;
        _startY = startY;
        _endX   = endX;
        _endY   = endY;

        if (AstarIsBlock(endX, endY))
        {
            return(false);
        }
        int[] offsetX = new int[] { 0, 0, -1, 1 };
        int[] offsetY = new int[] { 1, -1, 0, 0 };
//		int[] offsetX = new int[]{0, 0, -1, 1, -1, -1, 1, 1};
//		int[] offsetY = new int[]{1, -1, 0, 0, 1, -1, 1, -1};
        AstarList astar = new AstarList();

        astar.openHead   = new AstarListNode();
        astar.closedHead = new AstarListNode();
        AstarListNode currentNode = null;
        AstarListNode startNode   = new AstarListNode();

        AstarNodeInit(startNode, null, _startX, _startY, _endX, _endY);
        AstarAddNode(astar.openHead, startNode);

        while (astar.openHead.next != null)
        {
            currentNode = AstarGetMinCostList(astar);
            if (currentNode.x == endX && currentNode.y == endY)
            {
                break;
            }
            else
            {
                AstarAddNode(astar.closedHead, currentNode);
                AstarRemoveNode(astar.openHead, currentNode);
                for (int i = 0; i < 4; i++)
                {
                    int x = currentNode.x + offsetX[i];
                    int y = currentNode.y + offsetY[i];
                    if (x < 0 || x >= _map.Count || y < 0 || y >= _map[0].Count)
                    {
                        continue;
                    }
                    else
                    {
                        if (!AstarCheckNodeInList(x, y, astar.openHead) &&
                            !AstarCheckNodeInList(x, y, astar.closedHead) &&
                            !AstarIsBlock(x, y))
                        {
                            AstarListNode endNode = new AstarListNode();
                            AstarNodeInit(endNode, currentNode, x, y, endX, endY);
                            AstarAddNode(astar.openHead, endNode);
                        }
                    }
                }
            }
        }
        if (astar.openHead.next == null && (currentNode.x != endX || currentNode.y != endY))
        {
            astarPathCount = 0;
        }
        else
        {
            while (currentNode != null)
            {
                Vector2i point = new Vector2i();
                point.x = currentNode.x;
                point.y = currentNode.y;
                //astarPathList.Add(point);
                astarPathList.Insert(0, point);
                currentNode = currentNode.father;
                astarPathCount++;
            }
            return(true);
        }
        return(false);
    }