Sven Co-op support.

This commit is contained in:
CosminPerRam 2022-11-26 16:21:58 +02:00
parent 8c5ac24468
commit de3ac9aad5
6 changed files with 21 additions and 2 deletions

View file

@ -8,6 +8,7 @@ Who knows what the future holds...
[Unturned](https://store.steampowered.com/app/304930/Unturned/) support.
[The Forest](https://store.steampowered.com/app/242760/The_Forest/) support.
[Team Fortress Classic](https://store.steampowered.com/app/20/Team_Fortress_Classic/) support.
[Sven Co-op](https://store.steampowered.com/app/225840/Sven_Coop/) support.
# 0.0.5 - 15/11/2022
Added `SocketBind` error, regarding failing to bind a socket.

View file

@ -23,6 +23,7 @@
| UNTURNED | Unturned | Valve Protocol | |
| TF | The Forest | Valve Protocol | Use the query port. |
| TFC | Team Fortress Classic | Valve Protocol | |
| SC | Sven Co-op | Valve Protocol | |
## Planned to add support:
_

View file

@ -1,6 +1,6 @@
use std::env;
use gamedig::{aliens, ase, asrd, cscz, csgo, css, dod, dods, GDResult, gm, hl2dm, ins, insmic, inss, l4d, l4d2, mc, sdtd, tf, tf2, tfc, ts, unturned};
use gamedig::{aliens, ase, asrd, cscz, csgo, css, dod, dods, GDResult, gm, hl2dm, ins, insmic, inss, l4d, l4d2, mc, sc, sdtd, tf, tf2, tfc, ts, unturned};
use gamedig::protocols::minecraft::{LegacyGroup, Server};
use gamedig::protocols::valve;
use gamedig::protocols::valve::App;
@ -52,6 +52,7 @@ fn main() -> GDResult<()> {
"unturned" => println!("{:#?}", unturned::query(ip, port)?),
"tf" => println!("{:#?}", tf::query(ip, port)?),
"tfc" => println!("{:#?}", tfc::query(ip, port)?),
"sc" => println!("{:#?}", sc::query(ip, port)?),
"_src" => println!("{:#?}", valve::query(ip, 27015, App::Source(None), None, None)?),
"_gld" => println!("{:#?}", valve::query(ip, 27015, App::GoldSrc(false), None, None)?),
"_gld_f" => println!("{:#?}", valve::query(ip, 27015, App::GoldSrc(true), None, None)?),

View file

@ -45,3 +45,5 @@ pub mod unturned;
pub mod tf;
/// Team Fortress Classic
pub mod tfc;
/// Sven Co-op
pub mod sc;

12
src/games/sc.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 => 27015,
Some(port) => port
}, SteamID::SC.as_app(), None, None)?;
Ok(game::Response::new_from_valve_response(valve_response))
}

View file

@ -175,6 +175,8 @@ pub enum SteamID {
INSMIC = 17700,
/// Insurgency
INS = 222880,
/// Sven Co-op
SC = 225840,
/// The Forrest
TF = 556450, //this is the id for the dedicated server, for the game its 242760
/// 7 Days To Die
@ -193,7 +195,7 @@ impl SteamID {
/// Get ID as App (the engine is specified).
pub fn as_app(&self) -> App {
match self {
SteamID::TFC | SteamID::DOD | SteamID::CSCZ => App::GoldSrc(false),
SteamID::TFC | SteamID::DOD | SteamID::CSCZ | SteamID::SC => App::GoldSrc(false),
x => App::Source(Some(x.clone() as u32))
}
}