node-simconnect icon indicating copy to clipboard operation
node-simconnect copied to clipboard

A cross platform SimConnect client library for Node.JS

Results 7 node-simconnect issues
Sort by recently updated
recently updated
newest added

Starting on converting my stuff to use v3 so filing thigns I've tested so far. I did note the following: The value `recvEvent.eventID` ```javascript handle.on('event', function (recvEvent) { switch (recvEvent.eventID)...

See discussion: #85

Today [these are just aliases for number](https://github.com/EvenAR/node-simconnect/blob/master/src/Types.ts) and provide no type safety at all. For instance, it should not be possible to pass a `DataRequestId` to the `DataDefinitionId` parameter of...

enhancement

Hello, I'd like to know if it's possible to manage the aircraft by sending it data, and if so, how? For example, we can find out the altitude of the...

In MSFS 2024 there are currently 5 new SimConnect functions. [SimConnect_AICreateEnrouteATCAircraft_EX1](https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimConnect/API_Reference/AI_Object/SimConnect_AICreateEnrouteATCAircraft_EX1.htm) [SimConnect_AICreateNonATCAircraft_EX1](https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimConnect/API_Reference/AI_Object/SimConnect_AICreateNonATCAircraft_EX1.htm) [SimConnect_AICreateParkedATCAircraft_EX1](https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimConnect/API_Reference/AI_Object/SimConnect_AICreateParkedATCAircraft_EX1.htm) [SimConnect_AICreateSimulatedObject_EX1](https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimConnect/API_Reference/AI_Object/SimConnect_AICreateSimulatedObject_EX1.htm) [SimConnect_EnumerateSimObjectsAndLiveries](https://docs.flightsimulator.com/msfs2024/html/6_Programming_APIs/SimConnect/API_Reference/AI_Object/SimConnect_EnumerateSimObjectsAndLiveries.htm) Much of the code can probably be copied from the existing `aICreateEnrouteATCAircraft`, `aICreateNonATCAircraft`, `aICreateParkedATCAircraft`, `aICreateSimulatedObject`....

Feature request

Currently, the `putString` and `makeString` functions in the buffer utilities file treat the string as a UTF-8 encoded string. However, SimConnect uses Windows-1252 encoding. We noticed this issue when inspecting...

Solves #112 Adds support for the following MSFS 2024 APIs: - `aICreateParkedATCAircraftEx1` - `aICreateEnrouteATCAircraftEx1` - `aICreateNonATCAircraftEx1` - `aICreateSimulatedObjectEx1` - `enumerateSimObjectsAndLiveries` - `subscribeToFlowEvent` - `unsubscribeToFlowEvent` - `requestAllFacilities`