Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 388dd14639 | |||
| 2b2ac66708 | |||
| 4fd83be754 | |||
| 3e01249ecf | |||
| 5f42e1a03c | |||
| 06960b6f9c | |||
| 7e045c0a8d | |||
| 0af09fcd96 | |||
| eba133090a | |||
| f4805e94b0 | |||
| 51c636e572 | |||
| 982f1f0f21 | |||
| 459f1705c0 | |||
| d46e1f48e2 | |||
| 4f821fccd5 | |||
| 4f58c1eece | |||
| e3087bfa63 | |||
| 3255fe5d47 | |||
| ae81570c07 | |||
| 6e203c3fbd | |||
| 0afc497f78 | |||
| b281f8af00 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -6,3 +6,7 @@
|
|||||||
/sounds/*.wav
|
/sounds/*.wav
|
||||||
/sounds.zip
|
/sounds.zip
|
||||||
/lull.zip
|
/lull.zip
|
||||||
|
/dist/
|
||||||
|
/package/
|
||||||
|
/*.kra
|
||||||
|
/*.png
|
||||||
|
|||||||
13
Cargo.toml
13
Cargo.toml
@@ -1,15 +1,20 @@
|
|||||||
[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"
|
||||||
|
eframe = "^0.11.0"
|
||||||
|
egui = "^0.11.0"
|
||||||
|
gdk = "^0.13.2"
|
||||||
gio = "^0"
|
gio = "^0"
|
||||||
gtk = "^0"
|
gtk = "^0"
|
||||||
rodio = "^0.11.0"
|
rodio = "^0.11.0"
|
||||||
iui = "0.3"
|
serde = "^1.0.125"
|
||||||
|
serde_derive = "^1.0.125"
|
||||||
|
toml = "^0.5.8"
|
||||||
|
|||||||
17
README.md
17
README.md
@@ -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?
|
|
||||||
|
|||||||
@@ -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
14
TODO.md
Normal 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?
|
||||||
19
build.sh
19
build.sh
@@ -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
4
deploy.sh
Normal file → Executable 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
|
||||||
|
|||||||
350
src/main.rs
350
src/main.rs
@@ -1,43 +1,97 @@
|
|||||||
#![windows_subsystem = "windows"]
|
#![windows_subsystem = "windows"]
|
||||||
|
|
||||||
use gio::prelude::*;
|
// use gio::prelude::*;
|
||||||
use gtk::prelude::*;
|
// use gtk::prelude::*;
|
||||||
use gtk::Orientation;
|
// 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;
|
||||||
|
|
||||||
use iui::prelude::*;
|
mod ui_egui;
|
||||||
use iui::controls::{Label, Spinbox, Slider, Entry, MultilineEntry, VerticalBox, HorizontalBox, HorizontalSeparator, Group, Spacer};
|
|
||||||
use std::rc::Rc;
|
const SPACING: i32 = 16;
|
||||||
use std::cell::RefCell;
|
|
||||||
//
|
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)]
|
||||||
// const SPACING: i32 = 16;
|
struct Config {
|
||||||
//
|
position: (i32, i32),
|
||||||
|
size: (i32, i32),
|
||||||
|
}
|
||||||
|
|
||||||
|
fn save_config(config: Config) {
|
||||||
|
let mut config_path = dirs::config_dir()
|
||||||
|
.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");
|
||||||
|
}
|
||||||
|
|
||||||
|
let toml = toml::to_string(&config)
|
||||||
|
.expect("Couldn't convert config to toml");
|
||||||
|
|
||||||
|
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> {
|
||||||
|
let mut config_path = dirs::config_dir()
|
||||||
|
.expect("Couldn't find user config directory");
|
||||||
|
|
||||||
|
config_path.push("ruin/lull/lull.toml");
|
||||||
|
|
||||||
|
let file = File::open(config_path);
|
||||||
|
|
||||||
|
if file.is_err() {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut toml = String::new();
|
||||||
|
|
||||||
|
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 file_manager() -> &'static str {
|
||||||
|
"explorer"
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(target_os = "windows"))]
|
||||||
|
fn file_manager() -> &'static str {
|
||||||
|
"xdg-open"
|
||||||
|
}
|
||||||
|
|
||||||
// fn error_popup(message: &str) {
|
// fn error_popup(message: &str) {
|
||||||
// let popup = gtk::Window::new(gtk::WindowType::Toplevel);
|
// let popup = gtk::Window::new(gtk::WindowType::Toplevel);
|
||||||
// popup.set_title("error");
|
// popup.set_title("error");
|
||||||
// popup.set_border_width(SPACING as u32);
|
// popup.set_border_width(SPACING as u32);
|
||||||
// popup.set_position(gtk::WindowPosition::Center);
|
// popup.set_position(gtk::WindowPosition::Center);
|
||||||
// popup.set_default_size(256, 64);
|
// popup.set_default_size(256, 64);
|
||||||
//
|
// popup.set_type_hint(gdk::WindowTypeHint::Dialog);
|
||||||
// let vertical = gtk::Box::new(Orientation::Vertical, SPACING);
|
// popup.set_resizable(false);
|
||||||
// popup.add(&vertical);
|
|
||||||
//
|
//
|
||||||
// let message = gtk::Label::new(Some(message));
|
// let message = gtk::Label::new(Some(message));
|
||||||
// vertical.add(&message);
|
// popup.add(&message);
|
||||||
//
|
|
||||||
// let button_ok = gtk::Button::with_label("OK");
|
|
||||||
// vertical.add(&button_ok);
|
|
||||||
//
|
//
|
||||||
// popup.show_all();
|
// popup.show_all();
|
||||||
//
|
|
||||||
// button_ok.connect_clicked(move |_| unsafe {
|
|
||||||
// popup.destroy();
|
|
||||||
// });
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
fn get_data_dir() -> PathBuf {
|
fn get_data_dir() -> PathBuf {
|
||||||
@@ -51,27 +105,96 @@ fn get_data_dir() -> PathBuf {
|
|||||||
|
|
||||||
data_dir
|
data_dir
|
||||||
}
|
}
|
||||||
//
|
|
||||||
|
struct Sound {
|
||||||
|
name: String,
|
||||||
|
sink: Sink,
|
||||||
|
volume: f64,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_sounds(device: &rodio::Device) -> Vec<Sound> {
|
||||||
|
let mut sounds = Vec::new();
|
||||||
|
|
||||||
|
let mut paths = std::fs::read_dir(get_data_dir())
|
||||||
|
.expect("Couldn't read lull sounds directory")
|
||||||
|
.map(|res| res.map(|e| e.path()))
|
||||||
|
.collect::<Result<Vec<_>, std::io::Error>>()
|
||||||
|
.expect("Couldn't read files from lull sounds directory");
|
||||||
|
|
||||||
|
paths.sort();
|
||||||
|
|
||||||
|
for path in paths {
|
||||||
|
let name = path.file_stem().unwrap().to_str().unwrap().to_string();
|
||||||
|
|
||||||
|
let file = File::open(&path)
|
||||||
|
.expect("Couldn't open audio file");
|
||||||
|
|
||||||
|
let source = rodio::Decoder::new(
|
||||||
|
BufReader::new(file)
|
||||||
|
);
|
||||||
|
|
||||||
|
let source = source.unwrap().repeat_infinite();
|
||||||
|
|
||||||
|
let sink = rodio::Sink::new(&device);
|
||||||
|
sink.append(source);
|
||||||
|
sink.pause();
|
||||||
|
|
||||||
|
sounds.push(Sound { name, sink, volume: 0.0 });
|
||||||
|
}
|
||||||
|
|
||||||
|
sounds
|
||||||
|
}
|
||||||
|
|
||||||
// fn build_ui(application: >k::Application) {
|
// fn build_ui(application: >k::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);
|
// if let Some(config) = load_config() {
|
||||||
// vertical.set_homogeneous(true);
|
// window.move_(config.position.0, config.position.1);
|
||||||
|
// window.resize(config.size.0, config.size.1);
|
||||||
|
// }
|
||||||
//
|
//
|
||||||
// window.add(&vertical);
|
// let button_manage_sounds = gtk::Button::with_label("manage sounds");
|
||||||
|
//
|
||||||
|
// button_manage_sounds.connect_clicked(|_| {
|
||||||
|
// let mut file_manager = Command::new(file_manager());
|
||||||
|
// file_manager.arg(get_data_dir());
|
||||||
|
// file_manager.output().unwrap();
|
||||||
|
// });
|
||||||
|
//
|
||||||
|
// let sounds_manage = gtk::Box::new(Orientation::Vertical, SPACING);
|
||||||
|
// let columns = gtk::Box::new(Orientation::Horizontal, SPACING);
|
||||||
|
// let column_labels = gtk::Box::new(Orientation::Vertical, SPACING);
|
||||||
|
// let column_sliders = gtk::Box::new(Orientation::Vertical, SPACING);
|
||||||
|
//
|
||||||
|
// columns.set_homogeneous(false);
|
||||||
|
// column_labels.set_homogeneous(true);
|
||||||
|
// column_sliders.set_homogeneous(true);
|
||||||
|
// column_labels.set_property_expand(false);
|
||||||
|
// column_sliders.set_property_expand(true);
|
||||||
|
// column_sliders.set_property_width_request(128);
|
||||||
|
//
|
||||||
|
// window.add(&sounds_manage);
|
||||||
|
// sounds_manage.add(&columns);
|
||||||
|
// sounds_manage.add(&button_manage_sounds);
|
||||||
|
// columns.add(&column_labels);
|
||||||
|
// columns.add(&column_sliders);
|
||||||
//
|
//
|
||||||
// let device = rodio::default_output_device().unwrap();
|
// let device = rodio::default_output_device().unwrap();
|
||||||
//
|
//
|
||||||
// let paths = std::fs::read_dir(get_data_dir())
|
// let mut paths = std::fs::read_dir(get_data_dir())
|
||||||
// .expect("Couldn't read from lull data directory");
|
// .expect("Couldn't read lull sounds directory")
|
||||||
|
// .map(|res| res.map(|e| e.path()))
|
||||||
|
// .collect::<Result<Vec<_>, std::io::Error>>()
|
||||||
|
// .expect("Couldn't read files from lull sounds directory");
|
||||||
|
//
|
||||||
|
// paths.sort();
|
||||||
//
|
//
|
||||||
// for path in paths {
|
// for path in paths {
|
||||||
// let path = path.unwrap().path();
|
|
||||||
// let name: &str = path.file_stem().unwrap().to_str().unwrap();
|
// let name: &str = path.file_stem().unwrap().to_str().unwrap();
|
||||||
//
|
//
|
||||||
// let file = File::open(&path)
|
// let file = File::open(&path)
|
||||||
@@ -96,11 +219,9 @@ fn get_data_dir() -> PathBuf {
|
|||||||
// sink.append(source);
|
// sink.append(source);
|
||||||
// sink.pause();
|
// sink.pause();
|
||||||
//
|
//
|
||||||
// let row = gtk::Box::new(Orientation::Horizontal, SPACING);
|
|
||||||
// row.set_homogeneous(true);
|
|
||||||
//
|
|
||||||
// let label = gtk::Label::new(Some(name));
|
// let label = gtk::Label::new(Some(name));
|
||||||
// row.add(&label);
|
// label.set_halign(gtk::Align::End);
|
||||||
|
// column_labels.add(&label);
|
||||||
//
|
//
|
||||||
// let adjustment = gtk::Adjustment::new(
|
// let adjustment = gtk::Adjustment::new(
|
||||||
// 0.0,
|
// 0.0,
|
||||||
@@ -129,149 +250,34 @@ fn get_data_dir() -> PathBuf {
|
|||||||
// }
|
// }
|
||||||
// });
|
// });
|
||||||
//
|
//
|
||||||
// row.add(&slider);
|
// column_sliders.add(&slider);
|
||||||
//
|
|
||||||
// vertical.add(&row);
|
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// let row_add = gtk::Box::new(Orientation::Horizontal, SPACING);
|
|
||||||
// row_add.set_homogeneous(true);
|
|
||||||
//
|
|
||||||
// let button_manage_sounds = gtk::Button::with_label("manage sounds");
|
|
||||||
//
|
|
||||||
// button_manage_sounds.connect_clicked(|_| {
|
|
||||||
// let mut file_manager = Command::new("xdg-open");
|
|
||||||
// file_manager.arg(get_data_dir());
|
|
||||||
// file_manager.output().unwrap();
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// row_add.add(&button_manage_sounds);
|
|
||||||
// vertical.add(&row_add);
|
|
||||||
//
|
|
||||||
// window.show_all();
|
// window.show_all();
|
||||||
|
//
|
||||||
|
// window.connect_delete_event(|window, _event| {
|
||||||
|
// save_config(Config {
|
||||||
|
// position: window.get_position(),
|
||||||
|
// size: window.get_size()
|
||||||
|
// });
|
||||||
|
//
|
||||||
|
// Inhibit(false)
|
||||||
|
// });
|
||||||
// }
|
// }
|
||||||
|
|
||||||
/// This struct will hold the values that multiple callbacks will need to access.
|
// fn main() {
|
||||||
struct State {
|
// let application = gtk::Application::new(
|
||||||
slider_val: i64,
|
// Some("dev.tinybird.max.lull"),
|
||||||
spinner_val: i64,
|
// Default::default()
|
||||||
entry_val: String,
|
// ).expect("Initialization failed...");
|
||||||
multi_val: String,
|
//
|
||||||
}
|
// application.connect_activate(|app| {
|
||||||
|
// build_ui(app);
|
||||||
|
// });
|
||||||
|
//
|
||||||
|
// application.run(&args().collect::<Vec<_>>());
|
||||||
|
// }
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
// Initialize the UI framework.
|
eframe::run_native(Box::new(ui_egui::State::default()));
|
||||||
let ui = UI::init().unwrap();
|
|
||||||
|
|
||||||
// Initialize the state of the application.
|
|
||||||
let state = Rc::new(RefCell::new(
|
|
||||||
State { slider_val: 0, spinner_val: 0, entry_val: "".into(), multi_val: "".into() }
|
|
||||||
));
|
|
||||||
|
|
||||||
// Set up the inputs for the application.
|
|
||||||
// While it's not necessary to create a block for this, it makes the code a lot easier
|
|
||||||
// to read; the indentation presents a visual cue informing the reader that these
|
|
||||||
// statements are related.
|
|
||||||
let (input_group, mut slider, mut spinner, mut entry, mut multi) = {
|
|
||||||
// The group will hold all the inputs
|
|
||||||
let mut input_group = Group::new(&ui, "Inputs");
|
|
||||||
|
|
||||||
// The vertical box arranges the inputs within the groups
|
|
||||||
let mut input_vbox = VerticalBox::new(&ui);
|
|
||||||
input_vbox.set_padded(&ui, true);
|
|
||||||
|
|
||||||
// Numerical inputs
|
|
||||||
let slider = Slider::new(&ui, 1, 100);
|
|
||||||
let spinner = Spinbox::new(&ui, 1, 100);
|
|
||||||
let entry = Entry::new(&ui);
|
|
||||||
let multi = MultilineEntry::new(&ui);
|
|
||||||
|
|
||||||
// Add everything in hierarchy
|
|
||||||
// Note the reverse order here. Again, it's not necessary, but it improves
|
|
||||||
// readability.
|
|
||||||
input_vbox.append(&ui, slider.clone(), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, spinner.clone(), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, Spacer::new(&ui), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, HorizontalSeparator::new(&ui), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, Spacer::new(&ui), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, entry.clone(), LayoutStrategy::Compact);
|
|
||||||
input_vbox.append(&ui, multi.clone(), LayoutStrategy::Stretchy);
|
|
||||||
input_group.set_child(&ui, input_vbox);
|
|
||||||
|
|
||||||
(input_group, slider, spinner, entry, multi)
|
|
||||||
};
|
|
||||||
|
|
||||||
// Set up the outputs for the application. Organization is very similar to the
|
|
||||||
// previous setup.
|
|
||||||
let (output_group, add_label, sub_label, text_label, bigtext_label) = {
|
|
||||||
let mut output_group = Group::new(&ui, "Outputs");
|
|
||||||
let mut output_vbox = VerticalBox::new(&ui);
|
|
||||||
let add_label = Label::new(&ui, "");
|
|
||||||
let sub_label = Label::new(&ui, "");
|
|
||||||
let text_label = Label::new(&ui, "");
|
|
||||||
let bigtext_label = Label::new(&ui, "");
|
|
||||||
output_vbox.append(&ui, add_label.clone(), LayoutStrategy::Compact);
|
|
||||||
output_vbox.append(&ui, sub_label.clone(), LayoutStrategy::Compact);
|
|
||||||
output_vbox.append(&ui, text_label.clone(), LayoutStrategy::Compact);
|
|
||||||
output_vbox.append(&ui, bigtext_label.clone(), LayoutStrategy::Stretchy);
|
|
||||||
output_group.set_child(&ui, output_vbox);
|
|
||||||
|
|
||||||
(output_group, add_label, sub_label, text_label, bigtext_label)
|
|
||||||
};
|
|
||||||
|
|
||||||
// This horizontal box will arrange the two groups of controls.
|
|
||||||
let mut hbox = HorizontalBox::new(&ui);
|
|
||||||
hbox.append(&ui, input_group, LayoutStrategy::Stretchy);
|
|
||||||
hbox.append(&ui, output_group, LayoutStrategy::Stretchy);
|
|
||||||
|
|
||||||
// The window allows all constituent components to be displayed.
|
|
||||||
let mut window = Window::new(&ui, "Input Output Test", 300, 150, WindowType::NoMenubar);
|
|
||||||
window.set_child(&ui, hbox);
|
|
||||||
window.show(&ui);
|
|
||||||
|
|
||||||
// These on_changed functions allow updating the application state when a
|
|
||||||
// control changes its value.
|
|
||||||
|
|
||||||
slider.on_changed(&ui, {
|
|
||||||
let state = state.clone();
|
|
||||||
move |val| { state.borrow_mut().slider_val = val; }
|
|
||||||
});
|
|
||||||
|
|
||||||
spinner.on_changed(&ui, {
|
|
||||||
let state = state.clone();
|
|
||||||
move |val| { state.borrow_mut().spinner_val = val; }
|
|
||||||
});
|
|
||||||
|
|
||||||
entry.on_changed(&ui, {
|
|
||||||
let state = state.clone();
|
|
||||||
move |val| { state.borrow_mut().entry_val = val; }
|
|
||||||
});
|
|
||||||
|
|
||||||
multi.on_changed(&ui, {
|
|
||||||
let state = state.clone();
|
|
||||||
move |val| { state.borrow_mut().multi_val = val; }
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// Rather than just invoking ui.run(), using EventLoop gives a lot more control
|
|
||||||
// over the user interface event loop.
|
|
||||||
// Here, the on_tick() callback is used to update the view against the state.
|
|
||||||
let mut event_loop = ui.event_loop();
|
|
||||||
event_loop.on_tick(&ui, {
|
|
||||||
let ui = ui.clone();
|
|
||||||
let mut add_label = add_label.clone();
|
|
||||||
let mut sub_label = sub_label.clone();
|
|
||||||
let mut text_label = text_label.clone();
|
|
||||||
let mut bigtext_label = bigtext_label.clone();
|
|
||||||
move || {
|
|
||||||
let state = state.borrow();
|
|
||||||
|
|
||||||
// Update all the labels
|
|
||||||
add_label.set_text(&ui, &format!("Added: {}", state.slider_val + state.spinner_val));
|
|
||||||
sub_label.set_text(&ui, &format!("Subtracted: {}", state.slider_val - state.spinner_val));
|
|
||||||
text_label.set_text(&ui, &format!("Text: {}", state.entry_val));
|
|
||||||
bigtext_label.set_text(&ui, &format!("Multiline Text: {}", state.multi_val));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
event_loop.run(&ui);
|
|
||||||
}
|
}
|
||||||
|
|||||||
58
src/ui_egui.rs
Normal file
58
src/ui_egui.rs
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
use eframe::{egui, epi};
|
||||||
|
use std::process::Command;
|
||||||
|
use crate::{Sound, file_manager};
|
||||||
|
|
||||||
|
pub struct State {
|
||||||
|
device: rodio::Device,
|
||||||
|
sounds: Vec<Sound>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for State {
|
||||||
|
fn default() -> Self {
|
||||||
|
let device = rodio::default_output_device().unwrap();
|
||||||
|
let mut sounds = crate::get_sounds(&device);
|
||||||
|
|
||||||
|
Self { device, sounds }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl epi::App for State {
|
||||||
|
fn update(&mut self, ctx: &egui::CtxRef, _frame: &mut epi::Frame<'_>) {
|
||||||
|
let State { device: _device, sounds} = self;
|
||||||
|
|
||||||
|
for sound in sounds.into_iter() {
|
||||||
|
if sound.volume > 0.0 {
|
||||||
|
sound.sink.set_volume(sound.volume as f32);
|
||||||
|
sound.sink.play();
|
||||||
|
} else {
|
||||||
|
sound.sink.pause();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
egui::CentralPanel::default().show(ctx, |ui| {
|
||||||
|
for sound in sounds {
|
||||||
|
ui.separator();
|
||||||
|
ui.label(&sound.name);
|
||||||
|
|
||||||
|
ui.add(
|
||||||
|
egui::Slider::new(
|
||||||
|
&mut sound.volume,
|
||||||
|
0.0..=1.0
|
||||||
|
).show_value(false)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
ui.separator();
|
||||||
|
|
||||||
|
if ui.button("manage sounds").clicked() {
|
||||||
|
let mut file_manager = Command::new(file_manager());
|
||||||
|
file_manager.arg(crate::get_data_dir());
|
||||||
|
file_manager.output().unwrap();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"lull"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user