1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/rc_services_room/src/operations/power_bar_stats.rs
2025-08-17 15:03:30 -04:00

18 lines
705 B
Rust

use polariton_server::operations::Immediate;
use polariton::operation::{ParameterTable, Typed};
const PARAM_KEY: u8 = 61;
pub(super) fn power_bar_provider(conf: &oj_rc_core::ConfigImpl) -> Immediate<51, crate::UserTy> {
let energy_conf = <oj_rc_core::ConfigImpl as oj_rc_core::ConfigProvider<()>>::energy(conf);
Immediate::new(|| {
let mut params = ParameterTable::with_capacity(2);
params.insert(PARAM_KEY, Typed::HashMap(vec![
(Typed::Str("refillRatePerSecond".into()), Typed::Float(energy_conf.refill_rate)),
(Typed::Str("powerForAllRobots".into()), Typed::Int(energy_conf.total as _)),
].into()
));
params
})
}