Just a chemical engineering student who is intrested field of computer science. I noticed that not many pathfinding visualization programs are written in VBA so it would be fun to create one. Just a personal project of mine, code here may be unoptimized, hope you enjoy playing around with the program.
- Interactive user interface
- Unlimited map area (Excel maximum is 1,048,576 rows by 16,384 columns)
- Wide range of maze editing tools:
- Eraser - Allows user to remove selected obstacles/ start point/ end point placed down on the cells.
- Place obstacle - Places an obstacle on selected cells that obstructs the path (cannot be explored).
- Place start point - Places a start point on a selected cell.
- Place end point - Places an end point on a selected cell.
- Different search algorithms:
- Breadth First Search - An alogrithm that finds the shortest path from the start to end.
- Depth First Search - An algorithm that finds a path from the start to end point.
- Greedy Best First Search - A fast algorithm that finds a path from the start to end point.
- A Star Search - A fast algorithm that finds the shortest path from the start to end point.
- Random maze generator
- Animation settings
- Show explored cells - A setting that can be toggled on or off depending if the user wants to see the cells explored by the algorithms.
- Checkbox to show actual path - A setting that can be toggled on or off depending if the user wants to see the actual path found by the algorithm.
- Show explored cells delay time - A setting that user can change the value of, affecting the animation speed of the explored cells appearing.
- Show actual path delay time - A setting that user can change the value of, affecting the animation speed of the actual path appearing.
- Breath First Search, Depth First Search and A* Search algorithms used are in Python code translated to VBA and modified from: https://www.linkedin.com/learning/python-data-structures-and-algorithms/python-data-structures-and-algorithms-in-action?u=76881922
- Code for random maze generator is taken and modified from: https://github.com/stelios7/ExcelPathfinding
- Project is inspired from: https://www.youtube.com/watch?v=1umm4PvD8n0