11 Commits

Author SHA1 Message Date
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
10 changed files with 167 additions and 325 deletions

View File

@@ -1,17 +1,16 @@
[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.1"
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" crate_type = "bin"
[dependencies] [dependencies]
clipboard = "^0.5.0"
dirs = "^3.0.1" dirs = "^3.0.1"
glium = "^0.27.0" gdk = "^0.13.2"
imgui = "^0.5.0" gio = "^0"
imgui-glium-renderer = "^0.5.0" gtk = "^0"
imgui-winit-support = "^0.5.0"
rodio = "^0.11.0" rodio = "^0.11.0"

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,5 @@ 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/)

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

@@ -3,7 +3,8 @@
cargo build --release cargo build --release
cp target/release/lull . cp target/release/lull .
strip lull strip lull
zip -r lull.zip README.md lull rm lull-linux.tar.gz
tar -czvf lull-linux.tar.gz lull README.md
rm lull rm lull
zip -r sounds.zip SOUNDS.md sounds/*.mp3 zip -r sounds.zip SOUNDS.md sounds/*.mp3

2
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 lull-linux.tar.gz ruin/lull:linux
butler push sounds.zip ruin/lull:sounds butler push sounds.zip ruin/lull:sounds

View File

@@ -1,39 +1,41 @@
#![windows_subsystem = "windows"] #![windows_subsystem = "windows"]
use gio::prelude::*;
use gtk::prelude::*;
use gtk::Orientation;
use rodio::{Sink, Source}; use rodio::{Sink, Source};
use std::env::args; use std::env::args;
use std::fs::File; use std::fs::File;
use std::io::BufReader; use std::io::BufReader;
use std::path::PathBuf; use std::path::PathBuf;
use std::process::Command; use std::process::Command;
use imgui::*;
mod support;
const SPACING: i32 = 16; const SPACING: i32 = 16;
//
// fn error_popup(message: &str) { #[cfg(target_os = "windows")]
// let popup = gtk::Window::new(gtk::WindowType::Toplevel); fn file_manager() -> &'static str {
// popup.set_title("error"); "explorer"
// popup.set_border_width(SPACING as u32); }
// popup.set_position(gtk::WindowPosition::Center);
// popup.set_default_size(256, 64); #[cfg(not(target_os = "windows"))]
// fn file_manager() -> &'static str {
// let vertical = gtk::Box::new(Orientation::Vertical, SPACING); "xdg-open"
// popup.add(&vertical); }
//
// let message = gtk::Label::new(Some(message)); fn error_popup(message: &str) {
// vertical.add(&message); let popup = gtk::Window::new(gtk::WindowType::Toplevel);
// popup.set_title("error");
// let button_ok = gtk::Button::with_label("OK"); popup.set_border_width(SPACING as u32);
// vertical.add(&button_ok); popup.set_position(gtk::WindowPosition::Center);
// popup.set_default_size(256, 64);
// popup.show_all(); popup.set_type_hint(gdk::WindowTypeHint::Dialog);
// popup.set_resizable(false);
// button_ok.connect_clicked(move |_| unsafe {
// popup.destroy(); let message = gtk::Label::new(Some(message));
// }); popup.add(&message);
// }
popup.show_all();
}
fn get_data_dir() -> PathBuf { fn get_data_dir() -> PathBuf {
let mut data_dir = dirs::data_dir().expect("Couldn't find user data directory"); let mut data_dir = dirs::data_dir().expect("Couldn't find user data directory");
@@ -46,122 +48,122 @@ fn get_data_dir() -> PathBuf {
data_dir data_dir
} }
//
// fn build_ui(application: &gtk::Application) { fn build_ui(application: &gtk::Application) {
// let window = gtk::ApplicationWindow::new(application); let window = gtk::ApplicationWindow::new(application);
//
// window.set_title("lull"); window.set_title("lull");
// window.set_border_width(SPACING as u32); window.set_border_width(SPACING as u32);
// window.set_position(gtk::WindowPosition::Center); window.set_position(gtk::WindowPosition::Center);
// window.set_default_size(256, 256); window.set_default_size(256, 128);
//
// let vertical = gtk::Box::new(Orientation::Vertical, SPACING); let button_manage_sounds = gtk::Button::with_label("manage sounds");
// vertical.set_homogeneous(true);
// button_manage_sounds.connect_clicked(|_| {
// window.add(&vertical); let mut file_manager = Command::new(file_manager());
// file_manager.arg(get_data_dir());
// let device = rodio::default_output_device().unwrap(); file_manager.output().unwrap();
// });
// let paths = std::fs::read_dir(get_data_dir())
// .expect("Couldn't read from lull data directory"); let sounds_manage = gtk::Box::new(Orientation::Vertical, SPACING);
// let columns = gtk::Box::new(Orientation::Horizontal, SPACING);
// for path in paths { let column_labels = gtk::Box::new(Orientation::Vertical, SPACING);
// let path = path.unwrap().path(); let column_sliders = gtk::Box::new(Orientation::Vertical, SPACING);
// let name: &str = path.file_stem().unwrap().to_str().unwrap();
// columns.set_homogeneous(false);
// let file = File::open(&path) column_labels.set_homogeneous(true);
// .expect("Couldn't open audio file"); column_sliders.set_homogeneous(true);
// column_labels.set_property_expand(false);
// let source = rodio::Decoder::new( column_sliders.set_property_expand(true);
// BufReader::new(file) column_sliders.set_property_width_request(128);
// );
// window.add(&sounds_manage);
// if source.is_err() { sounds_manage.add(&columns);
// error_popup(&format!( sounds_manage.add(&button_manage_sounds);
// "Couldn't parse file {}. \n{}.", columns.add(&column_labels);
// path.to_str().unwrap(), columns.add(&column_sliders);
// source.err().unwrap()
// )); let device = rodio::default_output_device().unwrap();
// continue;
// } let mut paths = std::fs::read_dir(get_data_dir())
// .expect("Couldn't read lull sounds directory")
// let source = source.unwrap().repeat_infinite(); .map(|res| res.map(|e| e.path()))
// .collect::<Result<Vec<_>, std::io::Error>>()
// let sink = Sink::new(&device); .expect("Couldn't read files from lull sounds directory");
// sink.append(source);
// sink.pause(); paths.sort();
//
// let row = gtk::Box::new(Orientation::Horizontal, SPACING); for path in paths {
// row.set_homogeneous(true); let name: &str = path.file_stem().unwrap().to_str().unwrap();
//
// let label = gtk::Label::new(Some(name)); let file = File::open(&path)
// row.add(&label); .expect("Couldn't open audio file");
//
// let adjustment = gtk::Adjustment::new( let source = rodio::Decoder::new(
// 0.0, BufReader::new(file)
// 0.0, );
// 1.0,
// 0.0, if source.is_err() {
// 0.0, error_popup(&format!(
// 0.0 "Couldn't parse file {}. \n{}.",
// ); path.to_str().unwrap(),
// source.err().unwrap()
// let slider = gtk::Scale::new( ));
// Orientation::Horizontal, continue;
// Some(&adjustment) }
// );
// let source = source.unwrap().repeat_infinite();
// slider.set_draw_value(false);
// let sink = Sink::new(&device);
// slider.connect_value_changed(move |scale| { sink.append(source);
// let volume = scale.get_value(); sink.pause();
//
// if volume == 0. { let label = gtk::Label::new(Some(name));
// sink.pause(); label.set_halign(gtk::Align::End);
// } else { column_labels.add(&label);
// sink.play();
// sink.set_volume(volume as f32); let adjustment = gtk::Adjustment::new(
// } 0.0,
// }); 0.0,
// 1.0,
// row.add(&slider); 0.0,
// 0.0,
// vertical.add(&row); 0.0
// } );
//
// let row_add = gtk::Box::new(Orientation::Horizontal, SPACING); let slider = gtk::Scale::new(
// row_add.set_homogeneous(true); Orientation::Horizontal,
// Some(&adjustment)
// let button_manage_sounds = gtk::Button::with_label("manage sounds"); );
//
// button_manage_sounds.connect_clicked(|_| { slider.set_draw_value(false);
// let mut file_manager = Command::new("xdg-open");
// file_manager.arg(get_data_dir()); slider.connect_value_changed(move |scale| {
// file_manager.output().unwrap(); let volume = scale.get_value();
// });
// if volume == 0. {
// row_add.add(&button_manage_sounds); sink.pause();
// vertical.add(&row_add); } else {
// sink.play();
// window.show_all(); sink.set_volume(volume as f32);
// } }
});
column_sliders.add(&slider);
}
window.show_all();
}
fn main() { fn main() {
let system = support::init(file!()); let application = gtk::Application::new(
Some("dev.tinybird.max.lull"),
Default::default()
).expect("Initialization failed...");
system.main_loop(move |_, ui| { application.connect_activate(|app| {
Window::new(im_str!("Hello world")) build_ui(app);
.size([300.0, 100.0], Condition::FirstUseEver)
.build(&ui, || {
ui.text(im_str!("Hello world!"));
ui.text(im_str!("こんにちは世界!"));
ui.text(im_str!("This...is...imgui-rs!"));
ui.separator();
let mouse_pos = ui.io().mouse_pos;
ui.text(format!(
"Mouse Position: ({:.1},{:.1})",
mouse_pos[0], mouse_pos[1]
));
});
}); });
application.run(&args().collect::<Vec<_>>());
} }

View File

@@ -1,19 +0,0 @@
use clipboard::{ClipboardContext, ClipboardProvider};
use imgui::{ClipboardBackend, ImStr, ImString};
pub struct ClipboardSupport(ClipboardContext);
pub fn init() -> Option<ClipboardSupport> {
ClipboardContext::new()
.ok()
.map(|ctx| ClipboardSupport(ctx))
}
impl ClipboardBackend for ClipboardSupport {
fn get(&mut self) -> Option<ImString> {
self.0.get_contents().ok().map(|text| text.into())
}
fn set(&mut self, text: &ImStr) {
let _ = self.0.set_contents(text.to_str().to_owned());
}
}

Binary file not shown.

View File

@@ -1,140 +0,0 @@
use glium::glutin;
use glium::glutin::event::{Event, WindowEvent};
use glium::glutin::event_loop::{ControlFlow, EventLoop};
use glium::glutin::window::WindowBuilder;
use glium::{Display, Surface};
use imgui::{Context, FontConfig, FontGlyphRanges, FontSource, Ui};
use imgui_glium_renderer::Renderer;
use imgui_winit_support::{HiDpiMode, WinitPlatform};
use std::time::Instant;
mod clipboard;
pub struct System {
pub event_loop: EventLoop<()>,
pub display: glium::Display,
pub imgui: Context,
pub platform: WinitPlatform,
pub renderer: Renderer,
pub font_size: f32,
}
pub fn init(title: &str) -> System {
let title = match title.rfind('/') {
Some(idx) => title.split_at(idx + 1).1,
None => title,
};
let event_loop = EventLoop::new();
let context = glutin::ContextBuilder::new().with_vsync(true);
let builder = WindowBuilder::new()
.with_title(title.to_owned())
.with_inner_size(glutin::dpi::LogicalSize::new(1024f64, 768f64));
let display =
Display::new(builder, context, &event_loop).expect("Failed to initialize display");
let mut imgui = Context::create();
imgui.set_ini_filename(None);
if let Some(backend) = clipboard::init() {
imgui.set_clipboard_backend(Box::new(backend));
} else {
eprintln!("Failed to initialize clipboard");
}
let mut platform = WinitPlatform::init(&mut imgui);
{
let gl_window = display.gl_window();
let window = gl_window.window();
platform.attach_window(imgui.io_mut(), &window, HiDpiMode::Rounded);
}
let hidpi_factor = platform.hidpi_factor();
let font_size = (13.0 * hidpi_factor) as f32;
imgui.fonts().add_font(&[
FontSource::DefaultFontData {
config: Some(FontConfig {
size_pixels: font_size,
..FontConfig::default()
}),
},
FontSource::TtfData {
data: include_bytes!("helsinki.ttf"),
size_pixels: font_size,
config: Some(FontConfig {
rasterizer_multiply: 1.75,
glyph_ranges: FontGlyphRanges::japanese(),
..FontConfig::default()
}),
},
]);
imgui.io_mut().font_global_scale = (1.0 / hidpi_factor) as f32;
let renderer = Renderer::init(&mut imgui, &display)
.expect("Failed to initialize renderer");
System {
event_loop,
display,
imgui,
platform,
renderer,
font_size,
}
}
impl System {
pub fn main_loop<F: FnMut(&mut bool, &mut Ui) + 'static>(self, mut run_ui: F) {
let System {
event_loop,
display,
mut imgui,
mut platform,
mut renderer,
..
} = self;
let mut last_frame = Instant::now();
event_loop.run(move |event, _, control_flow| match event {
Event::NewEvents(_) => {
let now = Instant::now();
imgui.io_mut().update_delta_time(now - last_frame);
last_frame = now;
}
Event::MainEventsCleared => {
let gl_window = display.gl_window();
platform
.prepare_frame(imgui.io_mut(), &gl_window.window())
.expect("Failed to prepare frame");
gl_window.window().request_redraw();
}
Event::RedrawRequested(_) => {
let mut ui = imgui.frame();
let mut run = true;
run_ui(&mut run, &mut ui);
if !run {
*control_flow = ControlFlow::Exit;
}
let gl_window = display.gl_window();
let mut target = display.draw();
target.clear_color_srgb(1.0, 1.0, 1.0, 1.0);
platform.prepare_render(&ui, gl_window.window());
let draw_data = ui.render();
renderer
.render(&mut target, draw_data)
.expect("Rendering failed");
target.finish().expect("Failed to swap buffers");
}
Event::WindowEvent {
event: WindowEvent::CloseRequested,
..
} => *control_flow = ControlFlow::Exit,
event => {
let gl_window = display.gl_window();
platform.handle_event(imgui.io_mut(), gl_window.window(), &event);
}
})
}
}