mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
feat: add black ops 3 support (#189)
* feat: add black ops 3 support * chore: formatting
This commit is contained in:
parent
ef017d4703
commit
c1454805bb
4 changed files with 9 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ Games:
|
|||
- Made all of Just Cause 2: Multiplayer Response and Player fields public.
|
||||
- [Mindustry](https://mindustrygame.github.io/) support.
|
||||
- Eco support (by @CosminPerRam).
|
||||
- [Call Of Duty: Black Ops 3](https://store.steampowered.com/agecheck/app/311210/) 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
|
|
@ -79,6 +79,7 @@ Beware of the `Notes` column, as it contains information about query port offset
|
|||
| America's Army: Proving Grounds | AAPG | Valve | Query port: 27020. Does not respond to the rules query. |
|
||||
| Base Defense | BASEDEFENSE | Valve | Query port: 27015. Does not respond to the rules query. |
|
||||
| Zombie Panic: Source | ZPS | Valve | Query port: 27015. |
|
||||
| Call Of Duty: Black Ops 3 | CODBO3 | Valve | Query port: 27017. |
|
||||
|
||||
## Planned to add support:
|
||||
_
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
|||
"battlefield1942" => game!("Battlefield 1942", 23000, Protocol::Gamespy(GameSpyVersion::One)),
|
||||
"blackmesa" => game!("Black Mesa", 27015, Protocol::Valve(Engine::new(362_890))),
|
||||
"ballisticoverkill" => game!("Ballistic Overkill", 27016, Protocol::Valve(Engine::new(296_300))),
|
||||
"codbo3" => game!("Call Of Duty: Black Ops 3", 27017, Protocol::Valve(Engine::new(311_210))),
|
||||
"codenamecure" => game!("Codename CURE", 27015, Protocol::Valve(Engine::new(355_180))),
|
||||
"colonysurvival" => game!("Colony Survival", 27004, Protocol::Valve(Engine::new(366_090))),
|
||||
"conanexiles" => game!("Conan Exiles", 27015, Protocol::Valve(Engine::new(440_900)), GatheringSettings {
|
||||
|
|
|
|||
|
|
@ -40,6 +40,12 @@ game_query_mod!(
|
|||
game_query_mod!(barotrauma, "Barotrauma", Engine::new(602_960), 27016);
|
||||
game_query_mod!(blackmesa, "Black Mesa", Engine::new(362_890), 27015);
|
||||
game_query_mod!(brainbread2, "BrainBread 2", Engine::new(346_330), 27015);
|
||||
game_query_mod!(
|
||||
codbo3,
|
||||
"Call Of Duty: Black Ops 3",
|
||||
Engine::new(311_210),
|
||||
27017
|
||||
);
|
||||
game_query_mod!(codenamecure, "Codename CURE", Engine::new(355_180), 27015);
|
||||
game_query_mod!(
|
||||
colonysurvival,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue