7 releases
0.3.0 | Jun 23, 2024 |
---|---|
0.2.0 | Mar 25, 2023 |
0.1.4 | Mar 6, 2023 |
0.1.2 | Jan 5, 2023 |
0.1.1 | Dec 29, 2022 |
#954 in Development tools
440KB
5K
SLoC
Contains (static library, 55KB) SDK/Libraries/Win/XPLM_64.lib, (static library, 11KB) SDK/Libraries/Win/XPWidgets_64.lib
Rust bindings for the X-Plane SDK
Low level Rust bindings for the X-Plane SDK.
Features
- Includes pre-built bindings for version
XPLM400
(X-Plane 12.04 and newer) - Option to generate bindings at compile-time, using your own SDK version
- Allows for precise version specification when using compile-time generated bindings
Generate your own bindings
To generate your own bindings instead of using the pre-built ones, activate the generate-bindings
feature by adding
the following to your Cargo.toml
:
xplane-sdk-sys = { version = "*", features = ["generate-bindings"] }
This will invoke bindgen
at compile-time in a build script to generate the bindings for you. You must specify the
location of the SDK in your filesystem by setting the XPLANE_SDK_PATH
environment variable.
Requirements
xplane-sdk-sys
inherits the bindgen
requirements. They are
documented here.
SDK version selection
When generating bindings yourself you can specify what XPLM versions you would like to use. This not only enables you to target earlier X-Plane versions but also ensures that the library is compatible with future versions.
To achieve this, you need to set the XPLANE_SDK_VERSIONS
environment variable. It expects a semicolon-separated list
of SDK versions. Defining at as XPLM303;XPLM400
, for example, will result in the generation of bindings for SDK
versions 3.0.3
and 4.0.0
respectively.
Please note that SDK versions do not automatically imply older versions. To ensure that the latest version with all features is targeted, it is necessary to specify every version individually.
If you leave the XPLANE_SDK_VERSIONS
environment variable unspecified, the default set of versions used for generating
the pre-built binding will be applied.
Changelog
Version 0.3
- Include XPLM400 in pre-built bindings
- Update SDK version to 4.0.1
Version 0.2
- Update SDK version to 4.0.0
- Switch from cargo feature based version selection to environment variable definitions
Version 0.1
- Initial release with pre-built or compile time generated bindings