Browse Source

Rename Command to CommandRequest

pull/8/head
Richard Neumann 3 years ago
parent
commit
0e7a1ce4ac
  1. 6
      rcon/battleye/client.py
  2. 10
      rcon/battleye/proto.py

6
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

10
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 = {

Loading…
Cancel
Save