Games: Colony Survival support.

This commit is contained in:
CosminPerRam 2023-01-18 18:06:08 +02:00
parent bbd2dd7d97
commit 2312ba9114
6 changed files with 20 additions and 1 deletions

12
src/games/cosu.rs Normal file
View file

@ -0,0 +1,12 @@
use crate::GDResult;
use crate::protocols::valve;
use crate::protocols::valve::{game, SteamID};
pub fn query(address: &str, port: Option<u16>) -> GDResult<game::Response> {
let valve_response = valve::query(address, match port {
None => 27004,
Some(port) => port
}, SteamID::COSU.as_app(), None, None)?;
Ok(game::Response::new_from_valve_response(valve_response))
}

View file

@ -69,3 +69,5 @@ pub mod pz;
pub mod aoc;
/// Don't Starve Together
pub mod dst;
/// Colony Survival
pub mod cosu;

View file

@ -187,6 +187,8 @@ pub enum SteamID {
DST = 322320,
/// Black Mesa
BM = 362890,
/// Colony Survival
COSU = 366090,
/// Day of Infamy
DOI = 447820,
/// The Forrest