aboutsummaryrefslogtreecommitdiff
path: root/path.c
Commit message (Expand)AuthorAgeFilesLines
* Update a TODOKirill Petrashin2026-04-111-1/+1
* Fix automatic mode not refreshing the screenKirill Petrashin2026-04-111-1/+1
* Add macro to print a messageKirill Petrashin2026-04-111-1/+1
* Fix cursor location text position in anim()Kirill Petrashin2026-04-051-1/+1
* Make the cost_so_far array dynamic to avoid SEGFAULTsKirill Petrashin2026-04-031-4/+34
* Make map offsets globalKirill Petrashin2026-04-031-8/+6
* Add automatic mode to anim()Kirill Petrashin2026-03-301-0/+6
* Add a path_length() functionKirill Petrashin2026-03-291-0/+16
* Implement A*, finallyKirill Petrashin2026-03-291-9/+95
* Implement Dijkstra's algorithmKirill Petrashin2026-03-291-5/+15
* Make manhattan_distance() use COST_ORTHOGONALKirill Petrashin2026-03-291-4/+5
* Allow resizing the map + some other stuffKirill Petrashin2026-03-281-7/+35
* Free the path when we return NULL instead of itKirill Petrashin2026-03-281-0/+2
* Improve anim() and make it toggleable with a keybindKirill Petrashin2026-03-281-7/+24
* Start working in DijkstraKirill Petrashin2026-03-271-5/+41
* Combine two functions into one in path.{c,h}Kirill Petrashin2026-03-271-46/+12
* Add cost_array to neighbours_4dirKirill Petrashin2026-03-271-1/+1
* Add ppq_insert() return codes + fix breadth_first_search_4dir()Kirill Petrashin2026-03-261-3/+4
* Fix memory leaksKirill Petrashin2026-03-261-0/+10
* Add cost_array into neighbours_8dir()Kirill Petrashin2026-03-261-1/+1
* Implement 8dir breadth-first-search and some other stuffKirill Petrashin2026-03-221-1/+58
* Add ability to choose maps via args + create more maps + don't insert element...Kirill Petrashin2026-03-221-3/+3
* Add rendering of visited tilesKirill Petrashin2026-03-221-3/+6
* Implement breadth-first-search + fix the priority queue + some other stuffKirill Petrashin2026-03-211-0/+78