Class: DebugShowAllTiles

Simulation.Mode.DebugShowAllTiles()

Class Simulation.Mode.DebugShowAllTiles is a simulation mode that shows every tile. This is to ensure that they are being drawn correctly and that none are being missed read by the light sensors.

Constructor

new DebugShowAllTiles()

The constructor that sets up the simulation variables
Source:
See:

Methods

createEmpty(cols, rows) → {Array.<Array.<World.Tile>>}

creates a grid of blankTiles
Parameters:
Name Type Description
cols number number of tiles in the x direction
rows number number of tiles in the y direction
Source:
Returns:
- The grid of blank tiles
Type
Array.<Array.<World.Tile>>

fillGridWithAllTiles(grid, cols, rows, horizontalFill) → {Array.<Array.<World.Tile>>}

fills the empty grid with all of the tiles in the World.Tiles array.
Parameters:
Name Type Default Description
grid Array.<Array.<World.Tile>> The grid to add all the tiles to
cols number number of tiles in the x direction
rows number number of tiles in the y direction
horizontalFill boolean true flag to decide if the tiles are filled in the x or the y direction first
Source:
Returns:
- A grid with the new tile values
Type
Array.<Array.<World.Tile>>

findFactors(num) → {Array.<numbers>}

Find the factors of a number
Parameters:
Name Type Description
num number The number
Source:
Returns:
- An array of the factors
Type
Array.<numbers>

update()

Update function that updates the state of the simulation
Source:

Documentation generated by JSDoc 4.0.2 on Fri Aug 30 2024 16:12:54 GMT-0600 (Mountain Daylight Time)