Compare commits

..

5 commits

Author SHA1 Message Date
i do not exist
f57ca9af84 reenable scene/track navigation
Some checks are pending
/ build (push) Waiting to run
2026-09-15 17:44:18 +03:00
i do not exist
f353cc0388 fix button_2/button_3 2026-09-15 17:44:10 +03:00
i do not exist
8cb41fe4d8 add field to status bar 2026-09-15 17:43:52 +03:00
i do not exist
a7ba45d254 remove 'select' feature flag 2026-09-15 17:43:38 +03:00
i do not exist
7eef0cfb62 finally adequate performance 2026-09-15 00:41:05 +03:00
11 changed files with 134 additions and 62 deletions

View file

@ -59,7 +59,7 @@ hotpath = ["hotpath/hotpath"]
hotpath-cpu = ["hotpath/hotpath-cpu"]
hotpath-alloc = ["hotpath/hotpath-alloc"]
arranger = ["port", "editor", "sequencer", "track", "scene", "clip", "select"]
arranger = ["port", "editor", "sequencer", "track", "scene", "clip"]
browse = []
clap = []
cli = ["dep:clap"]
@ -75,7 +75,6 @@ pool = []
port = []
sampler = ["port", "meter", "mixer", "browse", "symphonia", "wavers"]
scene = []
select = []
sequencer = ["port", "clock", "uuid", "pool"]
sf2 = []
track = []

View file

@ -53,7 +53,7 @@ prof +ARGS="new":
tracy +ARGS="new":
{{release}} -F prof {{ARGS}}
samply +ARGS="new":
samply record target/release/tek {{ARGS}}
samply record -r 8987 target/release/tek {{ARGS}}
release := "reset && cargo run --release"
release +ARGS="new":

View file

