-
Notifications
You must be signed in to change notification settings - Fork 4
feat: background tasks and editor window #558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AZProductions
wants to merge
5
commits into
main
Choose a base branch
from
background-tasks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4f8d7b8
feat: add crossbeam for background task handling in Bells plugin
AZProductions 4dbf6bb
feat: add clear method to Instrument in bells
AZProductions e614f39
feat: add bells editor window and background processing of samples
AZProductions 7311625
feat: refactor preset change handling and add editor to Orchestron
AZProductions 2890523
feat: refactor Instrument handling and add background preset loading
AZProductions File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| use std::sync::Arc; | ||
|
|
||
| use cyma::bus::{Bus, MonoBus}; | ||
| use cyma::prelude::Oscilloscope; | ||
| use cyma::prelude::ValueScaling; | ||
| use nih_plug::prelude::{Editor, Enum}; | ||
| use strum::VariantNames; | ||
| use vizia_plug::vizia::prelude::*; | ||
| use vizia_plug::widgets::*; | ||
| use vizia_plug::{create_vizia_editor, ViziaState, ViziaTheming}; | ||
|
|
||
| use crate::{BellsParams, Presets}; | ||
|
|
||
| #[derive(Lens)] | ||
| struct Data { | ||
| params: Arc<BellsParams>, | ||
| presets: Vec<&'static str>, | ||
| selected_option: usize, | ||
| } | ||
|
|
||
| enum EditorEvent { | ||
| SetPreset(usize), | ||
| } | ||
|
|
||
| impl Model for Data { | ||
| fn event(&mut self, cx: &mut EventContext, event: &mut Event) { | ||
| event.map(|editor_event, _| match editor_event { | ||
| EditorEvent::SetPreset(index) => { | ||
| self.selected_option = *index; | ||
|
|
||
| cx.emit( | ||
| ParamEvent::SetParameter(&self.params.preset, Presets::from_index(*index)) | ||
| .upcast(), | ||
| ); | ||
| } | ||
| }); | ||
| } | ||
| } | ||
|
|
||
| pub(crate) fn default_state() -> Arc<ViziaState> { | ||
| ViziaState::new(|| (1000, 800)) | ||
| } | ||
|
|
||
| pub(crate) fn create( | ||
| params: Arc<BellsParams>, | ||
| editor_state: Arc<ViziaState>, | ||
| bus: Arc<MonoBus>, | ||
| ) -> Option<Box<dyn Editor>> { | ||
| create_vizia_editor(editor_state, ViziaTheming::Custom, move |cx, _| { | ||
| Data { | ||
| params: params.clone(), | ||
| presets: Presets::VARIANTS.to_vec(), | ||
| selected_option: params.preset.value().to_index(), | ||
| } | ||
| .build(cx); | ||
|
|
||
| bus.subscribe(cx); | ||
|
|
||
| VStack::new(cx, |cx| { | ||
| ComboBox::new(cx, Data::presets, Data::selected_option) | ||
| .on_select(|cx, index| { | ||
| cx.emit(EditorEvent::SetPreset(index)); | ||
| }) | ||
| .width(Pixels(100.0)); | ||
|
|
||
| Oscilloscope::new(cx, bus.clone(), 4.0, (-1.0, 1.0), ValueScaling::Linear) | ||
| .color(Color::rgb(120, 120, 120)); | ||
| }) | ||
| .alignment(Alignment::TopCenter); | ||
| }) | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
busfield lacks documentation. Add a doc comment explaining its purpose, such as '/// Audio bus for sending samples to the editor's oscilloscope visualization.'