Constructor
new DebugShowAllTiles()
The constructor that sets up the simulation variables
- Source:
- See:
-
- Simulation.Mode.ModeType
- World.Tile
- World.Tile.proxy
- World.Room
- Robot.AnalogLightSensor
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 |
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 |
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 |
Returns:
- An array of the factors
- Type
- Array.<numbers>
update()
Update function that updates the state of the simulation