-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Dynamic Maze Solver using BFS #1284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Ujjansh05
wants to merge
27
commits into
AtsushiSakai:master
Choose a base branch
from
Ujjansh05:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+308
−0
Open
Changes from 8 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
6a4edbe
dynamic maze solver
Ujjansh05 b2decb7
updated code
Ujjansh05 66356ae
Merge branch 'AtsushiSakai:master' into master
Ujjansh05 a4a1f6f
Created the doc file
Ujjansh05 d82c5dd
Merge branch 'master' of https://github.com/Ujjansh05/PythonRobotics
Ujjansh05 3849184
Delete docs/modules/5_path_planning/dynamic_bfs_maze_Solver/Dynamic_m…
Ujjansh05 62481b0
update the rst and added the test file
Ujjansh05 7cceb35
update some mathematical equations
Ujjansh05 3198468
fix the single letter words and update the rst
Ujjansh05 90d9df9
Update Dynamic_maze_Solver.rst
Ujjansh05 66d36c6
Update Dynamic_maze_Solver.rst
Ujjansh05 76f96e3
update the image
Ujjansh05 02053bd
Updated files
Ujjansh05 acee7b6
updated link
Ujjansh05 63303e5
update file name
Ujjansh05 71e78ae
updared typo
Ujjansh05 ce51ed3
updated the test file
Ujjansh05 09c0508
update the code link
Ujjansh05 0210a0e
updated the pathplanning file
Ujjansh05 e4cb7d9
update the .rst files
Ujjansh05 e228183
update .rst files
Ujjansh05 4975e29
update the rst files
Ujjansh05 3cc3d22
fix error CI
Ujjansh05 89192f9
fix the rendering status
Ujjansh05 5e765e4
fix gif rendering issues
Ujjansh05 559a404
update file path
Ujjansh05 ccfa6f3
updated the reference point
Ujjansh05 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,191 @@ | ||
| import matplotlib.pyplot as plt | ||
| import matplotlib.colors as mcolors | ||
| import numpy as np | ||
| from collections import deque | ||
| import random | ||
| import matplotlib.animation as animation | ||
|
|
||
|
|
||
| class MazeVisualizer: | ||
| """ | ||
| Dynamic BFS maze-solving visualizer with moving target and evolving obstacles. | ||
| """ | ||
|
|
||
| def __init__(self, maze, start, target): | ||
| self.maze = np.array(maze, dtype=int) | ||
| self.start_pos = start | ||
| self.target_pos = target | ||
| self.solver_pos = start | ||
|
|
||
| self.rows, self.cols = self.maze.shape | ||
| self.step_delay_ms = 200 # Animation frame delay | ||
| self.target_move_interval = 5 # Target moves every N frames | ||
| self.obstacle_change_prob = 0.01 # Random obstacle toggle probability | ||
|
|
||
| # --- State Tracking --- | ||
| self.path = [] | ||
| self.visited_nodes = set() | ||
| self.breadcrumb_trail = [self.solver_pos] | ||
| self.frame_count = 0 | ||
|
|
||
| # --- Plot Setup --- | ||
| self.fig, self.ax = plt.subplots(figsize=(8, 6)) | ||
| plt.style.use('seaborn-v0_8-darkgrid') | ||
| self.fig.patch.set_facecolor('#2c2c2c') | ||
| self.ax.set_facecolor('#1e1e1e') | ||
|
|
||
| self.ax.set_xticks([]) | ||
| self.ax.set_yticks([]) | ||
|
|
||
| # Base maze | ||
| self.maze_plot = self.ax.imshow(self.maze, cmap='magma', interpolation='nearest') | ||
|
|
||
| # Visited overlay | ||
| self.visited_overlay = np.zeros((*self.maze.shape, 4)) | ||
| self.visited_plot = self.ax.imshow(self.visited_overlay, interpolation='nearest') | ||
|
|
||
| # Path, breadcrumbs, solver, target | ||
| self.path_line, = self.ax.plot([], [], 'g-', linewidth=3, alpha=0.7, label='Path') | ||
| self.breadcrumbs_plot = self.ax.scatter([], [], c=[], cmap='viridis_r', s=50, alpha=0.6, label='Trail') | ||
| self.solver_plot, = self.ax.plot( | ||
| [self.solver_pos[1]], [self.solver_pos[0]], | ||
| 'o', markersize=15, color='#00ffdd', label='Solver' | ||
| ) | ||
| self.target_plot, = self.ax.plot( | ||
| [self.target_pos[1]], [self.target_pos[0]], | ||
| '*', markersize=20, color='#ff006a', label='Target' | ||
| ) | ||
|
|
||
| self.ax.legend(facecolor='gray', framealpha=0.5, loc='upper right') | ||
| self.title = self.ax.set_title("Initializing Maze...", color='white', fontsize=14) | ||
|
|
||
| def _bfs(self): | ||
| """Performs BFS to find shortest path.""" | ||
| queue = deque([(self.solver_pos, [self.solver_pos])]) | ||
| visited = {self.solver_pos} | ||
|
|
||
| while queue: | ||
| (r, c), path = queue.popleft() | ||
|
|
||
| if (r, c) == self.target_pos: | ||
| return path, visited | ||
|
|
||
| for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]: | ||
| nr, nc = r + dr, c + dc | ||
| if 0 <= nr < self.rows and 0 <= nc < self.cols and \ | ||
| self.maze[nr][nc] == 0 and (nr, nc) not in visited: | ||
| visited.add((nr, nc)) | ||
| queue.append(((nr, nc), path + [(nr, nc)])) | ||
|
|
||
| return None, visited | ||
|
|
||
| def _update_target(self): | ||
| """Moves the target randomly to an adjacent open cell.""" | ||
| tr, tc = self.target_pos | ||
| moves = [(-1, 0), (1, 0), (0, -1), (0, 1)] | ||
| random.shuffle(moves) | ||
| for dr, dc in moves: | ||
| nr, nc = tr + dr, tc + dc | ||
| if 0 <= nr < self.rows and 0 <= nc < self.cols and self.maze[nr][nc] == 0: | ||
| self.target_pos = (nr, nc) | ||
| break | ||
|
|
||
| def _update_obstacles(self): | ||
| """Randomly toggle a few obstacles.""" | ||
| for r in range(self.rows): | ||
| for c in range(self.cols): | ||
| if (r, c) in [self.solver_pos, self.target_pos]: | ||
| continue | ||
| if random.random() < self.obstacle_change_prob: | ||
| self.maze[r, c] = 1 - self.maze[r, c] | ||
|
|
||
| def _update_frame(self, frame): | ||
| """Main animation loop.""" | ||
| self.frame_count += 1 | ||
|
|
||
| # --- State --- | ||
| if self.frame_count % self.target_move_interval == 0: | ||
| self._update_target() | ||
| self._update_obstacles() | ||
|
|
||
| self.path, self.visited_nodes = self._bfs() | ||
|
|
||
| # Move solver one step | ||
| if self.path and len(self.path) > 1: | ||
| self.solver_pos = self.path[1] | ||
| self.breadcrumb_trail.append(self.solver_pos) | ||
|
|
||
| # --- Visuals --- | ||
| self.maze_plot.set_data(self.maze) | ||
|
|
||
| # Visited overlay | ||
| self.visited_overlay.fill(0) | ||
| visited_color = mcolors.to_rgba('#0077b6', alpha=0.3) | ||
| for r, c in self.visited_nodes: | ||
| self.visited_overlay[r, c] = visited_color | ||
| self.visited_plot.set_data(self.visited_overlay) | ||
|
|
||
| # Path line | ||
| if self.path: | ||
| y, x = zip(*self.path) | ||
| self.path_line.set_data(x, y) | ||
| else: | ||
| self.path_line.set_data([], []) | ||
|
|
||
| # set_data() now receives sequences | ||
| self.solver_plot.set_data([self.solver_pos[1]], [self.solver_pos[0]]) | ||
| self.target_plot.set_data([self.target_pos[1]], [self.target_pos[0]]) | ||
|
|
||
| # Breadcrumbs | ||
| if self.breadcrumb_trail: | ||
| y, x = zip(*self.breadcrumb_trail) | ||
| colors = np.linspace(0.1, 1.0, len(y)) | ||
| self.breadcrumbs_plot.set_offsets(np.c_[x, y]) | ||
| self.breadcrumbs_plot.set_array(colors) | ||
|
|
||
| # Title update | ||
| if self.solver_pos == self.target_pos: | ||
| self.title.set_text("Dynamic Maze Solver") | ||
| self.title.set_color('lightgreen') | ||
| self.anim.event_source.stop() | ||
| else: | ||
| path_len = len(self.path) if self.path else "N/A" | ||
| self.title.set_text(f"Frame: {self.frame_count} | Path Length: {path_len}") | ||
| self.title.set_color('white' if self.path else 'coral') | ||
|
|
||
| return [ | ||
| self.maze_plot, self.visited_plot, self.path_line, | ||
| self.solver_plot, self.target_plot, self.breadcrumbs_plot, self.title | ||
| ] | ||
|
|
||
| def run(self): | ||
| """Starts the animation.""" | ||
| self.anim = animation.FuncAnimation( | ||
| self.fig, | ||
| self._update_frame, | ||
| frames=500, | ||
| interval=self.step_delay_ms, | ||
| blit=False, | ||
| repeat=False | ||
| ) | ||
| plt.show() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| initial_maze = [ | ||
| [0, 1, 0, 0, 0, 0, 0, 0, 1, 0], | ||
| [0, 1, 0, 1, 1, 0, 1, 0, 1, 0], | ||
| [0, 0, 0, 1, 0, 0, 1, 0, 0, 0], | ||
| [0, 1, 0, 1, 0, 1, 1, 1, 1, 0], | ||
| [0, 1, 0, 0, 0, 0, 0, 0, 1, 0], | ||
| [0, 1, 1, 1, 1, 1, 1, 0, 1, 0], | ||
| [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], | ||
| [1, 1, 1, 1, 0, 1, 1, 1, 1, 0], | ||
| [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | ||
| ] | ||
|
|
||
| start_point = (0, 0) | ||
| end_point = (8, 9) | ||
|
|
||
| visualizer = MazeVisualizer(initial_maze, start_point, end_point) | ||
| visualizer.run() | ||
154 changes: 154 additions & 0 deletions
154
docs/modules/5_path_planning/dynamic_bfs_maze_Solver/Dynamic_maze_Solver.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,154 @@ | ||
| Dynamic Maze Solver using Breadth-First Search (BFS) | ||
| ==================================================== | ||
|
|
||
| .. contents:: Table of Contents | ||
| :local: | ||
| :depth: 2 | ||
|
|
||
| Overview | ||
| -------- | ||
|
|
||
| This example demonstrates a **dynamic maze-solving algorithm** based on the | ||
| **Breadth-First Search (BFS)** strategy. The visualizer dynamically updates a maze | ||
| in real-time while the solver attempts to reach a moving target. | ||
|
|
||
| Unlike static pathfinding examples, this version introduces: | ||
|
|
||
| - **A moving target** that relocates periodically. | ||
| - **Randomly evolving obstacles** that can appear or disappear. | ||
| - **Animated BFS exploration**, showing visited cells, computed paths, and breadcrumbs. | ||
|
|
||
| This simulation provides intuition for dynamic pathfinding problems such as | ||
| robot navigation in unpredictable environments. | ||
|
|
||
|
|
||
| Algorithmic Background | ||
| ---------------------- | ||
|
|
||
| ### Breadth-First Search (BFS) | ||
|
|
||
| The BFS algorithm is a graph traversal method that explores nodes in layers, | ||
| guaranteeing the shortest path in an unweighted grid. | ||
|
|
||
| Let the maze be represented as a grid: | ||
|
|
||
| .. math:: | ||
|
|
||
| M = \{ (i, j) \mid 0 \leq i < R, 0 \leq j < C \} | ||
|
|
||
| where each cell is either *free (0)* or *obstacle (1)*. | ||
|
|
||
| The BFS frontier expands as: | ||
|
|
||
| .. math:: | ||
|
|
||
| Q = [(s, [s])], \qquad s \in M | ||
|
|
||
| where each element of \(Q\) is a pair \((v, P)\) with a current node \(v\) and | ||
| its path history \(P\). | ||
|
|
||
| The BFS expansion step (pseudocode): | ||
|
|
||
| .. math:: | ||
|
|
||
| \begin{aligned} | ||
| (r,c),\;P &= Q.pop(0), \\ | ||
| ext{for each } (r',c') \in N(r,c):\quad &\text{if } 0\le r'<R,\ 0\le c'<C,\ M_{r',c'}=0,\ (r',c')\notin\text{visited},\\ | ||
| &\quad \text{then } \text{visited} \leftarrow \text{visited} \cup \{(r',c')\},\\ | ||
| &\quad Q.append\big((r',c'),\; P + [(r',c')]\big). | ||
| \end{aligned} | ||
|
|
||
| The algorithm halts when the target node \(t\) is reached. Because BFS explores | ||
| nodes in order of increasing distance, it returns a shortest path (by move count) | ||
| for static grids. | ||
|
|
||
|
|
||
| Dynamic Components | ||
| ------------------ | ||
|
|
||
|
|
||
| ### Moving Target | ||
|
|
||
| Every few frames, the target moves randomly to an adjacent open cell: | ||
|
|
||
| .. math:: | ||
|
|
||
| T_{t+1} = T_t + \Delta_t,\qquad \Delta_t \in \{(-1,0),(1,0),(0,-1),(0,1)\} | ||
|
|
||
| with the constraint that the new position must be inside the grid and on a free cell. | ||
|
|
||
| This simulates dynamic goals or moving entities in robotic navigation. | ||
|
|
||
| ### Evolving Obstacles | ||
|
|
||
| With a small probability :math:`p`, each cell toggles between *free* and *blocked*: | ||
|
|
||
| .. math:: | ||
|
|
||
| M_{i,j}^{t+1} = \begin{cases} | ||
| 1 - M_{i,j}^{t}, & \text{with probability } p,\\ | ||
| M_{i,j}^{t}, & \text{with probability } 1-p. | ||
| \end{cases} | ||
|
|
||
| This reflects real-world conditions like temporary obstructions or environment changes. | ||
|
|
||
|
|
||
| Visualization | ||
| ------------- | ||
|
|
||
| The maze, solver, target, and BFS layers are visualized using **Matplotlib**. | ||
|
|
||
| Elements include: | ||
|
|
||
| - **Maze cells** - magma colormap (black = wall, bright = open) | ||
| - **Visited nodes** - blue overlay with transparency | ||
| - **Path line** - green connecting line | ||
| - **Solver (robot)** - cyan circle | ||
| - **Target** - magenta star | ||
| - **Breadcrumbs** - trail of previously visited solver positions | ||
|
|
||
| A sample animation frame: | ||
|
|
||
| .. image:: https://github.com/AtsushiSakai/PythonRoboticsGifs/raw/master/PathPlanning/dynamic_maze_solver/animation.gif | ||
| :alt: Maze BFS dynamic visualizer frame | ||
| :align: center | ||
| :scale: 80 % | ||
|
|
||
|
|
||
| Mathematical Insights | ||
| --------------------- | ||
|
|
||
| - **BFS guarantees optimality** in unweighted grids. | ||
| - The evolving maze introduces **non-stationarity**, requiring recomputation per frame. | ||
| - The path length :math:`L_t` fluctuates as the environment changes. | ||
|
|
||
| If :math:`E_t` is the set of explored nodes at frame :math:`t`, then: | ||
|
|
||
| .. math:: | ||
|
|
||
| L_t = |P_t|, \qquad E_t = |V_t| | ||
|
|
||
| where \(P_t\) is the discovered path at frame \(t\) and \(V_t\) is the set of visited nodes. | ||
|
|
||
| Remarks: | ||
|
|
||
| - BFS returns a shortest-path in terms of number of grid moves when the grid is static. | ||
| - When the environment changes over time, the solver must recompute; this makes optimality | ||
| relative to the latest observed configuration rather than the original static grid. | ||
|
|
||
|
|
||
| Code Link | ||
| ++++++++ | ||
|
|
||
| .. automodule:: PathPlanning.BreadthFirstSearch.dynamic_maze_solver | ||
|
|
||
|
|
||
| References | ||
| ---------- | ||
|
|
||
| - **Algorithm:** Breadth-First Search (BFS) :-`<https://en.wikipedia.org/wiki/Breadth-first_search>`_ | ||
| - **Visualization:** Matplotlib animation | ||
| - **Maze Solver:**:-`<https://medium.com/@luthfisauqi17_68455/artificial-intelligence-search-problem-solve-maze-using-breadth-first-search-bfs-algorithm-255139c6e1a3>`__ | ||
|
|
||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| import conftest | ||
| from PathPlanning.BreadthFirstSearch.dynamic_maze_solver import MazeVisualizer | ||
|
|
||
|
|
||
| def test_bfs_finds_path(): | ||
| # small maze: 0=open, 1=wall | ||
| maze = [ | ||
| [0, 0, 0], | ||
| [1, 1, 0], | ||
| [0, 0, 0] | ||
| ] | ||
|
|
||
| start = (0, 0) | ||
| target = (2, 2) | ||
|
|
||
| viz = MazeVisualizer(maze, start, target) | ||
|
|
||
| path, visited = viz._bfs() | ||
|
|
||
| assert path is not None | ||
| assert path[0] == start | ||
| assert path[-1] == target | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| conftest.run_this_test(__file__) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.