@ -38,8 +38,8 @@ pub fn config_load_kind <C: AsRef<Config>, L: Language> (config: C, src: L) -> U
//if let Some(tail) = src.tail()? {
match src.head()? {
Some("mode") => modes_add(&config.as_ref().modes, src.tail()),
Some("keys") => load_bind(&config.as_ref().binds, src.tail()),
Some("view") => load_view(&config.as_ref().views, src.tail()),
Some("keys") => binds_add(&config.as_ref().binds, src.tail()),
Some("view") => views_add(&config.as_ref().views, src.tail()),
_ => return Err(format!("Config::load: expected view/keys/mode expr, got: {src:?}").into())
}?;
//}
@ -140,8 +140,8 @@ pub fn mode_add <T: AsMut<Mode>> (mut mode: T, dsl: impl Language) -> Usually<T>
})
}
pub fn load_bind <'a> (binds: &Binds, expr: impl Language) -> UsuallyRef<'a, ()> {
//println!("\n\rload_bind: {expr:?}");
pub fn binds_add <'a> (binds: &Binds, expr: impl Language) -> UsuallyRef<'a, ()> {
//println!("\n\rbinds_add: {expr:?}");
let name = expr.head()?.ok_or("bind: missing name")?;
let body = expr.tail()?.unwrap_or("");
binds.try_write().unwrap().insert(name.into(), {
@ -164,10 +164,10 @@ pub fn load_bind <'a> (binds: &Binds, expr: impl Language) -> UsuallyRef<'a, ()>
// TODO
return Ok(())
} else {
return Err(format!("load_bind: invalid key: {:?}", item.expr()?.head()?).into())
return Err(format!("binds_add: invalid key: {:?}", item.expr()?.head()?).into())
}
} else {
return Err(format!("load_bind: unexpected: {item:?}").into())
return Err(format!("binds_add: unexpected: {item:?}").into())
})?;
map
});
@ -177,15 +177,16 @@ pub fn load_bind <'a> (binds: &Binds, expr: impl Language) -> UsuallyRef<'a, ()>
/// Configuration: mode, view, and bind definitions.
///
/// ```
/// let source = stringify!(
/// use ::{std::sync::Arc, tek::{Config, modes_add, Mode}};
/// let config: Config = Default::default();
/// modes_add(&config.modes, stringify!(
/// (mode :menu (name Menu)
/// (info Mode selector.) (keys :axis/y :confirm)
/// (view (bg (g 0) (bsp/s :ports/out
/// (bsp/n :ports/in
/// (bg (g 30) (bsp/s (fixed/y 7 :logo)
/// (fill :dialog/menu)))))))));
/// let config: tek::Config = tek::modes_add(tek::Config::default(), source).unwrap();
/// let mode: tek::Mode = config.get_mode(":menu").unwrap();
/// (fill :dialog/menu)))))))))).unwrap();
/// let mode: Arc<Mode> = config.get_mode(":menu").unwrap();
/// ```
#[derive(Default, Debug)]
pub struct Config {
@ -511,7 +512,7 @@ impl View<Tui, App> {
Some(":device") => draw!(|app|view_device(app)),
Some(":dialog") => Self::boxed(move|state, to|draw_dialog(to, word.split("/").skip(1), state)),
Some(":sessions") => Self::boxed(move|_, to|view_sessions().draw(to)),
Some(":status") => Self::boxed(move|_, to|"TODO: Status Bar".draw(to)),
Some(":status") => Self::boxed(move|state, to|draw_status_bar(to, state)),
Some(":editor") => Self::boxed(move|_, to|"TODO Editor".draw(to)),
Some(":transport") => Self::boxed(move|_, to|view_transport(true, "", "", "").draw(to)),
Some(":debug") => Self::boxed(move|_, to|format!("[{:?}]", to.area()).exact_h(1).draw(to)),
@ -525,8 +526,12 @@ impl View<Tui, App> {
}
}
pub fn draw_status_bar (to: &mut Tui, state: &App) -> Drawn<u16> {
bar(Split::South, 1u16, dim(true, "Mode"), bold(true, &state.mode)).push_x(1).draw(to)
}
/// Load custom view definition.
pub fn load_view <'a> (views: &Views, expr: impl Language) -> UsuallyRef<'a, ()> {
pub fn views_add <'a> (views: &Views, expr: impl Language) -> UsuallyRef<'a, ()> {
views.try_write().unwrap().insert(
expr.head()?.ok_or("view: missing name")?.into(),
View::new(expr.tail()?.ok_or("view: missing body")?)?.into()
@ -637,10 +642,10 @@ mod bind {
/// An map of input events (e.g. [TuiEvent]) to [Binding]s.
///
/// ```
/// let lang = stringify!(
/// use ::{std::sync::Arc, tek::{Bind, tengri::TuiEvent}};
/// let bind = Bind::<TuiEvent, Arc<str>>::load(&stringify!(
/// (@x (nop))
/// (@y (nop) (nop)));
/// let bind = tek::Bind::<tek::tengri::TuiEvent, std::sync::Arc<str>>::load(&lang).unwrap();
/// (@y (nop) (nop)))).unwrap();
/// assert_eq!(bind.query(&'x'.into()).map(|x|x.len()), Some(1));
/// //assert_eq!(bind.query(&'y'.into()).map(|x|x.len()), Some(2));
/// ```

View file

@ -89,8 +89,12 @@ fn view_scene_name_theme (scene: &Scene, track_index: usize) -> (Arc<str>, ItemT
}
fn with_clips_size (show: bool, size: &Sizer, content: impl Draw<Tui>) -> impl Draw<Tui> {
let wh = east!(size.w() as usize, "x", size.h() as usize);
size.of(above(when(show, fg(Green, wh).align_se().full_wh()), content))
size.of(above(
when(show, fg(Green, east!(
size.w() as usize, "x", size.h() as usize
)).align_se()),
content.align_c().full_wh()
))
}
fn view_scene_bg (

View file

@ -55,10 +55,10 @@ impl Scene {
}
#[cfg(all(feature = "select"))] impl_as_ref_opt!(Scene: |self: App| self.project.as_ref_opt());
#[cfg(all(feature = "select"))] impl_as_mut_opt!(Scene: |self: App| self.project.as_mut_opt());
#[cfg(all(feature = "select"))] impl_as_ref_opt!(Scene: |self: Arrangement| self.selected_scene());
#[cfg(all(feature = "select"))] impl_as_mut_opt!(Scene: |self: Arrangement| self.selected_scene_mut());
impl_as_ref_opt!(Scene: |self: App| self.project.as_ref_opt());
impl_as_mut_opt!(Scene: |self: App| self.project.as_mut_opt());
impl_as_ref_opt!(Scene: |self: Arrangement| self.selected_scene());
impl_as_mut_opt!(Scene: |self: Arrangement| self.selected_scene_mut());
impl<T: AsRefOpt<Scene> + AsMutOpt<Scene> + Send + Sync> HasScene for T {}
@ -89,12 +89,14 @@ pub trait SceneController: HasScene
{
todo!()
}
#[command(SetZoom = "zoom")]
fn scene_set_zoom (&mut self, _size: usize) -> Perhaps<SceneCommand>
where Self: Namespace<usize>
{
todo!()
}
#[command(SetName = "name")]
fn scene_set_name (&mut self, name: Arc<str>) -> Perhaps<SceneCommand>
where Self: Namespace<Arc<str>>
@ -105,6 +107,7 @@ pub trait SceneController: HasScene
|name|SceneCommand::SetName { name }
)).transpose()?.flatten())
}
#[command(SetColor = "color")]
fn scene_set_color (&mut self, color: ItemTheme) -> Perhaps<SceneCommand>
where Self: Namespace<ItemTheme>
@ -173,6 +176,7 @@ pub trait HasScenes: AsRef<Vec<Scene>> + AsMut<Vec<Scene>> {
impl<T: HasScenes
+ HasTracks
+ HasTrackScroll
+ HasSelection
+ HasJack<'static>
+ Namespace<usize>
+ Namespace<Option<ItemTheme>>
@ -183,6 +187,7 @@ impl<T: HasScenes
pub trait ScenesController: HasScenes
+ HasTracks
+ HasTrackScroll
+ HasSelection
+ HasJack<'static>
+ Namespace<usize>
+ Namespace<Option<ItemTheme>>
@ -196,6 +201,29 @@ pub trait ScenesController: HasScenes
Ok(None)
}
// TODO
#[command(Select = "select")]
fn scene_select (&mut self) -> Perhaps<ScenesCommand> {
let scenes = self.scenes().len();
let select = self.selection_mut().select_scene(scenes);
*self.selection_mut() = select;
Ok(None)
}
#[command(Next = "next")]
fn scene_select_next (&mut self) -> Perhaps<ScenesCommand> {
let scenes = self.scenes().len();
let select = self.selection().select_scene_next(scenes);
*self.selection_mut() = select;
Ok(None)
}
#[command(Prev = "prev")]
fn scene_select_prev (&mut self) -> Perhaps<ScenesCommand> {
let select = self.selection_mut().select_scene_prev();
*self.selection_mut() = select;
Ok(None)
}
}
pub trait ScenesView: HasEditor + HasSelection + HasSceneScroll + HasClipsSize + Send + Sync {

View file

@ -261,6 +261,7 @@ pub trait HasTracks: AsRef<Vec<Track>> + AsMut<Vec<Track>> + HasClock + HasTrack
impl<T: HasTracks
+ HasScenes
+ HasSelection
+ HasJack<'static>
+ Namespace<usize>
+ Namespace<Arc<[Connect]>>
@ -274,6 +275,7 @@ impl<T: HasTracks
#[tek_proc::commands(TracksCommand)]
pub trait TracksController: HasTracks
+ HasScenes
+ HasSelection
+ HasJack<'static>
+ Namespace<usize>
+ Namespace<Arc<[Connect]>>
@ -316,6 +318,29 @@ pub trait TracksController: HasTracks
let (_index, _) = self.tracks_add_one(None, None, [].into(), [].into())?;
Ok(None)
}
#[command(Select = "select")]
fn track_select (&mut self) -> Perhaps<TracksCommand> {
let tracks = self.tracks().len();
let select = self.selection_mut().select_track(tracks);
*self.selection_mut() = select;
Ok(None)
}
#[command(Next = "next")]
fn track_select_next (&mut self) -> Perhaps<TracksCommand> {
let tracks = self.tracks().len();
let select = self.selection().select_track_next(tracks);
*self.selection_mut() = select;
Ok(None)
}
#[command(Prev = "prev")]
fn track_select_prev (&mut self) -> Perhaps<TracksCommand> {
let select = self.selection_mut().select_track_prev();
*self.selection_mut() = select;
Ok(None)
}
}
impl<

