Undergraduate Project
We have developed a Python program that addresses the problem of finding a combination of moves that leads to the goal state in a sliding puzzle game. The game involves rearranging puzzle pieces by sliding them around on a board until the picture is complete. The puzzle pieces can be moved one at a time, and the movement is performed by clicking on the desired piece.
Our program features a graphical user interface (GUI) that allows players to interact with the game through mouse clicks. The GUI provides visual feedback and keeps track of the number of moves made during the gameplay.
To solve the puzzle, we have implemented two search algorithms: breadth-first search and best-first search. These algorithms systematically explore different combinations of moves to find the optimal solution. By applying these search strategies, our program is able to determine a sequence of moves that leads from the given board state to the desired goal state.
In addition to the search algorithms, our program offers the functionality to customize the initial game state using a CSV file. This allows users to create their own puzzle configurations or load predefined setups.
Overall, our program provides an interactive and efficient solution to the sliding puzzle game, allowing players to enjoy the challenge of rearranging puzzle pieces while keeping track of their progress.