Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krisajenkins/elm-astar
The A* pathfinding algorithm for Elm.
https://github.com/krisajenkins/elm-astar
Last synced: 2 months ago
JSON representation
The A* pathfinding algorithm for Elm.
- Host: GitHub
- URL: https://github.com/krisajenkins/elm-astar
- Owner: krisajenkins
- License: mit
- Created: 2016-07-17T19:10:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-11T20:05:35.000Z (almost 4 years ago)
- Last Synced: 2024-07-26T06:33:16.058Z (6 months ago)
- Language: Elm
- Size: 47.9 KB
- Stars: 16
- Watchers: 4
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-elm-gamedev - elm-astar - The A* pathfinding algorithm for Elm. (Tools)
README
# A* Pathfinding algorithm for Elm
[![Build Status](https://travis-ci.org/krisajenkins/elm-astar.svg?branch=travis)](https://travis-ci.org/krisajenkins/elm-astar)
Useful for point & click games and actual computer science.
[See this game](http://krisajenkins.github.io/transcodegame/) for a live demo.
## Installation
From your top-level directory - the one with `elm-package.json` in - call:
```
$ elm package install krisajenkins/elm-astar
```## Documentation
[See wikipedia for a discussion of the algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm).
[See the Elm package for full usage docs](http://package.elm-lang.org/packages/krisajenkins/elm-astar/latest).## Building & Testing
```
make
```...will run the whole build and test suite.
## Credits
Thanks to [Iris Ward](https://github.com/adituv) for bugfixes and improvements.
## License
Copyright © 2015-2016 Kris Jenkins
Distributed under the MIT license.