phosphor-studio 0.3.22

A terminal-native DAW with built-in synthesizers and MIDI support
use anyhow::Result;
use clap::Parser;

#[derive(Parser, Debug)]
#[command(name = "phosphor", about = "A terminal & graphical DAW", version)]
struct Cli {
    /// Launch the TUI frontend (default)
    #[arg(long, conflicts_with = "gui")]
    tui: bool,

    /// Launch the GUI frontend
    #[arg(long, conflicts_with = "tui")]
    gui: bool,

    /// Audio buffer size in samples (lower = less latency, more CPU)
    #[arg(long, default_value = "64")]
    buffer_size: u32,

    /// Sample rate in Hz
    #[arg(long, default_value = "44100")]
    sample_rate: u32,

    /// Disable audio output (useful for UI development)
    #[arg(long)]
    no_audio: bool,

    /// Disable MIDI input
    #[arg(long)]
    no_midi: bool,
}

fn main() -> Result<()> {
    let cli = Cli::parse();

    let config = phosphor_core::EngineConfig {
        buffer_size: cli.buffer_size,
        sample_rate: cli.sample_rate,
    };

    if cli.gui {
        // GUI mode: tracing goes to stderr as usual
        tracing_subscriber::fmt()
            .with_env_filter(
                tracing_subscriber::EnvFilter::try_from_default_env()
                    .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("info")),
            )
            .init();

        tracing::info!(
            "Phosphor v{} starting (buffer_size={}, sample_rate={})",
            env!("CARGO_PKG_VERSION"),
            cli.buffer_size,
            cli.sample_rate,
        );

        phosphor_gui::run(config)
    } else {
        // TUI mode: suppress all tracing output to stderr so it doesn't
        // bleed into the splash screen or the terminal UI.
        // Debug logging goes to phosphor_debug.log via the debug_log module.
        tracing_subscriber::fmt()
            .with_env_filter(tracing_subscriber::EnvFilter::new("off"))
            .init();

        phosphor_tui::run(config, !cli.no_audio, !cli.no_midi)
    }
}