Browse Source

Rewrite battleye client

TODO: Test multi-packet responses!
master 2.4.9
Richard Neumann 6 months ago
parent
commit
2cda854281
  1. 51
      rcon/battleye/client.py

51
rcon/battleye/client.py

@ -1,6 +1,5 @@
"""BattlEye RCon client.""" """BattlEye RCon client."""
from collections import defaultdict
from logging import getLogger from logging import getLogger
from socket import SOCK_DGRAM from socket import SOCK_DGRAM
from typing import Callable from typing import Callable
@ -63,50 +62,44 @@ class Client(BaseClient, socket_type=SOCK_DGRAM):
).type ).type
].from_bytes(header, data[HEADER_SIZE:]) ].from_bytes(header, data[HEADER_SIZE:])
def communicate(self, request: Request) -> Response | str: def receive_transaction(self):
"""Send a request and receive a response."""
acknowledged = defaultdict(set)
command_responses = [] command_responses = []
first = False login_response = None
seq = 0
with self._socket.makefile("wb") as file:
file.write(bytes(request))
while True: while True:
# FIXME: Can we have a better way to detect whether a response = self.receive()
# command packet does or doesn't have a successor?
try:
response = self.receive()
except TimeoutError:
if first:
raise
else:
break
first = False
if isinstance(response, LoginResponse): if isinstance(response, LoginResponse) and login_response is None:
return response login_response = response
continue
seq = response.seq
if isinstance(response, CommandResponse): if isinstance(response, CommandResponse):
# Collect fragmented command responses with the same seq
command_responses.append(response) command_responses.append(response)
else: seq = response.seq
if seq in acknowledged[response_type := type(response)]: continue
break
else:
acknowledged[response_type].add(seq)
if isinstance(response, ServerMessage): if isinstance(response, ServerMessage):
self.handle_server_message(response) self.handle_server_message(response)
if login_response is not None:
return login_response
if len(command_responses) >= seq:
break
return "".join( return "".join(
command_response.message command_response.message
for command_response in sorted(command_responses, key=lambda cr: cr.seq) for command_response in sorted(command_responses, key=lambda cr: cr.seq)
) )
def communicate(self, request: Request) -> Response | str:
"""Send a request and receive a response."""
with self._socket.makefile("wb") as file:
file.write(bytes(request))
return self.receive_transaction()
def login(self, passwd: str) -> bool: def login(self, passwd: str) -> bool:
"""Log-in the user.""" """Log-in the user."""
if not self.communicate(LoginRequest(passwd)).success: if not self.communicate(LoginRequest(passwd)).success:

Loading…
Cancel
Save