Roland

Results 25 issues of Roland

We can have, for grid maps, tiles than can only be crossed in specific directions. For instance, it can only be entered north, south, etc. - The first approach is...

new feature

Provide methods to the Grid interface to define custom iteration order/schema. Customizable aspects expected: - Order on Y axis (north to south, or south to north) - Order on X...

enhancement

I should consider including weighting for A-star based search algorithms when summing G-cost and H-cost to compose F-cost. ``` lua local function weightedF(G, H, alpha) alpha = alpha or 0.5...

new feature

_Jump Point Search_ was not actually devised for orthogonal search on uniform cost grids. It actually takes advantage of heading diagonally (over straight directions) to reach a goal. In the...

enhancement

As the issue title implies, having the possibility to return a path having a given maximum length. That would be useful for units having a maximum stepping ability, or units...

enhancement

In case the destination is not reachable, `getPath()` fails and returns nil. It would be interesting to get an incomplete path passing an extra-arg. Actually, such a path can be...

enhancement

As the extra features is about to grow, and cannot be applied straight to all search algorithms, it might be interesting to separate pathfinders. Basically, there can be a top...

enhancement

Hi, I am maintaining a utility belt library for functional programming using the [Lua](www.lua.org) programming language. The library is called [Moses](https://github.com/Yonaba/Moses). Thought it would be a nice addition to this...

Hi, On the welcome page of [luarocks.org](https://luarocks.org/), there a graph which displays daily modules stats. Which is awesome. Would it be possible to add the ability to see weekly, monthly...

Hi @leafo , On a user page, (let us use [yours](https://luarocks.org/modules/leafo) as an example) I think it would be nice to be able to sort the list of modules by...