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

Make minimum game client version configurable

This commit is contained in:
NG (Graham)
2026-01-04 21:36:11 -05:00
parent b06fe37829
commit 49255e7e7c
5 changed files with 20 additions and 4 deletions

View File

@@ -110,7 +110,7 @@ pub fn handler(init_ctx: &crate::InitConfig) -> OperationsHandler<crate::UserTy>
.modify(oj_rc_core::polariton::RcOpModifier)
.add(eac::EacChallengeIgnorer)
.add(more_auth::MoreLobbyAuth)
.add(versioner::VersionTeller)
.add(versioner::version_teller(&init_ctx.cubes))
.add(maintenancer::MaintenanceModeTeller)
.add(game_quality::QualityConfigTeller)
.add(login_flags::UserFlagsTeller)

View File

@@ -1,10 +1,11 @@
use polariton_server::operations::{Operation, OperationCode};
pub struct VersionTeller;
pub struct VersionTeller {
latest_version: i32,
}
impl VersionTeller {
const VERSION_NUMBER_KEY: u8 = 112;
const LATEST_VERSION: i32 = 2855;
}
impl <C: Send + 'static> Operation<C> for VersionTeller {
@@ -12,7 +13,7 @@ impl <C: Send + 'static> Operation<C> for VersionTeller {
fn handle(&self, _: polariton::operation::ParameterTable<C>, _: &Self::User) -> polariton::operation::OperationResponse<C> {
let mut resp_params = std::collections::HashMap::new();
resp_params.insert(Self::VERSION_NUMBER_KEY, polariton::operation::Typed::Int(Self::LATEST_VERSION));
resp_params.insert(Self::VERSION_NUMBER_KEY, polariton::operation::Typed::Int(self.latest_version));
polariton::operation::OperationResponse {
code: 103,
return_code: 0,
@@ -27,3 +28,9 @@ impl OperationCode for VersionTeller {
103
}
}
pub fn version_teller(conf: &oj_rc_core::ConfigImpl) -> VersionTeller {
VersionTeller {
latest_version: <oj_rc_core::ConfigImpl as oj_rc_core::ConfigProvider<()>>::server_config(conf).minimum_version,
}
}