Global

Members

autoSolve

A variable that dictates if the AI is solving the puzzle or if the user is.
Source:

loopSolve

Flag to see if the AI resets and continues to solve the puzzle once it has reached to goal state.
Source:

plates :number

A variable that dictates how many plates will be in the puzzle
Type:
  • number
Source:

solution

An array that stores a list of Pos objects which make up the solution of the puzzle from a given state.
Source:

solveIndex :number

Type:
  • number
Source:

topPlate :number

A variable that stores the highest value plate of the last clicked tower.
Type:
  • number
Source:

tower1 :Tower

A global variable that holds the information for the first Tower object.
Type:
Source:

tower2 :Tower

A global variable that holds the information for the second Tower object.
Type:
Source:

tower3 :Tower

A global variable that holds the information for the third Tower object.
Type:
Source:

towerSelected :number

A variable that holds which tower was last clicked
Type:
  • number
Source:

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
Source:
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.
Source:
Returns:
Pos state of the towers
Type
Pos

draw()

p5.js draw function, used to draw all towers
Source:

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
Source:
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.
Source:
Returns:
- An array of all the neighbouring states.
Type
Array.<Pos>

keyPressed()

Function to handle key presses. Will toggle autosolve or reset towers.
Source:

mousePressed()

Function that determines if a mouse has been pressed or not and handles the movement of the plates between the towers.
Source:

setup()

p5.js setup function, used to create a canvas and instantiate the tower objects
Source:

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.
Source:

solveAStar() → {Array.<Pos>}

Function to solve the puzzle depending on the given starting state using the A* Algortihm.
Source:
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.
Source:
Returns:
An array of all the states between the starting state and the goal state.
Type
Array.<Pos>

Documentation generated by JSDoc 3.6.3 on Sun Jun 05 2022 20:20:10 GMT+0100 (BST)