Abstract Class: BasicAvionicsSystem<T>
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:18
A basic avionics system with a fixed initialization time and logic.
Extended by
ADCAvionicsSystem
AHRSSystem
AvionicsComputerSystem
EngineAirframeSystem
MagnetometerSystem
SoundSystem
TransponderSystem
Type Parameters
Type Parameter |
---|
T extends Record <string , any > |
Implements
Constructors
Constructor
new BasicAvionicsSystem<
T
>(index
,bus
,stateEvent
):BasicAvionicsSystem
<T
>
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:38
Creates an instance of a BasicAvionicsSystem.
Parameters
Parameter | Type | Description |
---|---|---|
index | number | The index of the system. |
bus | EventBus | The instance of the event bus for the system to use. |
stateEvent | keyof StateEventsOnly <T > | The key of the state update event to send on state update. |
Returns
BasicAvionicsSystem
<T
>
Properties
bus
protected
readonly
bus:EventBus
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:38
The instance of the event bus for the system to use.
index
readonly
index:number
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:38
The index of the system.
Implementation of
initializationTime
protected
initializationTime:number
=0
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:24
The time it takes in milliseconds for the system to initialize.
initializationTimeout
protected
initializationTimeout:undefined
|number
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:27
A timeout after which initialization will be complete.
isPowered
protected
isPowered:undefined
|boolean
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:30
Whether or not the system is powered.
state
state:
undefined
|AvionicsSystemState
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:21
The state of the avionics system.
Implementation of
stateEvent
protected
readonly
stateEvent: keyofStateEventsOnly
<T
>
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:38
The key of the state update event to send on state update.
Methods
connectToPower()
protected
connectToPower(key
):void
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:47
Connects the system to the first avionics power bus.
Parameters
Parameter | Type | Description |
---|---|---|
key | keyof BaseElectricalEvents | `elec_bus_main_v_${number}` | `elec_bus_main_a_${number}` | `elec_master_battery_${number}` | `elec_circuit_avionics_on_${number}` | `elec_bat_v_${number}` | `elec_bat_a_${number}` | `elec_ext_power_available_${number}` | `elec_ext_power_on_${number}` | `elec_apu_gen_active_${number}` | `elec_apu_gen_switch_${number}` | `elec_eng_gen_switch_${number}` | `elec_circuit_on_${number}` | `elec_circuit_switch_on_${number}` | `elec_circuit_com_on_${number}` | `elec_circuit_nav_on_${number}` | The electrical event key to connect to. |
Returns
void
onPowerChanged()
protected
onPowerChanged(isPowered
):void
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:69
A callback called when the connected power state of the avionics system changes.
Parameters
Parameter | Type | Description |
---|---|---|
isPowered | boolean | Whether or not the system is powered. |
Returns
void
onUpdate()
onUpdate():
void
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:41
A callback to call to update the state of the avionics system.
Returns
void
Implementation of
setState()
protected
setState(state
):void
Defined in: workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Systems/BasicAvionicsSystem.ts:58
Sets the state of the avionics system and publishes the change.
Parameters
Parameter | Type | Description |
---|---|---|
state | AvionicsSystemState | The new state to change to. |
Returns
void