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 typing import Callable, Union
from rcon.battleye.proto import RESPONSE_TYPES 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 Header
from rcon.battleye.proto import LoginRequest from rcon.battleye.proto import LoginRequest
from rcon.battleye.proto import Request 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: def run(self, command: str, *args: str) -> str:
"""Executes a command.""" """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', 'Header',
'LoginRequest', 'LoginRequest',
'LoginResponse', 'LoginResponse',
'Command', 'CommandRequest',
'CommandResponse', 'CommandResponse',
'ServerMessage', 'ServerMessage',
'Request', 'Request',
@ -95,7 +95,7 @@ class LoginResponse(NamedTuple):
return cls(header, bool(int.from_bytes(payload[:1], 'little'))) return cls(header, bool(int.from_bytes(payload[:1], 'little')))
class Command(NamedTuple): class CommandRequest(NamedTuple):
"""Command packet.""" """Command packet."""
seq: int seq: int
@ -118,12 +118,12 @@ class Command(NamedTuple):
return Header.create(0x01, self.payload) return Header.create(0x01, self.payload)
@classmethod @classmethod
def from_string(cls, command: str) -> Command: def from_string(cls, command: str) -> CommandRequest:
"""Creates a command packet from the given string.""" """Creates a command packet from the given string."""
return cls(0x00, command) return cls(0x00, command)
@classmethod @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.""" """Creates a command packet from the command and arguments."""
return cls.from_string(' '.join([command, *args])) return cls.from_string(' '.join([command, *args]))
@ -172,7 +172,7 @@ class ServerMessage(NamedTuple):
return self.payload.decode('ascii') return self.payload.decode('ascii')
Request = Union[LoginRequest, Command] Request = Union[LoginRequest, CommandRequest]
Response = Union[LoginResponse, CommandResponse, ServerMessage] Response = Union[LoginResponse, CommandResponse, ServerMessage]
RESPONSE_TYPES = { RESPONSE_TYPES = {

Loading…
Cancel
Save