Poked around a bit, broke It kinda :)

I fixed some issues, but broke more :)
This commit is contained in:
Dangrain 2025-02-13 18:09:15 +01:00 committed by GitHub
parent f206d6172d
commit 68e1ec5460
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 12 deletions

View file

@ -52,26 +52,23 @@ impl MyApp {
let score_arc = Arc::clone(&self.score);
let x = self.x;
let upgd_cost = self.upgd_cost;
let tx = network();
thread::spawn(move || {
loop {
println!("Send help send help send help Yasmina's holding me hostageeeeee");
thread::sleep(Duration::from_secs(1));
network();
let tx = network();
// let tx = network();
let current_score = {
let guard = score_arc.lock().unwrap();
*guard
};
send_score(tx, x, upgd_cost, current_score);
send_score(tx.clone(), x, upgd_cost, current_score);
}
});
}
}

View file

@ -1,5 +1,3 @@
pub mod networking {
use std::thread::sleep;
use std::thread;
use std::net::UdpSocket;
@ -13,8 +11,8 @@ pub fn network() -> Sender<Vec<i64>> {
let tx: Sender<Vec<i64>> = tx.clone();
thread::spawn( move || {
let mut net_active = true;
while net_active {
let mut net_active = 1;
while net_active == 1 {
let server_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
let target = "100.127.105.90:4000";
let dat = rx.recv().unwrap();
@ -27,7 +25,7 @@ pub fn network() -> Sender<Vec<i64>> {
}
if dat[0] == 0 { // code 0, kills thread
net_active = false;
net_active = 0;
}
if dat[0] == 1 {
@ -74,5 +72,4 @@ pub fn debug(tx: Sender<Vec<i64>>) -> Sender<Vec<i64>> {
tx
}
}