reunify ArrangerView

This commit is contained in:
🪞👃🪞 2024-07-08 21:32:20 +03:00
parent b01863dfdc
commit 5a2261d146
2 changed files with 132 additions and 177 deletions

View file

@ -20,94 +20,46 @@ render!(App |self, buf, area| {
let Rect { x, y, width, height } = area; let Rect { x, y, width, height } = area;
let transport = TransportView::new(self).render(buf, area)?; let transport = TransportView::new(self).render(buf, area)?;
let y = y + transport.height; let y = y + transport.height;
let arranger = if self.arranger_mode { let arranger = Rect { x, y, width, height };
self.draw_arranger_horizontal(buf, Rect { let arranger = ArrangerView::new(&self, !self.arranger_mode).render(buf, arranger)?;
x, y, width, height: height / 3 let style_entered = if self.entered {
})?
} else {
self.draw_arranger_vertical(buf, Rect {
x, y, width, height: height / 3
})?
};
if self.section == AppSection::Arranger {
QuarterV(if self.entered {
Style::default().green() Style::default().green()
} else { } else {
Style::default().green().dim() Style::default().green().dim()
}).draw(buf, arranger) };
if self.section == AppSection::Arranger {
QuarterV(style_entered).draw(buf, arranger)
} }
let y = y + arranger.height; let y = y + arranger.height;
if self.track_cursor > 0 { if self.track_cursor > 0 {
let chain = ChainView::new(&self, false).render(buf, Rect { let chain = Rect { x, y: y + height - height / 3 - 1, width, height: height / 3 };
x, y: y + height - height / 3 - 1, width, height: height / 3 let chain = ChainView::new(&self, false).render(buf, chain)?;
})?;
if self.section == AppSection::Chain { if self.section == AppSection::Chain {
QuarterV(if self.entered { QuarterV(style_entered).draw(buf, Rect { width, ..chain })
Style::default().green()
} else {
Style::default().green().dim()
}).draw(buf, Rect { width, ..chain })
} }
let phrase = SequencerView::new(&self).render(buf, Rect { let phrase = Rect { x, y, width, height: height - height / 3 };
x, y, width, height: height - height / 3 let phrase = SequencerView::new(&self).render(buf, phrase)?;
})?;
if self.section == AppSection::Sequencer { if self.section == AppSection::Sequencer {
QuarterV(if self.entered { QuarterV(style_entered).draw(buf, phrase)
Style::default().green()
} else {
Style::default().green().dim()
}).draw(buf, phrase)
} }
chain
} else { } else {
self.draw_mixer(buf, Rect { let area = Rect { x, y, width, height };
x, y, width, height let mut x = area.x;
})? for track in self.tracks.iter() {
track.name.blit(buf, x + 1, area.y, Some(Style::default().white().bold()));
let chain = Rect { x, y: area.y + 1, width: width, height: height - y - 1 };
x = x + ChainView {
focused: self.section == AppSection::Chain,
track: Some(track),
vertical: true,
}
.render(buf, chain)?
.width
.max(track.name.len() as u16);
}
}; };
if let Some(ref modal) = self.modal { if let Some(ref modal) = self.modal {
modal.render(buf, area)?; modal.render(buf, area)?;
} }
Ok(area) Ok(area)
}); });
impl App {
fn draw_mixer (&self, buf: &mut Buffer, area: Rect) -> Usually<Rect> {
let mut x = area.x;
for track in self.tracks.iter() {
track.name.blit(buf, x + 1, area.y, Some(Style::default().white().bold()));
x = x + ChainView {
focused: self.section == AppSection::Chain,
track: Some(track),
vertical: true,
}
.render(buf, Rect {
x, y: area.y + 1, width: area.width, height: area.height - area.y - 1
})?
.width
.max(track.name.len() as u16);
}
Ok(area)
}
fn draw_arranger_horizontal (&self, buf: &mut Buffer, area: Rect) -> Usually<Rect> {
ArrangerViewHorizontal {
buf,
area,
focused: self.section == AppSection::Arranger,
entered: self.entered,
scenes: &self.scenes,
tracks: &self.tracks,
cursor: &(self.track_cursor, self.scene_cursor),
}.draw()
}
fn draw_arranger_vertical (&self, buf: &mut Buffer, area: Rect) -> Usually<Rect> {
ArrangerViewVertical {
buf,
area,
focused: self.section == AppSection::Arranger,
entered: self.entered,
scenes: &self.scenes,
tracks: &self.tracks,
cursor: &(self.track_cursor, self.scene_cursor),
}.draw()
}
}

