3 releases
0.1.2 | Apr 23, 2022 |
---|---|
0.1.1 | Sep 27, 2019 |
0.1.0 | Sep 27, 2019 |
#249 in Simulation
12KB
137 lines
Lib Rail Driver
Rust FFI bindings to the RailDriver.dll
library.
These allow you to read and write data to or from Train Simulator 2020. Note that this doesn't work with Train Sim World.
Quick example
extern crate libraildriver;
fn main() {
let context = libraildriver::Context::new();
let speed = context.get_value(libraildriver::Value::Speedometer,
libraildriver::Kind::Current).expect("Failed to get value.");
println!("The train's current speed is: {}", speed);
}
lib.rs
:
Lib Rail Driver
Rust FFI bindings to the RailDriver.dll
library.
These allow you to read and write data to or from Train Simulator 2020. Note that this doesn't work with Train Sim World.
Quick example
extern crate libraildriver;
fn main() {
let context = libraildriver::Context::new();
let speed = context.get_value(libraildriver::Value::Speedometer,
libraildriver::Kind::Current).expect("Failed to get value.");
println!("The train's current speed is: {}", speed);
}
Dependencies
~98–310KB