You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
690 B

from pydantic import BaseModel
import re
class BotPlayer(Exception):
pass
class RCONPlayer:
#DefaultPlayer
name: str
score: int
id: int = 0
steam = None
#RCONPlayer
duration: str
ip: str
loss: int
ping: int
state: str
#Backcomp
steam2: str = ""
def __init__(self, status_line:str):
splited = re.split(r"\s+", status_line)
len = splited.__len__()
self.id = int(splited[1])
self.ip = splited[len - 1]
self.state = splited[len - 2]
if self.state == "BOT":
raise BotPlayer()
self.loss = int(splited[len - 3])
self.ping = int(splited[len - 4])
self.duration = splited[len - 5]
self.steam2 = splited[len - 6]
self.name = " ".join(splited[2:len-6])[1:-1]