This game will test your intuition in a given maze. Server creates a maze with a random size (etc. 100x100, 30x30, ...), and gives it to all clients/players. Clients/players get the maze and solve it as quickly as possible and return their time to the server, which shows the scoreboard. This is my first ever big project that I am working on alone. Project started in July 2021.
-
Server site generates a random maze that is created with the Random Prim Algorithm. (*Maze's always have solutions)
-
My project also includes a MazeSolver (if a player gives up on a maze or just wants to see how a solution looks, he may use a function that will draw him the solution). The function uses the BFS method to find the end.

-
Demonstration of the Maze Solver:
20210627_140614.mp4
- Server's site that shows the scoreboard
- Server sending mazes over the network (currently server writes the maze in a .txt file and clients read it from that file localy)

