2025-03-01 16:22:57 -05:00
|
|
|
use polariton_server::operations::SimpleFunc;
|
2025-03-08 17:16:02 -05:00
|
|
|
use polariton::{operation::{Dict, ParameterTable, Typed}, serdes::TypePrefix};
|
2025-03-01 16:22:57 -05:00
|
|
|
|
|
|
|
|
const PARAM_KEY: u8 = 1;
|
|
|
|
|
|
|
|
|
|
pub(super) fn weapon_rating_provider() -> SimpleFunc<127, crate::UserTy, impl (Fn(ParameterTable, &crate::UserTy) -> Result<ParameterTable, i16>) + Sync + Sync> {
|
|
|
|
|
SimpleFunc::new(|params, _| {
|
|
|
|
|
let mut params = params.to_dict();
|
|
|
|
|
params.insert(PARAM_KEY, Typed::HashMap(vec![
|
2026-01-01 08:51:33 -05:00
|
|
|
(Typed::Str("subRankCount".into()), Typed::Int(5)),
|
2025-03-01 16:22:57 -05:00
|
|
|
(Typed::Str("subRankInterval".into()), Typed::Int(10)),
|
|
|
|
|
(Typed::Str("gainsPerRank".into()), Typed::ObjArr(vec![
|
2026-01-01 08:51:33 -05:00
|
|
|
Typed::Dict(Dict {
|
|
|
|
|
key_ty: TypePrefix::Str,
|
|
|
|
|
val_ty: TypePrefix::Any,
|
|
|
|
|
items: vec![
|
|
|
|
|
(Typed::Str("win".into()), Typed::Int(1)),
|
|
|
|
|
(Typed::Str("loss".into()), Typed::Int(5)),
|
|
|
|
|
],
|
|
|
|
|
}),
|
|
|
|
|
Typed::Dict(Dict {
|
|
|
|
|
key_ty: TypePrefix::Str,
|
|
|
|
|
val_ty: TypePrefix::Any,
|
|
|
|
|
items: vec![
|
|
|
|
|
(Typed::Str("win".into()), Typed::Int(3)),
|
|
|
|
|
(Typed::Str("loss".into()), Typed::Int(5)),
|
|
|
|
|
],
|
|
|
|
|
}),
|
|
|
|
|
Typed::Dict(Dict {
|
|
|
|
|
key_ty: TypePrefix::Str,
|
|
|
|
|
val_ty: TypePrefix::Any,
|
|
|
|
|
items: vec![
|
|
|
|
|
(Typed::Str("win".into()), Typed::Int(5)),
|
|
|
|
|
(Typed::Str("loss".into()), Typed::Int(5)),
|
|
|
|
|
],
|
|
|
|
|
}),
|
2025-03-01 16:22:57 -05:00
|
|
|
Typed::Dict(Dict {
|
2025-03-08 17:16:02 -05:00
|
|
|
key_ty: TypePrefix::Str,
|
|
|
|
|
val_ty: TypePrefix::Any,
|
2025-03-01 16:22:57 -05:00
|
|
|
items: vec![
|
|
|
|
|
(Typed::Str("win".into()), Typed::Int(7)),
|
|
|
|
|
(Typed::Str("loss".into()), Typed::Int(3)),
|
|
|
|
|
],
|
|
|
|
|
}),
|
|
|
|
|
Typed::Dict(Dict {
|
2025-03-08 17:16:02 -05:00
|
|
|
key_ty: TypePrefix::Str,
|
|
|
|
|
val_ty: TypePrefix::Any,
|
2025-03-01 16:22:57 -05:00
|
|
|
items: vec![
|
|
|
|
|
(Typed::Str("win".into()), Typed::Int(11)),
|
|
|
|
|
(Typed::Str("loss".into()), Typed::Int(3)),
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
].into())),
|
|
|
|
|
].into()));
|
|
|
|
|
Ok(params.into())
|
|
|
|
|
})
|
|
|
|
|
}
|