Browse Source

Merge pull request #51 from Nereg/docstrings_fix

Moved attributes docstring bellow attribute.
pull/58/head
Gabriel Huber 2 years ago
committed by GitHub
parent
commit
c7590ffa9a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 86
      a2s/info.py
  2. 10
      a2s/players.py

86
a2s/info.py

@ -14,78 +14,78 @@ A2S_INFO_RESPONSE_LEGACY = 0x6D
class SourceInfo(metaclass=DataclsMeta): class SourceInfo(metaclass=DataclsMeta):
"""Protocol version used by the server"""
protocol: int protocol: int
"""Protocol version used by the server"""
"""Display name of the server"""
server_name: str server_name: str
"""Display name of the server"""
"""The currently loaded map"""
map_name: str map_name: str
"""The currently loaded map"""
"""Name of the game directory"""
folder: str folder: str
"""Name of the game directory"""
"""Name of the game"""
game: str game: str
"""Name of the game"""
"""App ID of the game required to connect"""
app_id: int app_id: int
"""App ID of the game required to connect"""
"""Number of players currently connected"""
player_count: int player_count: int
"""Number of players currently connected"""
"""Number of player slots available"""
max_players: int max_players: int
"""Number of player slots available"""
"""Number of bots on the server"""
bot_count: int bot_count: int
"""Number of bots on the server"""
server_type: str
"""Type of the server: """Type of the server:
'd': Dedicated server 'd': Dedicated server
'l': Non-dedicated server 'l': Non-dedicated server
'p': SourceTV relay (proxy)""" 'p': SourceTV relay (proxy)"""
server_type: str
platform: str
"""Operating system of the server """Operating system of the server
'l', 'w', 'm' for Linux, Windows, macOS""" 'l', 'w', 'm' for Linux, Windows, macOS"""
platform: str
"""Server requires a password to connect"""
password_protected: bool password_protected: bool
"""Server requires a password to connect"""
"""Server has VAC enabled"""
vac_enabled: bool vac_enabled: bool
"""Server has VAC enabled"""
"""Version of the server software"""
version: str version: str
"""Version of the server software"""
# Optional: # Optional:
edf: int = 0
"""Extra data field, used to indicate if extra values are """Extra data field, used to indicate if extra values are
included in the response""" included in the response"""
edf: int = 0
"""Port of the game server."""
port: int port: int
"""Port of the game server."""
"""Steam ID of the server"""
steam_id: int steam_id: int
"""Steam ID of the server"""
"""Port of the SourceTV server"""
stv_port: int stv_port: int
"""Port of the SourceTV server"""
"""Name of the SourceTV server"""
stv_name: str stv_name: str
"""Name of the SourceTV server"""
"""Tags that describe the gamemode being played"""
keywords: str keywords: str
"""Tags that describe the gamemode being played"""
"""Game ID for games that have an app ID too high for 16bit."""
game_id: int game_id: int
"""Game ID for games that have an app ID too high for 16bit."""
# Client determined values: # Client determined values:
"""Round-trip delay time for the request in seconds"""
ping: float ping: float
"""Round-trip delay time for the request in seconds"""
@property @property
def has_port(self): def has_port(self):
@ -108,74 +108,74 @@ class SourceInfo(metaclass=DataclsMeta):
return bool(self.edf & 0x01) return bool(self.edf & 0x01)
class GoldSrcInfo(metaclass=DataclsMeta): class GoldSrcInfo(metaclass=DataclsMeta):
"""IP Address and port of the server"""
address: str address: str
"""IP Address and port of the server"""
"""Display name of the server"""
server_name: str server_name: str
"""Display name of the server"""
"""The currently loaded map"""
map_name: str map_name: str
"""The currently loaded map"""
"""Name of the game directory"""
folder: str folder: str
"""Name of the game directory"""
"""Name of the game"""
game: str game: str
"""Name of the game"""
"""Number of players currently connected"""
player_count: int player_count: int
"""Number of players currently connected"""
"""Number of player slots available"""
max_players: int max_players: int
"""Number of player slots available"""
"""Protocol version used by the server"""
protocol: int protocol: int
"""Protocol version used by the server"""
server_type: str
"""Type of the server: """Type of the server:
'd': Dedicated server 'd': Dedicated server
'l': Non-dedicated server 'l': Non-dedicated server
'p': SourceTV relay (proxy)""" 'p': SourceTV relay (proxy)"""
server_type: str
platform: str
"""Operating system of the server """Operating system of the server
'l', 'w' for Linux and Windows""" 'l', 'w' for Linux and Windows"""
platform: str
"""Server requires a password to connect"""
password_protected: bool password_protected: bool
"""Server requires a password to connect"""
"""Server is running a Half-Life mod instead of the base game"""
is_mod: bool is_mod: bool
"""Server is running a Half-Life mod instead of the base game"""
"""Server has VAC enabled"""
vac_enabled: bool vac_enabled: bool
"""Server has VAC enabled"""
"""Number of bots on the server"""
bot_count: int bot_count: int
"""Number of bots on the server"""
# Optional: # Optional:
"""URL to the mod website"""
mod_website: str mod_website: str
"""URL to the mod website"""
"""URL to download the mod"""
mod_download: str mod_download: str
"""URL to download the mod"""
"""Version of the mod installed on the server"""
mod_version: int mod_version: int
"""Version of the mod installed on the server"""
"""Size in bytes of the mod"""
mod_size: int mod_size: int
"""Size in bytes of the mod"""
"""Mod supports multiplayer only"""
multiplayer_only: bool = False multiplayer_only: bool = False
"""Mod supports multiplayer only"""
"""Mod uses a custom DLL"""
uses_hl_dll: bool = True uses_hl_dll: bool = True
"""Mod uses a custom DLL"""
# Client determined values: # Client determined values:
"""Round-trip delay time for the request in seconds"""
ping: float ping: float
"""Round-trip delay time for the request in seconds"""
def info(address, timeout=DEFAULT_TIMEOUT, encoding=DEFAULT_ENCODING): def info(address, timeout=DEFAULT_TIMEOUT, encoding=DEFAULT_ENCODING):

10
a2s/players.py

@ -11,18 +11,18 @@ from a2s.datacls import DataclsMeta
A2S_PLAYER_RESPONSE = 0x44 A2S_PLAYER_RESPONSE = 0x44
class Player(metaclass=DataclsMeta): class Player(metaclass=DataclsMeta):
"""Apparently an entry index, but seems to be always 0"""
index: int index: int
"""Apparently an entry index, but seems to be always 0"""
"""Name of the player"""
name: str name: str
"""Name of the player"""
"""Score of the player"""
score: int score: int
"""Score of the player"""
"""Time the player has been connected to the server"""
duration: float duration: float
"""Time the player has been connected to the server"""
def players(address, timeout=DEFAULT_TIMEOUT, encoding=DEFAULT_ENCODING): def players(address, timeout=DEFAULT_TIMEOUT, encoding=DEFAULT_ENCODING):

Loading…
Cancel
Save