mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
feat: add Double Action: Boogaloo support
This commit is contained in:
parent
82b7a5f169
commit
967dc37d64
4 changed files with 4 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ Games:
|
|||
- Eco support (by @CosminPerRam).
|
||||
- [Call Of Duty: Black Ops 3](https://store.steampowered.com/agecheck/app/311210/) support.
|
||||
- [Counter-Strike 2](https://store.steampowered.com/app/730/CounterStrike_2/) support.
|
||||
- [Double Action: Boogaloo](https://store.steampowered.com/app/317360/Double_Action_Boogaloo/) support.
|
||||
|
||||
Crate:
|
||||
- Changed the serde feature to only enable serde derive for some types: serde and serde_json is now a dependecy by default.
|
||||
|
|
|
|||
1
GAMES.md
1
GAMES.md
|
|
@ -81,6 +81,7 @@ Beware of the `Notes` column, as it contains information about query port offset
|
|||
| Zombie Panic: Source | ZPS | Valve | Query port: 27015. |
|
||||
| Call Of Duty: Black Ops 3 | CODBO3 | Valve | Query port: 27017. |
|
||||
| Counter-Strike 2 | CS2 | Valve | |
|
||||
| Double Action: Boogaloo | DAB | Valve | |
|
||||
|
||||
## Planned to add support:
|
||||
_
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
|||
"css" => game!("Counter-Strike: Source", 27015, Protocol::Valve(Engine::new(240))),
|
||||
"creativerse" => game!("Creativerse", 26901, Protocol::Valve(Engine::new(280_790))),
|
||||
"crysiswars" => game!("Crysis Wars", 64100, Protocol::Gamespy(GameSpyVersion::Three)),
|
||||
"dab" => game!("Double Action: Boogaloo", 27015, Protocol::Valve(Engine::new(317_360))),
|
||||
"dod" => game!("Day of Defeat", 27015, Protocol::Valve(Engine::new_gold_src(false))),
|
||||
"dods" => game!("Day of Defeat: Source", 27015, Protocol::Valve(Engine::new(300))),
|
||||
"doi" => game!("Day of Infamy", 27015, Protocol::Valve(Engine::new(447_820))),
|
||||
|
|
|
|||
|
|
@ -85,6 +85,7 @@ game_query_mod!(
|
|||
27015
|
||||
);
|
||||
game_query_mod!(css, "Counter-Strike: Source", Engine::new(240), 27015);
|
||||
game_query_mod!(dab, "Double Action: Boogaloo", Engine::new(317_360), 27015);
|
||||
game_query_mod!(dod, "Day of Defeat", Engine::new_gold_src(false), 27015);
|
||||
game_query_mod!(dods, "Day of Defeat: Source", Engine::new(300), 27015);
|
||||
game_query_mod!(doi, "Day of Infamy", Engine::new(447_820), 27015);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue