{"id":26158032,"url":"https://github.com/eendroroy/amazeing","last_synced_at":"2025-07-04T03:38:43.448Z","repository":{"id":279036502,"uuid":"937536617","full_name":"eendroroy/amazeing","owner":"eendroroy","description":"Generate and Solve Maze","archived":false,"fork":false,"pushed_at":"2025-05-15T14:16:35.000Z","size":12329,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-15T15:29:15.825Z","etag":null,"topics":["algorithms","maze-generator","maze-solver","simulation"],"latest_commit_sha":null,"homepage":"https://eendroroy.github.io/amazeing/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eendroroy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-23T09:56:26.000Z","updated_at":"2025-05-15T14:17:30.000Z","dependencies_parsed_at":"2025-02-23T11:22:59.670Z","dependency_job_id":"cfa919e5-d1e3-4d46-a12d-b00a9dad65ee","html_url":"https://github.com/eendroroy/amazeing","commit_stats":null,"previous_names":["eendroroy/a-maze-ing"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/eendroroy/amazeing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eendroroy%2Famazeing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eendroroy%2Famazeing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eendroroy%2Famazeing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eendroroy%2Famazeing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eendroroy","download_url":"https://codeload.github.com/eendroroy/amazeing/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eendroroy%2Famazeing/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260919410,"owners_count":23082754,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithms","maze-generator","maze-solver","simulation"],"created_at":"2025-03-11T10:30:56.860Z","updated_at":"2025-07-04T03:38:43.436Z","avatar_url":"https://github.com/eendroroy.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# amazeing\n\nAmazeing is a maze generator/solver application with simulation/visualization.\n\n![title_animation_1.gif](assets/image/title_animation_1.gif)\n![title_animation_2.gif](assets/image/title_animation_2.gif)\n![title_animation_3.gif](assets/image/title_animation_3.gif)\n\n## Installation\n\nClone the repository and build the project:\n\n```sh\ngit clone https://github.com/eendroroy/amazeing.git\ncd amazeing\nmake install # this will install shell-completions\n```\n\n## Usage\n\n\u003e Run `amazeing --help`\n\n### Key/Mouse events\n\n- `Control`+`I` - Save current screen as png in current directory\n- Create\n    - `G`/`\u003cSpace\u003e` - (Re)Generate Maze\n    - Additional action in simulation mode (`--verbose`/`-v`):\n        - `LeftClick` - Add/Remove Source\n        - `Shift`+`LeftClick` - Set Destination\n        - `S`/`\u003cSpace\u003e` - Start Simulation\n        - `\u003cSpace\u003e` - Start/Pause/Resume Simulation\n\n- View - Update mode (`--update`/`-u`):\n    - `LeftClick` - Open path\n    - `Shift`+`LeftClick` - Block Path\n    - `Control`+`S` - Save current maze to the same file\n\n- Solve\n    - `LeftClick` - Select Source\n    - `Shift`+`LeftClick` - Select Destination\n    - Additional action in simulation mode (`--verbose`/`-v`):\n        - `S`/`\u003cSpace\u003e` - Start Simulation\n        - `\u003cSpace\u003e` - Start/Pause/Resume Simulation\n\n## Example Commands\n\n#### Generate - single source\n\n```shell\n# generate 21x21 maze using BFS - single source\namazeing create rectangle --maze bfs_21_21.maze --rows 21 --cols 21 --source 10,10 --procedure bfs --unit-component square\n# short\namazeing C R -m bfs_21_21.maze -_r 21 -c 21 -s 10,10 -p bfs -U square\n\n# simulate - multi source\namazeing create rectangle --rows 21 --cols 21 --source 10,10 --procedure bfs --verbose --fps 25 --unit-component hexagonal\n# short\namazeing C R -_r 21 -c 21 -s 10,10 -p bfs -v -F 25 -U hexagonal\n```\n\n#### Generate - multi source\n\n```shell\n# generate 21x21 maze using BFS - multi source\namazeing create rectangle --maze bfs_21_21.maze --rows 21 --cols 21 --source 7,7 --source 14,14 --procedure bfs --unit-component sqaure\n# short\namazeing C R -m bfs_21_21.maze -_r 21 -c 21 -s 7,7 -s 14,14 -p bfs -U square\n\n# simulate - multi source\namazeing create rectangle --rows 21 --cols 21 --source 7,7 --source 14,14 --procedure bfs --verbose --fps 25 --unit-component hexagonal\n# short\namazeing C R -_r 21 -c 21 -s 7,7 -s 14,14 -p bfs -v -F 25 -U hexagonal\n```\n\n#### Update\n\n```shell\n# update bfs_21_21.maze\namazeing view --maze bfs_21_21.maze --update\n# short\namazeing V -m bfs_21_21.maze -u\n```\n\n#### Solve\n\n```shell\n# solve bfs_21_21.maze\namazeing solve --maze bfs_21_21.maze --procedure bfs\n# short\namazeing S -m bfs_21_21.maze -p bfs\n\n# simulate\namazeing solve --maze bfs_21_21.maze --procedure bfs --verbose --fps 25\n# short\namazeing S -m bfs_21_21.maze -p bfs -v -F 25\n```\n\n## Generate Maze\n\n| Algorithm          | Maze Shape | Unit Shape |                                                                                                  |\n|--------------------|------------|------------|--------------------------------------------------------------------------------------------------|\n| Dfs                | Rectangle  | Hexagon    | [![](https://img.youtube.com/vi/twafvSeVQOs/0.jpg)](https://www.youtube.com/watch?v=twafvSeVQOs) |\n| Dfs (Multi Source) | Rectangle  | Square     | [![](https://img.youtube.com/vi/fL93bHyf6-M/0.jpg)](https://www.youtube.com/watch?v=fL93bHyf6-M) |\n| Dfs                | Rectangle  | Square     | [![](https://img.youtube.com/vi/iyxUARc2T2g/0.jpg)](https://www.youtube.com/watch?v=iyxUARc2T2g) |\n| Bfs                | Rectangle  | Square     | [![](https://img.youtube.com/vi/st8RLTgAuuE/0.jpg)](https://www.youtube.com/watch?v=st8RLTgAuuE) |\n| Dfs                | Triangle   | Hexagon    | [![](https://img.youtube.com/vi/0c4s49G1RAk/0.jpg)](https://www.youtube.com/watch?v=0c4s49G1RAk) |\n| A* (Manhattan)     | Circle     | Hexagon    | [![](https://img.youtube.com/vi/CZanPMEyYZE/0.jpg)](https://www.youtube.com/shorts/CZanPMEyYZE)  |\n\n## Solve Maze\n\n| Algorithm      | Maze Shape | Unit Shape |                                                                                                  |\n|----------------|------------|------------|--------------------------------------------------------------------------------------------------|\n| A* (Octile)    | Rectangle  | Hexagon    | [![](https://img.youtube.com/vi/MRt7X6JGDuo/0.jpg)](https://www.youtube.com/watch?v=MRt7X6JGDuo) |\n| A* (Manhattan) | Rectangle  | Square     | [![](https://img.youtube.com/vi/LkxyikxTX6Y/0.jpg)](https://www.youtube.com/watch?v=LkxyikxTX6Y) |\n| DFS            | Rectangle  | Square     | [![](https://img.youtube.com/vi/9F8XRL7lnIU/0.jpg)](https://www.youtube.com/shorts/9F8XRL7lnIU)  |\n| BFS            | Rectangle  | Square     | [![](https://img.youtube.com/vi/h8q5vi68fz0/0.jpg)](https://www.youtube.com/shorts/h8q5vi68fz0)  |\n\n## Others\n\n[Color scheme generator](assets/scheme-generator.html)\n\n## License\n\nThis project is licensed under the [GNU AGPL-3.0 License](https://www.gnu.org/licenses/agpl-3.0.html).\nSee the [LICENSE](./LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feendroroy%2Famazeing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feendroroy%2Famazeing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feendroroy%2Famazeing/lists"}