mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
feat: add abiotic factor support
This commit is contained in:
parent
b2da9bee3c
commit
49b95861f0
4 changed files with 4 additions and 0 deletions
1
GAMES.md
1
GAMES.md
|
|
@ -93,6 +93,7 @@ requirements/information.
|
||||||
| Aliens vs. Predator 2010 | AVP | Valve | |
|
| Aliens vs. Predator 2010 | AVP | Valve | |
|
||||||
| Arma Reforger | ARMAREFORGER | Valve | |
|
| Arma Reforger | ARMAREFORGER | Valve | |
|
||||||
| Nova-Life: Amboise | NLA | Valve | |
|
| Nova-Life: Amboise | NLA | Valve | |
|
||||||
|
| Abiotic Factor | ABIOTICFACTOR | Valve | |
|
||||||
|
|
||||||
## Planned to add support:
|
## Planned to add support:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ Games:
|
||||||
- [Aliens vs. Predator 2010](https://store.steampowered.com/app/10680/Aliens_vs_Predator/) support.
|
- [Aliens vs. Predator 2010](https://store.steampowered.com/app/10680/Aliens_vs_Predator/) support.
|
||||||
- [Arma Reforger](https://store.steampowered.com/app/1874880/Arma_Reforger/) support.
|
- [Arma Reforger](https://store.steampowered.com/app/1874880/Arma_Reforger/) support.
|
||||||
- [Nova-Life: Amboise](https://store.steampowered.com/app/885570/NovaLife_Amboise/) support.
|
- [Nova-Life: Amboise](https://store.steampowered.com/app/885570/NovaLife_Amboise/) support.
|
||||||
|
- [Abiotic Factor](https://store.steampowered.com/app/427410/Abiotic_Factor/) support.
|
||||||
|
|
||||||
Protocols:
|
Protocols:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
||||||
rules: GatherToggle::Skip,
|
rules: GatherToggle::Skip,
|
||||||
check_app_id: true,
|
check_app_id: true,
|
||||||
}.into_extra()),
|
}.into_extra()),
|
||||||
|
"abioticfactor" => game!("Abiotic Factor", 27015, Protocol::Valve(Engine::new(427_410))),
|
||||||
"alienswarm" => game!("Alien Swarm", 27015, Protocol::Valve(Engine::new(630))),
|
"alienswarm" => game!("Alien Swarm", 27015, Protocol::Valve(Engine::new(630))),
|
||||||
"aoc" => game!("Age of Chivalry", 27015, Protocol::Valve(Engine::new(17510))),
|
"aoc" => game!("Age of Chivalry", 27015, Protocol::Valve(Engine::new(17510))),
|
||||||
"a2oa" => game!("ARMA 2: Operation Arrowhead", 2304, Protocol::Valve(Engine::new(33930))),
|
"a2oa" => game!("ARMA 2: Operation Arrowhead", 2304, Protocol::Valve(Engine::new(33930))),
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
use crate::protocols::valve::game_query_mod;
|
use crate::protocols::valve::game_query_mod;
|
||||||
|
|
||||||
|
game_query_mod!(abioticfactor, "Abiotic Factor", Engine::new(427_410), 27015);
|
||||||
game_query_mod!(
|
game_query_mod!(
|
||||||
a2oa,
|
a2oa,
|
||||||
"ARMA 2: Operation Arrowhead",
|
"ARMA 2: Operation Arrowhead",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue