Constructor
new MapEditor()
The constructor that sets up the simulation variables
- Source:
- See:
-
- Simulation.Mode.ModeType
- Simulation.Mode.DebugStaticTile
- World.Tile
- World.Tile.proxy
Classes
Methods
UIPoll()
Polls the moving tile mode specific UI elements
- Source:
addNewUIElements()
Adds the UI elements that control the map editor mode simulation
mode. This code currently has an inefficiency that deletes DOM elements
for the inputs if they already exist. It would be preferable if a handle
could be saved and reused for these elements.
- Source:
addTileSelector()
Add the tile selector UI element. This automatically selects all of the
Tile proxies and uses them to populate the selector options. Therefore,
if a new tile is added this will automagically be included in the options
- Source:
changeTileAtPos(pos, newTile, batchNum)
Change the value of a specific tile.
Parameters:
Name | Type | Description |
---|---|---|
pos |
p5.vector | the position of the tile |
newTile |
World.Tile | The new tile |
batchNum |
number | The number of the batch that the command is part of. If -1 the command is not in a batch. |
- Source:
clearRoom()
Fills the entire room with blank tiles.
- Source:
fillLoop()
Fills the room with a loop. This is done as a batch command.
- Source:
fillRoom(tile)
Fill the entire room with a specific tile. This is done as a batch
command.
Parameters:
Name | Type | Description |
---|---|---|
tile |
World.Tile | The tile to fill the entire room with |
- Source:
fillSnake()
Fills the room with a snake pattern. This is done as a batch command.
- Source:
pushToCommandStack()
Push a command to the command stack for the undo system
- Source:
redo()
Redo the next command in the command stack.
- Source:
redoBatch()
Redo a batch command by sequentially redoing all the individual commands
with the same batch number.
- Source:
resetRoom()
Reset the room
- Source:
resetSensor()
Reset the light sensor
- Source:
saveRoomAsJSON()
Opens the file system and saves the current room as a JSON file.
- Source:
undo()
Undo the last command
- Source:
undoBatch()
Undo a batch command by sequentially undoing all the individual commands
with the same batch number.
- Source:
update()
Update function that updates the state of the simulation
- Source:
(static) clearRoom()
UI callback function to clear the room
- Source:
(static) fillLoop()
UI callback to fill the room with a loop pattern
- Source:
(static) fillRoom()
UI callback function to fill the room with a particular tile
- Source:
(static) fillSnake()
UI Callback to fill the room with a snake pattern
- Source:
(static) redo()
UI callback function to redo the next command
- Source:
(static) saveRoomAsJSON()
UI callback function to save the current room as a JSON file
- Source:
(static) undo()
UI callback function to undo the last command
- Source: