mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 14:31:23 +00:00
Compare commits
91 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab68648ef6 | |||
| e10b6f1449 | |||
| ede5028d35 | |||
| f721e4612a | |||
| ef9125024c | |||
| 12c70f0edb | |||
| eae455f0b8 | |||
| e0a55dffa6 | |||
| 6a755ad068 | |||
| 7809a8c9ff | |||
| 76a5f069ab | |||
| ae84b345a4 | |||
| cdd58a04ed | |||
| 271955c777 | |||
| 5b475d1f07 | |||
| 5509b80f3e | |||
| 2a31865822 | |||
| 258467d5bc | |||
| 51ab5eacbc | |||
| 1957a5e2fd | |||
| 5f852343da | |||
| aee48c8f8d | |||
| c63b220d92 | |||
| a4708f1812 | |||
| 3754121ab5 | |||
| a665939137 | |||
| 974fdc9411 | |||
| 9a1107fb41 | |||
| ad2c15f9e3 | |||
| 6d66b57d1b | |||
| 869b67738c | |||
| af3e19d794 | |||
| b42498d188 | |||
| 60975110da | |||
| 05f243b322 | |||
| 0188cac476 | |||
| 3e93ba14e1 | |||
| 939dbea12b | |||
| a4d3111c6d | |||
| 9053056dfa | |||
| e9e3f67735 | |||
| 9238e6563b | |||
| 939b01b587 | |||
| 489878c813 | |||
| c1c1bfd487 | |||
| 2028a728e0 | |||
| e627e71cf6 | |||
| dfe7a7e971 | |||
| 0535744b30 | |||
| 3170e9f30a | |||
| 7ddd2c0dab | |||
| 8590dcceae | |||
| fb6714aeee | |||
| 34886e44a6 | |||
| ede04dd3f8 | |||
| ad892dda29 | |||
| 3a02e9991c | |||
| 5d9d20417b | |||
| d1994d7226 | |||
| b526d67d2f | |||
| c641ec4f31 | |||
| 5bce45c97f | |||
| adfdf7db69 | |||
| 7a7e0f741a | |||
| d86cd6c5d3 | |||
| 61ba71d38e | |||
| 7116ccf487 | |||
| 654ef0d973 | |||
| e9756b0681 | |||
| f72fe588e3 | |||
| 53533c35ef | |||
| 382ddb0ff2 | |||
| 714f81ab34 | |||
| 3c028972fe | |||
| 7e3ff23156 | |||
| 09cec44a5b | |||
| ead17d26a9 | |||
| dfa1cfbb15 | |||
| a70c991711 | |||
| 8c0704ce57 | |||
| 00196bfe7f | |||
| 428fb4064d | |||
| e2b003be31 | |||
| 79176432de | |||
| 9e0a307106 | |||
| 428565594d | |||
| 1d0e3036e9 | |||
| b31f4c8c45 | |||
| 84b6f8ce20 | |||
| c797b204a2 | |||
| faa29d8805 |
Generated
+1013
-400
File diff suppressed because it is too large
Load Diff
+8
-7
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pwsp"
|
name = "pwsp"
|
||||||
version = "1.3.1"
|
version = "1.0.3"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = ["arabian"]
|
authors = ["arabian"]
|
||||||
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
||||||
@@ -12,21 +12,22 @@ keywords = ["soundpad", "pipewire", "linux", "cli", "gui"]
|
|||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.49.0", features = ["full"] }
|
tokio = { version = "1.47.1", features = ["full"] }
|
||||||
|
futures = { version = "0.3.31", features = ["thread-pool"] }
|
||||||
async-trait = "0.1.89"
|
async-trait = "0.1.89"
|
||||||
|
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = "1.0.145"
|
||||||
|
|
||||||
clap = { version = "4.5.54", default-features = false, features = ["std", "suggestions", "help", "usage", "error-context", "derive"] }
|
clap = { version = "4.5.49", default-features = false, features = ["std", "suggestions", "help", "usage", "error-context", "derive"] }
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
|
|
||||||
rodio = { version = "0.21.1", default-features = false, features = ["symphonia-all", "playback"] }
|
rodio = { version = "0.21.1", default-features = false, features = ["symphonia-all", "playback"] }
|
||||||
pipewire = "0.9.2"
|
pipewire = "0.9.2"
|
||||||
rfd = { version = "0.17.1", default-features = false, features = ["xdg-portal"]}
|
rfd = "0.15.4"
|
||||||
|
|
||||||
egui = { version = "0.33.3", default-features = false, features = ["default_fonts", "rayon"] }
|
egui = { version = "0.33.0", default-features = false, features = ["default_fonts", "rayon"] }
|
||||||
eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "glow", "x11", "wayland"] }
|
eframe = { version = "0.33.0", default-features = false, features = ["default_fonts", "glow", "x11", "wayland"] }
|
||||||
egui_material_icons = "0.5.0"
|
egui_material_icons = "0.5.0"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Description=Pipewire Soundpad Daemon
|
|||||||
After=pipewire.service
|
After=pipewire.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStartPre=/usr/bin/sleep 10
|
|
||||||
ExecStart=/usr/bin/pwsp-daemon
|
ExecStart=/usr/bin/pwsp-daemon
|
||||||
Restart=no
|
Restart=no
|
||||||
RuntimeDirectory=pwsp
|
RuntimeDirectory=pwsp
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
%global cargo_install_lib 0
|
%global cargo_install_lib 0
|
||||||
|
|
||||||
Name: pwsp
|
Name: pwsp
|
||||||
Version: 1.3.1
|
Version: 1.0.3
|
||||||
Release: %autorelease
|
Release: %autorelease
|
||||||
Summary: Lets you play audio files through your microphone
|
Summary: Lets you play audio files through your microphone
|
||||||
|
|
||||||
|
|||||||
+8
-22
@@ -14,17 +14,17 @@ struct Cli {
|
|||||||
|
|
||||||
#[derive(Subcommand, Debug)]
|
#[derive(Subcommand, Debug)]
|
||||||
enum Commands {
|
enum Commands {
|
||||||
/// Perform an action (ping, pause, resume, toggle-pause, stop, play)
|
/// Perform an action (ping, pause, resume, stop, play)
|
||||||
Action {
|
Action {
|
||||||
#[clap(subcommand)]
|
#[clap(subcommand)]
|
||||||
action: Actions,
|
action: Actions,
|
||||||
},
|
},
|
||||||
/// Get information from the player (is paused, volume, position, duration, state, current-file-path, input, inputs)
|
/// Get information from the player (is paused, volume, position, state)
|
||||||
Get {
|
Get {
|
||||||
#[clap(subcommand)]
|
#[clap(subcommand)]
|
||||||
parameter: GetCommands,
|
parameter: GetCommands,
|
||||||
},
|
},
|
||||||
/// Set information in the player (volume, position, input)
|
/// Set information in the player (volume, position)
|
||||||
Set {
|
Set {
|
||||||
#[clap(subcommand)]
|
#[clap(subcommand)]
|
||||||
parameter: SetCommands,
|
parameter: SetCommands,
|
||||||
@@ -39,14 +39,10 @@ enum Actions {
|
|||||||
Pause,
|
Pause,
|
||||||
/// Resume audio playback
|
/// Resume audio playback
|
||||||
Resume,
|
Resume,
|
||||||
/// Toggle pause
|
|
||||||
TogglePause,
|
|
||||||
/// Stop audio playback and clear the queue
|
/// Stop audio playback and clear the queue
|
||||||
Stop,
|
Stop,
|
||||||
/// Play a file
|
/// Play a file
|
||||||
Play { file_path: PathBuf },
|
Play { file_path: PathBuf },
|
||||||
/// Toggle loop
|
|
||||||
ToggleLoop,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Subcommand, Debug)]
|
#[derive(Subcommand, Debug)]
|
||||||
@@ -55,11 +51,11 @@ enum GetCommands {
|
|||||||
IsPaused,
|
IsPaused,
|
||||||
/// Playback volume
|
/// Playback volume
|
||||||
Volume,
|
Volume,
|
||||||
/// Playback position (in seconds)
|
/// Playback position
|
||||||
Position,
|
Position,
|
||||||
/// Duration of the current file
|
/// Duration of the current file
|
||||||
Duration,
|
Duration,
|
||||||
/// Player state (Playing, Paused or Stopped)
|
/// Player state
|
||||||
State,
|
State,
|
||||||
/// Current playing file path
|
/// Current playing file path
|
||||||
CurrentFilePath,
|
CurrentFilePath,
|
||||||
@@ -67,20 +63,16 @@ enum GetCommands {
|
|||||||
Input,
|
Input,
|
||||||
/// All audio inputs
|
/// All audio inputs
|
||||||
Inputs,
|
Inputs,
|
||||||
/// Is loop enabled (true or false)
|
|
||||||
Loop,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Subcommand, Debug)]
|
#[derive(Subcommand, Debug)]
|
||||||
enum SetCommands {
|
enum SetCommands {
|
||||||
/// Playback volume
|
/// Playback volume
|
||||||
Volume { volume: f32 },
|
Volume { volume: f32 },
|
||||||
/// Playback position (in seconds)
|
/// Playback position
|
||||||
Position { position: f32 },
|
Position { position: f32 },
|
||||||
/// Audio input id (see pwsp-cli get inputs)
|
/// Input
|
||||||
Input { name: String },
|
Input { name: String },
|
||||||
/// Enable or disable loop (true or false)
|
|
||||||
Loop { enabled: String },
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
@@ -94,10 +86,8 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
|||||||
Actions::Ping => Request::ping(),
|
Actions::Ping => Request::ping(),
|
||||||
Actions::Pause => Request::pause(),
|
Actions::Pause => Request::pause(),
|
||||||
Actions::Resume => Request::resume(),
|
Actions::Resume => Request::resume(),
|
||||||
Actions::TogglePause => Request::toggle_pause(),
|
|
||||||
Actions::Stop => Request::stop(),
|
Actions::Stop => Request::stop(),
|
||||||
Actions::Play { file_path } => Request::play(file_path.to_str().unwrap()),
|
Actions::Play { file_path } => Request::play(file_path.to_str().unwrap()),
|
||||||
Actions::ToggleLoop => Request::toggle_loop(),
|
|
||||||
},
|
},
|
||||||
Commands::Get { parameter } => match parameter {
|
Commands::Get { parameter } => match parameter {
|
||||||
GetCommands::IsPaused => Request::get_is_paused(),
|
GetCommands::IsPaused => Request::get_is_paused(),
|
||||||
@@ -108,19 +98,15 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
|||||||
GetCommands::CurrentFilePath => Request::get_current_file_path(),
|
GetCommands::CurrentFilePath => Request::get_current_file_path(),
|
||||||
GetCommands::Input => Request::get_input(),
|
GetCommands::Input => Request::get_input(),
|
||||||
GetCommands::Inputs => Request::get_inputs(),
|
GetCommands::Inputs => Request::get_inputs(),
|
||||||
GetCommands::Loop => Request::get_loop(),
|
|
||||||
},
|
},
|
||||||
Commands::Set { parameter } => match parameter {
|
Commands::Set { parameter } => match parameter {
|
||||||
SetCommands::Volume { volume } => Request::set_volume(volume),
|
SetCommands::Volume { volume } => Request::set_volume(volume),
|
||||||
SetCommands::Position { position } => Request::seek(position),
|
SetCommands::Position { position } => Request::seek(position),
|
||||||
SetCommands::Input { name } => Request::set_input(&name),
|
SetCommands::Input { name } => Request::set_input(&name),
|
||||||
SetCommands::Loop { enabled } => Request::set_loop(&enabled),
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
let response = make_request(request)
|
let response = make_request(request).await?;
|
||||||
.await
|
|
||||||
.map_err(|e| e as Box<dyn Error>)?;
|
|
||||||
println!("{} : {}", response.status, response.message);
|
println!("{} : {}", response.status, response.message);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|||||||
+4
-48
@@ -1,8 +1,5 @@
|
|||||||
use pwsp::{
|
use pwsp::{
|
||||||
types::{
|
types::socket::{Request, Response},
|
||||||
audio_player::PlayerState,
|
|
||||||
socket::{Request, Response},
|
|
||||||
},
|
|
||||||
utils::{
|
utils::{
|
||||||
commands::parse_command,
|
commands::parse_command,
|
||||||
daemon::{
|
daemon::{
|
||||||
@@ -12,11 +9,10 @@ use pwsp::{
|
|||||||
pipewire::create_virtual_mic,
|
pipewire::create_virtual_mic,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use std::{error::Error, fs, time::Duration};
|
use std::{error::Error, fs};
|
||||||
use tokio::{
|
use tokio::{
|
||||||
io::{AsyncReadExt, AsyncWriteExt},
|
io::{AsyncReadExt, AsyncWriteExt},
|
||||||
net::UnixListener,
|
net::UnixListener,
|
||||||
time::sleep,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
@@ -48,27 +44,6 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
|||||||
socket_path.to_str().unwrap_or_default()
|
socket_path.to_str().unwrap_or_default()
|
||||||
);
|
);
|
||||||
|
|
||||||
let commands_loop_handle = tokio::spawn(async {
|
|
||||||
commands_loop(listener).await.ok();
|
|
||||||
});
|
|
||||||
|
|
||||||
let player_loop_handle = tokio::spawn(async {
|
|
||||||
player_loop().await;
|
|
||||||
});
|
|
||||||
|
|
||||||
tokio::select! {
|
|
||||||
_ = commands_loop_handle => {
|
|
||||||
eprint!("Commands loop was finished, stopping program...");
|
|
||||||
}
|
|
||||||
_ = player_loop_handle => {
|
|
||||||
eprint!("Audio Player loop was finished, stopping program...");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn commands_loop(listener: UnixListener) -> Result<(), Box<dyn Error>> {
|
|
||||||
loop {
|
loop {
|
||||||
let (mut stream, _addr) = listener.accept().await?;
|
let (mut stream, _addr) = listener.accept().await?;
|
||||||
|
|
||||||
@@ -89,6 +64,7 @@ async fn commands_loop(listener: UnixListener) -> Result<(), Box<dyn Error>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let request: Request = serde_json::from_slice(&buffer).unwrap();
|
let request: Request = serde_json::from_slice(&buffer).unwrap();
|
||||||
|
println!("Received request: {:?}", request);
|
||||||
// ---------- Read request (end) ----------
|
// ---------- Read request (end) ----------
|
||||||
|
|
||||||
// ---------- Generate response (start) ----------
|
// ---------- Generate response (start) ----------
|
||||||
@@ -113,28 +89,8 @@ async fn commands_loop(listener: UnixListener) -> Result<(), Box<dyn Error>> {
|
|||||||
eprintln!("Failed to write response to client!");
|
eprintln!("Failed to write response to client!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
println!("Sent response: {:?}", response);
|
||||||
// ---------- Send response (end) ----------
|
// ---------- Send response (end) ----------
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn player_loop() {
|
|
||||||
loop {
|
|
||||||
let mut audio_player = get_audio_player().await.lock().await;
|
|
||||||
|
|
||||||
// Start playback again if loop is enabled
|
|
||||||
let should_play = audio_player.get_state() == PlayerState::Stopped
|
|
||||||
&& audio_player.current_file_path.is_some()
|
|
||||||
&& audio_player.looped;
|
|
||||||
|
|
||||||
if should_play {
|
|
||||||
let file_path = audio_player.current_file_path.clone().unwrap();
|
|
||||||
audio_player
|
|
||||||
.play(&file_path)
|
|
||||||
.await
|
|
||||||
.expect("Something went wrong while trying to play the file");
|
|
||||||
}
|
|
||||||
|
|
||||||
sleep(Duration::from_millis(100)).await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
+29
-71
@@ -1,7 +1,7 @@
|
|||||||
use crate::gui::{SUPPORTED_EXTENSIONS, SoundpadGui};
|
use crate::gui::SoundpadGui;
|
||||||
use egui::{
|
use egui::{
|
||||||
Align, AtomExt, Button, Color32, ComboBox, FontFamily, Label, Layout, RichText, ScrollArea,
|
AtomExt, Button, Color32, ComboBox, FontFamily, Label, RichText, ScrollArea, Slider, TextEdit,
|
||||||
Slider, TextEdit, Ui, Vec2,
|
Ui, Vec2,
|
||||||
};
|
};
|
||||||
use egui_material_icons::icons;
|
use egui_material_icons::icons;
|
||||||
use pwsp::types::audio_player::PlayerState;
|
use pwsp::types::audio_player::PlayerState;
|
||||||
@@ -48,15 +48,10 @@ impl SoundpadGui {
|
|||||||
&mut self.config.save_scale_factor,
|
&mut self.config.save_scale_factor,
|
||||||
"Always remember UI scale factor",
|
"Always remember UI scale factor",
|
||||||
);
|
);
|
||||||
let pause_on_exit_response = ui.checkbox(
|
|
||||||
&mut self.config.pause_on_exit,
|
|
||||||
"Pause audio playback when the window is closed",
|
|
||||||
);
|
|
||||||
|
|
||||||
if save_volume_response.changed()
|
if save_volume_response.changed()
|
||||||
|| save_input_response.changed()
|
|| save_input_response.changed()
|
||||||
|| save_scale_response.changed()
|
|| save_scale_response.changed()
|
||||||
|| pause_on_exit_response.changed()
|
|
||||||
{
|
{
|
||||||
self.config.save_to_file().ok();
|
self.config.save_to_file().ok();
|
||||||
}
|
}
|
||||||
@@ -108,35 +103,19 @@ impl SoundpadGui {
|
|||||||
}
|
}
|
||||||
// --------------------------------
|
// --------------------------------
|
||||||
|
|
||||||
// ---------- Loop Button ----------
|
|
||||||
let loop_button = Button::new(
|
|
||||||
RichText::new(match self.audio_player_state.looped {
|
|
||||||
true => icons::ICON_REPEAT_ONE,
|
|
||||||
false => icons::ICON_REPEAT,
|
|
||||||
})
|
|
||||||
.size(18.0),
|
|
||||||
)
|
|
||||||
.frame(false);
|
|
||||||
|
|
||||||
let loop_button_response = ui.add_sized([15.0, 30.0], loop_button);
|
|
||||||
if loop_button_response.clicked() {
|
|
||||||
self.toggle_loop();
|
|
||||||
}
|
|
||||||
// --------------------------------
|
|
||||||
|
|
||||||
// ---------- Position Slider ----------
|
// ---------- Position Slider ----------
|
||||||
let position_slider = Slider::new(
|
let position_slider = Slider::new(
|
||||||
&mut self.app_state.position_slider_value,
|
&mut self.app_state.position_slider_value,
|
||||||
0.0..=self.audio_player_state.duration,
|
0.0..=self.audio_player_state.duration,
|
||||||
)
|
)
|
||||||
.show_value(false)
|
.show_value(false)
|
||||||
.step_by(0.01);
|
.step_by(1.0);
|
||||||
|
|
||||||
let default_slider_width = ui.spacing().slider_width;
|
let default_slider_width = ui.spacing().slider_width;
|
||||||
let position_slider_width = ui.available_width()
|
let position_slider_width = ui.available_width()
|
||||||
- (30.0 * 3.0)
|
- (30.0 * 3.0)
|
||||||
- default_slider_width
|
- default_slider_width
|
||||||
- (ui.spacing().item_spacing.x * 6.0);
|
- (ui.spacing().item_spacing.x * 5.0);
|
||||||
ui.spacing_mut().slider_width = position_slider_width;
|
ui.spacing_mut().slider_width = position_slider_width;
|
||||||
let position_slider_response = ui.add_sized([30.0, 30.0], position_slider);
|
let position_slider_response = ui.add_sized([30.0, 30.0], position_slider);
|
||||||
if position_slider_response.drag_stopped() {
|
if position_slider_response.drag_stopped() {
|
||||||
@@ -166,7 +145,7 @@ impl SoundpadGui {
|
|||||||
icons::ICON_VOLUME_DOWN
|
icons::ICON_VOLUME_DOWN
|
||||||
};
|
};
|
||||||
let volume_icon = Label::new(RichText::new(volume_icon).size(18.0));
|
let volume_icon = Label::new(RichText::new(volume_icon).size(18.0));
|
||||||
ui.add_sized([30.0, 30.0], volume_icon);
|
ui.add_sized([30.0, 25.0], volume_icon);
|
||||||
// --------------------------------
|
// --------------------------------
|
||||||
|
|
||||||
// ---------- Volume Slider ----------
|
// ---------- Volume Slider ----------
|
||||||
@@ -203,8 +182,6 @@ impl SoundpadGui {
|
|||||||
ui.set_min_height(area_size.y);
|
ui.set_min_height(area_size.y);
|
||||||
|
|
||||||
ScrollArea::vertical().id_salt(0).show(ui, |ui| {
|
ScrollArea::vertical().id_salt(0).show(ui, |ui| {
|
||||||
ui.set_min_width(area_size.x);
|
|
||||||
|
|
||||||
let mut dirs: Vec<PathBuf> = self.app_state.dirs.iter().cloned().collect();
|
let mut dirs: Vec<PathBuf> = self.app_state.dirs.iter().cloned().collect();
|
||||||
dirs.sort();
|
dirs.sort();
|
||||||
for path in dirs.iter() {
|
for path in dirs.iter() {
|
||||||
@@ -214,43 +191,28 @@ impl SoundpadGui {
|
|||||||
.map(|s| s.to_string_lossy().to_string())
|
.map(|s| s.to_string_lossy().to_string())
|
||||||
.unwrap_or_else(|| path.to_string_lossy().to_string());
|
.unwrap_or_else(|| path.to_string_lossy().to_string());
|
||||||
|
|
||||||
let mut dir_button_text = RichText::new(name.clone());
|
|
||||||
if let Some(current_dir) = &self.app_state.current_dir {
|
|
||||||
if current_dir.eq(path) {
|
|
||||||
dir_button_text = dir_button_text.color(Color32::WHITE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let dir_button =
|
let dir_button =
|
||||||
Button::new(dir_button_text.atom_max_width(area_size.x)).frame(false);
|
Button::new(RichText::new(name).atom_max_width(area_size.x))
|
||||||
|
.frame(false);
|
||||||
let dir_button_response = ui.add(dir_button);
|
let dir_button_response = ui.add(dir_button);
|
||||||
if dir_button_response.clicked() {
|
if dir_button_response.clicked() {
|
||||||
self.open_dir(path);
|
self.app_state.current_dir = Some(path.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
let delete_dir_button = Button::new(icons::ICON_DELETE).frame(false);
|
let delete_dir_button = Button::new(icons::ICON_DELETE).frame(false);
|
||||||
let delete_dir_button_response =
|
let delete_dir_button_response =
|
||||||
ui.add_sized([18.0, 18.0], delete_dir_button);
|
ui.add_sized([18.0, 18.0], delete_dir_button);
|
||||||
if delete_dir_button_response.clicked() {
|
if delete_dir_button_response.clicked() {
|
||||||
self.remove_dir(&path.clone());
|
self.remove_dir(path.clone());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
let add_dirs_button = Button::new(icons::ICON_ADD).frame(false);
|
let add_dir_button = egui::Button::new(icons::ICON_ADD).frame(false);
|
||||||
let add_dirs_button_response = ui.add_sized([18.0, 18.0], add_dirs_button);
|
let add_dir_button_response = ui.add_sized([18.0, 18.0], add_dir_button);
|
||||||
if add_dirs_button_response.clicked() {
|
if add_dir_button_response.clicked() {
|
||||||
self.add_dirs();
|
self.add_dir();
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ui.with_layout(Layout::bottom_up(Align::Min), |ui| {
|
|
||||||
let play_file_button = Button::new("Play file");
|
|
||||||
let play_file_button_response = ui.add(play_file_button);
|
|
||||||
if play_file_button_response.clicked() {
|
|
||||||
self.open_file();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -258,14 +220,16 @@ impl SoundpadGui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn draw_files(&mut self, ui: &mut Ui, area_size: Vec2) {
|
fn draw_files(&mut self, ui: &mut Ui, area_size: Vec2) {
|
||||||
|
let extensions = [
|
||||||
|
"mp3", "wav", "ogg", "flac", "mp4", "m4a", "aac", "mov", "mkv", "webm", "avi",
|
||||||
|
];
|
||||||
|
|
||||||
ui.vertical(|ui| {
|
ui.vertical(|ui| {
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
let search_field = ui.add_sized(
|
ui.add_sized(
|
||||||
[ui.available_width(), 22.0],
|
[ui.available_width(), 22.0],
|
||||||
TextEdit::singleline(&mut self.app_state.search_query).hint_text("Search..."),
|
TextEdit::singleline(&mut self.app_state.search_query).hint_text("Search..."),
|
||||||
);
|
);
|
||||||
|
|
||||||
self.app_state.search_field_id = Some(search_field.id);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ui.separator();
|
ui.separator();
|
||||||
@@ -275,17 +239,18 @@ impl SoundpadGui {
|
|||||||
ui.set_min_height(area_size.y);
|
ui.set_min_height(area_size.y);
|
||||||
|
|
||||||
ui.vertical(|ui| {
|
ui.vertical(|ui| {
|
||||||
let mut files: Vec<PathBuf> = self.app_state.files.iter().cloned().collect();
|
if let Some(path) = self.app_state.current_dir.clone() {
|
||||||
files.sort();
|
for entry in path.read_dir().unwrap() {
|
||||||
|
let entry = entry.unwrap();
|
||||||
|
let entry_path = entry.path();
|
||||||
|
|
||||||
for entry_path in files {
|
|
||||||
if entry_path.is_dir() {
|
if entry_path.is_dir() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if !SUPPORTED_EXTENSIONS
|
if !extensions.contains(
|
||||||
.contains(&entry_path.extension().unwrap_or_default().to_str().unwrap())
|
&entry_path.extension().unwrap_or_default().to_str().unwrap(),
|
||||||
{
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -306,18 +271,11 @@ impl SoundpadGui {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut file_button_text = RichText::new(file_name);
|
let file_button = Button::new(file_name).frame(false);
|
||||||
if let Some(current_file) = &self.app_state.selected_file {
|
|
||||||
if current_file.eq(&entry_path) {
|
|
||||||
file_button_text = file_button_text.color(Color32::WHITE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let file_button = Button::new(file_button_text).frame(false);
|
|
||||||
let file_button_response = ui.add(file_button);
|
let file_button_response = ui.add(file_button);
|
||||||
if file_button_response.clicked() {
|
if file_button_response.clicked() {
|
||||||
self.play_file(&entry_path);
|
self.play_file(entry_path);
|
||||||
self.app_state.selected_file = Some(entry_path);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
+5
-88
@@ -1,106 +1,23 @@
|
|||||||
use crate::gui::SoundpadGui;
|
use crate::gui::SoundpadGui;
|
||||||
use egui::{Context, Key};
|
use egui::{Context, Key};
|
||||||
|
|
||||||
use std::path::PathBuf;
|
|
||||||
|
|
||||||
impl SoundpadGui {
|
impl SoundpadGui {
|
||||||
pub fn handle_input(&mut self, ctx: &Context) {
|
pub fn handle_input(&mut self, ctx: &Context) {
|
||||||
if ctx.memory(|reader| { reader.focused() }.is_some()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx.input(|i| {
|
ctx.input(|i| {
|
||||||
// Close app on espace
|
|
||||||
if i.key_pressed(Key::Escape) {
|
if i.key_pressed(Key::Escape) {
|
||||||
std::process::exit(0);
|
std::process::exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open/close settings
|
if !self.app_state.show_settings && i.key_pressed(Key::Space) {
|
||||||
if i.key_pressed(Key::I) {
|
|
||||||
self.app_state.show_settings = !self.app_state.show_settings;
|
|
||||||
}
|
|
||||||
|
|
||||||
if i.key_pressed(Key::Enter) && self.app_state.selected_file.is_some() {
|
|
||||||
self.play_file(&self.app_state.selected_file.clone().unwrap());
|
|
||||||
}
|
|
||||||
|
|
||||||
if !self.app_state.show_settings {
|
|
||||||
// Pause / resume audio on space
|
|
||||||
if i.key_pressed(Key::Space) {
|
|
||||||
self.play_toggle();
|
self.play_toggle();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Focus search field
|
if i.key_pressed(Key::Slash) {
|
||||||
if i.key_pressed(Key::Slash) && self.app_state.search_field_id.is_some() {
|
self.app_state.show_settings = !self.app_state.show_settings;
|
||||||
self.app_state.force_focus_id = self.app_state.search_field_id;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Iterate through dirs if there are some
|
if self.app_state.show_settings && i.key_pressed(Key::Backspace) {
|
||||||
if i.modifiers.ctrl {
|
self.app_state.show_settings = false;
|
||||||
let arrow_up_pressed = i.key_pressed(Key::ArrowUp);
|
|
||||||
let arrow_down_pressed = i.key_pressed(Key::ArrowDown);
|
|
||||||
|
|
||||||
if arrow_up_pressed || arrow_down_pressed {
|
|
||||||
if i.modifiers.shift && !self.app_state.dirs.is_empty() {
|
|
||||||
let mut dirs: Vec<PathBuf> =
|
|
||||||
self.app_state.dirs.iter().cloned().collect();
|
|
||||||
dirs.sort();
|
|
||||||
|
|
||||||
let current_dir_index: i8;
|
|
||||||
if let Some(current_dir) = &self.app_state.current_dir {
|
|
||||||
if let Some(index) = dirs.iter().position(|x| x == current_dir) {
|
|
||||||
current_dir_index = index as i8;
|
|
||||||
} else {
|
|
||||||
current_dir_index = -1;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
current_dir_index = -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut new_dir_index: i8;
|
|
||||||
|
|
||||||
new_dir_index = current_dir_index - arrow_up_pressed as i8
|
|
||||||
+ arrow_down_pressed as i8;
|
|
||||||
|
|
||||||
if new_dir_index < 0 {
|
|
||||||
new_dir_index = (dirs.len() - 1) as i8;
|
|
||||||
} else if new_dir_index >= dirs.len() as i8 {
|
|
||||||
new_dir_index = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.open_dir(&dirs[new_dir_index as usize]);
|
|
||||||
} else if self.app_state.current_dir.is_some() {
|
|
||||||
let mut files: Vec<PathBuf> =
|
|
||||||
self.app_state.files.iter().cloned().collect();
|
|
||||||
files.sort();
|
|
||||||
|
|
||||||
let current_files_index: i64;
|
|
||||||
if let Some(selected_file) = &self.app_state.selected_file {
|
|
||||||
if let Some(index) = files.iter().position(|x| x == selected_file) {
|
|
||||||
current_files_index = index as i64;
|
|
||||||
} else {
|
|
||||||
current_files_index = -1;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
current_files_index = -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut new_files_index: i64;
|
|
||||||
|
|
||||||
new_files_index = current_files_index - arrow_up_pressed as i64
|
|
||||||
+ arrow_down_pressed as i64;
|
|
||||||
|
|
||||||
if new_files_index < 0 {
|
|
||||||
new_files_index = (files.len() - 1) as i64;
|
|
||||||
} else if new_files_index >= files.len() as i64 {
|
|
||||||
new_files_index = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.app_state.selected_file =
|
|
||||||
Some(files[new_files_index as usize].clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
+19
-57
@@ -23,10 +23,6 @@ use std::{
|
|||||||
sync::{Arc, Mutex},
|
sync::{Arc, Mutex},
|
||||||
};
|
};
|
||||||
|
|
||||||
const SUPPORTED_EXTENSIONS: [&str; 11] = [
|
|
||||||
"mp3", "wav", "ogg", "flac", "mp4", "m4a", "aac", "mov", "mkv", "webm", "avi",
|
|
||||||
];
|
|
||||||
|
|
||||||
struct SoundpadGui {
|
struct SoundpadGui {
|
||||||
pub app_state: AppState,
|
pub app_state: AppState,
|
||||||
pub config: GuiConfig,
|
pub config: GuiConfig,
|
||||||
@@ -56,67 +52,43 @@ impl SoundpadGui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn play_toggle(&mut self) {
|
pub fn play_toggle(&mut self) {
|
||||||
let (new_state, request) = {
|
|
||||||
let guard = self.audio_player_state_shared.lock().unwrap();
|
|
||||||
match guard.state {
|
|
||||||
PlayerState::Playing => (Some(PlayerState::Paused), Some(Request::pause())),
|
|
||||||
PlayerState::Paused => (Some(PlayerState::Playing), Some(Request::resume())),
|
|
||||||
PlayerState::Stopped => (None, None),
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(req) = request {
|
|
||||||
make_request_sync(req).ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(state) = new_state {
|
|
||||||
let mut guard = self.audio_player_state_shared.lock().unwrap();
|
let mut guard = self.audio_player_state_shared.lock().unwrap();
|
||||||
guard.new_state = Some(state.clone());
|
guard.state = match guard.state {
|
||||||
guard.state = state;
|
PlayerState::Playing => {
|
||||||
|
make_request_sync(Request::pause()).ok();
|
||||||
|
guard.new_state = Some(PlayerState::Paused);
|
||||||
|
PlayerState::Paused
|
||||||
}
|
}
|
||||||
|
PlayerState::Paused => {
|
||||||
|
make_request_sync(Request::resume()).ok();
|
||||||
|
guard.new_state = Some(PlayerState::Playing);
|
||||||
|
PlayerState::Playing
|
||||||
|
}
|
||||||
|
PlayerState::Stopped => PlayerState::Stopped,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn open_file(&mut self) {
|
pub fn add_dir(&mut self) {
|
||||||
let file_dialog = FileDialog::new().add_filter("Audio File", &SUPPORTED_EXTENSIONS);
|
|
||||||
if let Some(path) = file_dialog.pick_file() {
|
|
||||||
self.play_file(&path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add_dirs(&mut self) {
|
|
||||||
let file_dialog = FileDialog::new();
|
let file_dialog = FileDialog::new();
|
||||||
if let Some(paths) = file_dialog.pick_folders() {
|
if let Some(path) = file_dialog.pick_folder() {
|
||||||
for path in paths {
|
|
||||||
self.app_state.dirs.insert(path);
|
self.app_state.dirs.insert(path);
|
||||||
}
|
|
||||||
self.config.dirs = self.app_state.dirs.clone();
|
self.config.dirs = self.app_state.dirs.clone();
|
||||||
self.config.save_to_file().ok();
|
self.config.save_to_file().ok();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn remove_dir(&mut self, path: &PathBuf) {
|
pub fn remove_dir(&mut self, path: PathBuf) {
|
||||||
self.app_state.dirs.remove(path);
|
self.app_state.dirs.remove(&path);
|
||||||
if let Some(current_dir) = &self.app_state.current_dir
|
if let Some(current_dir) = &self.app_state.current_dir
|
||||||
&& current_dir == path
|
&& current_dir == &path
|
||||||
{
|
{
|
||||||
self.app_state.current_dir = None;
|
self.app_state.current_dir = None;
|
||||||
self.app_state.files.clear();
|
|
||||||
}
|
}
|
||||||
self.config.dirs = self.app_state.dirs.clone();
|
self.config.dirs = self.app_state.dirs.clone();
|
||||||
self.config.save_to_file().ok();
|
self.config.save_to_file().ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn open_dir(&mut self, path: &PathBuf) {
|
pub fn play_file(&mut self, path: PathBuf) {
|
||||||
self.app_state.current_dir = Some(path.clone());
|
|
||||||
self.app_state.files = path
|
|
||||||
.read_dir()
|
|
||||||
.unwrap()
|
|
||||||
.filter_map(|res| res.ok())
|
|
||||||
.map(|entry| entry.path())
|
|
||||||
.collect();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn play_file(&mut self, path: &PathBuf) {
|
|
||||||
make_request_sync(Request::play(path.to_str().unwrap())).ok();
|
make_request_sync(Request::play(path.to_str().unwrap())).ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,10 +101,6 @@ impl SoundpadGui {
|
|||||||
daemon_config.save_to_file().ok();
|
daemon_config.save_to_file().ok();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn toggle_loop(&mut self) {
|
|
||||||
make_request_sync(Request::toggle_loop()).ok();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run() -> Result<(), Box<dyn Error>> {
|
pub async fn run() -> Result<(), Box<dyn Error>> {
|
||||||
@@ -160,13 +128,7 @@ pub async fn run() -> Result<(), Box<dyn Error>> {
|
|||||||
Ok(Box::new(SoundpadGui::new(&cc.egui_ctx)))
|
Ok(Box::new(SoundpadGui::new(&cc.egui_ctx)))
|
||||||
}),
|
}),
|
||||||
) {
|
) {
|
||||||
Ok(_) => {
|
Ok(_) => Ok(()),
|
||||||
let config = get_gui_config();
|
|
||||||
if config.pause_on_exit {
|
|
||||||
make_request_sync(Request::pause()).ok();
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
Err(e) => Err(e.into()),
|
Err(e) => Err(e.into()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,13 +40,6 @@ impl App for SoundpadGui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.draw(ui).ok();
|
self.draw(ui).ok();
|
||||||
|
|
||||||
if let Some(force_focus_id) = self.app_state.force_focus_id {
|
|
||||||
ui.memory_mut(|reder| {
|
|
||||||
reder.request_focus(force_focus_id);
|
|
||||||
});
|
|
||||||
self.app_state.force_focus_id = None;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if self.app_state.position_dragged {
|
if self.app_state.position_dragged {
|
||||||
|
|||||||
+24
-33
@@ -33,8 +33,6 @@ pub struct AudioPlayer {
|
|||||||
pub duration: Option<f32>,
|
pub duration: Option<f32>,
|
||||||
|
|
||||||
pub current_file_path: Option<PathBuf>,
|
pub current_file_path: Option<PathBuf>,
|
||||||
|
|
||||||
pub looped: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AudioPlayer {
|
impl AudioPlayer {
|
||||||
@@ -64,8 +62,6 @@ impl AudioPlayer {
|
|||||||
duration: None,
|
duration: None,
|
||||||
|
|
||||||
current_file_path: None,
|
current_file_path: None,
|
||||||
|
|
||||||
looped: false,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if default_input_device.is_some() {
|
if default_input_device.is_some() {
|
||||||
@@ -79,7 +75,7 @@ impl AudioPlayer {
|
|||||||
if let Some(sender) = &self.input_link_sender {
|
if let Some(sender) = &self.input_link_sender {
|
||||||
match sender.send(Terminate {}) {
|
match sender.send(Terminate {}) {
|
||||||
Ok(_) => println!("Sent terminate signal to link thread"),
|
Ok(_) => println!("Sent terminate signal to link thread"),
|
||||||
Err(_) => eprintln!("Failed to send terminate signal to link thread"),
|
Err(_) => println!("Failed to send terminate signal to link thread"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -88,7 +84,7 @@ impl AudioPlayer {
|
|||||||
self.abort_link_thread();
|
self.abort_link_thread();
|
||||||
|
|
||||||
if self.current_input_device.is_none() {
|
if self.current_input_device.is_none() {
|
||||||
eprintln!("No input device selected, skipping device linking");
|
println!("No input device selected, skipping device linking");
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,30 +99,29 @@ impl AudioPlayer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if pwsp_daemon_input.is_none() {
|
if pwsp_daemon_input.is_none() {
|
||||||
eprintln!("Could not find pwsp-daemon input device, skipping device linking");
|
println!("Could not find pwsp-daemon input device, skipping device linking");
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
let pwsp_daemon_input = pwsp_daemon_input.unwrap();
|
let pwsp_daemon_input = pwsp_daemon_input.unwrap();
|
||||||
|
|
||||||
let current_input_device = self.current_input_device.clone().unwrap();
|
let current_input_device = self.current_input_device.clone().unwrap();
|
||||||
|
let output_fl = current_input_device
|
||||||
let Some(output_fl) = current_input_device.output_fl.clone() else {
|
.clone()
|
||||||
eprintln!("Failed to get pwsp-daemon output_fl");
|
.output_fl
|
||||||
return Ok(());
|
.expect("Failed to get pwsp-daemon output_fl");
|
||||||
};
|
let output_fr = current_input_device
|
||||||
let Some(output_fr) = current_input_device.output_fr.clone() else {
|
.clone()
|
||||||
eprintln!("Failed to get pwsp-daemon output_fr");
|
.output_fr
|
||||||
return Ok(());
|
.expect("Failed to get pwsp-daemon output_fl");
|
||||||
};
|
let input_fl = pwsp_daemon_input
|
||||||
let Some(input_fl) = pwsp_daemon_input.input_fl.clone() else {
|
.clone()
|
||||||
eprintln!("Failed to get pwsp-daemon input_fl");
|
.input_fl
|
||||||
return Ok(());
|
.expect("Failed to get pwsp-daemon input_fl");
|
||||||
};
|
let input_fr = pwsp_daemon_input
|
||||||
let Some(input_fr) = pwsp_daemon_input.input_fr.clone() else {
|
.clone()
|
||||||
eprintln!("Failed to get pwsp-daemon input_fr");
|
.input_fr
|
||||||
return Ok(());
|
.expect("Failed to get pwsp-daemon input_fr");
|
||||||
};
|
|
||||||
|
|
||||||
self.input_link_sender = Some(create_link(output_fl, output_fr, input_fl, input_fr)?);
|
self.input_link_sender = Some(create_link(output_fl, output_fr, input_fl, input_fr)?);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -152,7 +147,7 @@ impl AudioPlayer {
|
|||||||
self.sink.is_paused()
|
self.sink.is_paused()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_state(&self) -> PlayerState {
|
pub fn get_state(&mut self) -> PlayerState {
|
||||||
if self.sink.len() == 0 {
|
if self.sink.len() == 0 {
|
||||||
return PlayerState::Stopped;
|
return PlayerState::Stopped;
|
||||||
}
|
}
|
||||||
@@ -169,7 +164,7 @@ impl AudioPlayer {
|
|||||||
self.sink.set_volume(volume);
|
self.sink.set_volume(volume);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_position(&self) -> f32 {
|
pub fn get_position(&mut self) -> f32 {
|
||||||
if self.get_state() == PlayerState::Stopped {
|
if self.get_state() == PlayerState::Stopped {
|
||||||
return 0.0;
|
return 0.0;
|
||||||
}
|
}
|
||||||
@@ -177,11 +172,7 @@ impl AudioPlayer {
|
|||||||
self.sink.get_pos().as_secs_f32()
|
self.sink.get_pos().as_secs_f32()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn seek(&mut self, mut position: f32) -> Result<(), Box<dyn Error>> {
|
pub fn seek(&mut self, position: f32) -> Result<(), Box<dyn Error>> {
|
||||||
if position < 0.0 {
|
|
||||||
position = 0.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
match self.sink.try_seek(Duration::from_secs_f32(position)) {
|
match self.sink.try_seek(Duration::from_secs_f32(position)) {
|
||||||
Ok(_) => Ok(()),
|
Ok(_) => Ok(()),
|
||||||
Err(err) => Err(err.into()),
|
Err(err) => Err(err.into()),
|
||||||
@@ -227,7 +218,7 @@ impl AudioPlayer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_current_file_path(&mut self) -> &Option<PathBuf> {
|
pub fn get_current_file_path(&mut self) -> &Option<PathBuf> {
|
||||||
if self.get_state() == PlayerState::Stopped && !self.looped {
|
if self.get_state() == PlayerState::Stopped {
|
||||||
self.current_file_path = None;
|
self.current_file_path = None;
|
||||||
}
|
}
|
||||||
&self.current_file_path
|
&self.current_file_path
|
||||||
|
|||||||
+3
-64
@@ -1,5 +1,5 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
types::{audio_player::PlayerState, socket::Response},
|
types::socket::Response,
|
||||||
utils::{daemon::get_audio_player, pipewire::get_all_devices},
|
utils::{daemon::get_audio_player, pipewire::get_all_devices},
|
||||||
};
|
};
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
@@ -16,8 +16,6 @@ pub struct PauseCommand {}
|
|||||||
|
|
||||||
pub struct ResumeCommand {}
|
pub struct ResumeCommand {}
|
||||||
|
|
||||||
pub struct TogglePauseCommand {}
|
|
||||||
|
|
||||||
pub struct StopCommand {}
|
pub struct StopCommand {}
|
||||||
|
|
||||||
pub struct IsPausedCommand {}
|
pub struct IsPausedCommand {}
|
||||||
@@ -52,14 +50,6 @@ pub struct SetCurrentInputCommand {
|
|||||||
pub name: Option<String>,
|
pub name: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct GetLoopCommand {}
|
|
||||||
|
|
||||||
pub struct SetLoopCommand {
|
|
||||||
pub enabled: Option<bool>,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct ToggleLoopCommand {}
|
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl Executable for PingCommand {
|
impl Executable for PingCommand {
|
||||||
async fn execute(&self) -> Response {
|
async fn execute(&self) -> Response {
|
||||||
@@ -85,25 +75,6 @@ impl Executable for ResumeCommand {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl Executable for TogglePauseCommand {
|
|
||||||
async fn execute(&self) -> Response {
|
|
||||||
let mut audio_player = get_audio_player().await.lock().await;
|
|
||||||
|
|
||||||
if audio_player.get_state() == PlayerState::Stopped {
|
|
||||||
return Response::new(false, "Audio is not playing");
|
|
||||||
}
|
|
||||||
|
|
||||||
if audio_player.is_paused() {
|
|
||||||
audio_player.resume();
|
|
||||||
Response::new(true, "Audio was resumed")
|
|
||||||
} else {
|
|
||||||
audio_player.pause();
|
|
||||||
Response::new(true, "Audio was paused")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl Executable for StopCommand {
|
impl Executable for StopCommand {
|
||||||
async fn execute(&self) -> Response {
|
async fn execute(&self) -> Response {
|
||||||
@@ -125,7 +96,7 @@ impl Executable for IsPausedCommand {
|
|||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl Executable for GetStateCommand {
|
impl Executable for GetStateCommand {
|
||||||
async fn execute(&self) -> Response {
|
async fn execute(&self) -> Response {
|
||||||
let audio_player = get_audio_player().await.lock().await;
|
let mut audio_player = get_audio_player().await.lock().await;
|
||||||
let state = audio_player.get_state();
|
let state = audio_player.get_state();
|
||||||
Response::new(true, serde_json::to_string(&state).unwrap())
|
Response::new(true, serde_json::to_string(&state).unwrap())
|
||||||
}
|
}
|
||||||
@@ -156,7 +127,7 @@ impl Executable for SetVolumeCommand {
|
|||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl Executable for GetPositionCommand {
|
impl Executable for GetPositionCommand {
|
||||||
async fn execute(&self) -> Response {
|
async fn execute(&self) -> Response {
|
||||||
let audio_player = get_audio_player().await.lock().await;
|
let mut audio_player = get_audio_player().await.lock().await;
|
||||||
let position = audio_player.get_position();
|
let position = audio_player.get_position();
|
||||||
Response::new(true, position.to_string())
|
Response::new(true, position.to_string())
|
||||||
}
|
}
|
||||||
@@ -264,35 +235,3 @@ impl Executable for SetCurrentInputCommand {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl Executable for GetLoopCommand {
|
|
||||||
async fn execute(&self) -> Response {
|
|
||||||
let audio_player = get_audio_player().await.lock().await;
|
|
||||||
Response::new(true, audio_player.looped.to_string())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl Executable for SetLoopCommand {
|
|
||||||
async fn execute(&self) -> Response {
|
|
||||||
let mut audio_player = get_audio_player().await.lock().await;
|
|
||||||
|
|
||||||
match self.enabled {
|
|
||||||
Some(enabled) => {
|
|
||||||
audio_player.looped = enabled;
|
|
||||||
Response::new(true, format!("Loop was set to {}", enabled))
|
|
||||||
}
|
|
||||||
None => Response::new(false, "Invalid enabled value"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl Executable for ToggleLoopCommand {
|
|
||||||
async fn execute(&self) -> Response {
|
|
||||||
let mut audio_player = get_audio_player().await.lock().await;
|
|
||||||
audio_player.looped = !audio_player.looped;
|
|
||||||
Response::new(true, format!("Loop was set to {}", audio_player.looped))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ pub struct GuiConfig {
|
|||||||
pub save_volume: bool,
|
pub save_volume: bool,
|
||||||
pub save_input: bool,
|
pub save_input: bool,
|
||||||
pub save_scale_factor: bool,
|
pub save_scale_factor: bool,
|
||||||
pub pause_on_exit: bool,
|
|
||||||
|
|
||||||
pub dirs: HashSet<PathBuf>,
|
pub dirs: HashSet<PathBuf>,
|
||||||
}
|
}
|
||||||
@@ -49,7 +48,6 @@ impl Default for GuiConfig {
|
|||||||
save_volume: false,
|
save_volume: false,
|
||||||
save_input: false,
|
save_input: false,
|
||||||
save_scale_factor: false,
|
save_scale_factor: false,
|
||||||
pause_on_exit: false,
|
|
||||||
|
|
||||||
dirs: HashSet::default(),
|
dirs: HashSet::default(),
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
use crate::types::audio_player::PlayerState;
|
use crate::types::audio_player::PlayerState;
|
||||||
|
|
||||||
use egui::Id;
|
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::{HashMap, HashSet},
|
collections::{HashMap, HashSet},
|
||||||
path::PathBuf,
|
path::PathBuf,
|
||||||
@@ -21,12 +18,6 @@ pub struct AppState {
|
|||||||
|
|
||||||
pub current_dir: Option<PathBuf>,
|
pub current_dir: Option<PathBuf>,
|
||||||
pub dirs: HashSet<PathBuf>,
|
pub dirs: HashSet<PathBuf>,
|
||||||
|
|
||||||
pub selected_file: Option<PathBuf>,
|
|
||||||
pub files: HashSet<PathBuf>,
|
|
||||||
|
|
||||||
pub search_field_id: Option<Id>,
|
|
||||||
pub force_focus_id: Option<Id>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Default, Debug, Clone)]
|
#[derive(Default, Debug, Clone)]
|
||||||
@@ -36,7 +27,6 @@ pub struct AudioPlayerState {
|
|||||||
pub current_file_path: PathBuf,
|
pub current_file_path: PathBuf,
|
||||||
|
|
||||||
pub is_paused: bool,
|
pub is_paused: bool,
|
||||||
pub looped: bool,
|
|
||||||
|
|
||||||
pub volume: f32,
|
pub volume: f32,
|
||||||
pub new_volume: Option<f32>,
|
pub new_volume: Option<f32>,
|
||||||
|
|||||||
@@ -32,10 +32,6 @@ impl Request {
|
|||||||
Request::new("resume", vec![])
|
Request::new("resume", vec![])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn toggle_pause() -> Self {
|
|
||||||
Request::new("toggle_pause", vec![])
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn stop() -> Self {
|
pub fn stop() -> Self {
|
||||||
Request::new("stop", vec![])
|
Request::new("stop", vec![])
|
||||||
}
|
}
|
||||||
@@ -87,18 +83,6 @@ impl Request {
|
|||||||
pub fn set_input(name: &str) -> Self {
|
pub fn set_input(name: &str) -> Self {
|
||||||
Request::new("set_input", vec![("input_name", name)])
|
Request::new("set_input", vec![("input_name", name)])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_loop() -> Self {
|
|
||||||
Request::new("get_loop", vec![])
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn set_loop(enabled: &str) -> Self {
|
|
||||||
Request::new("set_loop", vec![("enabled", enabled)])
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn toggle_loop() -> Self {
|
|
||||||
Request::new("toggle_loop", vec![])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ pub fn parse_command(request: &Request) -> Option<Box<dyn Executable + Send>> {
|
|||||||
"ping" => Some(Box::new(PingCommand {})),
|
"ping" => Some(Box::new(PingCommand {})),
|
||||||
"pause" => Some(Box::new(PauseCommand {})),
|
"pause" => Some(Box::new(PauseCommand {})),
|
||||||
"resume" => Some(Box::new(ResumeCommand {})),
|
"resume" => Some(Box::new(ResumeCommand {})),
|
||||||
"toggle_pause" => Some(Box::new(TogglePauseCommand {})),
|
|
||||||
"stop" => Some(Box::new(StopCommand {})),
|
"stop" => Some(Box::new(StopCommand {})),
|
||||||
"is_paused" => Some(Box::new(IsPausedCommand {})),
|
"is_paused" => Some(Box::new(IsPausedCommand {})),
|
||||||
"get_state" => Some(Box::new(GetStateCommand {})),
|
"get_state" => Some(Box::new(GetStateCommand {})),
|
||||||
@@ -48,17 +47,6 @@ pub fn parse_command(request: &Request) -> Option<Box<dyn Executable + Send>> {
|
|||||||
let name = Some(request.args.get("input_name").unwrap_or(&String::new())).cloned();
|
let name = Some(request.args.get("input_name").unwrap_or(&String::new())).cloned();
|
||||||
Some(Box::new(SetCurrentInputCommand { name }))
|
Some(Box::new(SetCurrentInputCommand { name }))
|
||||||
}
|
}
|
||||||
"get_loop" => Some(Box::new(GetLoopCommand {})),
|
|
||||||
"set_loop" => {
|
|
||||||
let enabled = request
|
|
||||||
.args
|
|
||||||
.get("enabled")
|
|
||||||
.unwrap_or(&String::new())
|
|
||||||
.parse::<bool>()
|
|
||||||
.ok();
|
|
||||||
Some(Box::new(SetLoopCommand { enabled }))
|
|
||||||
}
|
|
||||||
"toggle_loop" => Some(Box::new(ToggleLoopCommand {})),
|
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -47,7 +47,7 @@ pub async fn link_player_to_virtual_mic() -> Result<(), Box<dyn Error>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if pwsp_daemon_output.is_none() {
|
if pwsp_daemon_output.is_none() {
|
||||||
eprintln!("Could not find pwsp-daemon output device, skipping device linking");
|
println!("Could not find pwsp-daemon output device, skipping device linking");
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,7 +60,7 @@ pub async fn link_player_to_virtual_mic() -> Result<(), Box<dyn Error>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if pwsp_daemon_input.is_none() {
|
if pwsp_daemon_input.is_none() {
|
||||||
eprintln!("Could not find pwsp-daemon input device, skipping device linking");
|
println!("Could not find pwsp-daemon input device, skipping device linking");
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,7 +124,7 @@ pub async fn wait_for_daemon() -> Result<(), Box<dyn Error>> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn make_request(request: Request) -> Result<Response, Box<dyn Error + Send + Sync>> {
|
pub async fn make_request(request: Request) -> Result<Response, Box<dyn Error>> {
|
||||||
let socket_path = get_runtime_dir().join("daemon.sock");
|
let socket_path = get_runtime_dir().join("daemon.sock");
|
||||||
let mut stream = UnixStream::connect(socket_path).await?;
|
let mut stream = UnixStream::connect(socket_path).await?;
|
||||||
|
|
||||||
|
|||||||
+10
-43
@@ -24,11 +24,7 @@ pub fn get_gui_config() -> GuiConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn make_request_sync(request: Request) -> Result<Response, Box<dyn Error>> {
|
pub fn make_request_sync(request: Request) -> Result<Response, Box<dyn Error>> {
|
||||||
tokio::task::block_in_place(|| {
|
futures::executor::block_on(make_request(request))
|
||||||
tokio::runtime::Handle::current()
|
|
||||||
.block_on(make_request(request))
|
|
||||||
.map_err(|e| e as Box<dyn Error>)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn format_time_pair(position: f32, duration: f32) -> String {
|
pub fn format_time_pair(position: f32, duration: f32) -> String {
|
||||||
@@ -44,7 +40,7 @@ pub fn format_time_pair(position: f32, duration: f32) -> String {
|
|||||||
|
|
||||||
pub fn start_app_state_thread(audio_player_state_shared: Arc<Mutex<AudioPlayerState>>) {
|
pub fn start_app_state_thread(audio_player_state_shared: Arc<Mutex<AudioPlayerState>>) {
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
let sleep_duration = Duration::from_secs_f32(1.0 / 60.0);
|
let sleep_duration = Duration::from_millis(100);
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
wait_for_daemon().await.ok();
|
wait_for_daemon().await.ok();
|
||||||
@@ -57,39 +53,15 @@ pub fn start_app_state_thread(audio_player_state_shared: Arc<Mutex<AudioPlayerSt
|
|||||||
let duration_req = Request::get_duration();
|
let duration_req = Request::get_duration();
|
||||||
let current_input_req = Request::get_input();
|
let current_input_req = Request::get_input();
|
||||||
let all_inputs_req = Request::get_inputs();
|
let all_inputs_req = Request::get_inputs();
|
||||||
let looped_req = Request::get_loop();
|
|
||||||
|
|
||||||
let (
|
let state_res = make_request(state_req).await.unwrap_or_default();
|
||||||
state_res,
|
let file_path_res = make_request(file_path_req).await.unwrap_or_default();
|
||||||
file_path_res,
|
let is_paused_res = make_request(is_paused_req).await.unwrap_or_default();
|
||||||
is_paused_res,
|
let volume_res = make_request(volume_req).await.unwrap_or_default();
|
||||||
volume_res,
|
let position_res = make_request(position_req).await.unwrap_or_default();
|
||||||
position_res,
|
let duration_res = make_request(duration_req).await.unwrap_or_default();
|
||||||
duration_res,
|
let current_input_res = make_request(current_input_req).await.unwrap_or_default();
|
||||||
current_input_res,
|
let all_inputs_res = make_request(all_inputs_req).await.unwrap_or_default();
|
||||||
all_inputs_res,
|
|
||||||
looped_res,
|
|
||||||
) = tokio::join!(
|
|
||||||
make_request(state_req),
|
|
||||||
make_request(file_path_req),
|
|
||||||
make_request(is_paused_req),
|
|
||||||
make_request(volume_req),
|
|
||||||
make_request(position_req),
|
|
||||||
make_request(duration_req),
|
|
||||||
make_request(current_input_req),
|
|
||||||
make_request(all_inputs_req),
|
|
||||||
make_request(looped_req),
|
|
||||||
);
|
|
||||||
|
|
||||||
let state_res = state_res.unwrap_or_default();
|
|
||||||
let file_path_res = file_path_res.unwrap_or_default();
|
|
||||||
let is_paused_res = is_paused_res.unwrap_or_default();
|
|
||||||
let volume_res = volume_res.unwrap_or_default();
|
|
||||||
let position_res = position_res.unwrap_or_default();
|
|
||||||
let duration_res = duration_res.unwrap_or_default();
|
|
||||||
let current_input_res = current_input_res.unwrap_or_default();
|
|
||||||
let all_inputs_res = all_inputs_res.unwrap_or_default();
|
|
||||||
let looped_res = looped_res.unwrap_or_default();
|
|
||||||
|
|
||||||
let state = match state_res.status {
|
let state = match state_res.status {
|
||||||
true => serde_json::from_str::<PlayerState>(&state_res.message).unwrap(),
|
true => serde_json::from_str::<PlayerState>(&state_res.message).unwrap(),
|
||||||
@@ -144,10 +116,6 @@ pub fn start_app_state_thread(audio_player_state_shared: Arc<Mutex<AudioPlayerSt
|
|||||||
.collect::<HashMap<String, String>>(),
|
.collect::<HashMap<String, String>>(),
|
||||||
false => HashMap::new(),
|
false => HashMap::new(),
|
||||||
};
|
};
|
||||||
let looped = match looped_res.status {
|
|
||||||
true => looped_res.message.parse::<bool>().unwrap_or_default(),
|
|
||||||
false => false,
|
|
||||||
};
|
|
||||||
|
|
||||||
{
|
{
|
||||||
let mut guard = audio_player_state_shared.lock().unwrap();
|
let mut guard = audio_player_state_shared.lock().unwrap();
|
||||||
@@ -178,7 +146,6 @@ pub fn start_app_state_thread(audio_player_state_shared: Arc<Mutex<AudioPlayerSt
|
|||||||
guard.duration = if duration > 0.0 { duration } else { 1.0 };
|
guard.duration = if duration > 0.0 { duration } else { 1.0 };
|
||||||
guard.current_input = current_input;
|
guard.current_input = current_input;
|
||||||
guard.all_inputs = all_inputs;
|
guard.all_inputs = all_inputs;
|
||||||
guard.looped = looped;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sleep(sleep_duration).await;
|
sleep(sleep_duration).await;
|
||||||
|
|||||||
@@ -164,10 +164,6 @@ pub async fn get_all_devices() -> Result<(Vec<AudioDevice>, Vec<AudioDevice>), B
|
|||||||
input_device.input_fl = Some(port.clone());
|
input_device.input_fl = Some(port.clone());
|
||||||
input_device.input_fr = Some(port)
|
input_device.input_fr = Some(port)
|
||||||
}
|
}
|
||||||
"capture_MONO" => {
|
|
||||||
input_device.input_fl = Some(port.clone());
|
|
||||||
input_device.input_fr = Some(port);
|
|
||||||
}
|
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
} else if output_devices.contains_key(&node_id) {
|
} else if output_devices.contains_key(&node_id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user