1
0
Fork 0
nih-plug/src/wrapper/vst3/view.rs

305 lines
11 KiB
Rust
Raw Normal View History

use atomic_float::AtomicF32;
2022-02-07 04:46:16 +11:00
use parking_lot::RwLock;
use raw_window_handle::RawWindowHandle;
use std::any::Any;
use std::ffi::{c_void, CStr};
use std::mem;
use std::sync::atomic::Ordering;
2022-02-07 04:46:16 +11:00
use std::sync::Arc;
2022-02-17 06:41:00 +11:00
use vst3_com::utils::SharedVstPtr;
2022-02-07 04:46:16 +11:00
use vst3_sys::base::{kInvalidArgument, kResultFalse, kResultOk, tresult, TBool};
use vst3_sys::gui::{IPlugFrame, IPlugView, IPlugViewContentScaleSupport, ViewRect};
2022-02-07 04:46:16 +11:00
use vst3_sys::VST3;
use super::inner::WrapperInner;
use super::util::{ObjectPtr, VstPtr};
use crate::plugin::{Editor, ParentWindowHandle, Vst3Plugin};
2022-02-07 04:46:16 +11:00
// Alias needed for the VST3 attribute macro
use vst3_sys as vst3_com;
// Window handle type constants missing from vst3-sys
#[allow(unused)]
const VST3_PLATFORM_HWND: &str = "HWND";
#[allow(unused)]
const VST3_PLATFORM_HIVIEW: &str = "HIView";
#[allow(unused)]
const VST3_PLATFORM_NSVIEW: &str = "NSView";
#[allow(unused)]
const VST3_PLATFORM_UIVIEW: &str = "UIView";
#[allow(unused)]
const VST3_PLATFORM_X11_WINDOW: &str = "X11EmbedWindowID";
/// The plugin's [`IPlugView`] instance created in [`IEditController::create_view()`] if `P` has an
2022-02-07 04:46:16 +11:00
/// editor. This is managed separately so the lifetime bounds match up.
#[VST3(implements(IPlugView, IPlugViewContentScaleSupport))]
pub(crate) struct WrapperView<P: Vst3Plugin> {
2022-02-07 04:46:16 +11:00
inner: Arc<WrapperInner<P>>,
editor: Arc<dyn Editor>,
editor_handle: RwLock<Option<Box<dyn Any>>>,
2022-02-17 06:41:00 +11:00
/// The `IPlugFrame` instance passed by the host during [IPlugView::set_frame()].
2022-02-17 06:41:00 +11:00
pub plug_frame: RwLock<Option<VstPtr<dyn IPlugFrame>>>,
/// The DPI scaling factor as passed to the [IPlugViewContentScaleSupport::set_scale_factor()]
/// function. Defaults to 1.0, and will be kept there on macOS. When reporting and handling size
/// the sizes communicated to and from the DAW should be scaled by this factor since NIH-plug's
/// APIs only deal in logical pixels.
scaling_factor: AtomicF32,
2022-02-07 04:46:16 +11:00
}
impl<P: Vst3Plugin> WrapperView<P> {
2022-02-07 04:46:16 +11:00
pub fn new(inner: Arc<WrapperInner<P>>, editor: Arc<dyn Editor>) -> Box<Self> {
Self::allocate(
inner,
editor,
RwLock::new(None),
RwLock::new(None),
AtomicF32::new(1.0),
)
2022-02-07 04:46:16 +11:00
}
/// Ask the host to resize the view to the size specified by [Editor::size()]. Will return false
/// if the host doesn't like you.
pub fn request_resize(&self) -> bool {
// Don't do anything if the editor is not open, because that would be strange
if self
.editor_handle
.try_read()
.map(|e| e.is_none())
.unwrap_or(true)
{
return false;
}
match &*self.plug_frame.read() {
Some(plug_frame) => {
let (unscaled_width, unscaled_height) = self.editor.size();
let scaling_factor = self.scaling_factor.load(Ordering::Relaxed);
let mut size = ViewRect {
right: (unscaled_width as f32 * scaling_factor).round() as i32,
bottom: (unscaled_height as f32 * scaling_factor).round() as i32,
..Default::default()
};
// The argument types are a bit wonky here because you can't construct a
// `SharedVstPtr`. This _should_ work however.
// FIXME: Run this in the `IRonLoop` on Linux. Otherwise REAPER will be very cross
// with us.
let plug_view: SharedVstPtr<dyn IPlugView> = unsafe { mem::transmute(self) };
let result = unsafe { plug_frame.resize_view(plug_view, &mut size) };
result == kResultOk
}
None => false,
}
}
2022-02-07 04:46:16 +11:00
}
impl<P: Vst3Plugin> IPlugView for WrapperView<P> {
2022-02-07 04:46:16 +11:00
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
unsafe fn is_platform_type_supported(&self, type_: vst3_sys::base::FIDString) -> tresult {
let type_ = CStr::from_ptr(type_);
match type_.to_str() {
Ok(type_) if type_ == VST3_PLATFORM_X11_WINDOW => kResultOk,
_ => {
nih_debug_assert_failure!("Invalid window handle type: {:?}", type_);
kResultFalse
}
}
}
#[cfg(all(target_os = "macos"))]
unsafe fn is_platform_type_supported(&self, type_: vst3_sys::base::FIDString) -> tresult {
let type_ = CStr::from_ptr(type_);
match type_.to_str() {
Ok(type_) if type_ == VST3_PLATFORM_NSVIEW => kResultOk,
_ => {
nih_debug_assert_failure!("Invalid window handle type: {:?}", type_);
kResultFalse
}
}
}
#[cfg(all(target_os = "windows"))]
unsafe fn is_platform_type_supported(&self, type_: vst3_sys::base::FIDString) -> tresult {
let type_ = CStr::from_ptr(type_);
match type_.to_str() {
Ok(type_) if type_ == VST3_PLATFORM_HWND => kResultOk,
_ => {
nih_debug_assert_failure!("Invalid window handle type: {:?}", type_);
kResultFalse
}
}
}
unsafe fn attached(&self, parent: *mut c_void, type_: vst3_sys::base::FIDString) -> tresult {
let mut editor_handle = self.editor_handle.write();
if editor_handle.is_none() {
let type_ = CStr::from_ptr(type_);
let handle = match type_.to_str() {
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
Ok(type_) if type_ == VST3_PLATFORM_X11_WINDOW => {
let mut handle = raw_window_handle::XcbHandle::empty();
2022-02-07 04:46:16 +11:00
handle.window = parent as usize as u32;
RawWindowHandle::Xcb(handle)
}
#[cfg(all(target_os = "macos"))]
Ok(type_) if type_ == VST3_PLATFORM_NSVIEW => {
let mut handle = raw_window_handle::AppKitHandle::empty();
2022-02-07 04:46:16 +11:00
handle.ns_view = parent;
RawWindowHandle::AppKit(handle)
2022-02-07 04:46:16 +11:00
}
#[cfg(all(target_os = "windows"))]
Ok(type_) if type_ == VST3_PLATFORM_HWND => {
let mut handle = raw_window_handle::Win32Handle::empty();
2022-02-07 04:46:16 +11:00
handle.hwnd = parent;
RawWindowHandle::Win32(handle)
2022-02-07 04:46:16 +11:00
}
_ => {
nih_debug_assert_failure!("Unknown window handle type: {:?}", type_);
return kInvalidArgument;
}
};
*editor_handle = Some(self.editor.spawn(
ParentWindowHandle { handle },
self.inner.clone().make_gui_context(),
));
*self.inner.plug_view.write() = Some(ObjectPtr::from(self));
2022-02-07 04:46:16 +11:00
kResultOk
} else {
nih_debug_assert_failure!(
"Host tried to attach editor while the editor is already attached"
);
2022-02-07 04:46:16 +11:00
kResultFalse
}
}
unsafe fn removed(&self) -> tresult {
let mut editor_handle = self.editor_handle.write();
if editor_handle.is_some() {
*self.inner.plug_view.write() = None;
2022-02-07 04:46:16 +11:00
*editor_handle = None;
2022-02-07 04:46:16 +11:00
kResultOk
} else {
nih_debug_assert_failure!("Host tried to remove the editor without an active editor");
2022-02-07 04:46:16 +11:00
kResultFalse
}
}
unsafe fn on_wheel(&self, _distance: f32) -> tresult {
// We'll let the plugin use the OS' input mechamisms because not all DAWs (or very few
// actually) implement these functions
kResultOk
}
unsafe fn on_key_down(
&self,
_key: vst3_sys::base::char16,
_key_code: i16,
_modifiers: i16,
) -> tresult {
kResultOk
}
unsafe fn on_key_up(
&self,
_key: vst3_sys::base::char16,
_key_code: i16,
_modifiers: i16,
) -> tresult {
kResultOk
}
unsafe fn get_size(&self, size: *mut ViewRect) -> tresult {
2022-02-07 04:46:16 +11:00
check_null_ptr!(size);
*size = mem::zeroed();
// TODO: This is technically incorrect during resizing, this should still report the old
// size until `.on_size()` has been called. We should probably only bother fixing this
// if it turns out to be an issue.
let (unscaled_width, unscaled_height) = self.editor.size();
let scaling_factor = self.scaling_factor.load(Ordering::Relaxed);
2022-02-07 04:46:16 +11:00
let size = &mut *size;
size.left = 0;
size.right = (unscaled_width as f32 * scaling_factor).round() as i32;
2022-02-07 04:46:16 +11:00
size.top = 0;
size.bottom = (unscaled_height as f32 * scaling_factor).round() as i32;
2022-02-07 04:46:16 +11:00
kResultOk
}
unsafe fn on_size(&self, new_size: *mut ViewRect) -> tresult {
check_null_ptr!(new_size);
// TODO: Implement Host->Plugin resizing
let (unscaled_width, unscaled_height) = self.editor.size();
let scaling_factor = self.scaling_factor.load(Ordering::Relaxed);
let (editor_width, editor_height) = (
(unscaled_width as f32 * scaling_factor).round() as i32,
(unscaled_height as f32 * scaling_factor).round() as i32,
);
let width = (*new_size).right - (*new_size).left;
let height = (*new_size).bottom - (*new_size).top;
if width == editor_width && height == editor_height {
kResultOk
} else {
kResultFalse
}
2022-02-07 04:46:16 +11:00
}
unsafe fn on_focus(&self, _state: TBool) -> tresult {
kResultOk
}
2022-02-17 06:41:00 +11:00
unsafe fn set_frame(&self, frame: *mut c_void) -> tresult {
// The correct argument type is missing from the bindings
let frame: SharedVstPtr<dyn IPlugFrame> = mem::transmute(frame);
match frame.upgrade() {
Some(frame) => *self.plug_frame.write() = Some(frame.into()),
None => *self.plug_frame.write() = None,
}
2022-02-07 04:46:16 +11:00
kResultOk
}
unsafe fn can_resize(&self) -> tresult {
// TODO: Implement Host->Plugin resizing
2022-02-07 04:46:16 +11:00
kResultFalse
}
unsafe fn check_size_constraint(&self, rect: *mut ViewRect) -> tresult {
2022-02-07 04:46:16 +11:00
check_null_ptr!(rect);
// TODO: Implement Host->Plugin resizing
2022-02-07 04:46:16 +11:00
if (*rect).right - (*rect).left > 0 && (*rect).bottom - (*rect).top > 0 {
kResultOk
} else {
kResultFalse
}
}
}
impl<P: Vst3Plugin> IPlugViewContentScaleSupport for WrapperView<P> {
unsafe fn set_scale_factor(&self, factor: f32) -> tresult {
// On macOS scaling is done by the OS, and all window sizes are in logical pixels
if cfg!(target_os = "macos") {
nih_debug_assert_failure!("Ignoring host request to set explicit DPI scaling factor");
return kResultFalse;
}
if self.editor.set_scale_factor(factor) {
self.scaling_factor.store(factor, Ordering::Relaxed);
kResultOk
} else {
kResultFalse
}
}
}