Edited GAMES.md, PROTOCOLS.md and changed 'verify' keyword to 'query' in Cargo.toml

This commit is contained in:
CosminPerRam 2022-11-28 00:23:19 +02:00
parent ed681025b4
commit e709cb3ce5
3 changed files with 34 additions and 32 deletions

View file

@ -9,7 +9,7 @@ homepage = "https://github.com/CosminPerRam/rust-gamedig"
documentation = "https://docs.rs/gamedig/latest/gamedig/" documentation = "https://docs.rs/gamedig/latest/gamedig/"
repository = "https://github.com/CosminPerRam/rust-gamedig" repository = "https://github.com/CosminPerRam/rust-gamedig"
readme = "README.md" readme = "README.md"
keywords = ["server", "verify", "game", "check", "status"] keywords = ["server", "query", "game", "check", "status"]
[package.metadata] [package.metadata]
msrv = "1.58.1" msrv = "1.58.1"

View file

@ -1,32 +1,33 @@
A supported game is defined as a game that has been successfully tested, other games that use the implemented protocols might work too, but it isn't guaranteed.
# Supported games: # Supported games:
| ID | Name | Protocol | Notes | | Game | Use name | Protocol | Notes |
|----------|------------------------------------|----------------|------------------------------------------------------------------------------| |------------------------------------|----------|---------------------------|------------------------------------------------------------------------------|
| TF2 | Team Fortress 2 | Valve Protocol | | | Team Fortress 2 | TF2 | Valve Protocol | |
| TS | The Ship | Valve Protocol | | | The Ship | TS | Valve Protocol (*Altered) | |
| CSGO | Counter-Strike: Global Offensive | Valve Protocol | The server wouldn't respond the to Rules query since the 21 Feb 2014 update. | | Counter-Strike: Global Offensive | CSGO | Valve Protocol | The server wouldn't respond the to Rules query since the 21 Feb 2014 update. |
| CSS | Counter-Strike: Source | Valve Protocol | | | Counter-Strike: Source | CSS | Valve Protocol | |
| DODS | Day of Defeat: Source | Valve Protocol | | | Day of Defeat: Source | DODS | Valve Protocol | |
| L4D | Left 4 Dead | Valve Protocol | | | Left 4 Dead | L4D | Valve Protocol | |
| L4D2 | Left 4 Dead 2 | Valve Protocol | | | Left 4 Dead 2 | L4D2 | Valve Protocol | |
| HL2DM | Half-Life 2 Deathmatch | Valve Protocol | | | Half-Life 2 Deathmatch | HL2DM | Valve Protocol | |
| ALIENS | Alien Swarm | Valve Protocol | | | Alien Swarm | ALIENS | Valve Protocol | |
| ASRD | Alien Swarm: Reactive Drop | Valve Protocol | | | Alien Swarm: Reactive Drop | ASRD | Valve Protocol | |
| INS | Insurgency | Valve Protocol | | | Insurgency | INS | Valve Protocol | |
| INSS | Insurgency: Sandstorm | Valve Protocol | Use the query port. | | Insurgency: Sandstorm | INSS | Valve Protocol | Use the query port. |
| INSMIC | Insurgency: Modern Infantry Combat | Valve Protocol | | | Insurgency: Modern Infantry Combat | INSMIC | Valve Protocol | |
| CSCZ | Counter-Strike: Condition Zero | Valve Protocol | | | Counter-Strike: Condition Zero | CSCZ | Valve Protocol (GoldSrc) | |
| DOD | Day of Defeat | Valve Protocol | | | Day of Defeat | DOD | Valve Protocol (GoldSrc) | |
| MC | Minecraft | Proprietary | Bedrock not supported yet. | | Minecraft | MC | Proprietary | Bedrock not supported yet. |
| SDTD | 7 Days To Die | Valve Protocol | | | 7 Days To Die | SDTD | Valve Protocol | |
| ASE | ARK: Survival Evolved | Valve Protocol | | | ARK: Survival Evolved | ASE | Valve Protocol | |
| UNTURNED | Unturned | Valve Protocol | | | Unturned | UNTURNED | Valve Protocol | |
| TF | The Forest | Valve Protocol | Use the query port. | | The Forest | TF | Valve Protocol (GoldSrc) | Use the query port. |
| TFC | Team Fortress Classic | Valve Protocol | | | Team Fortress Classic | TFC | Valve Protocol | |
| SC | Sven Co-op | Valve Protocol | | | Sven Co-op | SC | Valve Protocol (GoldSrc) | |
| RUST | Rust | Valve Protocol | | | Rust | RUST | Valve Protocol | |
| CS | Counter-Strike | Valve Protocol | | | Counter-Strike | CS | Valve Protocol (GoldSrc) | |
| ARMA2OA | Arma 2: Operation Arrowhead | Valve Protocol | Use the query port. | | Arma 2: Operation Arrowhead | ARMA2OA | Valve Protocol | Use the query port. |
## Planned to add support: ## Planned to add support:
_ _

View file

@ -1,9 +1,10 @@
A protocol is defined as proprietary if it is being used only for a single scope.
# Supported protocols: # Supported protocols:
| Name | Documentation reference | Notes | | Name | For | Proprietary? | Documentation reference | Notes |
|----------------|---------------------------------------------------------------------------|----------------------------------------| |----------------|-------|--------------|---------------------------------------------------------------------------|----------------------------------------|
| Valve Protocol | [Server Queries](https://developer.valvesoftware.com/wiki/Server_queries) | Multi-packet decompression not tested. | | Valve Protocol | Games | No | [Server Queries](https://developer.valvesoftware.com/wiki/Server_queries) | Multi-packet decompression not tested. |
| Minecraft | [List Server Protocol](https://wiki.vg/Server_List_Ping) | Bedrock not yet supported. | | Minecraft | Games | Yes | [List Server Protocol](https://wiki.vg/Server_List_Ping) | Bedrock not yet supported. |
## Planned to add support: ## Planned to add support:
_ _