View file

@ -1,24 +1,58 @@
use crate::core::*; use crate::core::*;
use crate::model::*; use crate::model::*;
use crate::view::*; use crate::view::*;
pub struct ArrangerViewVertical<'a> {
pub buf: &'a mut Buffer, pub struct ArrangerView<'a> {
pub area: Rect,
pub scenes: &'a[Scene], pub scenes: &'a[Scene],
pub tracks: &'a[Track], pub tracks: &'a[Track],
pub cursor: &'a(usize, usize), pub cursor: (usize, usize),
pub focused: bool, pub focused: bool,
pub entered: bool, pub entered: bool,
pub vertical: bool,
} }
impl<'a> ArrangerViewVertical<'a> {
pub fn size (&self) -> (u16, u16) { impl<'a> ArrangerView<'a> {
unimplemented!(); pub fn new (app: &'a App, vertical: bool) -> Self {
Self {
focused: app.section == AppSection::Arranger,
entered: app.entered,
scenes: &app.scenes,
tracks: &app.tracks,
cursor: (app.track_cursor, app.scene_cursor),
vertical
} }
pub fn draw (&mut self) -> Usually<Rect> { }
self.area.height = self.scenes.len() as u16 + 3; fn track_names (&self) -> Vec<&'a str> {
let Rect { x, y, width, height } = self.area; let mut track_names = vec!["Mix"];
for track in self.tracks.iter() {
track_names.push(track.name.as_str());
}
track_names
}
fn track_widths (&self) -> Vec<u16> {
self.track_names()
.iter()
.map(|name|(name.len() as u16).max(10) + 3)
.collect()
}
}
impl<'a> Render for ArrangerView<'a> {
fn render (&self, buf: &mut Buffer, area: Rect) -> Usually<Rect> {
if self.vertical {
self.draw_vertical(buf, area)
} else {
self.draw_horizontal(buf, area)
}
}
}
impl<'a> ArrangerView<'a> {
fn draw_vertical (&self, buf: &mut Buffer, mut area: Rect) -> Usually<Rect> {
area.height = self.scenes.len() as u16 + 3;
let Rect { x, y, width, height } = area;
//let style = Some(Style::default().green().dim()); //let style = Some(Style::default().green().dim());
fill_bg(&mut self.buf, self.area, if self.focused && self.entered { fill_bg(buf, area, if self.focused && self.entered {
Color::Rgb(25, 60, 15) Color::Rgb(25, 60, 15)
} else if self.focused { } else if self.focused {
Color::Rgb(20, 45, 5) Color::Rgb(20, 45, 5)
@ -26,9 +60,9 @@ impl<'a> ArrangerViewVertical<'a> {
Color::Reset Color::Reset
}); });
if self.focused && self.entered { if self.focused && self.entered {
QuarterV(Style::default().green().dim()).draw(self.buf, Rect { x, y, width, height }); QuarterV(Style::default().green().dim()).draw(buf, Rect { x, y, width, height });
//lozenge_left(self.buf, x, y, height, style); //lozenge_left(buf, x, y, height, style);
//lozenge_right(self.buf, x + width - 1, y, height, style); //lozenge_right(buf, x + width - 1, y, height, style);
} }
let bg_color = if self.focused && self.entered { let bg_color = if self.focused && self.entered {
Color::Rgb(30, 90, 25) Color::Rgb(30, 90, 25)
@ -45,7 +79,7 @@ impl<'a> ArrangerViewVertical<'a> {
} }
if focus_column { if focus_column {
fill_bg( fill_bg(
&mut self.buf, buf,
Rect { x: x2, y, width: *w, height }, Rect { x: x2, y, width: *w, height },
bg_color bg_color
); );
@ -61,7 +95,7 @@ impl<'a> ArrangerViewVertical<'a> {
} }
let w = (title.len() as u16).max(10); let w = (title.len() as u16).max(10);
fill_bg( fill_bg(
&mut self.buf, buf,
Rect { x: x2, y: if self.cursor.1 == 0 { Rect { x: x2, y: if self.cursor.1 == 0 {
y2 y2
} else { } else {
@ -70,13 +104,13 @@ impl<'a> ArrangerViewVertical<'a> {
bg_color bg_color
); );
if i == 0 { if i == 0 {
self.scenes(x2+1, y2+2); self.vertical_scenes(buf, x2+1, y2+2, area.height);
} else if i < columns.len() { } else if i < columns.len() {
self.clips(x2+1, y2+2, i - 1); self.vertical_clips(buf, x2+1, y2+2, area.height, i - 1);
}; };
let style = Some(highlight(self.focused, focus_column).bold()); let style = Some(highlight(self.focused, focus_column).bold());
if i > 0 { if i > 0 {
"".blit(self.buf, x2, y2, Some(if self.tracks[i-1].recording { "".blit(buf, x2, y2, Some(if self.tracks[i-1].recording {
Style::default().red() Style::default().red()
} else if self.tracks[i-1].monitoring { } else if self.tracks[i-1].monitoring {
Style::default().green() Style::default().green()
@ -84,11 +118,11 @@ impl<'a> ArrangerViewVertical<'a> {
Style::default().black() Style::default().black()
})); }));
} }
title.blit(self.buf, x2+2, y2, style); title.blit(buf, x2+2, y2, style);
x2 = x2 + w + 3; x2 = x2 + w + 3;
} }
fill_bg( fill_bg(
&mut self.buf, buf,
Rect { x: x2, y: if self.cursor.1 == 0 { Rect { x: x2, y: if self.cursor.1 == 0 {
y2 y2
} else { } else {
@ -97,68 +131,54 @@ impl<'a> ArrangerViewVertical<'a> {
bg_color bg_color
); );
if self.focused { if self.focused {
HELP.blit(self.buf, x + 2, y + height - 1, Some(Style::default().dim())); HELP.blit(buf, x + 2, y + height - 1, Some(Style::default().dim()));
} }
Ok(self.area) Ok(area)
}
fn track_names (&self) -> Vec<&'a str> {
let mut track_names = vec!["Mix"];
for track in self.tracks.iter() {
track_names.push(track.name.as_str());
}
track_names
} }
fn track_widths (&self) -> Vec<u16> { fn vertical_scenes (&self, buf: &mut Buffer, x: u16, y: u16, height: u16) -> u16 {
self.track_names()
.iter()
.map(|name|(name.len() as u16).max(10) + 3)
.collect()
}
fn scenes (&mut self, x: u16, y: u16) -> u16 {
let mut index = 0usize; let mut index = 0usize;
loop { loop {
if index >= self.scenes.len() { if index >= self.scenes.len() {
break break
} }
if y + index as u16 >= self.area.height { if y + index as u16 >= height {
break break
} }
self.scene(x, y + index as u16, index); self.vertical_scene(buf, x, y + index as u16, index);
index = index + 1; index = index + 1;
} }
longest_scene_name(&self.scenes) longest_scene_name(&self.scenes)
} }
fn scene (&mut self, x: u16, y: u16, index: usize) { fn vertical_scene (&self, buf: &mut Buffer, x: u16, y: u16, index: usize) {
if let Some(scene) = self.scenes.get(index) { if let Some(scene) = self.scenes.get(index) {
let style = Some(highlight( let style = Some(highlight(
self.focused, self.focused,
(0 == self.cursor.0) && (index + 1 == self.cursor.1) (0 == self.cursor.0) && (index + 1 == self.cursor.1)
).bold()); ).bold());
"".blit(self.buf, x, y, style); "".blit(buf, x, y, style);
scene.name.blit(self.buf, x + 2, y, style); scene.name.blit(buf, x + 2, y, style);
} }
} }
fn clips (&mut self, x: u16, y: u16, track: usize) -> u16 { fn vertical_clips (&self, buf: &mut Buffer, x: u16, y: u16, height: u16, track: usize) -> u16 {
let mut index = 0; let mut index = 0;
let mut width = 10; let mut width = 10;
loop { loop {
if index >= self.scenes.len() { if index >= self.scenes.len() {
break break
} }
if y + index as u16 >= self.area.height { if y + index as u16 >= height {
break break
} }
width = 10.max(self.clip(x, y, track, index)); width = 10.max(self.vertical_clip(buf, x, y, track, index));
index = index + 1; index = index + 1;
} }
width width
} }
fn clip (&mut self, x: u16, y: u16, track: usize, index: usize) -> u16 { fn vertical_clip (&self, buf: &mut Buffer, x: u16, y: u16, track: usize, index: usize) -> u16 {
if let Some(scene) = self.scenes.get(index) { if let Some(scene) = self.scenes.get(index) {
let hi = (track + 1 == self.cursor.0) && let hi = (track + 1 == self.cursor.0) &&
(index + 1 == self.cursor.1); (index + 1 == self.cursor.1);
@ -178,42 +198,20 @@ impl<'a> ArrangerViewVertical<'a> {
} else { } else {
format!(" ·········") format!(" ·········")
}; };
label.blit(self.buf, x, y + index, style); label.blit(buf, x, y + index, style);
label.len() as u16 label.len() as u16
} else { } else {
0u16 0u16
} }
} }
fn separator_v (&mut self, x: u16, hi: bool) {
let style = Some(highlight(self.focused, hi));
for y in self.area.y+1..self.area.y+self.area.height-1 {
"".blit(self.buf, x, y, style);
}
}
} }
pub struct ArrangerViewHorizontal<'a> { impl<'a> ArrangerView<'a> {
pub buf: &'a mut Buffer, fn draw_horizontal (&self, buf: &mut Buffer, mut area: Rect) -> Usually<Rect> {
pub area: Rect, area.height = self.tracks.len() as u16 * 2 + 2;
pub scenes: &'a[Scene],
pub tracks: &'a[Track],
pub cursor: &'a(usize, usize),
pub focused: bool,
pub entered: bool,
}
impl<'a> ArrangerViewHorizontal<'a> {
pub fn size (&self) -> (u16, u16) {
let w = (4 + longest_track_name(&self.tracks) + self.scenes.len() as u16 * 10) as u16;
let h = (2 + self.tracks.len()) as u16;
(w, h)
}
pub fn draw (&mut self) -> Usually<Rect> {
self.area.height = self.tracks.len() as u16 * 2 + 2;
//let style = Some(Style::default().green().dim()); //let style = Some(Style::default().green().dim());
let Rect { x, y, width, height } = self.area; let Rect { x, y, width, height } = area;
fill_bg(&mut self.buf, self.area, if self.focused && self.entered { fill_bg(buf, area, if self.focused && self.entered {
Color::Rgb(25, 60, 15) Color::Rgb(25, 60, 15)
} else if self.focused { } else if self.focused {
Color::Rgb(20, 45, 5) Color::Rgb(20, 45, 5)
@ -221,63 +219,68 @@ impl<'a> ArrangerViewHorizontal<'a> {
Color::Reset Color::Reset
}); });
if self.focused && self.entered { if self.focused && self.entered {
//RailV::draw(self.buf, Rect { x, y, width, height }); //RailV::draw(buf, Rect { x, y, width, height });
QuarterV(Style::default().green().dim()).draw(self.buf, Rect { x, y, width, height }); QuarterV(Style::default().green().dim()).draw(buf, Rect { x, y, width, height });
//lozenge_left(self.buf, x, y, height, style); //lozenge_left(buf, x, y, height, style);
//lozenge_right(self.buf, x + width - 1, y, height, style); //lozenge_right(buf, x + width - 1, y, height, style);
} }
let mut x2 = 0; let mut x2 = 0;
self.draw_tracks(&mut x2); self.horizontal_tracks(buf, area, &mut x2);
x2 = x2 + 1; x2 = x2 + 1;
self.draw_scenes(&mut x2); self.horizontal_scenes(buf, area, &mut x2);
if self.focused { if self.focused {
HELP.blit(self.buf, x + 2, y + height - 1, Some(Style::default().dim())); HELP.blit(buf, x + 2, y + height - 1, Some(Style::default().dim()));
} }
Ok(self.area) Ok(area)
} }
fn draw_tracks (&mut self, x2: &mut u16) { fn horizontal_size (&self) -> (u16, u16) {
let w = (4 + longest_track_name(&self.tracks) + self.scenes.len() as u16 * 10) as u16;
let h = (2 + self.tracks.len()) as u16;
(w, h)
}
fn horizontal_tracks (&self, buf: &mut Buffer, area: Rect, x2: &mut u16) {
let style = Some(Style::default().bold().not_dim().white()); let style = Some(Style::default().bold().not_dim().white());
let Rect { x, y, height, .. } = self.area; let Rect { x, y, height, .. } = area;
"Mix".blit(self.buf, x + 1, y, style); "Mix".blit(buf, x + 1, y, style);
let style = Some(Style::default().bold()); let style = Some(Style::default().bold());
for (i, track) in self.tracks.iter().enumerate() { for (i, track) in self.tracks.iter().enumerate() {
let y2 = y + 1 + i as u16 * 2; let y2 = y + 1 + i as u16 * 2;
let label = format!(" {:8}", &track.name); let label = format!(" {:8}", &track.name);
label.blit(self.buf, x + 1, y2, style); label.blit(buf, x + 1, y2, style);
"RDM".blit(self.buf, x + 10, y2, Some(Style::default().dim())); "RDM".blit(buf, x + 10, y2, Some(Style::default().dim()));
" 0.0dB".blit(self.buf, x + 15, y2, Some(Style::default().dim())); " 0.0dB".blit(buf, x + 15, y2, Some(Style::default().dim()));
*x2 = (*x2).max(label.len() as u16 + 13); *x2 = (*x2).max(label.len() as u16 + 13);
} }
"".blit(self.buf, x + *x2, y, style); "".blit(buf, x + *x2, y, style);
for y in y+1..y+height-1 { for y in y+1..y+height-1 {
"".blit(self.buf, x + *x2, y, style); "".blit(buf, x + *x2, y, style);
} }
//"╵".blit(self.buf, x + x2, y+height-1, style); //"╵".blit(buf, x + x2, y+height-1, style);
} }
fn draw_scenes (&mut self, x2: &mut u16) { fn horizontal_scenes (&self, buf: &mut Buffer, area: Rect, x2: &mut u16) {
let Rect { x, y, height, .. } = self.area; let Rect { x, y, height, .. } = area;
let bold = Some(Style::default().bold()); let bold = Some(Style::default().bold());
let sep = Some(Style::default().dim()); let sep = Some(Style::default().dim());
for scene in self.scenes.iter() { for scene in self.scenes.iter() {
let mut x3 = scene.name.len() as u16; let mut x3 = scene.name.len() as u16;
scene.name.blit(self.buf, x + *x2, y, bold); scene.name.blit(buf, x + *x2, y, bold);
for (i, clip) in scene.clips.iter().enumerate() { for (i, clip) in scene.clips.iter().enumerate() {
if let Some(clip) = clip { if let Some(clip) = clip {
if let Some(phrase) = self.tracks[i].phrases.get(*clip) { if let Some(phrase) = self.tracks[i].phrases.get(*clip) {
let y2 = y + 1 + i as u16 * 2; let y2 = y + 1 + i as u16 * 2;
let label = format!("{}", &phrase.name); let label = format!("{}", &phrase.name);
label.blit(self.buf, x + *x2, y2, None); label.blit(buf, x + *x2, y2, None);
x3 = x3.max(label.len() as u16) x3 = x3.max(label.len() as u16)
} }
} }
} }
*x2 = *x2 + x3; *x2 = *x2 + x3;
"".blit(self.buf, x + *x2, y, sep); "".blit(buf, x + *x2, y, sep);
for y in y+1..y+height-1 { for y in y+1..y+height-1 {
"".blit(self.buf, x + *x2, y, sep); "".blit(buf, x + *x2, y, sep);
} }
"".blit(self.buf, x + *x2, y+height-1, sep); "".blit(buf, x + *x2, y+height-1, sep);
*x2 = *x2 + 1; *x2 = *x2 + 1;
} }
} }