diff --git a/rcon/config.py b/rcon/config.py index 6f1aa07..2ef8eac 100644 --- a/rcon/config.py +++ b/rcon/config.py @@ -3,6 +3,7 @@ from __future__ import annotations from configparser import ConfigParser, SectionProxy from logging import getLogger +from os import getenv, name from pathlib import Path from typing import Dict, Iterator, NamedTuple, Tuple @@ -13,7 +14,14 @@ __all__ = ['CONFIG_FILE', 'LOG_FORMAT', 'Config', 'servers'] CONFIG = ConfigParser() -CONFIG_FILE = Path('/etc/rcon.conf') + +if name == 'posix': + CONFIG_FILE = Path('/etc/rcon.conf') +elif name == 'nt': + CONFIG_FILE = Path(getenv('LOCALAPPDATA')).joinpath('rcon.conf') +else: + raise NotImplementedError(f'Unsupported operating system: {name}') + LOG_FORMAT = '[%(levelname)s] %(name)s: %(message)s' LOGGER = getLogger('RCON Config')