2022-04-11 18:35:28 +01:00
|
|
|
from dataclasses import dataclass
|
2022-06-16 23:53:28 +01:00
|
|
|
|
|
|
|
from voicemeeterlib import kinds
|
2022-04-11 18:35:28 +01:00
|
|
|
|
2022-05-10 20:34:29 +01:00
|
|
|
from .configurations import get_configuration
|
|
|
|
|
|
|
|
configuration = get_configuration("app")
|
|
|
|
|
|
|
|
|
|
|
|
class SingletonMeta(type):
|
|
|
|
_instances = {}
|
|
|
|
|
|
|
|
def __call__(cls, *args, **kwargs):
|
|
|
|
if cls not in cls._instances:
|
|
|
|
instance = super().__call__(*args, **kwargs)
|
|
|
|
cls._instances[cls] = instance
|
|
|
|
return cls._instances[cls]
|
|
|
|
|
2022-04-11 18:35:28 +01:00
|
|
|
|
|
|
|
@dataclass
|
2022-05-10 20:34:29 +01:00
|
|
|
class Configurations(metaclass=SingletonMeta):
|
|
|
|
# is the gui extended
|
|
|
|
extended: bool = configuration["extends"]["extended"]
|
|
|
|
# direction the gui extends
|
|
|
|
extends_horizontal: bool = configuration["extends"]["extends_horizontal"]
|
|
|
|
# are themes enabled
|
|
|
|
themes_enabled: bool = configuration["theme"]["enabled"]
|
|
|
|
# light or dark
|
|
|
|
theme_mode: str = configuration["theme"]["mode"]
|
|
|
|
# size of mousewheel scroll step
|
|
|
|
mwscroll_step: int = configuration["mwscroll_step"]["size"]
|
2022-05-16 22:20:05 +01:00
|
|
|
# bus assigned as current submix
|
|
|
|
submixes: int = configuration["submixes"]["default"]
|
|
|
|
|
|
|
|
# width of a single labelframe
|
|
|
|
level_width: int = configuration["channel"]["width"]
|
|
|
|
# height of a single labelframe
|
|
|
|
level_height: int = configuration["channel"]["height"]
|
2022-05-10 20:34:29 +01:00
|
|
|
|
|
|
|
@property
|
2022-06-17 17:53:46 +01:00
|
|
|
def config(self):
|
|
|
|
if "configs" in configuration:
|
|
|
|
return configuration["configs"]["config"]
|
2022-05-10 20:34:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class BaseValues(metaclass=SingletonMeta):
|
2022-04-11 18:35:28 +01:00
|
|
|
# are we dragging a scale with mouse 1
|
|
|
|
in_scale_button_1: bool = False
|
|
|
|
# are we dragging main window with mouse 1
|
|
|
|
dragging: bool = False
|
|
|
|
# a vban connection established
|
|
|
|
vban_connected: bool = False
|
2022-04-13 06:50:49 +01:00
|
|
|
# pdirty delay
|
2022-06-16 23:53:28 +01:00
|
|
|
pdelay: int = 1
|
2022-04-13 06:50:49 +01:00
|
|
|
# ldirty delay
|
2022-05-14 14:05:48 +01:00
|
|
|
ldelay: int = 5
|
2022-04-11 18:35:28 +01:00
|
|
|
|
|
|
|
|
2022-05-10 20:34:29 +01:00
|
|
|
_base_values = BaseValues()
|
|
|
|
_configuration = Configurations()
|
2022-04-11 18:35:28 +01:00
|
|
|
|
2022-06-16 23:53:28 +01:00
|
|
|
_kinds = {kind.name: kind for kind in kinds.kinds_all}
|
2022-04-11 18:35:28 +01:00
|
|
|
|
|
|
|
_kinds_all = _kinds.values()
|
|
|
|
|
|
|
|
|
|
|
|
def kind_get(kind_id):
|
|
|
|
return _kinds[kind_id]
|