Compare commits

..

No commits in common. "02fbd15f44f9bf8754ffa160ec392e42bb167325" and "bc19df18cb3beef7d2e85bc1a03c7aabb2e6f0c0" have entirely different histories.

7 changed files with 39 additions and 202 deletions

1
Cargo.lock generated
View File

@ -1569,7 +1569,6 @@ dependencies = [
"guillotiere",
"iced_graphics",
"iced_native",
"image",
"log",
"raw-window-handle 0.3.4",
"wgpu",

View File

@ -26,7 +26,7 @@ version = "0.4.0"
[dependencies.iced]
# Display windows & graphics
features = ["canvas", "image"]
features = ["canvas"]
version = "0.3.0"
[dependencies.iced_futures]

View File

@ -1,5 +1,5 @@
use crate::load_song::load_song;
use crate::editor::Editor;
use crate::lyrics::Lyrics;
use crate::file_select::FileSelector;
use rfd::AsyncFileDialog;
use std::path::PathBuf;
@ -17,9 +17,8 @@ use iced_native::window;
use iced_native::event::Event;
pub struct DelyriumApp {
lyrics_component: Option<Editor>,
lyrics_component: Option<Lyrics>,
file_selector: FileSelector,
size: (u32, u32),
}
#[derive(Clone, Debug)]
@ -33,7 +32,6 @@ pub enum Message {
Tick,
PromptForFile,
FileOpened(PathBuf),
Resized(u32, u32),
Null,
}
@ -47,7 +45,6 @@ impl Application for DelyriumApp {
DelyriumApp {
lyrics_component: None,
file_selector: FileSelector::default(),
size: (0, 0),
},
Command::none(),
)
@ -89,7 +86,7 @@ impl Application for DelyriumApp {
Message::FileOpened(path) => {
println!("File opened! {}", path.display());
let song = load_song(&path).unwrap().format;
self.lyrics_component = Some(Editor::new(song, self.size));
self.lyrics_component = Some(Lyrics::new(song));
},
Message::PromptForFile => {
let task = async {
@ -106,12 +103,6 @@ impl Application for DelyriumApp {
};
command = Some(task.into());
},
Message::Resized(w, h) => {
self.size = (w, h);
if let Some(lyrics) = self.lyrics_component.as_mut() {
lyrics.notify_resized(w, h);
}
}
Message::Null => { },
}
@ -143,9 +134,6 @@ impl Application for DelyriumApp {
Event::Window(window::Event::FileDropped(path)) => {
Some(Message::FileOpened(path))
},
Event::Window(window::Event::Resized{width,height}) => {
Some(Message::Resized(width,height))
},
_ => { None }
}
});

View File

@ -1,81 +0,0 @@
use crate::lyrics::Lyric;
use crate::lyrics::Lyrics;
use crate::app::Message;
use iced::Element;
use crate::styles::Theme;
use std::sync::Arc;
use iced::Container;
use iced::Row;
use crate::palette::Palette;
use crate::load_song::extract_cover;
use crate::peripheries::Periphery;
use iced::Length;
use iced::Align;
use symphonia::core::formats::FormatReader;
use image::GenericImageView;
pub struct Editor {
lyrics: Lyrics,
theme: Theme,
song: Box<dyn FormatReader>,
left_peri: Periphery,
rite_peri: Periphery,
}
impl Editor {
pub fn new(mut song: Box<dyn FormatReader>, size: (u32, u32)) -> Self {
let cover = extract_cover(song.as_mut());
let theme = cover.as_ref()
.map(|cover| {
Theme::from_palette(
Palette::generate(&cover)
)
}).unwrap_or_else(|| Theme::default());
let cover = cover.expect("TODO");
let cover = Arc::new(cover.blur((cover.width() / 50) as f32));
let left_peri = Periphery::new(cover.clone(), true, size);
let rite_peri = Periphery::new(cover, false, size);
Self {
lyrics: Lyrics::new(),
song, theme, left_peri, rite_peri,
}
}
// TODO: work on untangling this mess
pub fn insert_text(&mut self, text: String) {
self.lyrics.insert_text(text);
}
pub fn update_line(&mut self, new_content: String, line_no: usize) {
self.lyrics.update_line(new_content, line_no);
}
pub fn advance_line(&mut self, current_line: usize) {
self.lyrics.advance_line(current_line);
}
pub fn current_line_mut(&mut self) -> (usize, &mut Lyric) {
self.lyrics.current_line_mut()
}
pub fn notify_resized(&mut self, w: u32, h: u32) {
self.left_peri.notify_resized(w, h);
self.rite_peri.notify_resized(w, h);
}
pub fn view(&mut self) -> Element<Message> {
Container::new(
Row::new()
.push(self.left_peri.view())
.push(self.lyrics.view(self.theme))
.push(self.rite_peri.view())
)
.align_y(Align::Center)
.style(self.theme)
.height(Length::Fill)
.into()
}
}

View File

