1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Pass more network config info to multiplayer server impl, address #82

This commit is contained in:
NG (Graham)
2026-02-07 11:48:48 -05:00
parent a31c382c3e
commit bcb51f804f
3 changed files with 55 additions and 3 deletions

View File

@@ -51,6 +51,7 @@ impl super::config::SelfValidator for MultiplayerConfig {
message: "Game match may have broken vehicle flipping functionality due to more than 1 ClientAI per player".to_owned(),
});
}
is_ok &= self.network.validate_in(info, &(), "network");
// TODO
is_ok
}
@@ -76,6 +77,49 @@ pub struct NetworkConf {
pub max_bulk_resend: u8,
}
impl super::config::SelfValidator for NetworkConf {
type Context = ();
fn validate(&self, info: &mut super::config::ValidationInfo, _ctx: &Self::Context) -> bool {
let mut is_ok = true;
if self.max_delay < 0 {
info.error(super::config::ValidationMessage {
path: vec!["max_delay".to_owned()],
message: "Max delay cannot be negative (how do you live in the future!?)".to_owned(),
});
is_ok = false;
}
if self.resend_delay_base < 0.0 {
info.error(super::config::ValidationMessage {
path: vec!["resend_delay_base".to_owned()],
message: "Resend delay cannot be negative (how do you live in the future!?)".to_owned(),
});
is_ok = false;
}
if self.resend_delay_rtt_mult < 0.0 {
info.error(super::config::ValidationMessage {
path: vec!["resend_delay_rtt_mult".to_owned()],
message: "Resend delay multiplier cannot be negative (how do you live in the future!?)".to_owned(),
});
is_ok = false;
}
if self.network_peer_update_interval < 0 {
info.error(super::config::ValidationMessage {
path: vec!["network_peer_update_interval".to_owned()],
message: "Update interval cannot be negative (how do you live in the future!?)".to_owned(),
});
is_ok = false;
}
if self.max_delay_for_disconnect_ms < 0 {
info.error(super::config::ValidationMessage {
path: vec!["max_delay_for_disconnect_ms".to_owned()],
message: "Max delay cannot be negative (how do you live in the future!?)".to_owned(),
});
is_ok = false;
}
is_ok
}
}
pub(super) fn default_match_autostart_after_s() -> Option<u64> {
Some(180)
}