Yonaba / Jumper

Fast, lightweight and easy-to-use pathfinding library for grid-based games
http://yonaba.github.io/Jumper
MIT License
611 stars 123 forks source link

PointGraph #11

Open Yonaba opened 11 years ago

Yonaba commented 11 years ago

As of now, Jumper only features grid type as an input data structure for pathfinding. PointGraph maps can also be featured, as all the search algorithms implemented (but Jump Point Search) operates on graphs, and are not bound to explicit grid maps. That would certain extend the possibilities of usage of Jumper.

Yonaba commented 10 years ago

This will certainly require to reshape the actual Grid class. What is planned, as of now, is to design a Graph class, from which a pointGraph and a Grid class will be derived.