View file

@ -139,12 +139,12 @@ impl PianoHorizontal {
let buffer = self.buffer.clone();
draw(move|to: &mut Tui|{
let xywh = to.area().into();
to.buffer().map(|to|{
let XYWH(x0, y0, w, _h) = xywh;
let source = buffer.try_read().unwrap();
//if h as usize != note_axis {
//panic!("area height mismatch: {h} <> {note_axis}");
//}
if let Tui::Draw(to, ..) = to {
for (area_x, screen_x) in (x0..x0+w).enumerate() {
for (area_y, screen_y, _note) in note_y_iter(note_lo, note_hi, y0) {
let source_x = time_start + area_x;
@ -163,7 +163,7 @@ impl PianoHorizontal {
}
}
}
}
});
Ok(Some(xywh))
})
}

View file

@ -354,7 +354,7 @@ fn draw_viewer (sample: Option<&Arc<RwLock<Sample>>>) -> impl Draw<Tui> + use<'_
lines.push(Line::new(x, min_db, x, y, Color::Green));
t += step / 2.;
}
if let Tui::Draw(buf, ..) = to {
to.buffer().map(|buf|{
Canvas::default()
.x_bounds([sample.start as f64, sample.end as f64])
.y_bounds([min_db, 0.])
@ -371,9 +371,9 @@ fn draw_viewer (sample: Option<&Arc<RwLock<Sample>>>) -> impl Draw<Tui> + use<'_
//);
})
.render(area, buf);
}
});
} else {
if let Tui::Draw(buf, ..) = to {
to.buffer().map(|buf|{
Canvas::default()
.x_bounds([0.0, width as f64])
.y_bounds([0.0, height as f64])
@ -386,7 +386,7 @@ fn draw_viewer (sample: Option<&Arc<RwLock<Sample>>>) -> impl Draw<Tui> + use<'_
//);
})
.render(area, buf);
}
});
}
Ok(Some(xywh))
})

