Implements the codemasters (and friends) UDP telemetry protocol and provides an abstraction for interacting with it.
```rust use cmtelemetry::f1::f12020::F12020; use cmtelemetry::TelemetryServer;
fn main() {
let server =
TelemetryServer::
loop {
let event = server.next();
if let Err(e) = event {
println!("error: {:?}", e);
continue;
}
match event.unwrap() {
F1_2020::FinalClassification(_data) => println!("Received FinalClassification packet"),
F1_2020::LobbyInfo(_data) => println!("Received LobbyInfo packet"),
_ => ()
}
```
You can support new games (external to the crate) by implementing the Event
trait on a type
and then initialize a Server
with it using cm_telemetry::Server::<T>::new(addr)
PR's welcome :)
https://forums.codemasters.com/topic/50942-f1-2020-udp-specification/ https://answers.ea.com/t5/General-Discussion/F1-22-UDP-Specification/td-p/11551274