diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..dc99d92
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,16 @@
+# top-most EditorConfig file
+root = true
+
+# Unix-style newlines with a newline ending every file
+[*]
+charset = utf-8
+trim_trailing_whitespace = true
+end_of_line = lf
+insert_final_newline = true
+
+# Tab indentation (no size specified)
+[Makefile]
+indent_style = tab
+
+[*.{c,h,cpp,hpp}]
+indent_size = 4
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..ebe07f3
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2017 Even Rognlien
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 74137e9..4374a82 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,284 @@
-node-simconnect
+# node-simconnect :airplane:
+Wrapper for the SimConnect SDK for Flight Simulator X and Prepar3D (Windows only)
+
+This project is at a very early stage and wraps only a few basic SimConnect function calls. Feel free to join the development! :)
+
+# Installation 📦
+
+node-simconnect is a native NodeJS addon written in C++ and must be compiled to a dynamic C++ library before it can be loaded as a module in NodeJS. Included in this repository is a prebuilt binary built with SimConnect 10.0.61259.0 (FSX SP2), which is compatible with FSX SP2, FSX:SE and all versions of Prepar3D. Because SimConnect 10.0.61259.0 is a 32 bit library, you must use the 32 bit version of NodeJS in order to import the module.
+
+To install node-simconnect using the included binary:
+
+`npm install node-simconnect`
+
+**Note: The included binary requires the 32 bit version of NodeJS.**
+
+# Usage :grey_question:
+Import the module and create an instance:
+
+```ts
+const { SimConnect } = require('node-simconnect');
+
+const simConnect = new SimConnect();
+```
+
+## open
+
+Attempts to opens a session with SimConnect. If it fails to connect (eg. if sim is not running), the function immediately returns `false`. The success callback function will provide the `Client` object which you will use to interact with the simulator. The available features are described below. Please refer to [example.js](examples/nodejs/example.js) for more help.
+
+```ts
+open(
+ appName: string,
+ onSuccess: (client: Client) => void,
+ onQuit: () => void,
+ onException: (details) => void,
+ onError: (details) => void
+) : boolean;
+```
+
+```ts
+const ok = simConnect.open(
+ "My app's name",
+ successCallback,
+ quitCallback,
+ exceptionCallback,
+ errorCallback
+);
+
+if (!ok) {
+ console.log('Failed to connect. Please try again.');
+}
+
+function successCallback(client) {
+ const { name, version } = client;
+ console.log(`Connected to: ${name}\nSimConnect version: ${version}`);
+ // ... do stuff with client
+}
+
+function quitCallback() {
+ console.log('Sim quit');
+}
+
+function exceptionCallback(details) {
+ const { name, dwException, dwSendID, dwIndex } = details;
+ console.log(`The following exception occured: ${name}`);
+}
+
+function errorCallback(details) {
+ const { message, NTSTATUS } = details;
+ console.log(`The following error occured: ${message}`);
+}
+```
+
+## requestDataOnSimObject
+
+Request one or more [Simulation Variables](https://msdn.microsoft.com/en-us/library/cc526981.aspx) and set a callback function to later handle the received data. See [SDK Reference](https://msdn.microsoft.com/en-us/library/cc526983.aspx#SimConnect_RequestDataOnSimObject) for more details.
+
+Each simulation variable is defined by an array.
+
+Definition:
+```ts
+requestDataOnSimObject(
+ requestedValues: any[][] | number,
+ options: {
+ period: PERIOD, // SIMCONNECT_PERIOD_...
+ objectId: OBJECT_ID, // SIMCONNECT_OBJECT_...
+ flags: DATA_REQUEST_FLAG, // SIMCONNECT_DATA_REQUEST_FLAG_...
+ },
+ callback: (data: any) => void
+) : void
+```
+Requested value example:
+```ts
+[
+ "Plane Latitude", // Datum name
+ "degrees", // Units name
+ DATA_TYPE.FLOAT64, // Datum type (optional, FLOAT64 is default and works for most data types)
+ 0 // Epsilon (optional, 0 is default)
+]
+```
+Full example:
+```ts
+client.requestDataOnSimObject([
+ ["Plane Latitude", "degrees"],
+ ["Plane Longitude", "degrees"],
+ ["PLANE ALTITUDE", "feet"]
+], {
+ period: PERIOD.SIM_FRAME, // SIMCONNECT_PERIOD_ONCE
+ objectId: OBJECT_ID.USER, // SIMCONNECT_OBJECT_ID_USER
+ flags: DATA_REQUEST_FLAG.CHANGED, // SIMCONNECT_DATA_REQUEST_FLAG_DEFAULT
+}, (data) => {
+ console.log(
+ "Latitude: " + data["Plane Latitude"] + "\n" +
+ "Longitude: " + data["Plane Longitude"] + "\n" +
+ "Altitude: " + data["PLANE ALTITUDE"] + " feet"
+ );
+});
+```
+
+## requestDataOnSimObjectType
+Similar to `requestDataOnSimObject`. Used to retrieve information about simulation objects of a given type that are within a specified radius of the user's aircraft. See [SDK Reference](https://msdn.microsoft.com/en-us/library/cc526983.aspx#SimConnect_RequestDataOnSimObjectType) for more details.
+
+Definition:
+```ts
+requestDataOnSimObjectType(
+ requestedValues: any[][] | number,
+ options: {
+ radius: number,
+ type: SIMOBJECT_TYPE, // SIMCONNECT_SIMOBJECT_TYPE_...
+ },
+ callback: (data: any) => void
+) : void
+```
+Example: This will receive info about all aircraft within a 10 km radius. The callback will run one time for each identified aircraft. Notice that when `STRINGV` is requested, the unit should be `null`
+```ts
+client.requestDataOnSimObjectType([
+ ["ATC MODEL", null, 11], // SIMCONNECT_DATATYPE_STRINGV
+ ["Plane Latitude", "degrees"],
+ ["Plane Longitude", "degrees"]
+], {
+ radius: 10000,
+ type: SIMOBJECT_TYPE.AIRCRAFT
+}, (data) => {
+ // Called for each aircraft
+ console.log(data);
+});
+```
+
+## createDataDefinition
+Used to create a data definition. Returns an id which can be used with `requestDataOnSimObject`/`requestDataOnSimObjectType` in place of the 2D array. This should be used when you have multiple requests for the same data - otherwise the app will crash after receiving too many requests. Example:
+
+```ts
+createDataDefinition(requestedValues: any[][]) : number
+```
+
+```ts
+var navInfoDefId = client.createDataDefinition([
+ ["NAV DME:1", "Nautical miles"],
+ ["NAV GLIDE SLOPE ERROR:1", "Degrees"],
+ ["NAV RADIAL ERROR:1", "Degrees"],
+]);
+
+setInterval(() => {
+ client.requestDataOnSimObjectType(
+ navInfoDefId,
+ {
+ radius: 0,
+ type: SIMOBJECT_TYPE.USER, // SIMCONNECT_SIMOBJECT_TYPE_...
+ },
+ (data) => {
+ console.log(data)
+ }
+ );
+}, 1000);
+```
+
+## setDataOnSimObject
+Set a single [Simulation Variable](https://msdn.microsoft.com/en-us/library/cc526981.aspx) on user aircraft. First parameter is the datum name, second is the units name and last is the value.
+
+Definition:
+```ts
+setDataOnSimObject(
+ variableName: string,
+ unit: string,
+ value: number
+) : void
+```
+
+Example:
+```ts
+client.setDataOnSimObject("GENERAL ENG THROTTLE LEVER POSITION:1", "Percent", 50);
+```
+
+## subscribeToSystemEvent
+Subscribe to a system event. See [SDK Reference](https://msdn.microsoft.com/en-us/library/cc526983.aspx#SimConnect_SubscribeToSystemEvent) for available events.
+
+```ts
+subscribeToSystemEvent(
+ eventName: string,
+ callback: (value: number) => void
+) : void
+```
+
+Example:
+```ts
+client.subscribeToSystemEvent("Pause", (paused) => {
+ // Called when the system event occurs
+ console.log(paused ? "Sim paused" : "Sim un-paused");
+});
+```
+
+## close
+Manually close the connection to SimConnect. Returns `false` if it fails.
+
+```ts
+close() : boolean
+```
+
+Example:
+```ts
+const success = client.close();
+```
+
+# Manual build 🔨
+You might wish to build node-simconnect manually (eg. with the 64-bit SimConnect SDK that comes with Prepar3D v4). Due to the licensing of the SimConnect SDK the library files are not included in this repository, so you must provide these yourself.
+
+## Requirements
+* FSX or P3D SimConnect SDK files (.lib and .h).
+* Node.js (32 or 64 bit depending on which SDK you are using. FSX is 32 bit)
+* Python and MSVS 2017 build tools or newer. Check out [windows-build-tools](https://www.npmjs.com/package/windows-build-tools).
+
+
+## Build
+You must provide your own copy of the SDK files. By default these can be found here:
+
+* Microsoft Flight Simulator ("2020")
+ * `MSFS SDK/SimConnect SDK/include/SimConnect.h`
+ * `MSFS SDK/SimConnect SDK/lib/static/SimConnect.lib`
+* FSX Steam Edition
+ * `FSX/SDK/Core Utilities Kit/SimConnect SDK/inc/SimConnect.h`
+ * `FSX/SDK/Core Utilities Kit/SimConnect SDK/lib/SimConnect.lib`
+
+Once you have located the SDK files
+
+1. Navigate to `[your project]/node-modules/node-simconnect`
+1. Create a folder named `SimConnect` and copy the two folders `inc` and `lib` from the SimConnect SDK installation over to the new directory. These should include `SimConnect.h` and `SimConnect.lib`, respectively.
+1. Open a terminal in `[your project]/node-modules/node-simconnect` and run `npm run rebuild`.
+1. Verify that the build is working by running the example program: `node examples/nodejs/example.js`.
+
+**Note:** Your app will attempt to load the binary file in the following order:
+1. `build/Release`
+1. `build/Debug`
+1. `bin/win_ia32` (included pre build)
+
+# Using node-simconnect with Electron or NW.JS :electron:
+To use `node-simconnect` with Electron or NW.JS, the package must be built specifically for those frameworks. Read more about using native addons here: [Electron](https://github.com/electron/electron/blob/master/docs/tutorial/using-native-node-modules.md), [NW.JS](http://docs.nwjs.io/en/latest/For%20Users/Advanced/Use%20Native%20Node%20Modules/)
+
+## To build native Electron (version 11 or newer) addon:
+
+ ```HOME=~/.electron-gyp node-gyp rebuild --target=11.0.0 --arch=ia32 --msvs_version=2017 --dist-url=https://electronjs.org/headers```
+
+ (where `--target` is the version of Electron and `--arch` is either `ia32` or `x64`).
+
+## To build native NW.JS addon:
+
+ ```nw-gyp rebuild --target=0.49.1 --arch=ia32 --msvs_version=2017```
+
+ (where `--target` is the version of NW.JS).
+
+# Development
+
+1. Install [Microsoft Visual Studio 2019](https://visualstudio.microsoft.com/) (Community Edition is sufficient)
+1. Run `npm run rebuild:dev`
+1. Open `build\binding.sln`
+
+### Debugging with Microsoft Visual Studio
+
+1. In the Solution Explorer right click on **node_simconnect** and select **Properties**
+1. Select **Configuration: Debug**
+1. Open the **Debugging** page and set the following properties:
+ * **Command**: `$(ProgramFiles)\nodejs\node.exe`
+ * **Command Arguments**: `$(ProjectDir)..\examples\nodejs\example.js`
+
+## Licence
+[MIT](https://opensource.org/licenses/MIT)
diff --git a/bin/win32-x64-99/node-simconnect.node b/bin/win32-x64-99/node-simconnect.node
new file mode 100644
index 0000000..0d71d40
Binary files /dev/null and b/bin/win32-x64-99/node-simconnect.node differ
diff --git a/bin/win_ia32/node_simconnect.node b/bin/win_ia32/node_simconnect.node
new file mode 100644
index 0000000..dabe259
Binary files /dev/null and b/bin/win_ia32/node_simconnect.node differ
diff --git a/binding.gyp b/binding.gyp
new file mode 100644
index 0000000..c55aae4
--- /dev/null
+++ b/binding.gyp
@@ -0,0 +1,52 @@
+{
+ "targets": [
+ {
+ "target_name": "node_simconnect",
+ "sources": [
+ "src/simconnect_session.cc",
+ "src/simconnect_session.h",
+ "src/commons.h",
+ "src/binding.h",
+ "src/binding.cc",
+ "src/client_handler.h",
+ "src/client_handler.cc",
+ "src/dispatch_queue_worker.h",
+ "src/dispatch_queue_worker.cc",
+ ],
+ 'include_dirs': [
+ "SimConnect/Inc",
+ "
+
+
+
+ D:\GitRepos\_Newsky\newsky-frontend\node_modules\node-simconnect\build\Release\node_simconnect.node
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.command.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..43ce2b7
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.command.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.read.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..5a7c7c1
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.read.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.write.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..019de46
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/CL.write.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/link.command.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.command.1.tlog
new file mode 100644
index 0000000..e01c219
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.command.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/link.read.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.read.1.tlog
new file mode 100644
index 0000000..8c13cf0
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.read.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/link.write.1.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.write.1.tlog
new file mode 100644
index 0000000..383388f
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/link.write.1.tlog differ
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.lastbuildstate b/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.lastbuildstate
new file mode 100644
index 0000000..5bd0556
--- /dev/null
+++ b/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.lastbuildstate
@@ -0,0 +1,2 @@
+PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.30.30705:TargetPlatformVersion=10.0.19041.0:
+Release|x64|D:\GitRepos\_Newsky\newsky-frontend\node_modules\node-simconnect\build\|
diff --git a/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.write.1u.tlog b/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.write.1u.tlog
new file mode 100644
index 0000000..9be5edc
Binary files /dev/null and b/build/Release/obj/node_simconnect/node_simconnect.tlog/node_simconnect.write.1u.tlog differ
diff --git a/build/Release/obj/node_simconnect/src/binding.obj b/build/Release/obj/node_simconnect/src/binding.obj
new file mode 100644
index 0000000..cf48936
Binary files /dev/null and b/build/Release/obj/node_simconnect/src/binding.obj differ
diff --git a/build/Release/obj/node_simconnect/src/client_handler.obj b/build/Release/obj/node_simconnect/src/client_handler.obj
new file mode 100644
index 0000000..7148a64
Binary files /dev/null and b/build/Release/obj/node_simconnect/src/client_handler.obj differ
diff --git a/build/Release/obj/node_simconnect/src/dispatch_queue_worker.obj b/build/Release/obj/node_simconnect/src/dispatch_queue_worker.obj
new file mode 100644
index 0000000..35f3f7f
Binary files /dev/null and b/build/Release/obj/node_simconnect/src/dispatch_queue_worker.obj differ
diff --git a/build/Release/obj/node_simconnect/src/simconnect_session.obj b/build/Release/obj/node_simconnect/src/simconnect_session.obj
new file mode 100644
index 0000000..3adb79f
Binary files /dev/null and b/build/Release/obj/node_simconnect/src/simconnect_session.obj differ
diff --git a/build/Release/obj/node_simconnect/win_delay_load_hook.obj b/build/Release/obj/node_simconnect/win_delay_load_hook.obj
new file mode 100644
index 0000000..197f0c5
Binary files /dev/null and b/build/Release/obj/node_simconnect/win_delay_load_hook.obj differ
diff --git a/build/binding.sln b/build/binding.sln
new file mode 100644
index 0000000..2a2fc83
--- /dev/null
+++ b/build/binding.sln
@@ -0,0 +1,19 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2015
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "node_simconnect", "node_simconnect.vcxproj", "{3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Release|x64 = Release|x64
+ Debug|x64 = Debug|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}.Release|x64.ActiveCfg = Release|x64
+ {3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}.Release|x64.Build.0 = Release|x64
+ {3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}.Debug|x64.ActiveCfg = Debug|x64
+ {3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}.Debug|x64.Build.0 = Debug|x64
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/build/config.gypi b/build/config.gypi
new file mode 100644
index 0000000..28c014f
--- /dev/null
+++ b/build/config.gypi
@@ -0,0 +1,355 @@
+# Do not edit. File was generated by node-gyp's "configure" step
+{
+ "target_defaults": {
+ "cflags": [],
+ "default_configuration": "Release",
+ "defines": [],
+ "include_dirs": [],
+ "libraries": [],
+ "msbuild_toolset": "v143",
+ "msvs_windows_target_platform_version": "10.0.19041.0"
+ },
+ "variables": {
+ "asan": 0,
+ "build_v8_with_gn": "false",
+ "built_with_electron": 1,
+ "coverage": "false",
+ "dcheck_always_on": 0,
+ "debug_nghttp2": "false",
+ "debug_node": "false",
+ "enable_lto": "false",
+ "enable_pgo_generate": "false",
+ "enable_pgo_use": "false",
+ "error_on_warn": "false",
+ "force_dynamic_crt": 0,
+ "host_arch": "x64",
+ "icu_data_in": "..\\..\\deps\\icu-tmp\\icudt69l.dat",
+ "icu_endianness": "l",
+ "icu_gyp_path": "tools/icu/icu-generic.gyp",
+ "icu_path": "deps/icu-small",
+ "icu_small": "false",
+ "icu_ver_major": "69",
+ "is_debug": 0,
+ "llvm_version": "0.0",
+ "napi_build_version": "8",
+ "node_byteorder": "little",
+ "node_debug_lib": "false",
+ "node_enable_d8": "false",
+ "node_install_npm": "true",
+ "node_library_files": [
+ "lib/assert.js",
+ "lib/async_hooks.js",
+ "lib/buffer.js",
+ "lib/child_process.js",
+ "lib/cluster.js",
+ "lib/console.js",
+ "lib/constants.js",
+ "lib/crypto.js",
+ "lib/dgram.js",
+ "lib/diagnostics_channel.js",
+ "lib/dns.js",
+ "lib/domain.js",
+ "lib/events.js",
+ "lib/fs.js",
+ "lib/http.js",
+ "lib/http2.js",
+ "lib/https.js",
+ "lib/inspector.js",
+ "lib/module.js",
+ "lib/net.js",
+ "lib/os.js",
+ "lib/path.js",
+ "lib/perf_hooks.js",
+ "lib/process.js",
+ "lib/punycode.js",
+ "lib/querystring.js",
+ "lib/readline.js",
+ "lib/repl.js",
+ "lib/stream.js",
+ "lib/string_decoder.js",
+ "lib/sys.js",
+ "lib/timers.js",
+ "lib/tls.js",
+ "lib/trace_events.js",
+ "lib/tty.js",
+ "lib/url.js",
+ "lib/util.js",
+ "lib/v8.js",
+ "lib/vm.js",
+ "lib/wasi.js",
+ "lib/worker_threads.js",
+ "lib/zlib.js",
+ "lib/_http_agent.js",
+ "lib/_http_client.js",
+ "lib/_http_common.js",
+ "lib/_http_incoming.js",
+ "lib/_http_outgoing.js",
+ "lib/_http_server.js",
+ "lib/_stream_duplex.js",
+ "lib/_stream_passthrough.js",
+ "lib/_stream_readable.js",
+ "lib/_stream_transform.js",
+ "lib/_stream_wrap.js",
+ "lib/_stream_writable.js",
+ "lib/_tls_common.js",
+ "lib/_tls_wrap.js",
+ "lib/assert/strict.js",
+ "lib/dns/promises.js",
+ "lib/fs/promises.js",
+ "lib/internal/abort_controller.js",
+ "lib/internal/assert.js",
+ "lib/internal/async_hooks.js",
+ "lib/internal/blob.js",
+ "lib/internal/blocklist.js",
+ "lib/internal/buffer.js",
+ "lib/internal/child_process.js",
+ "lib/internal/cli_table.js",
+ "lib/internal/constants.js",
+ "lib/internal/dgram.js",
+ "lib/internal/dtrace.js",
+ "lib/internal/encoding.js",
+ "lib/internal/errors.js",
+ "lib/internal/error_serdes.js",
+ "lib/internal/event_target.js",
+ "lib/internal/fixed_queue.js",
+ "lib/internal/freelist.js",
+ "lib/internal/freeze_intrinsics.js",
+ "lib/internal/heap_utils.js",
+ "lib/internal/histogram.js",
+ "lib/internal/http.js",
+ "lib/internal/idna.js",
+ "lib/internal/inspector_async_hook.js",
+ "lib/internal/js_stream_socket.js",
+ "lib/internal/linkedlist.js",
+ "lib/internal/net.js",
+ "lib/internal/options.js",
+ "lib/internal/priority_queue.js",
+ "lib/internal/querystring.js",
+ "lib/internal/repl.js",
+ "lib/internal/socketaddress.js",
+ "lib/internal/socket_list.js",
+ "lib/internal/stream_base_commons.js",
+ "lib/internal/timers.js",
+ "lib/internal/trace_events_async_hooks.js",
+ "lib/internal/tty.js",
+ "lib/internal/url.js",
+ "lib/internal/util.js",
+ "lib/internal/v8_prof_polyfill.js",
+ "lib/internal/v8_prof_processor.js",
+ "lib/internal/validators.js",
+ "lib/internal/watchdog.js",
+ "lib/internal/worker.js",
+ "lib/internal/assert/assertion_error.js",
+ "lib/internal/assert/calltracker.js",
+ "lib/internal/bootstrap/environment.js",
+ "lib/internal/bootstrap/loaders.js",
+ "lib/internal/bootstrap/node.js",
+ "lib/internal/bootstrap/pre_execution.js",
+ "lib/internal/bootstrap/switches/does_not_own_process_state.js",
+ "lib/internal/bootstrap/switches/does_own_process_state.js",
+ "lib/internal/bootstrap/switches/is_main_thread.js",
+ "lib/internal/bootstrap/switches/is_not_main_thread.js",
+ "lib/internal/child_process/serialization.js",
+ "lib/internal/cluster/child.js",
+ "lib/internal/cluster/primary.js",
+ "lib/internal/cluster/round_robin_handle.js",
+ "lib/internal/cluster/shared_handle.js",
+ "lib/internal/cluster/utils.js",
+ "lib/internal/cluster/worker.js",
+ "lib/internal/console/constructor.js",
+ "lib/internal/console/global.js",
+ "lib/internal/crypto/aes.js",
+ "lib/internal/crypto/certificate.js",
+ "lib/internal/crypto/cipher.js",
+ "lib/internal/crypto/diffiehellman.js",
+ "lib/internal/crypto/dsa.js",
+ "lib/internal/crypto/ec.js",
+ "lib/internal/crypto/hash.js",
+ "lib/internal/crypto/hashnames.js",
+ "lib/internal/crypto/hkdf.js",
+ "lib/internal/crypto/keygen.js",
+ "lib/internal/crypto/keys.js",
+ "lib/internal/crypto/mac.js",
+ "lib/internal/crypto/pbkdf2.js",
+ "lib/internal/crypto/random.js",
+ "lib/internal/crypto/rsa.js",
+ "lib/internal/crypto/scrypt.js",
+ "lib/internal/crypto/sig.js",
+ "lib/internal/crypto/util.js",
+ "lib/internal/crypto/webcrypto.js",
+ "lib/internal/crypto/x509.js",
+ "lib/internal/debugger/inspect.js",
+ "lib/internal/debugger/inspect_client.js",
+ "lib/internal/debugger/inspect_repl.js",
+ "lib/internal/dns/promises.js",
+ "lib/internal/dns/utils.js",
+ "lib/internal/fs/dir.js",
+ "lib/internal/fs/promises.js",
+ "lib/internal/fs/read_file_context.js",
+ "lib/internal/fs/rimraf.js",
+ "lib/internal/fs/streams.js",
+ "lib/internal/fs/sync_write_stream.js",
+ "lib/internal/fs/utils.js",
+ "lib/internal/fs/watchers.js",
+ "lib/internal/fs/cp/cp-sync.js",
+ "lib/internal/fs/cp/cp.js",
+ "lib/internal/http2/compat.js",
+ "lib/internal/http2/core.js",
+ "lib/internal/http2/util.js",
+ "lib/internal/legacy/processbinding.js",
+ "lib/internal/main/check_syntax.js",
+ "lib/internal/main/eval_stdin.js",
+ "lib/internal/main/eval_string.js",
+ "lib/internal/main/inspect.js",
+ "lib/internal/main/print_help.js",
+ "lib/internal/main/prof_process.js",
+ "lib/internal/main/repl.js",
+ "lib/internal/main/run_main_module.js",
+ "lib/internal/main/worker_thread.js",
+ "lib/internal/modules/package_json_reader.js",
+ "lib/internal/modules/run_main.js",
+ "lib/internal/modules/cjs/helpers.js",
+ "lib/internal/modules/cjs/loader.js",
+ "lib/internal/modules/esm/create_dynamic_module.js",
+ "lib/internal/modules/esm/get_format.js",
+ "lib/internal/modules/esm/get_source.js",
+ "lib/internal/modules/esm/loader.js",
+ "lib/internal/modules/esm/module_job.js",
+ "lib/internal/modules/esm/module_map.js",
+ "lib/internal/modules/esm/resolve.js",
+ "lib/internal/modules/esm/transform_source.js",
+ "lib/internal/modules/esm/translators.js",
+ "lib/internal/perf/event_loop_delay.js",
+ "lib/internal/perf/event_loop_utilization.js",
+ "lib/internal/perf/nodetiming.js",
+ "lib/internal/perf/observe.js",
+ "lib/internal/perf/performance.js",
+ "lib/internal/perf/performance_entry.js",
+ "lib/internal/perf/timerify.js",
+ "lib/internal/perf/usertiming.js",
+ "lib/internal/perf/utils.js",
+ "lib/internal/per_context/domexception.js",
+ "lib/internal/per_context/messageport.js",
+ "lib/internal/per_context/primordials.js",
+ "lib/internal/policy/manifest.js",
+ "lib/internal/policy/sri.js",
+ "lib/internal/process/esm_loader.js",
+ "lib/internal/process/execution.js",
+ "lib/internal/process/per_thread.js",
+ "lib/internal/process/policy.js",
+ "lib/internal/process/promises.js",
+ "lib/internal/process/report.js",
+ "lib/internal/process/signal.js",
+ "lib/internal/process/task_queues.js",
+ "lib/internal/process/warning.js",
+ "lib/internal/process/worker_thread_only.js",
+ "lib/internal/readline/callbacks.js",
+ "lib/internal/readline/emitKeypressEvents.js",
+ "lib/internal/readline/utils.js",
+ "lib/internal/repl/await.js",
+ "lib/internal/repl/history.js",
+ "lib/internal/repl/utils.js",
+ "lib/internal/source_map/prepare_stack_trace.js",
+ "lib/internal/source_map/source_map.js",
+ "lib/internal/source_map/source_map_cache.js",
+ "lib/internal/streams/add-abort-signal.js",
+ "lib/internal/streams/buffer_list.js",
+ "lib/internal/streams/compose.js",
+ "lib/internal/streams/destroy.js",
+ "lib/internal/streams/duplex.js",
+ "lib/internal/streams/duplexify.js",
+ "lib/internal/streams/end-of-stream.js",
+ "lib/internal/streams/from.js",
+ "lib/internal/streams/lazy_transform.js",
+ "lib/internal/streams/legacy.js",
+ "lib/internal/streams/passthrough.js",
+ "lib/internal/streams/pipeline.js",
+ "lib/internal/streams/readable.js",
+ "lib/internal/streams/state.js",
+ "lib/internal/streams/transform.js",
+ "lib/internal/streams/utils.js",
+ "lib/internal/streams/writable.js",
+ "lib/internal/test/binding.js",
+ "lib/internal/test/transfer.js",
+ "lib/internal/tls/parse-cert-string.js",
+ "lib/internal/tls/secure-context.js",
+ "lib/internal/tls/secure-pair.js",
+ "lib/internal/util/comparisons.js",
+ "lib/internal/util/debuglog.js",
+ "lib/internal/util/inspect.js",
+ "lib/internal/util/inspector.js",
+ "lib/internal/util/iterable_weak_map.js",
+ "lib/internal/util/types.js",
+ "lib/internal/vm/module.js",
+ "lib/internal/webstreams/encoding.js",
+ "lib/internal/webstreams/queuingstrategies.js",
+ "lib/internal/webstreams/readablestream.js",
+ "lib/internal/webstreams/transfer.js",
+ "lib/internal/webstreams/transformstream.js",
+ "lib/internal/webstreams/util.js",
+ "lib/internal/webstreams/writablestream.js",
+ "lib/internal/worker/io.js",
+ "lib/internal/worker/js_transferable.js",
+ "lib/path/posix.js",
+ "lib/path/win32.js",
+ "lib/stream/consumers.js",
+ "lib/stream/promises.js",
+ "lib/stream/web.js",
+ "lib/timers/promises.js",
+ "lib/util/types.js"
+ ],
+ "node_module_version": 99,
+ "node_no_browser_globals": "false",
+ "node_prefix": "/usr/local",
+ "node_release_urlbase": "",
+ "node_shared": "false",
+ "node_shared_brotli": "false",
+ "node_shared_cares": "false",
+ "node_shared_http_parser": "false",
+ "node_shared_libuv": "false",
+ "node_shared_nghttp2": "false",
+ "node_shared_nghttp3": "false",
+ "node_shared_ngtcp2": "false",
+ "node_shared_openssl": "false",
+ "node_shared_zlib": "false",
+ "node_tag": "",
+ "node_target_type": "executable",
+ "node_use_bundled_v8": "true",
+ "node_use_dtrace": "false",
+ "node_use_etw": "true",
+ "node_use_node_code_cache": "false",
+ "node_use_node_snapshot": "false",
+ "node_use_openssl": "true",
+ "node_use_v8_platform": "true",
+ "node_with_ltcg": "false",
+ "node_without_node_options": "false",
+ "openssl_fips": "",
+ "openssl_is_fips": "false",
+ "openssl_no_asm": 1,
+ "openssl_quic": "true",
+ "ossfuzz": "false",
+ "shlib_suffix": "so.93",
+ "target_arch": "x64",
+ "v8_enable_31bit_smis_on_64bit_arch": 0,
+ "v8_enable_gdbjit": 0,
+ "v8_enable_i18n_support": 1,
+ "v8_enable_inspector": 1,
+ "v8_enable_lite_mode": 0,
+ "v8_enable_object_print": 1,
+ "v8_enable_pointer_compression": 0,
+ "v8_enable_webassembly": 1,
+ "v8_no_strict_aliasing": 1,
+ "v8_optimized_debug": 1,
+ "v8_promise_internal_field_count": 1,
+ "v8_random_seed": 0,
+ "v8_trace_maps": 0,
+ "v8_use_siphash": 1,
+ "want_separate_host_toolset": 1,
+ "nodedir": "C:\\Users\\Robson\\.electron-gyp\\16.0.8",
+ "standalone_static_library": 1,
+ "msbuild_path": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe",
+ "runtime": "electron",
+ "target": "16.0.8",
+ "build_from_source": "true"
+ }
+}
diff --git a/build/node_simconnect.vcxproj b/build/node_simconnect.vcxproj
new file mode 100644
index 0000000..829e1a7
--- /dev/null
+++ b/build/node_simconnect.vcxproj
@@ -0,0 +1,154 @@
+
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ {3FB7EA61-704B-D0C6-7416-9EEBB1FC01F7}
+ Win32Proj
+ node_simconnect
+ true
+ x64
+ 10.0.19041.0
+
+
+
+ DynamicLibrary
+
+
+ v143
+
+
+
+
+
+
+
+
+
+ $(ExecutablePath);$(MSBuildProjectDirectory)\..\bin\;$(MSBuildProjectDirectory)\..\bin\
+ true
+ $(Configuration)\obj\$(ProjectName)\
+ true
+ $(SolutionDir)$(Configuration)\
+ .node
+ .node
+ .node
+ .node
+ $(ProjectName)
+ $(OutDir)\$(ProjectName).node
+
+
+
+ C:\Users\Robson\.electron-gyp\16.0.8\include\node;C:\Users\Robson\.electron-gyp\16.0.8\src;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\config;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\openssl\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\uv\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\zlib;C:\Users\Robson\.electron-gyp\16.0.8\deps\v8\include;C:\MSFS SDK\SimConnect SDK\include;..\..\node-addon-api;%(AdditionalIncludeDirectories)
+ -std:c++17 %(AdditionalOptions)
+ EnableFastChecks
+ true
+ OldStyle
+ 4351;4355;4800;4251;4275;4244;4267;%(DisableSpecificWarnings)
+ Sync
+ false
+ true
+ false
+ Disabled
+ NotUsing
+ NODE_GYP_MODULE_NAME=node_simconnect;USING_UV_SHARED=1;USING_V8_SHARED=1;V8_DEPRECATION_WARNINGS=1;V8_DEPRECATION_WARNINGS;V8_IMMINENT_DEPRECATION_WARNINGS;_GLIBCXX_USE_CXX11_ABI=1;V8_COMPRESS_POINTERS;V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE;V8_31BIT_SMIS_ON_64BIT_ARCH;V8_REVERSE_JSARGS;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_HAS_EXCEPTIONS=0;OPENSSL_NO_PINSHARED;OPENSSL_THREADS;OPENSSL_NO_ASM;NAPI_DISABLE_CPP_EXCEPTIONS;BUILDING_NODE_EXTENSION;HOST_BINARY="node.exe";DEBUG;_DEBUG;V8_ENABLE_CHECKS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+ true
+ true
+ false
+ Level3
+
+
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;DelayImp.lib;"C:\\Users\\Robson\\.electron-gyp\\16.0.8\\x64\\node.lib";C:\MSFS SDK\SimConnect SDK\lib\SimConnect.lib;Ws2_32.lib;Shlwapi.lib
+ /ignore:4199 %(AdditionalOptions)
+ node.exe;%(DelayLoadDLLs)
+ true
+ $(OutDir)$(ProjectName).node
+ true
+ .node
+ MachineX64
+
+
+ C:\Users\Robson\.electron-gyp\16.0.8\include\node;C:\Users\Robson\.electron-gyp\16.0.8\src;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\config;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\openssl\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\uv\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\zlib;C:\Users\Robson\.electron-gyp\16.0.8\deps\v8\include;C:\MSFS SDK\SimConnect SDK\include;..\..\node-addon-api;%(AdditionalIncludeDirectories)
+ NODE_GYP_MODULE_NAME=node_simconnect;USING_UV_SHARED=1;USING_V8_SHARED=1;V8_DEPRECATION_WARNINGS=1;V8_DEPRECATION_WARNINGS;V8_IMMINENT_DEPRECATION_WARNINGS;_GLIBCXX_USE_CXX11_ABI=1;V8_COMPRESS_POINTERS;V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE;V8_31BIT_SMIS_ON_64BIT_ARCH;V8_REVERSE_JSARGS;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_HAS_EXCEPTIONS=0;OPENSSL_NO_PINSHARED;OPENSSL_THREADS;OPENSSL_NO_ASM;NAPI_DISABLE_CPP_EXCEPTIONS;BUILDING_NODE_EXTENSION;HOST_BINARY="node.exe";DEBUG;_DEBUG;V8_ENABLE_CHECKS;%(PreprocessorDefinitions);%(PreprocessorDefinitions)
+
+
+ copy /Y "C:\MSFS SDK\SimConnect SDK\lib\SimConnect.dll" "$(SolutionDir)Release\SimConnect.dll"
+
+
+
+
+ C:\Users\Robson\.electron-gyp\16.0.8\include\node;C:\Users\Robson\.electron-gyp\16.0.8\src;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\config;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\openssl\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\uv\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\zlib;C:\Users\Robson\.electron-gyp\16.0.8\deps\v8\include;C:\MSFS SDK\SimConnect SDK\include;..\..\node-addon-api;%(AdditionalIncludeDirectories)
+ -std:c++17 %(AdditionalOptions)
+ true
+ OldStyle
+ 4351;4355;4800;4251;4275;4244;4267;%(DisableSpecificWarnings)
+ Sync
+ Speed
+ true
+ AnySuitable
+ true
+ true
+ true
+ Full
+ NotUsing
+ NODE_GYP_MODULE_NAME=node_simconnect;USING_UV_SHARED=1;USING_V8_SHARED=1;V8_DEPRECATION_WARNINGS=1;V8_DEPRECATION_WARNINGS;V8_IMMINENT_DEPRECATION_WARNINGS;_GLIBCXX_USE_CXX11_ABI=1;V8_COMPRESS_POINTERS;V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE;V8_31BIT_SMIS_ON_64BIT_ARCH;V8_REVERSE_JSARGS;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_HAS_EXCEPTIONS=0;OPENSSL_NO_PINSHARED;OPENSSL_THREADS;OPENSSL_NO_ASM;NAPI_DISABLE_CPP_EXCEPTIONS;BUILDING_NODE_EXTENSION;HOST_BINARY="node.exe";%(PreprocessorDefinitions)
+ MultiThreadedDLL
+ false
+ true
+ true
+ false
+ Level3
+
+
+ kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;DelayImp.lib;"C:\\Users\\Robson\\.electron-gyp\\16.0.8\\x64\\node.lib";C:\MSFS SDK\SimConnect SDK\lib\SimConnect.lib;Ws2_32.lib;Shlwapi.lib
+ /ignore:4199 %(AdditionalOptions)
+ node.exe;%(DelayLoadDLLs)
+ true
+ $(OutDir)$(ProjectName).node
+ true
+ .node
+ MachineX64
+
+
+ C:\Users\Robson\.electron-gyp\16.0.8\include\node;C:\Users\Robson\.electron-gyp\16.0.8\src;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\config;C:\Users\Robson\.electron-gyp\16.0.8\deps\openssl\openssl\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\uv\include;C:\Users\Robson\.electron-gyp\16.0.8\deps\zlib;C:\Users\Robson\.electron-gyp\16.0.8\deps\v8\include;C:\MSFS SDK\SimConnect SDK\include;..\..\node-addon-api;%(AdditionalIncludeDirectories)
+ NODE_GYP_MODULE_NAME=node_simconnect;USING_UV_SHARED=1;USING_V8_SHARED=1;V8_DEPRECATION_WARNINGS=1;V8_DEPRECATION_WARNINGS;V8_IMMINENT_DEPRECATION_WARNINGS;_GLIBCXX_USE_CXX11_ABI=1;V8_COMPRESS_POINTERS;V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE;V8_31BIT_SMIS_ON_64BIT_ARCH;V8_REVERSE_JSARGS;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_HAS_EXCEPTIONS=0;OPENSSL_NO_PINSHARED;OPENSSL_THREADS;OPENSSL_NO_ASM;NAPI_DISABLE_CPP_EXCEPTIONS;BUILDING_NODE_EXTENSION;HOST_BINARY="node.exe";%(PreprocessorDefinitions);%(PreprocessorDefinitions)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)\src\simconnect_session.obj
+
+
+ $(IntDir)\src\binding.obj
+
+
+ $(IntDir)\src\client_handler.obj
+
+
+ $(IntDir)\src\dispatch_queue_worker.obj
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/node_simconnect.vcxproj.filters b/build/node_simconnect.vcxproj.filters
new file mode 100644
index 0000000..1c1de87
--- /dev/null
+++ b/build/node_simconnect.vcxproj.filters
@@ -0,0 +1,118 @@
+
+
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {E5D29F2B-0177-9942-CA95-0FF700094F89}
+
+
+ {D9C367F9-992E-BEF1-3EEB-5E8D506D42B8}
+
+
+ {29FA8469-EFDB-5351-9397-303AC3B1F6F9}
+
+
+ {F97D22CF-7980-7B2C-730F-39A46869D035}
+
+
+ {56DF7A98-063D-FB9D-485C-089023B4C16A}
+
+
+ {77348C0E-2034-7791-74D5-63C077DF5A3B}
+
+
+ {8CDEE807-BC53-E450-C8B8-4DEBB66742D4}
+
+
+ {739DB09A-CC57-A953-A6CF-F64FA08E4FA7}
+
+
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ ..\src
+
+
+ D:\GitRepos\_Newsky\newsky-frontend\node_modules\node-gyp\src
+
+
+ ..
+
+
+
diff --git a/build/node_simconnect.vcxproj.user b/build/node_simconnect.vcxproj.user
new file mode 100644
index 0000000..88a5509
--- /dev/null
+++ b/build/node_simconnect.vcxproj.user
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/examples/nodejs/example.js b/examples/nodejs/example.js
new file mode 100644
index 0000000..f82973f
--- /dev/null
+++ b/examples/nodejs/example.js
@@ -0,0 +1,73 @@
+const { SimConnect, PERIOD, SIMOBJECT_TYPE, DATATYPE } = require(`../..`);
+
+const simConnect = new SimConnect()
+
+tryToConnect();
+
+function tryToConnect() {
+ const ok = simConnect.open(
+ "My app's name",
+ onOpen,
+ onQuit,
+ onException,
+ onError
+ );
+ if (!ok) {
+ setTimeout(() => {
+ console.log("Failed to connect. Retrying...")
+ tryToConnect();
+ }, 5000);
+ }
+}
+
+function onOpen(client) {
+ console.log(client.name, client.version);
+
+ client.subscribeToSystemEvent("Pause", value => {
+ console.log("Pause status:", value)
+ })
+
+ client.requestSystemState("AircraftLoaded", function(obj) {
+ console.log("Loaded aircraft:", obj.string);
+ });
+
+ const navInfoDefId = client.createDataDefinition([
+ ["ATC FLIGHT NUMBER", null, DATATYPE.STRINGV], // SIMCONNECT_DATATYPE_STRINGV
+ ["NAV NAME:1", null, DATATYPE.STRINGV], // SIMCONNECT_DATATYPE_STRINGV
+ ["Plane Latitude", "degrees"],
+ ["Plane Longitude", "degrees"],
+ ]);
+
+ client.requestDataOnSimObject(navInfoDefId, {
+ period: PERIOD.ONCE, // SIMCONNECT_PERIOD_ONCE
+ objectId: SIMOBJECT_TYPE.USER, // SIMCONNECT_OBJECT_ID_USER
+ flags: 0, // SIMCONNECT_DATA_REQUEST_FLAG_DEFAULT
+ }, (data) => {
+ console.log(data)
+ });
+
+ client.requestDataOnSimObjectType([
+ ["ATC MODEL", null, DATATYPE.STRINGV], // SIMCONNECT_DATATYPE_STRINGV
+ ["Plane Latitude", "degrees"],
+ ["Plane Longitude", "degrees"]
+ ], {
+ radius: 10000,
+ type: SIMOBJECT_TYPE.AIRCRAFT // SIMCONNECT_SIMOBJECT_TYPE_AIRCRAFT
+ }, (data) => {
+ // Called for each aircraft
+ console.log(data);
+ });
+}
+
+function onQuit() {
+ console.log("Quit :(")
+ tryToConnect();
+}
+
+function onException(ex) {
+ console.log("Exception: ", ex)
+}
+
+function onError(err) {
+ console.log("Error: ", err)
+}
\ No newline at end of file
diff --git a/index.d.ts b/index.d.ts
new file mode 100644
index 0000000..70ae0c8
--- /dev/null
+++ b/index.d.ts
@@ -0,0 +1,81 @@
+export class SimConnect {
+ open(
+ appName: string,
+ onOpen: (client: Client) => void,
+ onQuit: () => void,
+ onException: (details: Exception) => void,
+ onError: (details: Error) => void
+ ): boolean;
+}
+
+interface Client {
+ name: string;
+ version: string;
+
+ requestDataOnSimObject(
+ reqData: RequestDataObject[] | number,
+ options: RequestDataOnSimObjectOptions,
+ callback: (data: ResponseData) => void
+ ): void;
+
+ requestDataOnSimObjectType(
+ reqData: RequestDataObject[] | number,
+ options: RequestDataOnSimObjectTypeOptions,
+ callback: (data: ResponseData) => void
+ ): void;
+
+ setDataOnSimObject(
+ variableName: string,
+ unit: string,
+ value: number
+ ): void;
+
+ subscribeToSystemEvent(
+ eventName: string,
+ callback: (value: number) => void
+ ): void;
+
+ createDataDefinition(
+ reqData: RequestDataObject[]
+ ): number;
+
+ requestSystemState(
+ stateName: string,
+ callback: (data: SystemState) => void
+ ): void;
+
+ close(): boolean;
+}
+
+interface RequestDataOnSimObjectOptions {
+ period: number,
+ objectId: number,
+ flags: number,
+}
+
+interface RequestDataOnSimObjectTypeOptions {
+ radius: number,
+ type: number,
+}
+
+type RequestDataObject = [
+ variableName: string,
+ units: string | null,
+ dataType?: number
+]
+
+interface ResponseData { [key:string]: number | string | undefined }
+
+interface SystemState { integer: number, float: number, string: string }
+
+interface Exception {
+ readonly name: string;
+ readonly dwException: number;
+ readonly dwSendID: number;
+ readonly dwIndex: number;
+}
+
+interface Error {
+ readonly message: string;
+ readonly NTSTATUS: number;
+}
\ No newline at end of file
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..70cf11d
--- /dev/null
+++ b/index.js
@@ -0,0 +1,31 @@
+if (process.platform !== `win32`) {
+ throw `node-simconnect: The only supported platform is Windows (win32). Found: ${process.platform}`;
+}
+
+let nodeSimconnect = undefined;
+
+try {
+ const TEXT_COLOR = '\x1b[30m\x1b[44m%s\x1b[0m';
+ // Try loading manual build first
+ try {
+ nodeSimconnect = require(`./build/Release/node_simconnect`);
+ console.info(TEXT_COLOR, `node-simconnect: Local Debug build loaded`);
+ } catch {
+ nodeSimconnect = require(`./build/Debug/node_simconnect`);
+ console.info(TEXT_COLOR, `node-simconnect: Local Release build loaded`);
+ }
+} catch (ex) {
+ // If it fails, load the included binary
+ console.info(`node-simconnect: Failed to load manual build (${ex.code})`);
+ console.info(`node-simconnect: Loading pre-built binary`);
+ if (process.arch === `x64`) {
+ throw `node-simconnect: The pre-built binary only works with the 32-bit version of Node.js`;
+ }
+ nodeSimconnect = require(`./bin/win_ia32/node_simconnect`);
+ console.info(`node-simconnect: Pre-built binary loaded`);
+}
+
+module.exports = {
+ SimConnect: nodeSimconnect.SimConnect,
+ ...require("./src/generated/constants")
+};
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..3ecdd5e
--- /dev/null
+++ b/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "node-simconnect",
+ "version": "2.0.0-beta.2",
+ "description": "Wrapper for the SimConnect SDK for Flight Simulator X and Prepar3D (Windows only)",
+ "main": "index.js",
+ "scripts": {
+ "rebuild": "node-gyp configure rebuild --msvs_version=2019 --arch=ia32",
+ "rebuild:dev": "npm run rebuild -- --debug"
+ },
+ "author": "",
+ "license": "MIT",
+ "gypfile": false,
+ "dependencies": {},
+ "directories": {
+ "example": "examples"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/EvenAR/node-simconnect.git"
+ },
+ "keywords": [
+ "FSX",
+ "P3D",
+ "SDK",
+ "SimConnect",
+ "Prepar3D",
+ "FlightSimulator",
+ "Simulator"
+ ],
+ "bugs": {
+ "url": "https://github.com/EvenAR/node-simconnect/issues"
+ },
+ "homepage": "https://github.com/EvenAR/node-simconnect#readme",
+ "devDependencies": {
+ "bindings": "^1.5.0",
+ "node-addon-api": "^3.0.2",
+ "node-gyp": "^7.1.0"
+ }
+}
diff --git a/scripts/generateConstants.js b/scripts/generateConstants.js
new file mode 100644
index 0000000..afd33b2
--- /dev/null
+++ b/scripts/generateConstants.js
@@ -0,0 +1,58 @@
+const fs = require('fs');
+const readline = require('readline');
+
+const INPUT_FILE = `${__dirname}/../SimConnect/inc/SimConnect.h`;
+const OUTPUT_DIRECTORY = `${__dirname}/../src/generated/`;
+const RELEVANT_ENUMS = ["PERIOD", "SIMOBJECT_TYPE", "DATATYPE"]; // Without the "SIMCONNECT_"-prefix
+
+const inputFile = readline.createInterface({
+ input: fs.createReadStream(INPUT_FILE),
+ output: process.stdout,
+ terminal: false
+});
+
+if (!fs.existsSync(OUTPUT_DIRECTORY)){
+ fs.mkdirSync(OUTPUT_DIRECTORY, { recursive: true });
+}
+
+const ENUM_NAME_REGEX = /enum SIMCONNECT_(\S*) {/gm;
+const ENUM_VALUE_REGEX = /^\s*SIMCONNECT_([A-Z0-9_]*)((.*=\s*(.*)\s*),)?/;
+const ENUM_END_REGEX = /^\s*};\s*$/;
+
+let valueCounter = 0;
+let currentEnumName = undefined;
+
+const outputJson = {};
+
+inputFile.on('line', (line) => {
+ const enumNameMatch = ENUM_NAME_REGEX.exec(line);
+
+ if (enumNameMatch) {
+ if (!RELEVANT_ENUMS.includes(enumNameMatch[1])) return;
+ currentEnumName = enumNameMatch[1];
+ outputJson[currentEnumName] = {};
+ valueCounter = 0;
+ } else if (currentEnumName) {
+ if (ENUM_END_REGEX.exec(line)) {
+ currentEnumName = undefined;
+ } else {
+ const nameMatch = ENUM_VALUE_REGEX.exec(line);
+ if (nameMatch) {
+ const valueName = nameMatch[1].replace(currentEnumName + "_", "");
+ const fixedValue = nameMatch[4];
+ if (fixedValue) {
+ // Skip ahead and continue incrementing from this value
+ valueCounter = Number.parseInt(fixedValue.trim());
+ }
+ outputJson[currentEnumName][valueName] = valueCounter;
+ valueCounter++;
+ }
+ }
+ }
+})
+
+inputFile.on("close", () => {
+ const outputFile = fs.createWriteStream(`${OUTPUT_DIRECTORY}/constants.js`);
+ outputFile.write(`// Autogenerated file [${new Date().toDateString()}]\r\n`);
+ outputFile.write("module.exports = " + JSON.stringify(outputJson, null, 4))
+})
\ No newline at end of file
diff --git a/scripts/install.js b/scripts/install.js
new file mode 100644
index 0000000..a2d4645
--- /dev/null
+++ b/scripts/install.js
@@ -0,0 +1,6 @@
+const NOT_WINDOWS = process.platform !== "win32";
+const YELLOW = '\x1b[33m%s\x1b[0m';
+
+if (NOT_WINDOWS) {
+ console.log(YELLOW, `Warning: node-simconnect does not work on ${process.platform}`);
+}
\ No newline at end of file
diff --git a/src/binding.cc b/src/binding.cc
new file mode 100644
index 0000000..5f73275
--- /dev/null
+++ b/src/binding.cc
@@ -0,0 +1,43 @@
+#include "binding.h"
+#include "simconnect_session.h"
+#include "client_handler.h"
+#include
+
+NodeSimconnect::NodeSimconnect(const Napi::CallbackInfo& info) : Napi::ObjectWrap(info) { }
+
+Napi::Object NodeSimconnect::init(Napi::Env env, Napi::Object exports) {
+ Napi::Function classFunction = DefineClass(env, "SimConnect", {
+ InstanceMethod<&NodeSimconnect::open>("open")
+ });
+
+ auto constructor = new Napi::FunctionReference();
+ *constructor = Napi::Persistent(classFunction);
+ exports.Set("SimConnect", classFunction);
+ env.SetInstanceData(constructor);
+ return exports;
+}
+
+Napi::Value NodeSimconnect::open(const Napi::CallbackInfo& info) {
+ auto appName = info[0].As();
+
+ auto onOpen = info[1].As();
+ auto onQuit = info[2].As();
+ auto onException = info[3].As();
+ auto onError = info[4].As();
+
+ if (!simHandler) {
+ simHandler = Napi::Persistent(ClientHandler::init(info.Env()));
+ }
+
+ ClientHandler* simHandlerInstance = ClientHandler::Unwrap(simHandler.Value().ToObject());
+ bool ok = simHandlerInstance->open(appName.Utf8Value(), onOpen, onQuit, onException, onError);
+
+ return Napi::Boolean::New(info.Env(), ok);
+}
+
+Napi::Object InitModule(Napi::Env env, Napi::Object exports) {
+ NodeSimconnect::init(env, exports);
+ return exports;
+}
+
+NODE_API_MODULE(node_simconnect, InitModule);
diff --git a/src/binding.h b/src/binding.h
new file mode 100644
index 0000000..cc25c97
--- /dev/null
+++ b/src/binding.h
@@ -0,0 +1,18 @@
+#ifndef BINDING_H
+#define BINDING_H
+
+#include
+#include "commons.h"
+
+class DispatchProgressWorker;
+
+class NodeSimconnect : public Napi::ObjectWrap {
+ public:
+ NodeSimconnect(const Napi::CallbackInfo& info);
+ static Napi::Object init(Napi::Env env, Napi::Object exports);
+ private:
+ Napi::ObjectReference simHandler;
+ Napi::Value open(const Napi::CallbackInfo& info);
+};
+
+#endif
diff --git a/src/client_handler.cc b/src/client_handler.cc
new file mode 100644
index 0000000..1aeb394
--- /dev/null
+++ b/src/client_handler.cc
@@ -0,0 +1,229 @@
+#include "client_handler.h"
+#include "dispatch_queue_worker.h"
+#include
+#include
+
+// Napi utils
+#define getOptionalElement(array, index, type, conversion, fallback) \
+ array.Length() > index ? array[index].As().conversion() : fallback;
+
+ClientHandler::ClientHandler(const Napi::CallbackInfo& info)
+: Napi::ObjectWrap(info) {
+
+}
+
+ClientHandler::~ClientHandler() {
+
+}
+
+Napi::Object ClientHandler::init(Napi::Env env) {
+ return DefineClass(env, "Client", {
+ InstanceMethod("requestDataOnSimObject", &ClientHandler::requestDataOnSimObject, napi_enumerable),
+ InstanceMethod("requestDataOnSimObjectType", &ClientHandler::requestDataOnSimObjectType, napi_enumerable),
+ InstanceMethod("createDataDefinition", &ClientHandler::createDataDefinition, napi_enumerable),
+ InstanceMethod("setDataOnSimObject", &ClientHandler::setDataOnSimObject, napi_enumerable),
+ InstanceMethod("subscribeToSystemEvent", &ClientHandler::subscribeToSystemEvent, napi_enumerable),
+ InstanceMethod("requestSystemState", &ClientHandler::requestSystemState, napi_enumerable),
+ InstanceMethod("close", &ClientHandler::close, napi_enumerable),
+ }).New({});
+}
+
+bool ClientHandler::open(
+ const std::string& appName,
+ const Napi::Function& onOpen,
+ const Napi::Function& onQuit,
+ const Napi::Function& onException,
+ const Napi::Function& onError
+) {
+ if (simConnectSession.open(appName)) {
+ openCallback = Napi::Persistent(onOpen);
+ quitCallback = Napi::Persistent(onQuit);
+ exceptionCallback = Napi::Persistent(onException);
+ errorCallback = Napi::Persistent(onError);
+
+ dispatchQueueWorker = new DispatchQueueWorker(Env(), &simConnectSession, this);
+ dispatchQueueWorker->Queue();
+
+ return true;
+ }
+ return false;
+}
+
+Napi::Value ClientHandler::requestSystemState(const Napi::CallbackInfo& info) {
+ auto stateName = info[0].As();
+ auto callback = info[1].As();
+
+ auto requestId = simConnectSession.requestSystemState(stateName.Utf8Value());
+ systemStateCallbacks[requestId] = Persistent(callback);
+
+ return info.Env().Undefined();
+};
+
+Napi::Value ClientHandler::subscribeToSystemEvent(const Napi::CallbackInfo& info) {
+ auto eventName = info[0].As();
+ auto callback = info[1].As();
+
+ auto eventId = simConnectSession.subscribeToSystemEvent(eventName.Utf8Value());
+ systemEventCallbacks[eventId] = Persistent(callback);
+
+ return info.Env().Undefined();
+}
+
+Napi::Value ClientHandler::requestDataOnSimObject(const Napi::CallbackInfo& info) {
+ auto request = info[0];
+ auto options = info[1].As();
+ auto callback = info[2].As();
+
+ auto objectId = options.Get("objectId").As().Uint32Value();
+ auto period = options.Get("period").As().Uint32Value();
+ auto flags = options.Get("flags").As().Uint32Value();
+
+ unsigned int requestId;
+ if (request.IsNumber()) {
+ auto existingDataDefinitionId = request.As().Uint32Value();
+ requestId = simConnectSession.requestDataOnSimObject(existingDataDefinitionId, objectId, period, flags);
+ } else {
+ auto requestedValues = request.As();
+ requestId = simConnectSession.requestDataOnSimObject(toDatumRequests(requestedValues), objectId, period, flags);
+ }
+
+ dataRequestCallbacks[requestId] = Persistent(callback);
+
+ return info.Env().Undefined();
+}
+
+Napi::Value ClientHandler::createDataDefinition(const Napi::CallbackInfo& info) {
+ auto requestedValues = info[0].As();
+ auto definitionId = simConnectSession.createDataDefinition(toDatumRequests(requestedValues));
+
+ return Napi::Number::New(info.Env(), definitionId);
+};
+
+Napi::Value ClientHandler::requestDataOnSimObjectType(const Napi::CallbackInfo& info) {
+ auto request = info[0];
+ auto options = info[1].As();
+ auto callback = info[2].As();
+
+ auto radius = options.Get("radius").As().Uint32Value();
+ auto type = options.Get("type").As().Uint32Value();
+
+ unsigned int requestId;
+ if (request.IsNumber()) {
+ auto existingDataDefinitionId = request.As().Uint32Value();
+ requestId = simConnectSession.requestDataOnSimObjectType(existingDataDefinitionId, radius, type);
+ } else {
+ auto requestedValues = request.As();
+ requestId = simConnectSession.requestDataOnSimObjectType(toDatumRequests(requestedValues), radius, type);
+ }
+
+ dataRequestCallbacks[requestId] = Persistent(callback);
+
+ return info.Env().Undefined();
+};
+
+Napi::Value ClientHandler::setDataOnSimObject(const Napi::CallbackInfo& info) {
+ auto datumName = info[0].As();
+ auto unitName = info[1].As();
+ auto value = info[2].As().DoubleValue();
+
+ simConnectSession.setDataOnSimObject(datumName, unitName, value);
+
+ return info.Env().Undefined();
+};
+
+Napi::Value ClientHandler::close(const Napi::CallbackInfo& info) {
+ auto success = simConnectSession.close();
+
+ return Napi::Boolean::New(info.Env(), success);
+};
+
+void ClientHandler::onOpen(std::shared_ptr simInfo) {
+ auto clientHandlerObject = Value();
+
+ clientHandlerObject.Set("name", Napi::String::New(Env(), simInfo->name));
+ clientHandlerObject.Set("version", Napi::String::New(Env(), simInfo->version));
+
+ openCallback.Call({ clientHandlerObject });
+}
+
+void ClientHandler::onException(std::shared_ptr exceptionInfo) {
+ auto obj = Napi::Object::New(Env());
+ obj.Set("dwException", Napi::Number::New(Env(), exceptionInfo->exception));
+ obj.Set("dwSendID", Napi::Number::New(Env(), exceptionInfo->packetId));
+ obj.Set("dwIndex", Napi::Number::New(Env(), exceptionInfo->parameterIndex));
+ obj.Set("name", Napi::String::New(Env(), exceptionInfo->exceptionName));
+ exceptionCallback.Call({obj});
+}
+
+void ClientHandler::onError(std::shared_ptr errorInfo) {
+ auto obj = Napi::Object::New(Env());
+ obj.Set("NTSTATUS", Napi::String::New(Env(), errorInfo->code));
+ obj.Set("message", Napi::String::New(Env(), errorInfo->text));
+ errorCallback.Call({obj});
+}
+
+void ClientHandler::onQuit() {
+ quitCallback.Call({});
+}
+
+void ClientHandler::onSystemState(std::shared_ptr simSystemState) {
+ auto obj = Napi::Object::New(Env());
+ obj.Set("integer", Napi::Number::New(Env(), simSystemState->integerValue));
+ obj.Set("float", Napi::Number::New(Env(), simSystemState->floatValue));
+ obj.Set("string", Napi::String::New(Env(), simSystemState->stringValue.c_str()));
+
+ systemStateCallbacks[simSystemState->requestId].Call({obj});
+}
+
+void ClientHandler::onEvent(std::shared_ptr simEvent) {
+ auto value = Napi::Number::New(Env(), simEvent->value);
+ systemEventCallbacks[simEvent->type].Call({value});
+}
+
+void ClientHandler::onSimobjectData(std::shared_ptr simobjectDataBatch) {
+ auto obj = Napi::Object::New(Env());
+
+ for ( auto const& [datumName, pair] : simobjectDataBatch->values ) {
+ DatumType datumType = pair.first;
+ std::shared_ptr pDatumValue = pair.second;
+
+ switch (datumType) {
+ case DatumType::Int32: {
+ obj.Set(datumName, Napi::Number::New(Env(), *std::static_pointer_cast(pDatumValue)));
+ } break;
+ case DatumType::Int64: {
+ obj.Set(datumName, Napi::Number::New(Env(), *std::static_pointer_cast(pDatumValue)));
+ } break;
+ case DatumType::Double: {
+ obj.Set(datumName, Napi::Number::New(Env(), *std::static_pointer_cast(pDatumValue)));
+ } break;
+ case DatumType::Text: {
+ obj.Set(datumName, Napi::String::New(Env(), std::static_pointer_cast(pDatumValue)->c_str()));
+ } break;
+ default: {
+ obj.Set("UNKNOWN_VALUE", Napi::String::New(Env(), "?"));
+ } break;
+ }
+ }
+ dataRequestCallbacks[simobjectDataBatch->id].Call({obj});
+};
+
+std::vector ClientHandler::toDatumRequests(Napi::Array requestedValues) {
+ std::vector datumRequests;
+ for (unsigned int i = 0; i < requestedValues.Length(); i++) {
+ auto element = requestedValues.Get(i);
+ if(element.IsArray()) {
+ auto options = element.As();
+ auto datumName = options.Get("0").As().Utf8Value();
+ auto unitName = options.Get("1").IsNull() ? std::nullopt : std::optional{ options.Get("1").As().Utf8Value() };
+ auto dataType = options.Get("2").IsUndefined() ? std::nullopt : std::optional{ options.Get("2").As().Uint32Value() };
+
+ datumRequests.push_back({
+ datumName,
+ unitName,
+ dataType
+ });
+ }
+ }
+ return datumRequests;
+};
diff --git a/src/client_handler.h b/src/client_handler.h
new file mode 100644
index 0000000..389467c
--- /dev/null
+++ b/src/client_handler.h
@@ -0,0 +1,60 @@
+#ifndef SIM_HANDLER_H
+#define SIM_HANDLER_H
+
+#include
+#include "simconnect_session.h"
+#include "event_handler_interface.h"
+
+class DispatchQueueWorker;
+
+class ClientHandler : public Napi::ObjectWrap, EventHandlerInterface {
+
+ public:
+ ClientHandler(const Napi::CallbackInfo& info);
+ static Napi::Object init(Napi::Env env);
+
+ bool open(
+ const std::string& appName,
+ const Napi::Function& onOpen,
+ const Napi::Function& onQuit,
+ const Napi::Function& onException,
+ const Napi::Function& onError
+ );
+
+ Napi::Value requestSystemState(const Napi::CallbackInfo& info);
+ Napi::Value requestDataOnSimObject(const Napi::CallbackInfo& info);
+ Napi::Value createDataDefinition(const Napi::CallbackInfo& info);
+ Napi::Value requestDataOnSimObjectType(const Napi::CallbackInfo& info);
+ Napi::Value setDataOnSimObject(const Napi::CallbackInfo& info);
+ Napi::Value subscribeToSystemEvent(const Napi::CallbackInfo& info);
+ Napi::Value close(const Napi::CallbackInfo& info);
+
+ ~ClientHandler();
+
+ private:
+ SimConnectSession simConnectSession;
+
+ Napi::FunctionReference openCallback;
+ Napi::FunctionReference quitCallback;
+ Napi::FunctionReference exceptionCallback;
+ Napi::FunctionReference errorCallback;
+
+ std::unordered_map systemStateCallbacks;
+ std::unordered_map systemEventCallbacks;
+ std::unordered_map dataRequestCallbacks;
+
+ DispatchQueueWorker* dispatchQueueWorker = nullptr;
+ std::vector toDatumRequests(Napi::Array requestedValues);
+
+ // Required functions defined EventHandlerInterface
+ void onOpen(std::shared_ptr simInfo);
+ void onQuit();
+ void onException(std::shared_ptr exceptionInfo);
+ void onError(std::shared_ptr errorInfo);
+ void onSystemState(std::shared_ptr simSystemState);
+ void onEvent(std::shared_ptr simEvent);
+ void onSimobjectData(std::shared_ptr simobjectDataBatch);
+};
+
+
+#endif
diff --git a/src/commons.h b/src/commons.h
new file mode 100644
index 0000000..e17b40b
--- /dev/null
+++ b/src/commons.h
@@ -0,0 +1,74 @@
+#ifndef COMMONS_H
+#define COMMONS_H
+#include
+#include
+#include