Interactive map for Golden Axe Warrior screenshots and per-screen notes.
- Install imagemagick:
brew install imagemagick- Open image-grid.html in your browser to view the map.
- Hover over a coordinate badge to see notes for that screen.
- Edit notes.js to add or modify notes.
- Enable or disable tunnels overlay. Add tunnels in notes.js.
- Set Windowed Scale to 1x, 4x or any other even scaling value.
- Take a screenshot in RetroArch. Press F8.
- Run the helper script to add the image:
sh addimg.sh 9,FAdd any notes to notes.js.
The game has tunnels between certain screens. Add any tunnels found to the TUNNELS variable in notes.js.
Map your way through a dungeon with dungeon_map.txt as a template.
I chose not commit dungeon maps.
cat dungeon_map.txt | pbcopyInstall BATS and run the shell suite for addimg.sh:
brew install bats-core
bats test/addimg.batsInstall dependencies and run the Jest suite for image-grid.js:
npm install
npm testThis will execute test/image-grid.test.js using the project's Jest configuration.
Run both the JavaScript and Bash tests in one command:
npm run test:all