Class: EditCommand

Simulation.Mode.MapEditor.EditCommand(room, mapPos, prevTile, nextTile, batchNum)

Class that is used to store all edits made to the map. Each edit stores the current and next tile at a location. If the command is part of a batch it's batch number is also stored. These commands are stored in a stack so that they can be traversed.

Constructor

new EditCommand(room, mapPos, prevTile, nextTile, batchNum)

EditCommand constructor
Parameters:
Name Type Description
room World.Room A reference to the room object so that the class can revert the rooms state.
mapPos p5.Vector Position of the tile.
prevTile World.Tile Previous tile in the room
nextTile World.Tile Next tile that replaces the previous one
batchNum number The batch number of the command
Source:

Methods

redo()

Redo the command
Source:

undo()

Undo the command
Source:

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