2 Commits

Author SHA1 Message Date
6f14678c1d wip 2020-11-01 16:55:06 +00:00
fb374f6a1f wip 2020-10-06 21:18:19 +01:00
8 changed files with 189 additions and 243 deletions

2
.gitignore vendored
View File

@@ -6,5 +6,3 @@
/sounds/*.wav /sounds/*.wav
/sounds.zip /sounds.zip
/lull.zip /lull.zip
/dist/
/package/

View File

@@ -1,18 +1,14 @@
[package] [package]
name = "lull" name = "lull"
description = "a looping sound player for generating atmospheric soundscapes" description = "a looping sound player for generating aural atmospheres"
version = "1.0.3" version = "1.0.0"
authors = ["Max Bradbury <max@tinybird.info>"] authors = ["Max Bradbury <max@tinybird.info>"]
repository = "https://tinybird.dev/max/lull"
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"
crate_type = "bin"
[dependencies] [dependencies]
dirs = "^3.0.1" dirs = "^3.0.1"
gdk = "^0.13.2" iced = "^0.1.1"
gio = "^0"
gtk = "^0"
rodio = "^0.11.0" rodio = "^0.11.0"
serde = "^1.0.125" env_logger = "^0.8.1"
serde_derive = "^1.0.125"
toml = "^0.5.8"

View File

@@ -8,3 +8,20 @@ add your own favourite noises and blend them to create your ideal ambience.
created by [Max Bradbury](mailto:max@tinybird.info). created by [Max Bradbury](mailto:max@tinybird.info).
released under the MIT license. released under the MIT license.
## to do
* save volume preferences to disk
* cross-compile to Windows?
* watch data dir for new sounds?
* disown file manager subcommand
* get some good nature sounds
* rain on tin roof
* wind
* tape hiss
* vinyl crackle
* white noise?
* fan
* birdsong
* set a window icon
* create a nice icon?

View File

@@ -17,7 +17,3 @@ you can skip/remove any unwanted sounds, and add your own.
*campfire* by [sagetyrtle](https://freesound.org/people/sagetyrtle/) *campfire* by [sagetyrtle](https://freesound.org/people/sagetyrtle/)
*rain on glass* by [Benboncan](https://freesound.org/people/Benboncan/) *rain on glass* by [Benboncan](https://freesound.org/people/Benboncan/)
*birdsong* by [reinsamba](https://freesound.org/people/reinsamba/)
*fireplace* by [aunrea](https://freesound.org/people/aunrea/)

14
TODO.md
View File

@@ -1,14 +0,0 @@
# to do
* save volume preferences to disk
* cross-compile to Windows?
* watch data dir for new sounds?
* disown file manager subcommand
* get some good nature sounds
* wind
* tape hiss
* vinyl crackle
* white noise?
* fan
* set a window icon
* create a nice icon?

View File

@@ -1,16 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
mkdir dist
cargo build --release cargo build --release
cp target/release/lull .
strip lull
zip -r lull.zip README.md lull
rm lull
mkdir dist/linux zip -r sounds.zip SOUNDS.md sounds/*.mp3
cp target/release/lull dist/linux
cp README.md dist/linux
cp LICENSE dist/linux
strip dist/linux/lull
mkdir dist/sounds
cp sounds/*.mp3 SOUNDS.md dist/sounds

4
deploy.sh Executable file → Normal file
View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
butler push dist/linux ruin/lull:linux butler push lull.zip ruin/lull:linux
butler push dist/sounds ruin/lull:sounds butler push sounds.zip ruin/lull:sounds

View File

@@ -1,95 +1,60 @@
#![windows_subsystem = "windows"] #![windows_subsystem = "windows"]
use gio::prelude::*; use iced::{Settings, Application, Element, executor, Length, Container, Column, Scrollable, Slider};
use gtk::prelude::*;
use gtk::Orientation;
use rodio::{Sink, Source}; use rodio::{Sink, Source};
use serde_derive::{Serialize, Deserialize};
use std::env::args; use std::env::args;
use std::fs::File; use std::fs::File;
use std::io::{BufReader, Write, Read}; use std::io::BufReader;
use std::path::PathBuf; use std::path::PathBuf;
use std::process::Command; use std::process::Command;
const SPACING: i32 = 16; const SPACING: i32 = 16;
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)] struct Sound {
struct Config { name: String,
position: (i32, i32), path: String, // bytes instead?
size: (i32, i32), sink: Sink,
volume: f32,
} }
fn save_config(config: Config) { /// todo: maybe add a play/pause state or global volume? saved presets?
let mut config_path = dirs::config_dir() struct State {
.expect("Couldn't find user config directory"); sounds: Vec<Sound>
config_path.push("ruin/lull");
if !config_path.exists() {
std::fs::create_dir_all(&config_path)
.expect("Couldn't create lull config directory");
} }
let toml = toml::to_string(&config) enum Lull {
.expect("Couldn't convert config to toml"); Loading,
Loaded(State),
config_path.push("lull.toml");
let mut config_file = File::create(config_path)
.expect("Couldn't create config file");
print!("{}", toml);
config_file.write(&toml.into_bytes())
.expect("Couldn't write config file");
} }
fn load_config() -> Option<Config> { impl Application for Lull {
let mut config_path = dirs::config_dir() type Executor = executor::Default;
.expect("Couldn't find user config directory"); type Message = Message;
type Flags = ();
config_path.push("ruin/lull/lull.toml"); fn new(_flags: Self::Flags) -> (Self, Command) {
(
let file = File::open(config_path); Lull {sounds: Vec::new()},
Command::none(),
if file.is_err() { )
return None;
} }
let mut toml = String::new(); fn title(&self) -> String {
String::from("lull")
file.unwrap().read_to_string(&mut toml)
.expect("Couldn't read config file");
let config = toml::from_str(&toml)
.expect("Couldn't parse config");
Some(config)
} }
#[cfg(target_os = "windows")] fn update(&mut self, message: Self::Message) -> Command {
fn file_manager() -> &'static str { match self {
"explorer" self::Loading => {},
self::Loaded => {},
} }
#[cfg(not(target_os = "windows"))] Command::none()
fn file_manager() -> &'static str {
"xdg-open"
} }
fn error_popup(message: &str) { fn view(&mut self) -> Element<'_, Self::Message> {
let popup = gtk::Window::new(gtk::WindowType::Toplevel); unimplemented!()
popup.set_title("error"); }
popup.set_border_width(SPACING as u32);
popup.set_position(gtk::WindowPosition::Center);
popup.set_default_size(256, 64);
popup.set_type_hint(gdk::WindowTypeHint::Dialog);
popup.set_resizable(false);
let message = gtk::Label::new(Some(message));
popup.add(&message);
popup.show_all();
} }
fn get_data_dir() -> PathBuf { fn get_data_dir() -> PathBuf {
@@ -104,135 +69,130 @@ fn get_data_dir() -> PathBuf {
data_dir data_dir
} }
fn build_ui(application: &gtk::Application) { pub fn main() -> iced::Result {
let window = gtk::ApplicationWindow::new(application); env_logger::init();
window.set_title("lull"); Lull::run(Settings::default())
window.set_border_width(SPACING as u32);
window.set_position(gtk::WindowPosition::Center);
window.set_default_size(256, 128);
if let Some(config) = load_config() {
window.move_(config.position.0, config.position.1);
window.resize(config.size.0, config.size.1);
} }
let button_manage_sounds = gtk::Button::with_label("manage sounds"); // fn error_popup(message: &str) {
// let popup = gtk::Window::new(gtk::WindowType::Toplevel);
// popup.set_title("error");
// popup.set_border_width(SPACING as u32);
// popup.set_position(gtk::WindowPosition::Center);
// popup.set_default_size(256, 64);
//
// let vertical = gtk::Box::new(Orientation::Vertical, SPACING);
// popup.add(&vertical);
//
// let message = gtk::Label::new(Some(message));
// vertical.add(&message);
//
// let button_ok = gtk::Button::with_label("OK");
// vertical.add(&button_ok);
//
// popup.show_all();
//
// button_ok.connect_clicked(move |_| unsafe {
// popup.destroy();
// });
// }
button_manage_sounds.connect_clicked(|_| { // fn build_ui(application: &gtk::Application) {
let mut file_manager = Command::new(file_manager()); // let window = gtk::ApplicationWindow::new(application);
file_manager.arg(get_data_dir()); //
file_manager.output().unwrap(); // window.set_title("lull");
}); // window.set_border_width(SPACING as u32);
// window.set_position(gtk::WindowPosition::Center);
let sounds_manage = gtk::Box::new(Orientation::Vertical, SPACING); // window.set_default_size(256, 256);
let columns = gtk::Box::new(Orientation::Horizontal, SPACING); //
let column_labels = gtk::Box::new(Orientation::Vertical, SPACING); // let vertical = gtk::Box::new(Orientation::Vertical, SPACING);
let column_sliders = gtk::Box::new(Orientation::Vertical, SPACING); // vertical.set_homogeneous(true);
//
columns.set_homogeneous(false); // window.add(&vertical);
column_labels.set_homogeneous(true); //
column_sliders.set_homogeneous(true); // let device = rodio::default_output_device().unwrap();
column_labels.set_property_expand(false); //
column_sliders.set_property_expand(true); // let paths = std::fs::read_dir(get_data_dir())
column_sliders.set_property_width_request(128); // .expect("Couldn't read from lull data directory");
//
window.add(&sounds_manage); // for path in paths {
sounds_manage.add(&columns); // let path = path.unwrap().path();
sounds_manage.add(&button_manage_sounds); // let name: &str = path.file_stem().unwrap().to_str().unwrap();
columns.add(&column_labels); //
columns.add(&column_sliders); // let file = File::open(&path)
// .expect("Couldn't open audio file");
let device = rodio::default_output_device().unwrap(); //
// let source = rodio::Decoder::new(
let mut paths = std::fs::read_dir(get_data_dir()) // BufReader::new(file)
.expect("Couldn't read lull sounds directory") // );
.map(|res| res.map(|e| e.path())) //
.collect::<Result<Vec<_>, std::io::Error>>() // if source.is_err() {
.expect("Couldn't read files from lull sounds directory"); // error_popup(&format!(
// "Couldn't parse file {}. \n{}.",
paths.sort(); // path.to_str().unwrap(),
// source.err().unwrap()
for path in paths { // ));
let name: &str = path.file_stem().unwrap().to_str().unwrap(); // continue;
// }
let file = File::open(&path) //
.expect("Couldn't open audio file"); // let source = source.unwrap().repeat_infinite();
//
let source = rodio::Decoder::new( // let sink = Sink::new(&device);
BufReader::new(file) // sink.append(source);
); // sink.pause();
//
if source.is_err() { // let row = gtk::Box::new(Orientation::Horizontal, SPACING);
error_popup(&format!( // row.set_homogeneous(true);
"Couldn't parse file {}. \n{}.", //
path.to_str().unwrap(), // let label = gtk::Label::new(Some(name));
source.err().unwrap() // row.add(&label);
)); //
continue; // let adjustment = gtk::Adjustment::new(
} // 0.0,
// 0.0,
let source = source.unwrap().repeat_infinite(); // 1.0,
// 0.0,
let sink = Sink::new(&device); // 0.0,
sink.append(source); // 0.0
sink.pause(); // );
//
let label = gtk::Label::new(Some(name)); // let slider = gtk::Scale::new(
label.set_halign(gtk::Align::End); // Orientation::Horizontal,
column_labels.add(&label); // Some(&adjustment)
// );
let adjustment = gtk::Adjustment::new( //
0.0, // slider.set_draw_value(false);
0.0, //
1.0, // slider.connect_value_changed(move |scale| {
0.0, // let volume = scale.get_value();
0.0, //
0.0 // if volume == 0. {
); // sink.pause();
// } else {
let slider = gtk::Scale::new( // sink.play();
Orientation::Horizontal, // sink.set_volume(volume as f32);
Some(&adjustment) // }
); // });
//
slider.set_draw_value(false); // row.add(&slider);
//
slider.connect_value_changed(move |scale| { // vertical.add(&row);
let volume = scale.get_value(); // }
//
if volume == 0. { // let row_add = gtk::Box::new(Orientation::Horizontal, SPACING);
sink.pause(); // row_add.set_homogeneous(true);
} else { //
sink.play(); // let button_manage_sounds = gtk::Button::with_label("manage sounds");
sink.set_volume(volume as f32); //
} // button_manage_sounds.connect_clicked(|_| {
}); // let mut file_manager = Command::new("xdg-open");
// file_manager.arg(get_data_dir());
column_sliders.add(&slider); // file_manager.output().unwrap();
} // });
//
window.show_all(); // row_add.add(&button_manage_sounds);
// vertical.add(&row_add);
window.connect_delete_event(|window, _event| { //
save_config(Config { // window.show_all();
position: window.get_position(), // }
size: window.get_size()
});
Inhibit(false)
});
}
fn main() {
let application = gtk::Application::new(
Some("dev.tinybird.max.lull"),
Default::default()
).expect("Initialization failed...");
application.connect_activate(|app| {
build_ui(app);
});
application.run(&args().collect::<Vec<_>>());
}