@ -1,25 +1,43 @@
use iced::Length;
use iced::Container;
use iced::Row;
use crate::palette::Palette;
use crate::load_song::extract_cover;
use iced::Element;
use crate::styles::Theme;
use crate::app::Message;
use iced::Align;
use iced::Length;
use iced::widget::text_input::{self, TextInput};
use iced::widget::scrollable::{self, Scrollable};
use iced::Align;
use symphonia::core::formats::FormatReader;
pub struct Lyrics {
lines: Vec<Lyric>,
scroll_state: scrollable::State,
theme: Theme,
song: Box<dyn FormatReader>,
}
impl Lyrics {
pub fn new() -> Lyrics {
pub fn new(mut song: Box<dyn FormatReader>) -> Self {
let mut lyric = Lyric::new();
lyric.select();
Self {
let cover = extract_cover(song.as_mut());
let theme = cover.map(|cover| {
Theme::from_palette(
Palette::generate(&cover)
)
}).unwrap_or_else(|| Theme::default());
Lyrics {
lines: vec![lyric],
scroll_state: scrollable::State::new(),
song, theme,
}
}
@ -84,20 +102,27 @@ impl Lyrics {
.expect("no line currently selected")
}
pub fn view(&mut self, theme: Theme) -> Element<Message> {
pub fn view(&mut self) -> Element<Message> {
let is_sole_line = self.lines.len() == 1;
self.lines.iter_mut()
let lyrics = self.lines.iter_mut()
.enumerate()
.map(|(i, l)| l.view(is_sole_line, i, theme))
.map(|(i, l)| l.view(is_sole_line, i, self.theme))
.fold(Scrollable::new(&mut self.scroll_state), |s, l| s.push(l))
.width(Length::Fill)
.align_items(Align::Center)
.into()
.align_items(Align::Center);
Container::new(
Row::new()
.push(lyrics)
)
.align_y(Align::Center)
.style(self.theme)
.height(Length::Fill)
.into()
}
}
#[derive(Clone, Debug)]
pub struct Lyric {
state: text_input::State,

View File

@ -7,8 +7,6 @@ mod lyrics;
mod styles;
mod file_select;
mod load_song;
mod peripheries;
mod editor;
fn main() {
app::DelyriumApp::run(Settings::default()).unwrap();

View File

@ -1,92 +0,0 @@
use image::imageops::crop_imm;
use image::ImageBuffer;
use image::Bgra;
use iced::Length;
use iced::Element;
use crate::app::Message;
use std::sync::Arc;
use iced::Image;
use image::imageops::FilterType;
use image::DynamicImage;
use image::GenericImageView;
use iced::widget::image::Handle;
#[derive(Clone, Debug)]
pub struct Periphery {
left: bool,
source_image: Arc<DynamicImage>,
upscaled: (u32, ImageBuffer<Bgra<u8>, Vec<u8>>),
image: Handle,
w: u16,
h: u16,
}
impl Periphery {
pub fn new(source_image: Arc<DynamicImage>, left: bool, (w, h): (u32, u32)) -> Self {
let mut p = Periphery {
image: Handle::from_pixels(0, 0, Vec::new()),
upscaled: (0, ImageBuffer::<Bgra<u8>, Vec<u8>>::from_raw(0, 0, Vec::new()).unwrap()),
w: 0, h: 0,
left, source_image
};
p.notify_resized(w, h);
p
}
pub fn notify_resized(&mut self, w: u32, h: u32) {
let body_width = (w / 5).max(450);
let w = w.saturating_sub(body_width) / 2;
self.w = w as u16;
self.h = h as u16;
if w == 0 {
return;
}
let h_scale_needed = w as f32 / self.source_image.width() as f32;
let v_scale_needed = h as f32 / self.source_image.height() as f32;
let scale = f32::max(h_scale_needed, v_scale_needed);
let nh = (scale * (self.source_image.height() as f32)).ceil() as u32;
let nw = (scale * (self.source_image.width() as f32)).ceil() as u32;
self.upscaled = (
w,
self.source_image.resize(nw, nh, FilterType::Nearest)
.into_bgra8()
);
let ratio = w as f32 / h as f32;
let source_ratio = self.source_image.width() as f32 / self.source_image.height() as f32;
let (nw, nh) = if ratio < source_ratio {
(
(self.upscaled.1.height() as f32 * ratio) as u32,
self.upscaled.1.height()
)
} else {
(
self.upscaled.1.width(),
(self.upscaled.1.width() as f32 / ratio) as u32
)
};
let h_shift_mul = if self.left { -1 } else { 1 };
let image = crop_imm(
&self.upscaled.1,
(((self.upscaled.1.width() / 2) as i32 + h_shift_mul * (nw as i32)).max(0) as u32).min(self.upscaled.1.width() - nw),
self.upscaled.1.height().saturating_sub(nh) / 2,
w, h,
);
self.image = Handle::from_pixels(image.width(), image.height(), image.to_image().into_raw());
}
pub fn view(&mut self) -> Element<Message> {
Image::new(self.image.clone())
.width(Length::Units(self.w))
.height(Length::Units(self.h))
.into()
}
}