Members
autoSolve
A variable that dictates if the AI is solving the puzzle or if the user is.
loopSolve
Flag to see if the AI resets and continues to solve the puzzle once it has
reached to goal state.
plates :number
A variable that dictates how many plates will be in the puzzle
Type:
- number
solution
An array that stores a list of Pos objects which make up the solution of
the puzzle from a given state.
solveIndex :number
Type:
- number
topPlate :number
A variable that stores the highest value plate of the last clicked tower.
Type:
- number
tower1 :Tower
A global variable that holds the information for the first Tower object.
Type:
tower2 :Tower
A global variable that holds the information for the second Tower object.
Type:
tower3 :Tower
A global variable that holds the information for the third Tower object.
Type:
towerSelected :number
A variable that holds which tower was last clicked
Type:
- number
Methods
contains(list, pos) → {boolean}
Function to check if a pos object is in a list
Parameters:
Name | Type | Description |
---|---|---|
list |
array | list to search through |
pos |
Pos | Pos object to locate |
Returns:
Value indicating if the object is in the list or not
- Type
- boolean
currentPos() → {Pos}
Function to get the current state of the towers.
Returns:
Pos state of the towers
- Type
- Pos
draw()
p5.js draw function, used to draw all towers
find(list, pos) → {number}
Function to find the index of a pos object in a list
Parameters:
Name | Type | Description |
---|---|---|
list |
array | list to search through |
pos |
Pos | Pos object to locate |
Returns:
Index value of the object in the array. If the value is
not in the array false will be returned.
- Type
- number
getNeighbours(node) → {Array.<Pos>}
Function to get the neighbouring states of a given pos.
Parameters:
Name | Type | Description |
---|---|---|
node |
Pos | The game state whose neighbours are to be found. |
Returns:
- An array of all the neighbouring states.
- Type
- Array.<Pos>
keyPressed()
Function to handle key presses. Will toggle autosolve or reset towers.
mousePressed()
Function that determines if a mouse has been pressed or not and handles the
movement of the plates between the towers.
setup()
p5.js setup function, used to create a canvas and instantiate the tower
objects
solve()
Function to find the solution from the current state of the towers. If the
current state is in a solution that has already been calculated the function
will not recalculate the solution.
solveAStar() → {Array.<Pos>}
Function to solve the puzzle depending on the given starting state using
the A* Algortihm.
Returns:
An array of all the states between the starting state
and the goal state.
- Type
- Array.<Pos>
solveBFS() → {Array.<Pos>}
Function to solve the puzzle depending on the given starting state using
the Breadth First Search (BFS) Algortihm.
Returns:
An array of all the states between the starting state
and the goal state.
- Type
- Array.<Pos>