https://github.com/kikito/pulsar.lua
A-star algorithm implementation in Lua
https://github.com/kikito/pulsar.lua
Last synced: 6 months ago
JSON representation
A-star algorithm implementation in Lua
- Host: GitHub
- URL: https://github.com/kikito/pulsar.lua
- Owner: kikito
- License: mit
- Created: 2011-11-06T00:23:28.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-02-18T22:09:40.000Z (over 13 years ago)
- Last Synced: 2025-04-23T12:58:27.854Z (6 months ago)
- Language: Lua
- Homepage:
- Size: 211 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
h1. pulsar.lua
A generic a-star implementation for Lua.
h1. Usage
TBD
h1. Installation
Just copy the pulsar.lua file wherever you want it (for example on a lib/ folder). Then write this in any Lua file where you want to use it:
require 'pulsar'The @package.path@ variable must be configured so that the folder in which pulsar.lua is copied is available, of course.
Please make sure that you read the license, too (for your convenience it's now included at the beginning of the pulsar.lua file).
h1. Specs
This project uses "telescope":https://github.com/norman/telescope for its specs. If you want to run the specs, you will have to install telescope first. Then just execute the following from the root inspect folder:
tsc -f spec/*.lua