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:
parent
d7b1cf0bf9
commit
4d748d1f48
5 changed files with 143 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue