mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-16 00:40:46 +00:00
695e3e4999
effects mixed into phys/virt bus physicalbus params mixed into virtualbus for basic kind only. get() added to bus mode mixin BusModes IntEnum added to bus
279 lines
6.7 KiB
Python
279 lines
6.7 KiB
Python
import time
|
|
from abc import abstractmethod
|
|
from enum import IntEnum
|
|
from math import log
|
|
from typing import Union
|
|
|
|
from .error import VMError
|
|
from .iremote import IRemote
|
|
from .kinds import kinds_all
|
|
from .meta import bool_prop, bus_mode_prop, float_prop
|
|
|
|
BusModes = IntEnum(
|
|
"BusModes",
|
|
"normal amix bmix repeat composite tvmix upmix21 upmix41 upmix61 centeronly lfeonly rearonly",
|
|
start=0,
|
|
)
|
|
|
|
|
|
class Bus(IRemote):
|
|
"""
|
|
Implements the common interface
|
|
|
|
Defines concrete implementation for bus
|
|
"""
|
|
|
|
@abstractmethod
|
|
def __str__(self):
|
|
pass
|
|
|
|
@property
|
|
def identifier(self) -> str:
|
|
return f"bus[{self.index}]"
|
|
|
|
@property
|
|
def mute(self) -> bool:
|
|
return self.getter("mute") == 1
|
|
|
|
@mute.setter
|
|
def mute(self, val: bool):
|
|
self.setter("mute", 1 if val else 0)
|
|
|
|
@property
|
|
def mono(self) -> bool:
|
|
return self.getter("mono") == 1
|
|
|
|
@mono.setter
|
|
def mono(self, val: bool):
|
|
self.setter("mono", 1 if val else 0)
|
|
|
|
@property
|
|
def eq(self) -> bool:
|
|
return self.getter("eq.On") == 1
|
|
|
|
@eq.setter
|
|
def eq(self, val: bool):
|
|
self.setter("eq.On", 1 if val else 0)
|
|
|
|
@property
|
|
def eq_ab(self) -> bool:
|
|
return self.getter("eq.ab") == 1
|
|
|
|
@eq_ab.setter
|
|
def eq_ab(self, val: bool):
|
|
self.setter("eq.ab", 1 if val else 0)
|
|
|
|
@property
|
|
def sel(self) -> bool:
|
|
return self.getter("sel") == 1
|
|
|
|
@sel.setter
|
|
def sel(self, val: bool):
|
|
self.setter("sel", 1 if val else 0)
|
|
|
|
@property
|
|
def label(self) -> str:
|
|
return self.getter("Label", is_string=True)
|
|
|
|
@label.setter
|
|
def label(self, val: str):
|
|
self.setter("Label", str(val))
|
|
|
|
@property
|
|
def gain(self) -> float:
|
|
return round(self.getter("gain"), 1)
|
|
|
|
@gain.setter
|
|
def gain(self, val: float):
|
|
self.setter("gain", val)
|
|
|
|
@property
|
|
def monitor(self) -> bool:
|
|
return self.getter("monitor") == 1
|
|
|
|
@monitor.setter
|
|
def monitor(self, val: bool):
|
|
self.setter("monitor", 1 if val else 0)
|
|
|
|
def fadeto(self, target: float, time_: int):
|
|
self.setter("FadeTo", f"({target}, {time_})")
|
|
time.sleep(self._remote.DELAY)
|
|
|
|
def fadeby(self, change: float, time_: int):
|
|
self.setter("FadeBy", f"({change}, {time_})")
|
|
time.sleep(self._remote.DELAY)
|
|
|
|
|
|
class PhysicalBus(Bus):
|
|
@classmethod
|
|
def make(cls, kind):
|
|
"""
|
|
Factory method for PhysicalBus.
|
|
|
|
Returns a PhysicalBus class.
|
|
"""
|
|
kls = (cls,)
|
|
if kind.name == "potato":
|
|
EFFECTS_cls = _make_effects_mixin()
|
|
kls += (EFFECTS_cls,)
|
|
return type(f"PhysicalBus", kls, {})
|
|
|
|
def __str__(self):
|
|
return f"{type(self).__name__}{self.index}"
|
|
|
|
@property
|
|
def device(self) -> str:
|
|
return self.getter("device.name", is_string=True)
|
|
|
|
@property
|
|
def sr(self) -> int:
|
|
return int(self.getter("device.sr"))
|
|
|
|
|
|
class VirtualBus(Bus):
|
|
@classmethod
|
|
def make(cls, kind):
|
|
"""
|
|
Factory method for VirtualBus.
|
|
|
|
If basic kind subclass physical bus.
|
|
|
|
Returns a VirtualBus class.
|
|
"""
|
|
kls = (cls,)
|
|
if kind.name == "basic":
|
|
kls += (PhysicalBus,)
|
|
elif kind.name == "potato":
|
|
EFFECTS_cls = _make_effects_mixin()
|
|
kls += (EFFECTS_cls,)
|
|
return type(f"VirtualBus", kls, {})
|
|
|
|
def __str__(self):
|
|
return f"{type(self).__name__}{self.index}"
|
|
|
|
|
|
class BusLevel(IRemote):
|
|
def __init__(self, remote, index):
|
|
super().__init__(remote, index)
|
|
self.level_map = tuple(
|
|
(i, i + 8)
|
|
for i in range(0, (remote.kind.phys_out + remote.kind.virt_out) * 8, 8)
|
|
)
|
|
self.range = self.level_map[self.index]
|
|
|
|
def getter(self, mode):
|
|
"""
|
|
Returns a tuple of level values for the channel.
|
|
|
|
If observables thread running fetch values from cache otherwise call CAPI func.
|
|
"""
|
|
|
|
def fget(i):
|
|
return round(20 * log(i, 10), 1) if i > 0 else -200.0
|
|
|
|
if self._remote.running and "bus_level" in self._remote.cache:
|
|
vals = self._remote.cache["bus_level"][self.range[0] : self.range[-1]]
|
|
else:
|
|
vals = [self._remote.get_level(mode, i) for i in range(*self.range)]
|
|
|
|
return tuple(fget(i) for i in vals)
|
|
|
|
@property
|
|
def identifier(self) -> str:
|
|
return f"Bus[{self.index}]"
|
|
|
|
@property
|
|
def all(self) -> tuple:
|
|
return self.getter(3)
|
|
|
|
@property
|
|
def is_updated(self) -> bool:
|
|
"""
|
|
Returns dirty status for this specific channel.
|
|
|
|
Expected to be used in a callback only.
|
|
"""
|
|
if self._remote.running:
|
|
return any(self._remote._bus_comp[self.range[0] : self.range[-1]])
|
|
|
|
|
|
def _make_bus_mode_mixin():
|
|
"""Creates a mixin of Bus Modes."""
|
|
|
|
def identifier(self) -> str:
|
|
return f"Bus[{self.index}].mode"
|
|
|
|
def get(self) -> str:
|
|
time.sleep(0.01)
|
|
for i, val in enumerate(
|
|
[
|
|
self.amix,
|
|
self.bmix,
|
|
self.repeat,
|
|
self.composite,
|
|
self.tvmix,
|
|
self.upmix21,
|
|
self.upmix41,
|
|
self.upmix61,
|
|
self.centeronly,
|
|
self.lfeonly,
|
|
self.rearonly,
|
|
]
|
|
):
|
|
if val:
|
|
return BusModes(i + 1).name
|
|
return "normal"
|
|
|
|
return type(
|
|
"BusModeMixin",
|
|
(IRemote,),
|
|
{
|
|
"identifier": property(identifier),
|
|
**{mode.name: bus_mode_prop(mode.name) for mode in BusModes},
|
|
"get": get,
|
|
},
|
|
)
|
|
|
|
|
|
def _make_effects_mixin():
|
|
"""creates an fx mixin"""
|
|
return type(
|
|
f"FX",
|
|
(),
|
|
{
|
|
**{
|
|
f"return{param}": float_prop(f"return{param}")
|
|
for param in ["reverb", "delay", "fx1", "fx2"]
|
|
},
|
|
},
|
|
)
|
|
|
|
|
|
def bus_factory(is_phys_bus, remote, i) -> Union[PhysicalBus, VirtualBus]:
|
|
"""
|
|
Factory method for buses
|
|
|
|
Returns a physical or virtual bus subclass
|
|
"""
|
|
BUS_cls = (
|
|
PhysicalBus.make(remote.kind) if is_phys_bus else VirtualBus.make(remote.kind)
|
|
)
|
|
BUSMODEMIXIN_cls = _make_bus_mode_mixin()
|
|
return type(
|
|
f"{BUS_cls.__name__}{remote.kind}",
|
|
(BUS_cls,),
|
|
{
|
|
"levels": BusLevel(remote, i),
|
|
"mode": BUSMODEMIXIN_cls(remote, i),
|
|
},
|
|
)(remote, i)
|
|
|
|
|
|
def request_bus_obj(phys_bus, remote, i) -> Bus:
|
|
"""
|
|
Bus entry point. Wraps factory method.
|
|
|
|
Returns a reference to a bus subclass of a kind
|
|
"""
|
|
return bus_factory(phys_bus, remote, i)
|