Class: ModeType

Simulation.Mode.ModeType()

Class Simulation.Mode.ModeType used as an abstract class to enforce that Simulation modes have an update function.

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

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