Tag: Maze
-
Understanding perfect maze generation row after row with Eller algorithm, using a pure JavaScript class
There are a lot of algorithms to generate perfect mazes, but I am showing you the way to build a perfect maze line by line, virtually infinite, with Eller generation. Full pure JavaScript class included in the downloadable example.
-
Pure JavaScript A* maze solving – with a bit of magic thanks to Phaser and EasyStar.js updated to Phaser 3.8.0 and EasyStar.js 0.4.3
A* pathfinding algorithm continuously solves a perfect maze in this demo made with Phaser and EasyStar - full source code available
-
Pure JavaScript A* maze solving – with a bit of magic thanks to Phaser and EasyStar.js
Perfect tile based maze generation and solving using A* algorithm
-
Pure JavaScript perfect tile maze generation – with a bit of magic thanks to Phaser
Step by step creation of a perfect tile based maze - Watch the script building the maze itself
-
Breadth-first pathfinding in a randomly generated maze
A nice example of Breadth-first search on a randomly generated maze, coded in AS3
-
Perfect maze generation – tile based version – AS3
After publishing Perfect maze generation – tile based version written in Php, I got some emails asking for an AS3 version. Pedro Taranto made the AS3 porting in…
-
Perfect maze generation – tile based version
You may wonder why I am publishing another maze script. The reason is simple: in Perfect maze generation with AS3 post and previous ones I just showed you…
-
Perfect maze generation with AS3
I already talked about perfect mazes a couple of years ago with Step by step perfect maze generation with php and Perfect maze generation with Flash actionscript, but…
-
Perfect maze generation with Flash actionscript
In a perfect maze, there is one and only one path from any point in the maze to any other point. That is, there are no inaccessible sections,…
-
Step by step perfect maze generation with php
This is a project I made for teaching purpose. First of all, let’s see what is a perfect maze. From Maze Works: A perfect maze is defined as…