Constructor
new ModeType()
An abstract class constructor that throws an error if it is instantiated.
- Source:
- See:
-
- Simulation.Mode.Empty
- Simulation.Mode.LineFollowOneSensor
- Simulation.Mode.LineFollowTwoSensor
- Simulation.Mode.DebugStaticTile
- Simulation.Mode.DebugMovingTile
- Simulation.Mode.DebugRoom
- Simulation.Mode.DebugShowAllTiles
- Simulation.Mode.DebugLightSensorArray
- Simulation.Mode.DebugRobot
- Simulation.Mode.DebugLineDistanceCheck
Throws:
-
Abstract class Simulation.Mode.Type can't be instantiated
- Type
- Error
Methods
UIPoll()
UI Poll function that should be overridden by child classes that define
UI functionality. It is not enforced that this function should be
overridden so that a child class can choose not to implement this
feature.
This function is called in UI.poll() and is still called when the
simulation is paused.
- Source:
hideUI()
Checks if this.UIPanel is defined and hides the panel if it is. This is
done by setting the visibility to "hidden" and the display style to
"none".
- Source:
setupUI()
This function gets a document element by ID as defined in the variable
this.uiDivID created by the child class. If this is not defined then
the setup function does nothing.
The document element is saved in this.UIPanel and this.showUI() is
called.
- Source:
showUI()
Checks if this.UIPanel is defined and shows the panel if it is. This is
done by setting the visibility to "visible" and the display style to
"inline".
- Source:
update()
An abstract method which needs to be overridden.
- Source:
Throws:
-
Method 'update()' must be implemented
- Type
- Error