20 Commits

Author SHA1 Message Date
4fd83be754 save and restore window size and position 2021-04-09 18:46:23 +01:00
3e01249ecf added fireplace sound 2020-11-20 15:58:27 +00:00
5f42e1a03c bump for new UI 2020-10-27 17:31:00 +00:00
06960b6f9c better build/deployment 2020-10-27 17:27:16 +00:00
7e045c0a8d don't use tar.gz as it breaks the itch desktop version 2020-10-27 16:58:55 +00:00
0af09fcd96 tidyup 2020-10-27 16:53:39 +00:00
eba133090a do both tar and zip 2020-10-27 16:52:51 +00:00
f4805e94b0 do both tar and zip 2020-10-27 16:52:06 +00:00
51c636e572 add license to package 2020-10-27 15:16:06 +00:00
982f1f0f21 take todo out of readme 2020-10-27 15:15:09 +00:00
459f1705c0 use tar.gz to preserve permissions 2020-10-27 15:13:00 +00:00
d46e1f48e2 +x 2020-10-27 08:08:11 +00:00
4f821fccd5 change styling 2020-10-27 08:08:03 +00:00
4f58c1eece update sounds todo 2020-10-20 22:23:25 +01:00
e3087bfa63 add repository field 2020-10-20 22:18:55 +01:00
3255fe5d47 version bump 2020-10-20 21:54:08 +01:00
ae81570c07 alphabetical order 2020-10-20 21:36:55 +01:00
6e203c3fbd added sound 2020-10-20 21:33:15 +01:00
0afc497f78 better error popup 2020-10-04 12:28:28 +01:00
b281f8af00 target-specific file manager 2020-10-03 13:17:20 +01:00
8 changed files with 244 additions and 190 deletions

2
.gitignore vendored
View File

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

View File

@@ -1,14 +1,18 @@
[package] [package]
name = "lull" name = "lull"
description = "a looping sound player for generating aural atmospheres" description = "a looping sound player for generating atmospheric soundscapes"
version = "1.0.0" version = "1.0.3"
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"
iced = "^0.1.1" gdk = "^0.13.2"
gio = "^0"
gtk = "^0"
rodio = "^0.11.0" rodio = "^0.11.0"
env_logger = "^0.8.1" serde = "^1.0.125"
serde_derive = "^1.0.125"
toml = "^0.5.8"

View File

@@ -8,20 +8,3 @@ 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,3 +17,7 @@ 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 Normal file
View File

@@ -0,0 +1,14 @@
# 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,9 +1,16 @@
#!/usr/bin/env bash #!/usr/bin/env bash
cargo build --release mkdir dist
cp target/release/lull .
strip lull
zip -r lull.zip README.md lull
rm lull
zip -r sounds.zip SOUNDS.md sounds/*.mp3 cargo build --release
mkdir dist/linux
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 Normal file → Executable file
View File

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

View File

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