Class: Room

World.Room(cols, rows, globalPos)

Class that implements a room of tiles.

Constructor

new Room(cols, rows, globalPos)

Constructor for the room class.
Parameters:
Name Type Default Description
cols number 4 Positive integer showing how many tiles there are in the x direction
rows number 4 Positive integer showing how many tiles there are in the y direction
globalPos p5.Vector The global position of the room
Source:
See:

Methods

createEmptyRoom()

creates a 2d grid of World.Tile.blankLine.
Source:

draw()

Draws the room at the global position set in the constructor.
Source:

fillRoomWithLoopPattern()

Fills the room with horizontal lines and then adds 90 degree corners to create the back and forth pattern that is connected in a loop.
Source:

fillRoomWithSnakePattern()

Fills the room with horizontal lines and then adds 90 degree corners to create the back and forth pattern.
Source:

generatePG(showGrid)

create a portable graphics image of all the tiles in the room.
Parameters:
Name Type Default Description
showGrid boolean true Flag to show or hide the tile grid pattern.
Source:

getAllTiles() → {Array.<Array.<World.Tile>>}

Returns a copy of the tile grid
Source:
Returns:
- a 2d array of tiles.
Type
Array.<Array.<World.Tile>>

getJSON(name) → {String}

Serializes the parameters of the room as a JSON object.
Parameters:
Name Type Description
name string The name to give the room. If undefined the date and time in ISO8901 format used as the room name.
Source:
Returns:
- JSON String with tab delimited spaces
Type
String

getPosOfGrid(x, y) → {p5.Vector}

Calculates the position of a tile at the given indexes.
Parameters:
Name Type Description
x number X Index
y number Y Index
Source:
Returns:
- global position of the tile in the grid
Type
p5.Vector

getTileAtPos(pos) → {World.Tile}

Calculates which tile is at a given global position
Parameters:
Name Type Description
pos p5.Vector The global position
Source:
Throws:
- pos needs to be an instance of p5.Vector
Type
Error
Returns:
- The tile at the given position
Type
World.Tile

setAllTiles(tile)

Set all of the tiles in the room to be the same type. This will ensure that the position of all the tiles are in the correct position.
Parameters:
Name Type Description
tile World.Tile The type of tile to fill the room with.
Source:
Throws:
- tile needs to be an instance of World.Tile
Type
Error

setGlobalPos(pos)

Sets the global position of the room.
Parameters:
Name Type Description
pos p5.Vector The position of the room
Source:
Throws:
- "pos needs to be an instance of p5.Vector"
Type
Error

setTileAtPos(tilePattern)

sets the tiles in the grid to a new pattern
Parameters:
Name Type Description
tilePattern Array.<Array.<World.Tile>> a 2d array of tiles.
Source:

setTiles(tilePattern)

sets the tiles in the grid to a new pattern
Parameters:
Name Type Description
tilePattern Array.<Array.<World.Tile>> a 2d array of tiles.
Source:

(static) validateJSON(jsonData) → {Object}

Validates a JSON string as a valid room
Parameters:
Name Type Description
jsonData string JSON room data
Source:
Returns:
- With valid bool and and error string message members
Type
Object

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