Initial Dijkstra algorithm for the map, but doesn't quite work right. The walls in the wall_map are not accounted for in the algorithm.

This commit is contained in:
Zed A. Shaw 2024-09-26 01:22:25 -04:00
parent d7b1cf0bf9
commit 4d748d1f48
5 changed files with 143 additions and 1 deletions

View file

@ -14,14 +14,17 @@ dependencies = [catch2, fmt,
runtests = executable('runtests', [
'dbc.cpp',
'map.cpp',
'tests/fsm.cpp',
'tests/dbc.cpp',
'tests/map.cpp',
],
dependencies: dependencies)
roguish = executable('roguish', [
'dbc.cpp',
'main.cpp'
'main.cpp',
'map.cpp',
],
dependencies: dependencies)