View file

@ -34,7 +34,7 @@
(mode :scene (keys :scene))
(mode :mix (keys :mix))
(view
(bsp/n (bsp/e :transport :status)
(bar/n 2 (bsp/e :transport :status)
(bar/w 2 (align/ne :meters/output)
(bar/e 2 (align/nw :meters/input)
(full/xy (pad/xy 2 1 (align/c
@ -42,30 +42,38 @@
(bar/s 2 :tracks/devices
(bar/s 2 :tracks/names
(bar/n 2 :tracks/inputs
(bar/e 16 (bg (g 50) :scenes/names)
(bar/e 12 (bg (g 50) :scenes/names)
(align/c :scenes/clips))))))))))))))
(keys :clock (@space clock/toggle 0)
(@shift/space clock/toggle 0))
(keys :color (@c color))
(keys :launch (@q launch))
(keys :scenes (@shift/S (scenes add))
(@s (select scene))
(@up (select scene-dec))
(@down (select scene-inc)))
(keys :tracks (@shift/T (tracks add))
(@t (select track))
(@left (select track-dec))
(@right (select track-inc)))
(keys :global (see :history :saveload)
(@f8 dialog :options)
(@f10 dialog :quit))
(keys :clock
(@space clock/toggle 0)
(@shift/space clock/toggle 0))
(keys :color
(@c color))
(keys :launch
(@q launch))
(keys :scenes
(@shift/S (scenes add))
(@s (scenes select))
(@up (scenes prev))
(@down (scenes next)))
(keys :tracks
(@shift/T (tracks add))
(@t (tracks select))
(@left (tracks prev))
(@right (tracks next)))
(keys :clip (see :color :launch :axis/z :axis/z2 :delete)
(@l (toggle :loop)))
(view :ports/out
(bsp/s (align/w (text L-AUDIO-OUT))
(bsp/e (text MIDI-OUT)
@ -132,6 +140,7 @@
(keys :axis/w2 (@openbrace dec :w2)
(@closebrace inc :w2))
(keys :focus)
(keys :editor (see :axis/i :axis/i2 :axis/y
:page :editor/view :editor/add :editor/del))
(keys :editor/view (see :axis/x :axis/x2 :axis/z :axis/z2)
@ -169,8 +178,6 @@
(@r redo 1))
(keys :saveload (@f6 dialog :save)
(@f9 dialog :load))
(keys :clip (see :color :launch :axis/z :axis/z2 :delete)
(@l toggle :loop))
(keys :sequencer (see :color :launch)
(@shift/I input/add)
(@shift/O output/add))

View file

@ -873,7 +873,10 @@ mod draw {
let c3 = tui_g(96);
let c4 = tui_g(255);
bold(true, fg_bg(c1, c2,
east!(fg(c2, ""), key, fg(c3, ""), when(!hide, fg_bg(c4, c3, label)))))
bar(Split::East, 1u16, fg(c2, ""),
bar(Split::East, 1u16, key,
bar(Split::East, 1u16, fg(c3, ""),
when(!hide, fg_bg(c4, c3, label)))))))
}
/// ```
@ -891,9 +894,10 @@ mod draw {
let c3 = tui_g(96);
let c4 = tui_g(255);
let c5 = tui_g(128);
bold(true, east(
bold(true, bar(Split::East, 3u16,
fg_bg(c1, c2,
east(fg(c2, ""), east(key, fg(if editing { c5 } else { c3 }, "")))),
bar(Split::East, 1u16, fg(c2, ""),
bar(Split::East, 1u16, key, fg(if editing { c5 } else { c3 }, "")))),
east(
when(!editing, east(fg_bg(c4, c3, label), fg_bg(c5, c3, ""),)),
east(fg_bg(tui_g(224), c5, value), fg_bg(c5, Reset, ""), ))))

2
tengri

@ -1 +1 @@
Subproject commit b318d498e544fa65bbf3a3ff4dabde166352b045
Subproject commit 48aaa3933aadd2d795b6652a244fce179d7072bf