From 0e7a1ce4ac5aa92c994e8dd41c8d3bb6f714f641 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 14 Feb 2022 13:03:39 +0100 Subject: [PATCH] Rename Command to CommandRequest --- rcon/battleye/client.py | 6 ++++-- rcon/battleye/proto.py | 10 +++++----- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/rcon/battleye/client.py b/rcon/battleye/client.py index 6dcd01e..a4883aa 100644 --- a/rcon/battleye/client.py +++ b/rcon/battleye/client.py @@ -6,7 +6,7 @@ from socket import SOCK_DGRAM from typing import Callable, Union from rcon.battleye.proto import RESPONSE_TYPES -from rcon.battleye.proto import Command +from rcon.battleye.proto import CommandRequest from rcon.battleye.proto import Header from rcon.battleye.proto import LoginRequest from rcon.battleye.proto import Request @@ -71,4 +71,6 @@ class Client(BaseClient, socket_type=SOCK_DGRAM): def run(self, command: str, *args: str) -> str: """Executes a command.""" - return self.communicate(Command.from_command(command, *args)).message + return self.communicate( + CommandRequest.from_command(command, *args) + ).message diff --git a/rcon/battleye/proto.py b/rcon/battleye/proto.py index a9c2d93..484fb74 100644 --- a/rcon/battleye/proto.py +++ b/rcon/battleye/proto.py @@ -10,7 +10,7 @@ __all__ = [ 'Header', 'LoginRequest', 'LoginResponse', - 'Command', + 'CommandRequest', 'CommandResponse', 'ServerMessage', 'Request', @@ -95,7 +95,7 @@ class LoginResponse(NamedTuple): return cls(header, bool(int.from_bytes(payload[:1], 'little'))) -class Command(NamedTuple): +class CommandRequest(NamedTuple): """Command packet.""" seq: int @@ -118,12 +118,12 @@ class Command(NamedTuple): return Header.create(0x01, self.payload) @classmethod - def from_string(cls, command: str) -> Command: + def from_string(cls, command: str) -> CommandRequest: """Creates a command packet from the given string.""" return cls(0x00, command) @classmethod - def from_command(cls, command: str, *args: str) -> Command: + def from_command(cls, command: str, *args: str) -> CommandRequest: """Creates a command packet from the command and arguments.""" return cls.from_string(' '.join([command, *args])) @@ -172,7 +172,7 @@ class ServerMessage(NamedTuple): return self.payload.decode('ascii') -Request = Union[LoginRequest, Command] +Request = Union[LoginRequest, CommandRequest] Response = Union[LoginResponse, CommandResponse, ServerMessage] RESPONSE_TYPES = {