| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Compile .c files into .o filesHEADmaster | Kirill Petrashin | 2026-07-13 | 2 | -4/+15 |
| | | |||||
| * | Fix error() and todo() macros | Kirill Petrashin | 2026-06-18 | 1 | -2/+2 |
| | | |||||
| * | Make default maze fit on 80x24 terminals | Kirill Petrashin | 2026-06-12 | 1 | -2/+2 |
| | | |||||
| * | Use EXIT_FAILURE | Kirill Petrashin | 2026-06-12 | 2 | -4/+4 |
| | | |||||
| * | Use EXIT_SUCCESS | Kirill Petrashin | 2026-06-12 | 1 | -2/+2 |
| | | |||||
| * | Make `clean` target phony | Kirill Petrashin | 2026-05-16 | 1 | -0/+1 |
| | | |||||
| * | Fix error messages | Kirill Petrashin | 2026-05-05 | 1 | -2/+2 |
| | | |||||
| * | Comments | Kirill Petrashin | 2026-05-03 | 3 | -15/+24 |
| | | |||||
| * | Fix return type for ps_push() | Kirill Petrashin | 2026-05-03 | 2 | -4/+4 |
| | | |||||
| * | Remove unneeded include | Kirill Petrashin | 2026-05-03 | 1 | -1/+0 |
| | | |||||
| * | Fix some memory leaks | Kirill Petrashin | 2026-05-03 | 1 | -2/+8 |
| | | |||||
| * | Add an empty 100x100 map | Kirill Petrashin | 2026-05-03 | 1 | -0/+102 |
| | | |||||
| * | Print algo name when printing time | Kirill Petrashin | 2026-05-03 | 5 | -6/+14 |
| | | |||||
| * | Add a map that shows A* being slower than Dijkstra's at times | Kirill Petrashin | 2026-05-03 | 1 | -0/+102 |
| | | |||||
| * | Fix map resizing | Kirill Petrashin | 2026-05-03 | 1 | -7/+8 |
| | | |||||
| * | Do keybinds through defines + other shit | Kirill Petrashin | 2026-05-03 | 4 | -84/+135 |
| | | |||||
| * | One more unneeded include | Kirill Petrashin | 2026-05-03 | 1 | -1/+0 |
| | | |||||
| * | Add some comments | Kirill Petrashin | 2026-05-02 | 1 | -4/+5 |
| | | |||||
| * | Move to clang | Kirill Petrashin | 2026-05-02 | 1 | -1/+1 |
| | | |||||
| * | Update .gitignore | Kirill Petrashin | 2026-05-02 | 1 | -0/+10 |
| | | |||||
| * | Remove unneeded includes | Kirill Petrashin | 2026-05-02 | 4 | -7/+2 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' | Kirill Petrashin | 2026-05-02 | 1 | -1/+0 |
| |\ | |||||
| | * | Remove a FIXME | Kirill Petrashin | 2026-04-27 | 1 | -1/+0 |
| | | | |||||
| * | | Remove unneeded commented out code | Kirill Petrashin | 2026-05-02 | 1 | -2/+0 |
| |/ | |||||
| * | Fix formatting | Kirill Petrashin | 2026-04-24 | 1 | -4/+2 |
| | | |||||
| * | Do fclose() where we do fopen() | Kirill Petrashin | 2026-04-24 | 1 | -0/+8 |
| | | |||||
| * | Add ability to clear the map in map_editor() | Kirill Petrashin | 2026-04-24 | 1 | -0/+11 |
| | | |||||
| * | Add wraparound keybinding in map_editor() | Kirill Petrashin | 2026-04-24 | 1 | -0/+15 |
| | | |||||
| * | Remove a complete task | Kirill Petrashin | 2026-04-24 | 1 | -1/+0 |
| | | |||||
| * | Add option to not pathfind on start | Kirill Petrashin | 2026-04-24 | 1 | -2/+6 |
| | | |||||
| * | Remove an unnecessary line of code | Kirill Petrashin | 2026-04-24 | 1 | -2/+1 |
| | | |||||
| * | Avoid printing a newline when enabling/disabling mouse movement reporting | Kirill Petrashin | 2026-04-24 | 1 | -2/+2 |
| | | |||||
| * | Allow switching amount of directions with a keybind | Kirill Petrashin | 2026-04-23 | 2 | -0/+20 |
| | | |||||
| * | Make path reversable in map_editor() | Kirill Petrashin | 2026-04-23 | 2 | -11/+19 |
| | | |||||
| * | Make wraparound toggleable with a keybind | Kirill Petrashin | 2026-04-23 | 4 | -4/+28 |
| | | |||||
| * | Implement 8dir wraparound | Kirill Petrashin | 2026-04-23 | 1 | -2/+69 |
| | | |||||
| * | Implement 4dir wraparound | Kirill Petrashin | 2026-04-23 | 2 | -0/+54 |
| | | |||||
| * | Clean up path_reverse() | Kirill Petrashin | 2026-04-22 | 1 | -6/+9 |
| | | |||||
| * | Add a path_reverse() function | Kirill Petrashin | 2026-04-22 | 3 | -0/+31 |
| | | |||||
| * | Document keybindings, add MMB to move in map_editor(), add 'A' keybind to ↵ | Kirill Petrashin | 2026-04-22 | 2 | -4/+96 |
| | | | | | force anim | ||||
| * | Remove path_length() as it's unused and is obsolete | Kirill Petrashin | 2026-04-21 | 2 | -18/+0 |
| | | |||||
| * | Remove a TODO | Kirill Petrashin | 2026-04-21 | 1 | -1/+0 |
| | | |||||
| * | Improve diagonal_distance(), dramatically enhancing performance | Kirill Petrashin | 2026-04-21 | 1 | -14/+12 |
| | | |||||
| * | Remove outdated comment | Kirill Petrashin | 2026-04-21 | 1 | -1/+0 |
| | | |||||
| * | Implement holding mwheel to drag map around | Kirill Petrashin | 2026-04-18 | 1 | -0/+27 |
| | | |||||
| * | Fix mouse reporting being left on on error | Kirill Petrashin | 2026-04-18 | 1 | -2/+2 |
| | | |||||
| * | Make map_editor() return the mouesmask back to normal | Kirill Petrashin | 2026-04-18 | 1 | -1/+3 |
| | | |||||
| * | Remove a leftover debugging printf() | Kirill Petrashin | 2026-04-18 | 1 | -1/+0 |
| | | |||||
| * | Add an explicit return in ppq_remove() | Kirill Petrashin | 2026-04-18 | 1 | -0/+2 |
| | | |||||
| * | Update a comment | Kirill Petrashin | 2026-04-17 | 1 | -2/+1 |
| | | |||||
