Git Product home page Git Product logo

ofxpathfinder's Introduction

ofxPathfinder is an addon for openFrameworks

ofxPathfinder implements the A* pathfinding algorithm very efficiently using STL.

Usage

First, set up the world with an image using setup(). Black pixels are boundaries/walls, and darker pixels are slower than brighter pixels. If you don't have variable terrain cost, just use black and white.

After setting up the world you can make multiple calls to find() with starting and ending x, y coordinates. find() will return when it's done looking for a path, and the result will be stored in the path variable, an ofPolyline object.

Technical Notes

This implementation is optimized for a single world with multiple pathfinding lookups, with some consideration for the case where a world is regularly changing. This code could easily be optimized for a very large, sparse world or one that is constantly changing, by moving the setPosition()/setCost() calls to immediately after the first getTile() inside consider(). This means the positions and costs of the tiles would be computed as necessary rather than assigned during the first setup().

License

This code is open source, under the MIT license.

Reference

Based on ideas from this wonderful A* tutorial. The efficiency of the implementation is heavily dependent on the fact that the STL set is always sorted. For other openFrameworks addons dealing with pathfinding, see ofxPathfinding and ofxAStar.

ofxpathfinder's People

Contributors

kylemcdonald avatar

Stargazers

Daito Manabe avatar

Watchers

Daito Manabe avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.