Class: AhrsPublisher
A publisher for AHRS information for the Nxi which sources data from PLANE simvars instead of the attitude and heading indicator simvars.
This class is meant to be a temporary fix for the vacuum gyro problem until the Nxi can be made to fully support customizable attitude/heading indicator indexes.
Hierarchy
SimVarPublisher
<AhrsEvents
>↳
AhrsPublisher
Constructors
constructor
• new AhrsPublisher(bus
, pacer?
): AhrsPublisher
Creates an AhrsPublisher.
Parameters
Name | Type | Description |
---|---|---|
bus | EventBus | The event bus to which to publish. |
pacer? | PublishPacer <AhrsEvents > | An optional pacer to use to control the rate of publishing. |
Returns
Overrides
SimVarPublisher\<AhrsEvents\>.constructor
Defined in
workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/Instruments/AhrsPublisher.ts:25
Properties
bus
• Protected
Readonly
bus: EventBus
Inherited from
SimVarPublisher.bus
Defined in
sdk/instruments/BasePublishers.ts:10
indexedSimVars
• Protected
Readonly
indexedSimVars: Map
<"pitch_deg"
| "roll_deg"
| "hdg_deg"
| "hdg_deg_true"
| "delta_heading_rate"
| "turn_coordinator_ball"
| "actual_hdg_deg"
| "actual_hdg_deg_true"
| "actual_pitch_deg"
| "actual_roll_deg"
| `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}`, IndexedSimVarPublisherEntry
<any
>>
Inherited from
SimVarPublisher.indexedSimVars
Defined in
sdk/instruments/BasePublishers.ts:149
pacer
• Protected
Readonly
pacer: undefined
| PublishPacer
<AhrsEvents
>
Inherited from
SimVarPublisher.pacer
Defined in
sdk/instruments/BasePublishers.ts:13
publishActive
• Protected
publishActive: boolean
Inherited from
SimVarPublisher.publishActive
Defined in
sdk/instruments/BasePublishers.ts:12
publisher
• Protected
Readonly
publisher: Publisher
<AhrsEvents
>
Inherited from
SimVarPublisher.publisher
Defined in
sdk/instruments/BasePublishers.ts:11
resolvedSimVars
• Protected
Readonly
resolvedSimVars: Map
<"pitch_deg"
| "roll_deg"
| "hdg_deg"
| "hdg_deg_true"
| "delta_heading_rate"
| "turn_coordinator_ball"
| "actual_hdg_deg"
| "actual_hdg_deg_true"
| "actual_pitch_deg"
| "actual_roll_deg"
| `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}`, ResolvedSimVarPublisherEntry
<any
>>
Inherited from
SimVarPublisher.resolvedSimVars
Defined in
sdk/instruments/BasePublishers.ts:147
subscribed
• Protected
Readonly
subscribed: Set
<"pitch_deg"
| "roll_deg"
| "hdg_deg"
| "hdg_deg_true"
| "delta_heading_rate"
| "turn_coordinator_ball"
| "actual_hdg_deg"
| "actual_hdg_deg_true"
| "actual_pitch_deg"
| "actual_roll_deg"
| `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}`>
Inherited from
SimVarPublisher.subscribed
Defined in
sdk/instruments/BasePublishers.ts:151
INDEXED_REGEX
▪ Static
Protected
Readonly
INDEXED_REGEX: RegExp
Inherited from
SimVarPublisher.INDEXED_REGEX
Defined in
sdk/instruments/BasePublishers.ts:145
Methods
getValue
▸ getValue<K
>(topic
): undefined
| AhrsEvents
[K
]
Gets the current value for a topic.
Type parameters
Name | Type |
---|---|
K | extends "pitch_deg" | "roll_deg" | "hdg_deg" | "hdg_deg_true" | "delta_heading_rate" | "turn_coordinator_ball" | "actual_hdg_deg" | "actual_hdg_deg_true" | "actual_pitch_deg" | "actual_roll_deg" | `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}` |
Parameters
Name | Type | Description |
---|---|---|
topic | K | A topic. |
Returns
undefined
| AhrsEvents
[K
]
The current value for the specified topic.
Inherited from
SimVarPublisher.getValue
Defined in
sdk/instruments/BasePublishers.ts:343
getValueFromEntry
▸ getValueFromEntry<T
>(entry
): T
Gets the current value for a resolved topic entry.
Type parameters
Name |
---|
T |
Parameters
Name | Type | Description |
---|---|---|
entry | ResolvedSimVarPublisherEntry <T > | An entry for a resolved topic. |
Returns
T
The current value for the specified entry.
Inherited from
SimVarPublisher.getValueFromEntry
Defined in
sdk/instruments/BasePublishers.ts:357
handleSubscribedTopic
▸ handleSubscribedTopic(topic
): void
Handles when an event bus topic is subscribed to for the first time.
Parameters
Name | Type | Description |
---|---|---|
topic | string | The subscribed topic. |
Returns
void
Inherited from
SimVarPublisher.handleSubscribedTopic
Defined in
sdk/instruments/BasePublishers.ts:193
isPublishing
▸ isPublishing(): boolean
Tells whether or not the publisher is currently active.
Returns
boolean
True if the publisher is active, false otherwise.
Inherited from
SimVarPublisher.isPublishing
Defined in
sdk/instruments/BasePublishers.ts:45
onTopicSubscribed
▸ onTopicSubscribed(topic
): void
Responds to when one of this publisher's topics is subscribed to for the first time.
Parameters
Name | Type | Description |
---|---|---|
topic | "pitch_deg" | "roll_deg" | "hdg_deg" | "hdg_deg_true" | "delta_heading_rate" | "turn_coordinator_ball" | "actual_hdg_deg" | "actual_hdg_deg_true" | "actual_pitch_deg" | "actual_roll_deg" | `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}` | The topic that was subscribed to. |
Returns
void
Inherited from
SimVarPublisher.onTopicSubscribed
Defined in
sdk/instruments/BasePublishers.ts:279
onUpdate
▸ onUpdate(): void
Publish all subscribed data points to the bus.
Returns
void
Inherited from
SimVarPublisher.onUpdate
Defined in
sdk/instruments/BasePublishers.ts:315
publish
▸ publish<K
>(topic
, data
, sync?
, isCached?
): void
Publish a message if publishing is acpive
Type parameters
Name | Type |
---|---|
K | extends keyof AhrsEvents |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
topic | K | undefined | The topic key to publish to. |
data | AhrsEvents [K ] | undefined | The data type for chosen topic. |
sync | boolean | false | Whether or not the event should be synced to other instruments. Defaults to false . |
isCached | boolean | true | Whether or not the event should be cached. Defaults to true . |
Returns
void
Inherited from
SimVarPublisher.publish
Defined in
sdk/instruments/BasePublishers.ts:63
publishTopic
▸ publishTopic(topic
): void
Publishes data to the event bus for a topic.
Parameters
Name | Type | Description |
---|---|---|
topic | "pitch_deg" | "roll_deg" | "hdg_deg" | "hdg_deg_true" | "delta_heading_rate" | "turn_coordinator_ball" | "actual_hdg_deg" | "actual_hdg_deg_true" | "actual_pitch_deg" | "actual_roll_deg" | `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}` | The topic to publish. |
Returns
void
Inherited from
SimVarPublisher.publishTopic
Defined in
sdk/instruments/BasePublishers.ts:325
resolveIndexedSimVar
▸ resolveIndexedSimVar(topic
, entry
, index
): undefined
| string
Attempts to resolve an indexed topic with an index, generating a version of the topic which is mapped to an indexed simvar. The resolved indexed topic can then be published.
Parameters
Name | Type | Description |
---|---|---|
topic | "pitch_deg" | "roll_deg" | "hdg_deg" | "hdg_deg_true" | "delta_heading_rate" | "turn_coordinator_ball" | "actual_hdg_deg" | "actual_hdg_deg_true" | "actual_pitch_deg" | "actual_roll_deg" | `pitch_deg_${number}` | `roll_deg_${number}` | `hdg_deg_${number}` | `hdg_deg_true_${number}` | `delta_heading_rate_${number}` | The topic to resolve. |
entry | IndexedSimVarPublisherEntry <any > | The entry of the topic to resolve. |
index | number | The index with which to resolve the topic. If not defined, the topic will resolve to itself (without a suffix) and will be mapped the index-1 version of its simvar. |
Returns
undefined
| string
The resolved indexed topic, or undefined
if the topic could not be resolved with the specified index.
Inherited from
SimVarPublisher.resolveIndexedSimVar
Defined in
sdk/instruments/BasePublishers.ts:250
startPublish
▸ startPublish(): void
Start publishing.
Returns
void
Inherited from
SimVarPublisher.startPublish
Defined in
sdk/instruments/BasePublishers.ts:30
stopPublish
▸ stopPublish(): void
Stop publishing.
Returns
void
Inherited from
SimVarPublisher.stopPublish
Defined in
sdk/instruments/BasePublishers.ts:37
subscribe
▸ subscribe(data
): void
NOOP - For backwards compatibility.
Parameters
Name | Type | Description |
---|---|---|
data | keyof AhrsEvents | Key of the event type in the simVarMap |
Returns
void
Deprecated
Inherited from
SimVarPublisher.subscribe
Defined in
sdk/instruments/BasePublishers.ts:298
tryMatchIndexedSubscribedTopic
▸ tryMatchIndexedSubscribedTopic(topic
): void
Checks if a subscribed topic matches one of this publisher's indexed topics, and if so resolves and starts publishing the indexed topic.
Parameters
Name | Type | Description |
---|---|---|
topic | string | The subscribed topic to check. |
Returns
void
Inherited from
SimVarPublisher.tryMatchIndexedSubscribedTopic
Defined in
sdk/instruments/BasePublishers.ts:208
unsubscribe
▸ unsubscribe(data
): void
NOOP - For backwards compatibility.
Parameters
Name | Type | Description |
---|---|---|
data | keyof AhrsEvents | Key of the event type in the simVarMap |
Returns
void
Deprecated
Inherited from
SimVarPublisher.unsubscribe
Defined in
sdk/instruments/BasePublishers.ts:308