This commit implements the Sideline/Mainline split with a clean plugin architecture: ## Core Changes ### Sideline Framework (New Directory) - Created directory containing the reusable pipeline framework - Moved pipeline core, controllers, adapters, and registry to - Moved display system to - Moved effects system to - Created plugin system with security and compatibility management in - Created preset pack system with ASCII art encoding in - Added default font (Corptic) to - Added terminal ANSI constants to ### Mainline Application (Updated) - Created for Mainline stage component registration - Updated to register Mainline stages at startup - Updated as a compatibility shim re-exporting from sideline ### Terminology Consistency - : Base class for all pipeline components (sources, effects, displays, cameras) - : Base class for distributable plugin packages (was ) - : Base class for visual effects (was ) - Backward compatibility aliases maintained for existing code ## Key Features - Plugin discovery via entry points and explicit registration - Security permissions system for plugins - Compatibility management with semantic version constraints - Preset pack system for distributable configurations - Default font bundled with Sideline (Corptic.otf) ## Testing - Updated tests to register Mainline stages before discovery - All StageRegistry tests passing Note: This is a major refactoring that separates the framework (Sideline) from the application (Mainline), enabling Sideline to be used by other applications.
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
from sideline.effects.types import EffectConfig, EffectPlugin
|
|
|
|
|
|
class EffectRegistry:
|
|
def __init__(self):
|
|
self._plugins: dict[str, EffectPlugin] = {}
|
|
self._discovered: bool = False
|
|
|
|
def register(self, plugin: EffectPlugin) -> None:
|
|
self._plugins[plugin.name] = plugin
|
|
|
|
def get(self, name: str) -> EffectPlugin | None:
|
|
return self._plugins.get(name)
|
|
|
|
def list_all(self) -> dict[str, EffectPlugin]:
|
|
return self._plugins.copy()
|
|
|
|
def list_enabled(self) -> list[EffectPlugin]:
|
|
return [p for p in self._plugins.values() if p.config.enabled]
|
|
|
|
def enable(self, name: str) -> bool:
|
|
plugin = self._plugins.get(name)
|
|
if plugin:
|
|
plugin.config.enabled = True
|
|
return True
|
|
return False
|
|
|
|
def disable(self, name: str) -> bool:
|
|
plugin = self._plugins.get(name)
|
|
if plugin:
|
|
plugin.config.enabled = False
|
|
return True
|
|
return False
|
|
|
|
def configure(self, name: str, config: EffectConfig) -> bool:
|
|
plugin = self._plugins.get(name)
|
|
if plugin:
|
|
plugin.configure(config)
|
|
return True
|
|
return False
|
|
|
|
def is_enabled(self, name: str) -> bool:
|
|
plugin = self._plugins.get(name)
|
|
return plugin.config.enabled if plugin else False
|
|
|
|
|
|
_registry: EffectRegistry | None = None
|
|
|
|
|
|
def get_registry() -> EffectRegistry:
|
|
global _registry
|
|
if _registry is None:
|
|
_registry = EffectRegistry()
|
|
return _registry
|
|
|
|
|
|
def set_registry(registry: EffectRegistry) -> None:
|
|
global _registry
|
|
_registry = registry
|