RushTheOne / A-star

C++ implementation of the A* path-finding algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A* algorithm

Implementation of the A* path-finding algorithm with C++ (C++14).

Usage example

#include "AStar.hpp"
#include <iostream>

int main()
{
    pf::AStar astar;

    astar.loadMap("maps/map01.txt");
    astar.setDiagonalMovement(true);
    auto path = astar.findPath(pf::Vec2i(0, 0), pf::Vec2i(10, 7), pf::heuristic::euclidean, 10);

    for (const auto& coord : path) 
    {
        std::cout << coord.x << "," << coord.y << "\n";
    }

    system("pause");
    return 0;
}

Resources

License

This project is licensed under the MIT License, see LICENSE for more information.

About

C++ implementation of the A* path-finding algorithm

License:MIT License


Languages

Language:C++ 100.0%