2020-01-26 15:01:34 +00:00
|
|
|
extern crate clap;
|
|
|
|
|
|
|
|
use clap::{App, Arg};
|
|
|
|
use rand::random;
|
|
|
|
use serde_json::json;
|
2020-01-11 11:38:22 +00:00
|
|
|
use std::i64;
|
2020-01-26 15:01:34 +00:00
|
|
|
use std::io;
|
2020-01-01 20:36:10 +00:00
|
|
|
use std::io::Write;
|
|
|
|
use std::net;
|
2020-01-26 15:47:35 +00:00
|
|
|
use std::thread::spawn;
|
|
|
|
use std::time::Instant;
|
|
|
|
use tungstenite::{connect, Error, Message};
|
2020-01-26 15:01:34 +00:00
|
|
|
use url::Url;
|
2020-01-01 20:36:10 +00:00
|
|
|
|
|
|
|
fn listen(socket: &net::UdpSocket) {
|
|
|
|
let mut buf: [u8; 20] = [0; 20];
|
|
|
|
let mut result: Vec<u8> = Vec::new();
|
|
|
|
match socket.recv_from(&mut buf) {
|
|
|
|
Ok((number_of_bytes, _)) => {
|
|
|
|
result = Vec::from(&buf[0..number_of_bytes]);
|
|
|
|
}
|
2020-01-26 15:01:34 +00:00
|
|
|
Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
|
|
|
return ();
|
|
|
|
}
|
|
|
|
Err(e) => println!("failed listening {:?}", e),
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let display_result = result.clone();
|
|
|
|
let result_str = String::from_utf8(display_result).unwrap();
|
|
|
|
println!("received message: {:?}", result_str);
|
|
|
|
|
|
|
|
if result_str.contains("S0R1") {
|
2020-01-01 21:20:43 +00:00
|
|
|
write_file("Race active".to_string(), "racestate.txt");
|
2020-01-02 21:14:38 +00:00
|
|
|
write_file("0".to_string(), "rx1.txt");
|
|
|
|
write_file("0".to_string(), "rx2.txt");
|
|
|
|
write_file("0".to_string(), "rx3.txt");
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
if result_str.contains("S0R0") {
|
2020-01-01 21:20:43 +00:00
|
|
|
write_file("Race inactive".to_string(), "racestate.txt");
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if result_str.contains("S0L") {
|
|
|
|
// zb sS1L0000000DAF
|
2020-01-11 11:38:22 +00:00
|
|
|
let lap_time = i64::from_str_radix(&result_str[5..13], 16).unwrap_or(-1);
|
|
|
|
if lap_time != -1 {
|
|
|
|
let lap_seconds = (lap_time as f64) / (1000 as f64);
|
|
|
|
write_file(lap_seconds.to_string(), "rx1_laptime.txt");
|
|
|
|
}
|
2020-01-02 21:14:38 +00:00
|
|
|
let intval = &result_str[3..5].parse::<i32>().unwrap_or(-1);
|
|
|
|
if *intval != -1 {
|
2020-01-11 11:38:22 +00:00
|
|
|
write_file((intval + 1).to_string(), "rx1.txt");
|
2020-01-02 21:14:38 +00:00
|
|
|
}
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
if result_str.contains("S1L") {
|
2020-01-11 11:38:22 +00:00
|
|
|
let lap_time = i64::from_str_radix(&result_str[5..13], 16).unwrap_or(-1);
|
|
|
|
if lap_time != -1 {
|
|
|
|
let lap_seconds = (lap_time as f64) / (1000 as f64);
|
|
|
|
write_file(lap_seconds.to_string(), "rx2_laptime.txt");
|
|
|
|
}
|
2020-01-02 21:14:38 +00:00
|
|
|
let intval = &result_str[3..5].parse::<i32>().unwrap_or(-1);
|
|
|
|
if *intval != -1 {
|
2020-01-11 11:38:22 +00:00
|
|
|
write_file((intval + 1).to_string(), "rx2.txt");
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 20:36:10 +00:00
|
|
|
if result_str.contains("S2L") {
|
2020-01-11 11:38:22 +00:00
|
|
|
let lap_time = i64::from_str_radix(&result_str[5..13], 16).unwrap_or(-1);
|
|
|
|
if lap_time != -1 {
|
|
|
|
let lap_seconds = (lap_time as f64) / (1000 as f64);
|
|
|
|
write_file(lap_seconds.to_string(), "rx3_laptime.txt");
|
|
|
|
}
|
2020-01-02 21:14:38 +00:00
|
|
|
let intval = &result_str[3..5].parse::<i32>().unwrap_or(-1);
|
2020-01-11 11:38:22 +00:00
|
|
|
if *intval != -1 {
|
|
|
|
write_file((intval + 1).to_string(), "rx3.txt");
|
2020-01-02 21:14:38 +00:00
|
|
|
}
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 21:20:43 +00:00
|
|
|
fn write_file(text: String, filename: &str) {
|
2020-01-01 20:36:10 +00:00
|
|
|
let mut file = std::fs::File::create(filename).expect("create failed");
|
|
|
|
file.write_all(text.as_bytes()).expect("write failed");
|
|
|
|
//println!("data written to file");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-01-26 15:01:34 +00:00
|
|
|
let matches = App::new("chorusOBSsync")
|
|
|
|
.version("1.0")
|
|
|
|
.author("Lukas B. <lukas@lbsfilm.at>")
|
|
|
|
.about("Get data from the CHorus32 Laptimer Project and use it to control OBS")
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("config")
|
|
|
|
.short("c")
|
|
|
|
.long("config")
|
|
|
|
.value_name("FILE")
|
|
|
|
.help("Sets a custom config file")
|
|
|
|
.takes_value(true),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("INPUT")
|
|
|
|
.help("Sets the input file to use")
|
|
|
|
.required(false)
|
|
|
|
.index(1),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("v")
|
|
|
|
.short("v")
|
|
|
|
.multiple(true)
|
|
|
|
.help("Sets the level of verbosity"),
|
|
|
|
)
|
|
|
|
.get_matches();
|
|
|
|
|
|
|
|
// Gets a value for config if supplied by user, or defaults to "default.conf"
|
|
|
|
let config = matches.value_of("config").unwrap_or("default.conf");
|
|
|
|
println!("Value for config: {}", config);
|
|
|
|
|
|
|
|
// Calling .unwrap() is safe here because "INPUT" is required (if "INPUT" wasn't
|
|
|
|
// required we could have used an 'if let' to conditionally get the value)
|
|
|
|
if let Some(input) = matches.value_of("INPUT") {
|
|
|
|
println!("Using input file: {}", input);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vary the output based on how many times the user used the "verbose" flag
|
|
|
|
// (i.e. 'myprog -v -v -v' or 'myprog -vvv' vs 'myprog -v'
|
|
|
|
match matches.occurrences_of("v") {
|
|
|
|
0 => println!("No verbose info"),
|
|
|
|
1 => println!("Some verbose info"),
|
|
|
|
2 => println!("Tons of verbose info"),
|
|
|
|
3 | _ => println!("Don't be crazy"),
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////----------------
|
2020-01-01 21:20:43 +00:00
|
|
|
write_file("Race inactive".to_string(), "racestate.txt");
|
|
|
|
write_file("0".to_string(), "rx1.txt");
|
|
|
|
write_file("0".to_string(), "rx2.txt");
|
|
|
|
write_file("0".to_string(), "rx3.txt");
|
2020-01-01 20:36:10 +00:00
|
|
|
|
2020-01-11 11:38:22 +00:00
|
|
|
write_file("-.-".to_string(), "rx1_laptime.txt");
|
|
|
|
write_file("-.-".to_string(), "rx2_laptime.txt");
|
|
|
|
write_file("-.-".to_string(), "rx3_laptime.txt");
|
|
|
|
|
2020-01-26 15:01:34 +00:00
|
|
|
// Setup websocket for OBS
|
|
|
|
let mut now = Instant::now();
|
2020-01-01 20:36:10 +00:00
|
|
|
|
2020-01-26 15:01:34 +00:00
|
|
|
let (mut obssocket, _) =
|
|
|
|
connect(Url::parse("ws://localhost:4444/").unwrap()).expect("Could not connect to OBS");
|
|
|
|
let source_id = "LAPTIME";
|
|
|
|
|
2020-01-26 15:47:35 +00:00
|
|
|
spawn(move || loop {
|
|
|
|
if let Ok(msg) = obssocket.read_message() {
|
|
|
|
let text = msg.into_text().unwrap_or("".to_string());
|
|
|
|
println!("{}", text);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-26 15:01:34 +00:00
|
|
|
// Setup the UDP Socket
|
|
|
|
let udpsocket = net::UdpSocket::bind("0.0.0.0:0").expect("failed to bind host udp socket"); // local bind port
|
|
|
|
udpsocket.set_nonblocking(true).unwrap();
|
|
|
|
let msg = String::from("ok").into_bytes();
|
|
|
|
udpsocket
|
2020-01-01 20:36:10 +00:00
|
|
|
.send_to(&msg, "192.168.0.141:9000")
|
|
|
|
.expect("cannot send");
|
|
|
|
loop {
|
2020-01-26 15:01:34 +00:00
|
|
|
listen(&udpsocket);
|
|
|
|
|
|
|
|
if now.elapsed().as_secs() >= 5 {
|
|
|
|
let request = json!({"request-type":"SetTextFreetype2Properties", "source":source_id,"message-id": random::<f64>().to_string(), "text": now.elapsed().as_millis().to_string() });
|
|
|
|
obssocket
|
|
|
|
.write_message(Message::Text(request.to_string()))
|
|
|
|
.unwrap();
|
|
|
|
println!("{}", now.elapsed().as_secs());
|
|
|
|
now = Instant::now();
|
|
|
|
}
|
2020-01-01 20:36:10 +00:00
|
|
|
}
|
|
|
|
}
|