samplv1-1.4.3/PaxHeaders/CMakeLists.txt0000644000000000000000000000013215245503134014722 xustar0030 mtime=1788249692.166072954 30 atime=1788249692.166072954 30 ctime=1788249692.166072954 samplv1-1.4.3/CMakeLists.txt0000644000175000001440000003277415245503134014727 0ustar00rncbcuserscmake_minimum_required (VERSION 3.15) project (samplv1 VERSION 1.4.2 DESCRIPTION "an old-school polyphonic sampler" HOMEPAGE_URL "https://samplv1.sourceforge.io" LANGUAGES C CXX) set (PROJECT_COPYRIGHT "Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved.") set (PROJECT_DOMAIN "rncbc.org") execute_process ( COMMAND git describe --tags --dirty --abbrev=6 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT RESULT_VARIABLE GIT_DESCRIBE_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE) if (GIT_DESCRIBE_RESULT EQUAL 0) set (GIT_VERSION "${GIT_DESCRIBE_OUTPUT}") string (REGEX REPLACE "^[^0-9]+" "" GIT_VERSION "${GIT_VERSION}") string (REGEX REPLACE "-g" "git." GIT_VERSION "${GIT_VERSION}") string (REGEX REPLACE "[_|-]" "." GIT_VERSION "${GIT_VERSION}") execute_process ( COMMAND git rev-parse --abbrev-ref HEAD WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE GIT_REVPARSE_OUTPUT RESULT_VARIABLE GIT_REVPARSE_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE) if (GIT_REVPARSE_RESULT EQUAL 0 AND NOT GIT_REVPARSE_OUTPUT STREQUAL "main") set (GIT_VERSION "${GIT_VERSION} [${GIT_REVPARSE_OUTPUT}]") endif () set (PROJECT_VERSION "${GIT_VERSION}") endif () if (CMAKE_BUILD_TYPE MATCHES "Debug") set (CONFIG_DEBUG 1) set (CONFIG_BUILD_TYPE "debug") else () set (CONFIG_DEBUG 0) set (CONFIG_BUILD_TYPE "release") set (CMAKE_BUILD_TYPE "Release") endif () set (CONFIG_PREFIX "${CMAKE_INSTALL_PREFIX}") include (GNUInstallDirs) set (CONFIG_BINDIR "${CONFIG_PREFIX}/${CMAKE_INSTALL_BINDIR}") set (CONFIG_LIBDIR "${CONFIG_PREFIX}/${CMAKE_INSTALL_LIBDIR}") set (CONFIG_DATADIR "${CONFIG_PREFIX}/${CMAKE_INSTALL_DATADIR}") set (CONFIG_MANDIR "${CONFIG_PREFIX}/${CMAKE_INSTALL_MANDIR}") # Enable JACK standalone build. option (CONFIG_JACK "Enable JACK stand-alone build (default=yes)" 1) # Enable JACK session support. option (CONFIG_JACK_SESSION "Enable JACK session support (default=yes)" 1) # Enable JACK MIDI support option. option (CONFIG_JACK_MIDI "Enable JACK MIDI support (default=yes)" 1) # Enable ALSA MIDI support option. option (CONFIG_ALSA_MIDI "Enable ALSA MIDI support (default=yes)" 1) # Enable LV2 plugin build. option (CONFIG_LV2 "Enable LV2 plug-in build (default=yes)" 1) if (WIN32) option (CONFIG_LV2_UI_WINDOWS "Enable LV2 plug-in Windows UI support (default=yes)" 1) # Windows install target path. set (CONFIG_WINDOWS_LV2_PATH "$ENV{SYSTEMDRIVE}/Program Files/Common Files/LV2" CACHE STRING "Specify Windows LV2 install path") else () option (CONFIG_LV2_UI_X11 "Enable LV2 plug-in X11 UI support (default=yes)" 1) endif () option (CONFIG_LV2_UI_EXTERNAL "Enable LV2 plug-in External UI support (default=yes)" 1) option (CONFIG_LV2_UI_IDLE "Enable LV2 UI Idle interface support (default=yes)" 1) option (CONFIG_LV2_UI_SHOW "Enable LV2 UI Show interface support (default=yes)" 1) option (CONFIG_LV2_UI_RESIZE "Enable LV2 UI Resize interface support (default=yes)" 1) option (CONFIG_LV2_PROGRAMS "Enable LV2 plug-in Programs support (default=yes)" 1) option (CONFIG_LV2_PATCH "Enable LV2 plug-in Patch support (default=yes)" 1) option (CONFIG_LV2_PORT_EVENT "Enable LV2 plug-in Port-event support (default=yes)" 1) option (CONFIG_LV2_STATE_FREE_PATH "Enable LV2 plug-in State Free Path support (default=yes)" 1) option (CONFIG_LV2_PORT_CHANGE_REQUEST "Enable LV2 plug-in Port-change request support (default=yes)" 1) # Enable librubberband availability. option (CONFIG_LIBRUBBERBAND "Enable librubberband interface (default=yes)" 1) # Enable FFTW3 availability. option (CONFIG_FFTW3 "Enable FFTW3 interface support (default=yes)" 1) # Enable liblo availability. option (CONFIG_LIBLO "Enable liblo interface (default=yes)" 1) # Enable NSM support. option (CONFIG_NSM "Enable NSM support (default=yes)" 1) # Enable Qt6 build preference. option (CONFIG_QT6 "Enable Qt6 build (default=yes)" 1) # Fix for new CMAKE_REQUIRED_LIBRARIES policy. if (POLICY CMP0075) cmake_policy (SET CMP0075 NEW) endif () # Fix for CXX_VISIBILITY_PRESET policy. if (POLICY CMP0063) cmake_policy (SET CMP0063 NEW) set (CMAKE_CXX_VISIBILITY_PRESET hidden) set (CMAKE_VISIBILITY_INLINES_HIDDEN 1) endif () # Check for Qt... if (CONFIG_QT6) find_package (Qt6 QUIET) if (NOT Qt6_FOUND) set (CONFIG_QT6 0) endif () endif () if (CONFIG_QT6) find_package (QT QUIET NAMES Qt6) else () find_package (QT QUIET NAMES Qt5) endif () find_package (Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Gui Widgets Xml Svg) #find_package (Qt${QT_VERSION_MAJOR}LinguistTools) include (CheckIncludeFile) include (CheckIncludeFiles) include (CheckIncludeFileCXX) include (CheckFunctionExists) include (CheckLibraryExists) include (CheckTypeSize) # Make sure we get some subtle optimizations out there... add_compile_options (-ffast-math) # Checks for header files. if (UNIX AND NOT APPLE) check_include_files ("fcntl.h;unistd.h;signal.h" HAVE_SIGNAL_H) endif () # Find package modules include (FindPkgConfig) # Check for SNDFILE libraries. pkg_check_modules (SNDFILE REQUIRED IMPORTED_TARGET sndfile) if (SNDFILE_FOUND) find_library (SNDFILE_LIBRARY NAMES ${SNDFILE_LIBRARIES} HINTS ${SNDFILE_LIBDIR}) endif () if (SNDFILE_LIBRARY) set (CONFIG_SNDFILE 1) #set (CMAKE_REQUIRED_LIBRARIES "${SNDFILE_LIBRARY};${CMAKE_REQUIRED_LIBRARIES}") else () message (FATAL_ERROR "*** SNDFILE library not found.") set (CONFIG_SNDFILE 0) endif () # Check for JACK libraries. if (CONFIG_JACK) pkg_check_modules (JACK IMPORTED_TARGET jack>=0.100.0) if (JACK_FOUND) find_library (JACK_LIBRARY NAMES ${JACK_LIBRARIES} HINTS ${JACK_LIBDIR}) endif () if (JACK_LIBRARY) set (CONFIG_JACK 1) set (CMAKE_REQUIRED_LIBRARIES "${JACK_LIBRARY};${CMAKE_REQUIRED_LIBRARIES}") # Check for JACK MIDI headers availability. if (CONFIG_JACK_MIDI) check_include_file (jack/midiport.h HAVE_JACK_MIDIPORT_H) if (NOT HAVE_JACK_MIDIPORT_H) set (CONFIG_JACK_MIDI 0) endif () endif () # Check for JACK session headers availability. if (CONFIG_JACK_SESSION) check_include_file (jack/session.h HAVE_JACK_SESSION_H) if (NOT HAVE_JACK_SESSION_H) set (CONFIG_JACK_SESSION 0) endif () endif () # Check for JACK session event callback availability. if (CONFIG_JACK_SESSION) check_function_exists (jack_set_session_callback CONFIG_JACK_SESSION) endif () # Check for ALSA libraries. if (CONFIG_ALSA_MIDI) pkg_check_modules (ALSA IMPORTED_TARGET alsa) if (ALSA_FOUND) find_library (ALSA_LIBRARY NAMES ${ALSA_LIBRARIES} HINTS ${ALSA_LIBDIR}) endif () if (ALSA_LIBRARY) set (CONFIG_ALSA_MIDI 1) #set (CMAKE_REQUIRED_LIBRARIES "${ALSA_LIBRARY};${CMAKE_REQUIRED_LIBRARIES}") else () message (WARNING "*** ALSA library not found.") endif () endif () else () message (WARNING "*** JACK library not found.") set (CONFIG_JACK 0) endif () endif () if (NOT CONFIG_JACK) set (CONFIG_JACK_SESSION 0) set (CONFIG_JACK_MIDI 0) set (CONFIG_ALSA_MIDI 0) set (CONFIG_LIBLO 0) set (CONFIG_NSM 0) endif () # Check for RUBBERBAND libraries. if (CONFIG_LIBRUBBERBAND) pkg_check_modules (RUBBERBAND IMPORTED_TARGET rubberband) if (NOT RUBBERBAND_FOUND) message (WARNING "*** RUBBERBAND library not found.") set (CONFIG_LIBRUBBERBAND 0) endif () endif () # Check for FFTW3 libraries. if (CONFIG_FFTW3) pkg_check_modules (FFTW3 IMPORTED_TARGET fftw3f) if (NOT FFTW3_FOUND) message (WARNING "*** FFTW3 library not found.") set (CONFIG_FFTW3 0) endif () endif () # Check for LIBLO libraries. if (CONFIG_LIBLO) pkg_check_modules (LIBLO IMPORTED_TARGET liblo) if (NOT LIBLO_FOUND) message (WARNING "*** LIBLO library not found.") set (CONFIG_LIBLO 0) endif () endif () # Check for LV2 support. if (CONFIG_LV2) pkg_check_modules (LV2 lv2) if (LV2_FOUND) include_directories (${LV2_INCLUDE_DIRS}) # Check for LV2 old/new headers style. check_include_file (lv2/urid/urid.h HAVE_LV2_URID_H) if (NOT HAVE_LV2_URID_H) check_include_file (lv2/lv2plug.in/ns/ext/urid/urid.h HAVE_OLD_LV2_URID_H) if (NOT HAVE_OLD_LV2_URID_H) set (CONFIG_LV2 0) else () set (CONFIG_LV2_OLD_HEADERS 1) endif () else () set (CONFIG_LV2_OLD_HEADERS 0) endif () endif () if (NOT CONFIG_LV2) message (WARNING "*** LV2 SDK not found.") endif () endif () if (CONFIG_LV2) # Check for LV2 Atom support. if (CONFIG_LV2_OLD_HEADERS) check_include_file (lv2/lv2plug.in/ns/ext/atom/atom.h HAVE_LV2_ATOM_H) else () check_include_file (lv2/atom/atom.h HAVE_LV2_ATOM_H) endif () if (NOT HAVE_LV2_ATOM_H) set (CONFIG_LV2_ATOM 0) else () set (CONFIG_LV2_ATOM 1) endif () set (CONFIG_LV2_ATOM_FORGE_OBJECT ${CONFIG_LV2_ATOM}) set (CONFIG_LV2_ATOM_FORGE_KEY ${CONFIG_LV2_ATOM}) # Check for LV2 UI support. if (CONFIG_LV2_OLD_HEADERS) check_include_file (lv2/lv2plug.in/ns/extensions/ui/ui.h HAVE_LV2_UI_H) else () check_include_file (lv2/ui/ui.h HAVE_LV2_UI_H) endif () if (NOT HAVE_LV2_UI_H) set (CONFIG_LV2_UI 0) else () set (CONFIG_LV2_UI 1) endif () if (NOT CONFIG_LV2_UI) set (CONFIG_LV2_UI_X11 0) set (CONFIG_LV2_UI_WINDOWS 0) set (CONFIG_LV2_UI_EXTERNAL 0) set (CONFIG_LV2_UI_IDLE 0) set (CONFIG_LV2_UI_SHOW 0) set (CONFIG_LV2_UI_RESIZE 0) endif () endif () # Check for LV2 headers. if (CONFIG_LV2) set (LV2_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/src/lv2) set (CMAKE_REQUIRED_INCLUDES "${LV2_INCLUDES};${CMAKE_REQUIRED_INCLUDES}") include_directories (${LV2_INCLUDES}) if (CONFIG_LV2_OLD_HEADERS) set (CMAKE_REQUIRED_DEFINITIONS "-DCONFIG_LV2_OLD_HEADERS;${CMAKE_REQUIRED_DEFINITIONS}") endif () else () set (CONFIG_LV2_UI_X11 0) set (CONFIG_LV2_UI_WINDOWS 0) set (CONFIG_LV2_UI_EXTERNAL 0) set (CONFIG_LV2_UI_IDLE 0) set (CONFIG_LV2_UI_SHOW 0) set (CONFIG_LV2_UI_RESIZE 0) set (CONFIG_LV2_PROGRAMS 0) set (CONFIG_LV2_PATCH 0) set (CONFIG_LV2_PORT_EVENT 0) set (CONFIG_LV2_PORT_CHANGE_REQUEST 0) set (CONFIG_LV2_STATE_FREE_PATH 0) endif () if (CONFIG_LV2_UI_EXTERNAL) check_include_file (lv2_external_ui.h HAVE_LV2_EXTERNAL_UI_H) if (NOT HAVE_LV2_EXTERNAL_UI_H) set (CONFIG_LV2_UI_EXTERNAL 0) endif () endif () if (CONFIG_LV2_PROGRAMS) check_include_file (lv2_programs.h HAVE_LV2_PROGRAMS_H) if (NOT HAVE_LV2_PROGRAMS_H) set (CONFIG_LV2_PROGRAMS 0) endif () endif () if (CONFIG_LV2_PATCH) if (CONFIG_LV2_OLD_HEADERS) check_include_file (lv2/lv2plug.in/ns/ext/patch/patch.h HAVE_LV2_PATCH_H) else () check_include_file (lv2/patch/patch.h HAVE_LV2_PATCH_H) endif () if (NOT HAVE_LV2_PATCH_H) set (CONFIG_LV2_PATCH 0) endif () endif () if (CONFIG_LV2_STATE_FREE_PATH) if (CONFIG_LV2_OLD_HEADERS) set (CMAKE_EXTRA_INCLUDE_FILES "lv2/lv2plug.in/ns/ext/state/state.h") else () set (CMAKE_EXTRA_INCLUDE_FILES "lv2/state/state.h") endif () check_type_size (LV2_State_Free_Path LV2_STATE_FREE_PATH) if (NOT HAVE_LV2_STATE_FREE_PATH) set (CONFIG_LV2_STATE_FREE_PATH 0) endif () endif () if (CONFIG_LV2_PORT_CHANGE_REQUEST) check_include_file (lv2_port_change_request.h HAVE_LV2_PORT_CHANGE_REQUEST_H) if (NOT HAVE_LV2_PORT_CHANGE_REQUEST_H) set (CONFIG_LV2_PORT_CHANGE_REQUEST 0) endif () endif () add_subdirectory (src) # Finally check whether Qt is statically linked. if (QT_FEATURE_static) set(QT_VERSION "${QT_VERSION}-static") endif () # Configuration status macro (SHOW_OPTION text value) if (${value}) message ("${text}: yes") else () message ("${text}: no") endif () endmacro () message ("\n ${PROJECT_NAME} ${PROJECT_VERSION} (Qt ${QT_VERSION})") message ("\n Build target . . . . . . . . . . . . . . . . . . .: ${CONFIG_BUILD_TYPE}\n") show_option (" JACK stand-alone build . . . . . . . . . . . . . ." CONFIG_JACK) show_option (" JACK session support . . . . . . . . . . . . . . ." CONFIG_JACK_SESSION) show_option (" JACK MIDI support . . . . . . . . . . . . . . . ." CONFIG_JACK_MIDI) show_option (" ALSA MIDI support . . . . . . . . . . . . . . . ." CONFIG_ALSA_MIDI) show_option (" LV2 plug-in build . . . . . . . . . . . . . . . ." CONFIG_LV2) if (WIN32) show_option (" LV2 plug-in Windows UI support . . . . . . . . ." CONFIG_LV2_UI_WINDOWS) else () show_option (" LV2 plug-in X11 UI support . . . . . . . . . . ." CONFIG_LV2_UI_X11) endif () show_option (" LV2 plug-in External UI support . . . . . . . . ." CONFIG_LV2_UI_EXTERNAL) show_option (" LV2 plug-in UI Idle interface support . . . . . ." CONFIG_LV2_UI_IDLE) show_option (" LV2 plug-in UI Show interface support . . . . . ." CONFIG_LV2_UI_SHOW) show_option (" LV2 plug-in UI Resize interface support . . . . ." CONFIG_LV2_UI_RESIZE) show_option (" LV2 plug-in Programs support . . . . . . . . . . ." CONFIG_LV2_PROGRAMS) show_option (" LV2 plug-in Patch support . . . . . . . . . . . ." CONFIG_LV2_PATCH) show_option (" LV2 plug-in Port-event support . . . . . . . . . ." CONFIG_LV2_PORT_EVENT) show_option (" LV2 plug-in Port-change request . . . . . . . . ." CONFIG_LV2_PORT_CHANGE_REQUEST) show_option (" LV2 plug-in State Free Path support . . . . . . ." CONFIG_LV2_STATE_FREE_PATH) show_option (" Pitch-shifting support (librubberband) . . . . . ." CONFIG_LIBRUBBERBAND) show_option (" Pitch-shifting support (fftw3) . . . . . . . . . ." CONFIG_FFTW3) show_option (" OSC service support (liblo) . . . . . . . . . . ." CONFIG_LIBLO) show_option (" Non/New Session Management (NSM) support . . . . ." CONFIG_NSM) message ("\n Install prefix . . . . . . . . . . . . . . . . . .: ${CONFIG_PREFIX}\n") samplv1-1.4.3/PaxHeaders/ChangeLog0000644000000000000000000000013215245503134013734 xustar0030 mtime=1788249692.166072954 30 atime=1788249692.166072954 30 ctime=1788249692.166072954 samplv1-1.4.3/ChangeLog0000644000175000001440000007317215245503134013736 0ustar00rncbcuserssamplv1 - an old-school polyphonic sampler ------------------------------------------ ChangeLog GIT HEAD - Fixed an old freezer bug that manifested whenever a MIDI Program Change is issued. - Vastly improved Bank/Preset management widgets. - Fixed wrong keymap-file setter on tuning loader. - Added file-types property to LV2 plug-in Path parameters. 1.4.2 2026-04-30 A Spring'26 Release. - Bumping into next development cycle (Qt >= 6.11) 1.4.1 2026-03-18 An Early-Spring'26 Release. - DejaVuSansCondensed.ttf is now the officially bundled font. 1.4.0 2026-02-12 A Mid-Winter'26 Release. - DejaVuSans TTF font is now firmly embedded to improve on the self-containment status (ie. freetype2 static linking). - Fixed 'mime-info' file to the correct MIME-type icon names. - Get rid of CONFIG_WAYLAND build config option; add underlying platform name (eg. xcb, wayland) to Qt version string. 1.3.2 2025-05-20 A Mid-Spring'25 Release. - Added generic Ogg Vorbis container type filter (*.ogg) to sample file requester dialog. - Stepping up next development cycle (Qt >= 6.9) 1.3.1 2025-04-03 An Early Spring'25 Release. - Fixed command line parsing (QCommandLineParser/Option) to not exiting the application with a segfault when showing help and version information. 1.3.0 2025-01-16 A New-Year'25 Release. - LV2 Plug-in: avoid making offset and loop range changes as regular parameter updates, which marked the host's state dirty (modified). 1.2.0 2024-12-15 An End-of-Year'24 Release. - Configure/Tuning: fixed initial scale and keyboard map tooltips. 1.1.3 2024-10-31 A Halloween'24 Release. - Prepping up next development cycle (Qt >= 6.8) 1.1.2 2024-10-02 An Early-Fall'24 Release. - Configure: apply Frame/Time display format option immediately on acceptance, no need to restart the application to take effect anymore. - Configure: disable widget style option on LV2 plug-ins only, for which it wasn't working on the JACK stand-alones either. 1.1.1 2024-09-20 An End-ofSummer'24 Release. - Fixed sample loop/offset-start/end state save and restore. - NSM: prevent loading any preset(s) given on command line. 1.1.0 2024-08-28 A Mid-Summer'24 Release. - Smooth and seamless voice/note deferred switching, whenever the sample file and wavetable is reset or changed. - LV2 Plug-in Control Input Port-Change Request extension is not tagged experimental anymore. 1.0.0 2024-06-20 An Unthinkable Release. - Making up the unthinkable (aka. v1.0.0) 0.9.91 2024-05-02 A Spring'24 Release Candidate 2. - Prepping the unthinkable (aka. v1.0.0-rc2) - Updated to latest framework level (Qt >= 6.7) 0.9.90 2024-04-11 A Spring'24 Release Candidate. - Prepping the unthinkable (aka. v1.0.0-rc1) - Custom color themes are now file based (*.conf); legacy still preserved ntl. - Fixed the build checks on whether to use old or newer style of LV2 include headers. 0.9.34 2024-01-26 A Winter'24 Release. - Added build checks on whether to use old or newer style of LV2 include headers. - LV2 plugin Control Input Port-change request extension feature support added. - Updated copyright headers into the New Year (2024). 0.9.33 2023-12-20 An End-of-Autumn'23 Release. - Mitigate LV2 State path mapping features duplication. - Minor optimization to denormal avoidance on some fx's. - Bumping into next development cycle (Qt >= 6.6) 0.9.32 2023-09-12 An End-of-Summer'23 Release. - Preppings to next development cycle (Qt >= 6.6) 0.9.31 2023-06-06 A Spring'23 Release. - Added Loop End Release mode switch: whether to play over the sample loop-end point when entering note-off EG release stage. - Make sure the XCB interface is in use when instantiating the LV2 plugin on non-Qt hosts, allowing LV2 X11 UI embedding to work and show up properly. - Prepping into the next development cycle (with Qt >= 6.5). 0.9.30 2023-03-24 An Early-Spring'23 Release. - Restrict to existing named presets when adding new or editing programs; load and restore presets directly when previewing programs (cf. Configure... > Programs). - NSM open and save operation failures are now replied with an error status (was always OK before). - JACK client watchdog introduced for automatic reactivation and resilience (standalone only). - NSM announcement reply/error messages now relegated to debug builds only. 0.9.29 2023-01-25 A Winter'23 Release. - Bumping copyright headers to the brand new year. 0.9.28 2022-12-29 An End-of-Year'22 Release. - Mitigate NSM sending lots of dirty messages on SIGTERM signal. - Although being deprecated to use, JACK Session support hopefuly fixed once again. 0.9.27 2022-10-04 An Early-Autumn'22 Release. - Fixed MIDI Controller... modeless dialog (de)instantiation. - Custom color/style themes applies only to main widget only. - Fixed typos and updated some old MIDI GM2 Controller names. 0.9.26 2022-06-07 An End-of-Sping'22 Release. - Corrected an incredible mistake introduced in the last year's Glide/portamento protential crash fix. - Added Qt::Svg module as required at build time. 0.9.25 2022-04-07 A Spring'22 Release. - Added missing file code to desktop exec entry (standalone only). - Main application icon is now presented in scalable format (SVG). - Migrated command line parsing to QCommandLineParser/Option (Qt >= 5.2) - Avoid issuing NSM dirty messages as much as possible. 0.9.24 2022-01-09 A Winter'22 Release. - Dropped autotools (autoconf, automake, etc.) build system. - Fixed deprecate warnings in preparation for Qt >= 6.2. 0.9.23 2021-07-07 An Early-Summer'21 Release. - Fixed some ages old Glide/portamento potential crash bug (as reported by AnClark, while on synthv1). - Add support for LV2 UI Windows platform (by AnClark, also while on synthv1). - Sustenuto pedal controller (MIDI CC#66) is now implemented. - Fixed old Sustain/Damper/Hold pedal controller (MIDI CC#64) note-off processing. - Have some tolerance for buffer-size changes. - All builds default to Qt6 (Qt >= 6.1) where available. - CMake is now the official build system. 0.9.22 2021-05-13 A Spring'21 Release. - All packaging builds switching to CMake. 0.9.21 2021-03-16 An End-of-Winter'21 Release. - Fixed an old lurker, causing slight differences to voice on-sets, due to a wrong initial LFO Volume ramping value. - Slightly improved eye-candyness to all graphic widgets, most especially on the EG widget handling, curved lines and gradient fills. 0.9.20 2021-02-10 A Winter'21 Release. - When under under the NSM auspices, fix SIGTERM handler on exit and just hide the main-window on close (applies to the JACK stand-alone only). - Fixed sample loop when the DCA EG is off or disabled. 0.9.19 20220-12-19 A Winter'20 Release. - Better handling of the offset and loop ranges when in presence of very long sample files. - Fixed display of old knob/dial values on status-bar. - Reduced formant filter coefficient slew rate, aiming to a tenfold DSP performance gain. - Get a chance on bringing Wayland into the picture when dealing Qt static-linked deliverables. 0.9.18 2020-10-27 A Fall'20 Release. - Upstream package naming for the JACK standalone and LV2 plugin deliverables are suffixed to '-jack' and '-lv2', respectively. - Fixed note-off effectiveness when DCA is disabled (idle). - White keys on the virtual piano keyboard are now fully highlighted. 0.9.17 2020-09-08 Late Summer'10 Release. - Arbitrary number of pitch-shifted octave sample tables is now an instance parameter; pitch-shifting algorithm is also selectable as a global user preference option cf. Help > Configure... > Options > Pitch-shift type: S.M.Bernsee classic algorithm (default) or RubberBand library. - Added -n, --client-name to the JACK stand-alone client application command line option arguments (from PR#31, by Paul Asmuth, thanks). - Fixed unitialized number of voices variable; early-bird adaptations to Qt6 >= 6.0.0 and C++17 standard. 0.9.16 2020-08-06 A Summer'20 Release. - Fixed deprecated stuff on an early preparation for Qt6. 0.9.15 2020-06-22 An Early-Summer'20 Release. - A long awaited expedite "Panic" button is now featured. - Note velocity doesn't affect DCF envelope anymore. - Avoid glib event-loop upon LV2 plug-in instantiation. 0.9.14 2020-05-05 A Mid-Spring'20 Release. - Fixed initial DCF1, LFO1, DCA1 group enablement (GUI). - Fixed initial window title for the LV2 External UI. - LV2 Atom/Port-event host notification support has been implemented (unofficial). - Prevent execution of duplicate or redundant MIDI bank- select/program-change commands. - Early fixing to build for Qt >= 5.15.0. 0.9.13 2020-03-26 A Spring'20 Release. - Always keep the current sample loop-cycle on note-off, while entering a DCA Release stage. - Maximum pitch-bend range has been expanded to 0..400%, allegedly to support some PME driven instruments (as proposed by sacarlson, to synthv1). - Make man page compression reproducible (after request by Jelle van der Waa, thanks). - Fixed crash when showing the tooltip of a negative note number that results from dragging over and beyond the left edge of the virtual piano keyboard. - Remove -v (verbose) flag from 'strip' post-link command. - Fixed CMake build by adding missing Custom Color Theme (palette) form file (.ui). - Bumped copyright headers into the New Year (2020). 0.9.12 2019-12-26 The Winter'19 Release. - Custom color (palette) theme editor introduced; color (palette) theme changes are now effective immediately, except on default. - Second attempt to fix the yet non-official though CMake build configuration. - Move QApplication construction/destruction from LV2 UI to plug-in instantiation and cleanup. 0.9.11 2019-10-31 A Halloween'19 Release. - When using autotools and ./configure --with-qt=..., it is also necessary to adjust the PKG_CONFIG_PATH environment variable (after a merge request by plcl aka. Pedro López-Cabanillas, while on qmidinet). - Upstream packaging is now split to JACK standalone and LV2 plugin only: the former shared common core and UI package is now duplicated but statically linked though. 0.9.10 2019-09-24 An Early-Fall'19 Release. - Upstream packaging is now split on JACK standalone, LV2 plugin and common core and UI packages, similar to recent Debian practice. - Highlight current element/sample/key on the virtual piano keyboard widget. - Added alternate yet non-official CMake build option. - Fix HiDPI display screen effective support (Qt >= 5.6). - All randomizers now compliant to the standard normal distribution. - Make sure compiler flags comply to c++11 as standard. 0.9.9 2019-07-18 A Summer'19 Release. - Randomization of current parameters is now available through a new top-level push-button. - Zero-crossing detection algorithm has been improved, most specially to mitigate transient clicks across offset and loop points. - Updated for the newer Qt5 development tools (>= 5.13). - Per instance custom tuning (micro-tonal) option has been added to the previously existing global settings (cf. Help > Configure... > Tuning > Global, Instance). - New DCF, LFO and DCA Enabled parameters. - Configure updated to check for qtchooser availability. 0.9.8 2019-06-06 A Spring'19 Release. - Improved slew-rate to DCF Formant coefficient updates. - Refactored the LFO Sync for correctness. - Fixed all LFO Panning and Volume modulation, now being correctly isolated on a per voice basis. - Fixed initial LFO wave shapes on LV2 plug-in UI. - Minor update to Debian packaging control file. 0.9.7 2019-04-14 A Spring-Break'19 Release. - Corrected sample offset and loop range internal reset. - All audio input now get through without being processed by any or whole effects stage anymore. - Re-defined all JACK stand-alone client application UNIX signal handling. - Probable fix to sample offset and loop range changes across native UI and loading and saving state. 0.9.6 2019-03-18 Pre-LAC2019 Release Frenzy. - A gentlier shutdown for the JACK client standalone client. 0.9.5 2019-03-04 The End of Winter'19 release. - Improved overall stability for current sample offset and loop range, cross-fade and zero-crossing property changes across UI's, eg. LV2 plug-in native GUI and a host generic provided one. - HiDPI display screen support (Qt >= 5.6). - A fake/visual piano-keyboard widget is now being introduced to the status bar. - Avoid destructing the possibly shared QApplication instance on LV2 plug-in UI clean-up. 0.9.4 2018-12-12 A Late Autumn'18 release. - Make sure all LV2 state sample file references are resolved to their original and canonical file-paths (not symlinks). - Fixed a severe bug on saving the LV2 plug-in state: the sample file reference was being saved with the wrong name identifier and thus gone missing on every session or state reload thereafter. - Sample waveform drawing is a bit more keen to precision. - Old deprecated Qt4 build support is no more. - Normalized wavetable oscillator phasors. - Added missing include to shut up some stricter compilers from build failures. 0.9.3 2018-10-22 An Autumn'18 release. - For safety reasons, all processing is now suspended while loading presets or program changes are issued. - AppStream metadata updated to be the most compliant with latest freedesktop.org specification and recommendation. - SIGTERM (and SIGINT) signal handler added to close the JACK stand-alone client applications properly. - Make the GUI not to show initially on NSM. - Sample offset/loop start/end parameters automation is now a possibility, on the LV2 plug-in form only. - Make NSM state independent to session display name, keeping backward compatibility for old sessions. - Give some more slack to schedule/worker thread ring-buffer. 0.9.2 2018-07-24 A Summer'18 release. - Frame-time display format option added to new offset, loop-start and loop-end spin-boxes. - Sample start point (offset) added as a brand new property parameter. - Add LV2 UI Resize extension data support. - Process MIDI Controlllers even though the channel filter is on (DEF Channel is set anything but "Omni"). - AppData/AppStream metadata is now settled under an all permisssive license (FSFAP). 0.9.1 2018-06-26 An Early Summer'18 release. - Loop crossfading and zero-crossing detection (the later being an old staple by default) are now set as brand new user options accessible from the main UI. - Fixed for some g++ >= 8.1.1 warnings and quietness. - Added LV2 UI X11 support option. - Disable reference micro-tuning settings when a Scala keyboard map override is in effect. - Added "All files (*.*)" filter to every file requestor dialog, wherever missing. 0.9.0 2018-03-07 The End of Winter'18 release. - Introducing Scala micro-tuning classes, borrowed, stirred and refactored from original Nick Dowell's amsynth code, all under the GPL umbrella, of course. - An internal note-key/frequency indirection table is now in place, as a baseline for any micro-tuning implementations. - Whether to use native file browser/requester dialogs is now an effective option when launching under NSM session management (was once disabled initially). - Initializing and/or requesting a New blank preset doesn't open a sample file picker dialog anymore as it was more than nagging while under on NSM sessions. - Trying to get CC14 MSB+LSB (course+fine) running status on, no matter whether each pairing event are under 200ms apart. - A little hardening on the configure (autoconf) macro side. 0.8.6 2017-12-20 The End of Autumn'17 release. - Micro-fade-in/out that were stapled at the loop start/end points respectively is now gone. - Set on a minimum attack time of 500usec as much to prevent audible clicking on low-pitched notes. 0.8.5 2017-10-29 An Autumn'17 release. - Sample files are now saved as symlinks when saving to JACK and/or NSM session directories/folders. - Opening multiple preset files is now possible, populating the preset drop-down listing, while only the first one is loaded effectively into the scene as usual. - Mono(phonic) "Legato" mode option introduced. - Desktop entry specification file is now finally independent from all build/configure template chains, whatever. - Updated target path for freedesktop.org's AppStream metainfo file (formerly AppData). 0.8.4 2017-08-22 A Late-Summer'17 release. - Disabled "Custom style theme" option on LV2 plug-in form. 0.8.3 2017-06-21 A Summer'17 release. - Added StartupWMClass entry to desktop file. - Long overdue, some brand new and fundamental icons revamp. - Play (current sample) menu item has been added to sample display right-click context-menu as for triggering it as an internal MIDI note-on/off event. 0.8.2 2017-05-02 Pre-LAC2017 release frenzy. - A custom knob/spin-box behavioral option have been added: Configure/Knob edit mode, as to avoid abrupt changes upon editing values (still the default behavior) and only take effect (Deferred) when enter is pressed or the spin-box loses focus. - The main GUI has been partially revamped, after replacing some rotary knob/dial combos with kinda more skeuomorphic fake-LED radio-buttons or check-boxes. - A MIDI In(put) status fake-LED is now featured on the bottom-left status bar, adding up to eye-candy as usual. 0.8.1 2017-03-21 A Spring'17 release. - Fixed a probable old miss about changing spin-box and drop-down list not reflecting changes immediately into the respective parameter dial knobs. - Fixed middle-button clicking on the dial-knobs to reset to the current default parameter value. - Help/Configure.../Options/Use desktop environment native dialogs option is now set initially off by default. - Added French man page (by Olivier Humbert, thanks). - Make builds reproducible byte for byte, by getting rid of the configure build date and time stamps. 0.8.0 2016-11-17 A Fall'16 release. - LV2_STATE__StateChanged is now transmitted as a regular atom notification event, as far as to give some careful hosts enough slack to raise a dirty flag. - Fixed input MIDI RPN/NRPN running status processing. - Once forgotten, loop on/off setting is now consequential. - Almost complete overhaul on the configure script command line options, wrt. installation directories specification, eg. --prefix, --bindir, --libdir, --datadir and --mandir. 0.7.6 2016-09-19 The Eleventh official beta. - MIDI RPN/NRPN running status and RPN NULL reset command are now supported (input only). - The core engine implementation is now delivered as a shared object library, common to both the JACK stand-alone client and the LV2 instrument plug-in. - Discretely fixed MIDI Controlllers catch-up algorithm. 0.7.5 2016-06-16 The Tenth official beta. - LV2 Patch property parameters and Worker/Schedule support are now finally in place, allowing for sample file path selections from generic user interfaces. - All changes to most continuous parameter values are now smoothed to a fast but finite slew rate. - All BPM sync options to current transport (Auto) have been refactored to new special minimum value (which is now zero). - In compliance to the LV2 spec. MIDI Controllers now affect cached parameter values only, via shadow ports, instead of input control ports directly, mitigating their read-only restriction. - Make sure LV2 plug-in state is properly reset on restore. - Dropped the --enable-qt5 from configure as found redundant given that's the build default anyway (suggestion by Guido Scholz, while for Qtractor, thanks). 0.7.4 2016-03-02 The ninth-bis official beta. - Fixed the DCF Formant filter voice initialization reset. - French translation updated (by Olivier Humbert, thanks). 0.7.3 2016-02-22 The ninth official beta. - Avoid out-of-bound MIDI events as much as possible, coping with LV2 plug-in hosts that feed/run them in on border line circumstances (as reported by Thorsten Wilms, on suspected Ardour looping crash/bug, probably fixed already, thanks). - Tentatively safe defaults are being introduced to internal OUT FX buffer-sizes, as read from JACK buffer-size changes and LV2 block-length instantiation bound options. - Added application keywords to freedesktop.org's AppData. 0.7.2 2015-12-04 The eighth official beta. - A brand new LFO BPM control parameter is being introduced, as a subordinate to LFO Rate, with follow/sync to current transport/host option (BPM=Auto). - LFO Sync (free running) mode option has been introduced. - A fourth DCF type has been added: a vocal Formant filter. - A third DCF slope/type has been added: the RBJ's bi-quad. - Prefer Qt5 over Qt4 by default with configure script. - Introducing brand new OUT FX Send parameter per engine. - Special value (0=Off) added to GEN Glide knob spin-box. 0.7.1 2015-08-24 A seventh-bis official beta. - Improved Qt4 vs. Qt5 configure builds (via qmake). 0.7.0 2015-07-24 A seventh official beta. - Complete rewrite of Qt4 vs. Qt5 configure builds. - Reset ramps after LV2 control port reconnection; small fixes to LV2.ttl (pull-requests by Hanspeter Portner aka. ventosus on synthv1, thanks). - MIDI Controllers/Programs is now an optional feature on the LV2 plugin forms, as some LV2 hosts might enforce the purity restriction to input control ports as being absolutely read- only parameter values from a plugin's instance perspective. - MIDI Controller mapping/learn is now possible on all parameter control knobs; with global configuration also avaiable on the Help/Configure dialog. - French (fr) translation line to desktop file added (by Olivier Humbert, thanks). 0.6.3 2015-05-09 A sixth official beta. - Main widget layout changed as much to allow sampler display to expand or grow vertically as needed. 0.6.2 2015-04-30 A fifth official beta. - Custom knob/dial behavior mode options are now introduced: linear and angular (aka. radial) as far to avoid abrupt changes on first mouse click (still the default behavior). - Fixed for some strict tests for Qt4 vs. Qt5 configure builds. 0.6.1 2015-03-09 A fourth official beta. - Added application description as freedesktop.org's AppData. - Introducing LV2 port-groups (as proposed by Amadeus Folego aka. badosu, thanks). - Improved envelope widget nodes click-and-drag precision. - Sample file drag-and-drop support has been added. - Introducing a brand new user preference on eye-candy: cf.Help /Configure.../Options/Custom style theme (applies to the JACK stand-alone client only though). - Envelope and filter now rendered with anti-aliased lines. - Fixed a Qt5 FTBFS re. QHeaderView::set[Section]ResizeMode(). 0.6.0 2014-01-23 A third official beta. - MIDI bank-select/program-changes is now supported, for patch, preset and/or instrument program control. - New Help/Configure dialog is introduced for editing the also new MIDI bank/programs interface and user preference options as well (new home of the old Help/Use native dialogs option). - Presets may now be specified by base name, as an alternative to the complete preset file-path on command line argument (re. stand-alone JACK client). - Fixed parameters A/B comparison swap. 0.5.1 2014-09-12 One second official beta. - One decimal digit added to all scalar parameters and knobs. - Stand-alone JACK client ports outrageously renamed from a zero based numbering scheme into a plus one natural one. - Experimental LV2 Time/position atom-event support (Delay BPM). 0.5.0 2014-06-30 Officially beta now. - LV2 UI Idle and Show interfaces support added. - First attempt to allow a headless stand-alone JACK client application run mode, without a GUI, with option given as command line argument (--no-gui). - A man page has beed added (re. stand-alone JACK client). - Reverse sample option and parameter knob added. - Allow the build system to include an user specified LDFLAGS. 0.4.2 2014-04-29 A pre-LAC frenzy beta. - Badly named 'Noise' wave-shapes re-labeled as 'Rand'; also a brand new wave-shape 'Noise' is then introduced (now for real :)). - New user preference option, cf. Help/Use native dialogs. - An anti-denormal regression applied to the Phaser fx stage (affecting early proto-beta >= 0.4.0). 0.4.1 2014-04-07 A proto-beta bis. - Once so called 'Noise' wave-shapes are now being made a lot more deterministic, read idempotent ;). - Late optimizations to basic wave-table oscillators. - Make sure the LV2 plugin back-end always builds first, before its respective LV2 UI front-end client. 0.4.0 2014-03-06 A proto-beta party. - All knobs default value setting slightly improved. - A run-time circumvention have been hacked, strictly related to when NSM session management is in charge: the native file browser/requester dialogs are then disabled (were taking too long to list the current directory on first time invocation). - Auto-detection of the correct target library path for the LV2 plugin, whether it may be .../lib or .../lib64 on bi -arch targets, when libdir is not specified on configure time (--libdir=LIBDIR). - Reverb has been added as a brand new effects stage, though based on good old FreeVerb :). - Introduced a variable env.stage time control parameter. - Purging out some dead code (eg. non-looping, zero-crossing). 0.3.6 2013-12-31 A fifth of a Jubilee. - Effects/Delay BPM sync option to current transport (Auto). - Fixed for relative paths on preset file references. - More preparations for Qt5 configure build. 0.3.5 2013-09-30 Fall greetings. - First attempt on separating the DSP code from UI as runtime objects, effective for the LV2 plugin deploy. - MIDI channel filter switch is now introduced. - Fixed uninstall target make rule. - Mono(phonic) mode switch is now being introduced. - Another minor fix to note-off fast-release. 0.3.4 2013-07-16 Brand new icon ready. - Preset file icon and mimetype now introduced. - A brand new icon drops the lamest old-schooler's out, in a master lesson taught by Jarle Richard Akselsen, thanks. 0.3.3 2013-05-31 Late spring blossoming. - Some sympathy to extreme dark color (read black) schemes is now being indulged; some discrete changes on the icon front has also emerged ;) - MIDI Key pressure/polyphonic aftertouch events now properly recognized, in addition to MIDI channel pressure/aftertouch processing. - Parameter value ramping moved into the late post-processing, an attempt to reduce some pop/click artifacts even further. - NSM support introduced to JACK client. - A slight GUI behavior change: (re)writing existing names doesn't load the respective preset anymore (after ticket by Jiri Prochazka aka. Anchakor, thanks). - Introducing LV2 External UI "rogue" support. - Moog-like 24dB/oct resonant filter slight modification. - Fixed JACK client fail/fake initialization. 0.3.2 2013-03-01 One third bug-fix release. - Pitch-bend, Modwheel and LFO Pitch range internal fixes. - LV2 State save flags now forced to be portable POD. - Sustain/damper pedal switch (MIDI CC#64) support added. - Color palette hack on Qt5 dark themes. 0.3.1 2013-02-08 One second bug-fix release. - Improved filters parameter sensitivity (cutoff, reso). - Envelope generators stage curves now gone a little more old- schooler and analog-like, hopefully improving on the punchy and click-less sound front. - Experimental LV2 Time designated port support (Delay BPM). - Preparations for Qt5 migration. - Sample loop points were missing the LV2 UI state restoration. 0.3.0 2012-12-21 Third coming release. - Sample loop points (start, end) support added. - Dropped all SSE dummy build optimization flags as they were making more harm than real good, performance wise. - GUI layout moved from a toolbox into a stacked tab widget; also, a status-bar has been added at the bottom display. - LV2 Atom/MIDI event processing is now official, a replacement for the formerly deprecated LV2 Event/MIDI specification. - Added dirty checking also on switching from unamed presets. - JACK stand-alone: preset loader initialization fix. 0.2.0 2012-11-22 Second public release. - Parameters A/B comparison toggle buttons have been added. - Keep LV2 event buffer valid on each run(), as found for strict LV2 specification and compliance (as suggested by falkTX). - Increased polyphony baseline from 24 to 32 voices. - Prepared for relative paths from preset file references. - Audio files browser filter support for the old but everlasting 8.3 filename formats. - Velocity sensitivity configuration control has been added. - Reset (all values to preset defaults) button has been added. - Slight minor fix on fast-release re-triggering. - Sample widget context menu's now a reality. - Added some command line options to the stand-alone JACK client program (--help and --version information). - Reimplemented mouse-wheel stepping on combo-dial knob widgets. - Access to core engine instance has been slightly refactored. - Detached generic double-linked list class into its own header. 0.1.1 2012-09-24 One first bug-fix release. - Fixed a crash bug on LV2 main widget close (GUI) due to some superfluous preset dirty checking. - Fixed a nasty rather fundamental bug introduced by late voice list optimization, which was seriously crippled and noticeable when more than one LV2 plug-in were being instantiated. 0.1.0 2012-09-10 First true official release. - Preset drop-down list is now sorted. - Migrated to sourceforge.net. 0.0.9 2012-08-27 Post-vacation relax. - LV2 plugin also asking for sample file when initializing (GUI). - Main widget now a plain basic QWidget, instead of QDialog. - Preset salvage query check on main widget close (GUI). - Voice list alloc/free optimization--doubled polyphony. 0.0.8 2012-07-15 Second coming consolidation. - Proto-icon, Desktop file and Help About menus added. - LV2 State Files support added. 0.0.7 2012-07-07 Initial change-log entry. samplv1-1.4.3/PaxHeaders/LICENSE0000644000000000000000000000013215245503134013167 xustar0030 mtime=1788249692.166072954 30 atime=1788249692.166072954 30 ctime=1788249692.166072954 samplv1-1.4.3/LICENSE0000644000175000001440000004310315245503134013160 0ustar00rncbcusers GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. samplv1-1.4.3/PaxHeaders/README0000644000000000000000000000013215245503134013042 xustar0030 mtime=1788249692.166072954 30 atime=1788249692.166072954 30 ctime=1788249692.166072954 samplv1-1.4.3/README0000644000175000001440000000677515245503134013051 0ustar00rncbcuserssamplv1 - an old-school polyphonic sampler ------------------------------------------ an old-school polyphonic sampler synthesizer with stereo fx. Features: - pure stand-alone JACK [1] client with JACK-session, NSM [3] and both JACK MIDI and ALSA MIDI [2] input support; - LV2 [4] instrument plugin. URI: http://samplv1.sourceforge.net/lv2 License: samplv1 is free, Linux Audio [5] open-source software, distributed under the terms of the GNU General Public License (GPL) [6] version 2 or later. Website: https://samplv1.sourceforge.io http://samplv1.sourceforge.net Project page: https://sourceforge.net/projects/samplv1 Git repos: https://git.code.sf.net/p/samplv1/code https://github.com/rncbc/samplv1.git https://gitlab.com/rncbc/samplv1.git https://codeberg.org/rncbc/samplv1.git Weblog: https://www.rncbc.org Requirements: mandatory, - Qt framework [7], C++ class library and tools for cross-platform application and UI development https://qt.io/ - libsndfile [8], C library for reading and writing files containing sampled sound http://www.mega-nerd.com/libsndfile/ optional (opted-in at build time), - JACK [1] Audio Connection Kit https://jackaudio.org/ - ALSA [2], Advanced Linux Sound Architecture https://www.alsa-project.org/ - LV2 [4], Audio Plugin Standard, the extensible successor of LADSPA https://lv2plug.in/ - FFTW3 [9], a C library for computing the discrete Fourier transform (DFT) in one or more dimensions http://www.fftw.org/ - librubberband [10], Rubber Band Audio Time Stretcher, an audio time-stretching and pitch-shifting library https://breakfastquay.com/rubberband/ - liblo [11], Lightweight OSC implementation (needed for NSM support [3]) http://liblo.sourceforge.net/ Installation: - unpack tarball as usual; in the extracted source directory: cmake [-DCMAKE_INSTALL_PREFIX=] -B build cmake --build build [--parallel ] - optionally, as root: [sudo] cmake --install build - note that the default installation path () is /usr/local . Acknowledgements: samplv1 logo/icon is an original fine work of Jarle Richard Akselsen. References: [1] JACK Audio Connection Kit https://jackaudio.org/ [2] ALSA, Advanced Linux Sound Architecture https://www.alsa-project.org/ [3] Non Session Management (NSM) (legacy) http://non.tuxfamily.org/nsm/ New Session Manager (NSM) https://new-session-manager.jackaudio.org/ [4] LV2, Audio Plugin Standard, the extensible successor of LADSPA http://lv2plug.in/ [5] Linux Audio consortium of libre software for audio-related work https://linuxaudio.org [6] GNU General Public License https://www.gnu.org/copyleft/gpl.html [7] Qt framework, C++ class library and tools for cross-platform application and UI development https://qt.io/ [8] libsndfile, C library for reading and writing files containing sampled sound http://www.mega-nerd.com/libsndfile/ [9] FFTW3, a C library for computing the discrete Fourier transform (DFT) in one or more dimensions http://www.fftw.org/ [10] librubberband, Rubber Band Audio Time Stretcher, an audio time-stretching and pitch-shifting library https://breakfastquay.com/rubberband/ [11] liblo, Lightweight OSC implementation (needed for NSM support [3]) http://liblo.sourceforge.net/ Cheers && Enjoy. -- rncbc aka. Rui Nuno Capela rncbc@rncbc.org https://www.rncbc.org samplv1-1.4.3/PaxHeaders/src0000644000000000000000000000013215245503134012674 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.166570553 30 ctime=1788249692.172675585 samplv1-1.4.3/src/0000755000175000001440000000000015245503134012741 5ustar00rncbcuserssamplv1-1.4.3/src/PaxHeaders/samplv1widget_control.cpp0000644000000000000000000000013215245503134020004 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_control.cpp0000644000175000001440000003741215245503134020003 0ustar00rncbcusers// samplv1widget_control.cpp // /**************************************************************************** Copyright (C) 2012-2022, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_control.h" #include "samplv1widget_controls.h" #include "samplv1_config.h" #include "ui_samplv1widget_control.h" #include #include #include //---------------------------------------------------------------------------- // samplv1widget_control -- UI wrapper form. // Kind of singleton reference. samplv1widget_control *samplv1widget_control::g_pInstance = nullptr; // Constructor. samplv1widget_control::samplv1widget_control ( QWidget *pParent ) : QDialog(pParent), p_ui(new Ui::samplv1widget_control), m_ui(*p_ui) { // Setup UI struct... m_ui.setupUi(this); // Make it auto-modeless dialog... QDialog::setAttribute(Qt::WA_DeleteOnClose); // Control types... m_ui.ControlTypeComboBox->clear(); m_ui.ControlTypeComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::CC), int(samplv1_controls::CC)); m_ui.ControlTypeComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::RPN), int(samplv1_controls::RPN)); m_ui.ControlTypeComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::NRPN), int(samplv1_controls::NRPN)); m_ui.ControlTypeComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::CC14), int(samplv1_controls::CC14)); m_ui.ControlParamComboBox->setInsertPolicy(QComboBox::NoInsert); // Start clean. m_iControlParamUpdate = 0; m_iDirtyCount = 0; m_iDirtySetup = 0; // Populate param list. // activateControlType(m_ui.ControlTypeComboBox->currentIndex()); // Try to fix window geometry. adjustSize(); // UI signal/slot connections... QObject::connect(m_ui.ControlTypeComboBox, SIGNAL(activated(int)), SLOT(activateControlType(int))); QObject::connect(m_ui.ControlParamComboBox, SIGNAL(activated(int)), SLOT(changed())); QObject::connect(m_ui.ControlChannelSpinBox, SIGNAL(valueChanged(int)), SLOT(changed())); QObject::connect(m_ui.ControlLogarithmicCheckBox, SIGNAL(toggled(bool)), SLOT(changed())); QObject::connect(m_ui.ControlInvertCheckBox, SIGNAL(toggled(bool)), SLOT(changed())); QObject::connect(m_ui.ControlHookCheckBox, SIGNAL(toggled(bool)), SLOT(changed())); QObject::connect(m_ui.DialogButtonBox, SIGNAL(clicked(QAbstractButton *)), SLOT(clicked(QAbstractButton *))); QObject::connect(m_ui.DialogButtonBox, SIGNAL(accepted()), SLOT(accept())); QObject::connect(m_ui.DialogButtonBox, SIGNAL(rejected()), SLOT(reject())); // Pseudo-singleton reference setup. g_pInstance = this; } // Destructor. samplv1widget_control::~samplv1widget_control (void) { delete p_ui; } // Pseudo-singleton instance. samplv1widget_control *samplv1widget_control::getInstance (void) { return g_pInstance; } // Pseudo-constructor. void samplv1widget_control::showInstance ( samplv1_controls *pControls, samplv1::ParamIndex index, const QString& sTitle, QWidget *pParent ) { samplv1widget_control *pInstance = samplv1widget_control::getInstance(); if (pInstance) pInstance->close(); pInstance = new samplv1widget_control(pParent); pInstance->setWindowTitle(sTitle); pInstance->setControls(pControls, index); pInstance->show(); } // Control accessors. void samplv1widget_control::setControls ( samplv1_controls *pControls, samplv1::ParamIndex index ) { ++m_iDirtySetup; m_pControls = pControls; m_index = index; m_key.status = samplv1_controls::CC; unsigned int flags = 0; if (m_pControls) { const samplv1_controls::Map& map = m_pControls->map(); samplv1_controls::Map::ConstIterator iter = map.constBegin(); const samplv1_controls::Map::ConstIterator& iter_end = map.constEnd(); for ( ; iter != iter_end; ++iter) { const samplv1_controls::Data& data = iter.value(); if (samplv1::ParamIndex(data.index) == m_index) { flags = data.flags; m_key = iter.key(); break; } } } setControlKey(m_key); const bool bFloat = samplv1_param::paramFloat(m_index); m_ui.ControlLogarithmicCheckBox->setChecked( (flags & samplv1_controls::Logarithmic) && bFloat); m_ui.ControlLogarithmicCheckBox->setEnabled(bFloat); m_ui.ControlInvertCheckBox->setChecked( (flags & samplv1_controls::Invert)); m_ui.ControlInvertCheckBox->setEnabled(true); m_ui.ControlHookCheckBox->setChecked( (flags & samplv1_controls::Hook) || !bFloat); m_ui.ControlHookCheckBox->setEnabled(bFloat); --m_iDirtySetup; m_iDirtyCount = 0; } samplv1_controls *samplv1widget_control::controls (void) const { return m_pControls; } samplv1::ParamIndex samplv1widget_control::controlIndex (void) const { return m_index; } // Pseudo-destructor. void samplv1widget_control::cleanup (void) { // Aint't dirty no more... m_iDirtyCount = 0; // Pseudo-singleton reference cleanup. g_pInstance = nullptr; } void samplv1widget_control::closeEvent ( QCloseEvent *pCloseEvent ) { cleanup(); // Sure acceptance and probable destruction (cf. WA_DeleteOnClose). QDialog::closeEvent(pCloseEvent); } // Process incoming controller key event. void samplv1widget_control::setControlKey ( const samplv1_controls::Key& key ) { setControlType(key.type()); setControlParam(key.param); m_ui.ControlChannelSpinBox->setValue(key.channel()); QPushButton *pResetButton = m_ui.DialogButtonBox->button(QDialogButtonBox::Reset); if (pResetButton && m_pControls) pResetButton->setEnabled(m_pControls->find_control(key) >= 0); } samplv1_controls::Key samplv1widget_control::controlKey (void) const { samplv1_controls::Key key; const samplv1_controls::Type ctype = controlType(); const unsigned short channel = controlChannel(); key.status = ctype | (channel & 0x1f); key.param = controlParam(); return key; } // Change settings (anything else slot). void samplv1widget_control::changed (void) { if (m_iDirtySetup > 0) return; #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::changed()"); #endif ++m_iDirtyCount; stabilize(); } // Reset settings (action button slot). void samplv1widget_control::clicked ( QAbstractButton *pButton ) { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::clicked(%p)", pButton); #endif QDialogButtonBox::ButtonRole role = m_ui.DialogButtonBox->buttonRole(pButton); if ((role & QDialogButtonBox::ResetRole) == QDialogButtonBox::ResetRole) reset(); } // Reset settings (Reset button slot). void samplv1widget_control::reset (void) { if (m_pControls == nullptr) return; #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::reset()"); #endif const int iIndex = m_pControls->find_control(m_key); if (iIndex < 0) return; // Unmap the existing controller.... m_pControls->remove_control(m_key); // Save controls... samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) pConfig->saveControls(m_pControls); cleanup(); // Bail out... QDialog::accept(); } // Accept settings (OK button slot). void samplv1widget_control::accept (void) { if (m_pControls == nullptr) return; #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::accept()"); #endif // Unmap the existing controller.... int iIndex = m_pControls->find_control(m_key); if (iIndex >= 0) m_pControls->remove_control(m_key); // Get new map settings... m_key = controlKey(); // Check if already mapped to someone else... iIndex = m_pControls->find_control(m_key); if (iIndex >= 0 && samplv1::ParamIndex(iIndex) != m_index) { if (QMessageBox::warning(this, QDialog::windowTitle(), tr("MIDI controller is already assigned.\n\n" "Do you want to replace the mapping?"), QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel) return; } // Unmap the existing controller.... if (iIndex >= 0) m_pControls->remove_control(m_key); // Reset controller flags all te way... unsigned int flags = 0; if (m_ui.ControlLogarithmicCheckBox->isEnabled() && m_ui.ControlLogarithmicCheckBox->isChecked()) flags |= samplv1_controls::Logarithmic; if (m_ui.ControlInvertCheckBox->isEnabled() && m_ui.ControlInvertCheckBox->isChecked()) flags |= samplv1_controls::Invert; if (m_ui.ControlHookCheckBox->isEnabled() && m_ui.ControlHookCheckBox->isChecked()) flags |= samplv1_controls::Hook; // Map the damn controller.... samplv1_controls::Data data; data.index = m_index; data.flags = flags; m_pControls->add_control(m_key, data); // Save controls... samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) pConfig->saveControls(m_pControls); cleanup(); // Just go with dialog acceptance... QDialog::accept(); } // Reject settings (Cancel button slot). void samplv1widget_control::reject (void) { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::reject()"); #endif // Check if there's any pending changes... if (m_iDirtyCount > 0) { switch (QMessageBox::warning(this, QDialog::windowTitle(), tr("Some settings have been changed.\n\n" "Do you want to apply the changes?"), QMessageBox::Apply | QMessageBox::Discard | QMessageBox::Cancel)) { case QMessageBox::Discard: break; case QMessageBox::Apply: accept(); default: return; } } cleanup(); // Just go with dialog rejection... QDialog::reject(); } // Perotected slots. void samplv1widget_control::activateControlType ( int iControlType ) { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_control::activateControlType(%d)", iControlType); #endif updateControlType(iControlType); changed(); } void samplv1widget_control::editControlParamFinished (void) { if (m_iControlParamUpdate > 0) return; ++m_iControlParamUpdate; const QString& sControlParam = m_ui.ControlParamComboBox->currentText(); bool bOk = false; sControlParam.toInt(&bOk); if (bOk) changed(); --m_iControlParamUpdate; } void samplv1widget_control::stabilize (void) { const bool bValid = (m_iDirtyCount > 0); m_ui.DialogButtonBox->button(QDialogButtonBox::Ok)->setEnabled(bValid); } // Control type dependency refresh. void samplv1widget_control::updateControlType ( int iControlType ) { if (iControlType < 0) iControlType = m_ui.ControlTypeComboBox->currentIndex(); const samplv1_controls::Type ctype = controlTypeFromIndex(iControlType); const bool bOldEditable = m_ui.ControlParamComboBox->isEditable(); const int iOldParam = m_ui.ControlParamComboBox->currentIndex(); const QString sOldParam = m_ui.ControlParamComboBox->currentText(); m_ui.ControlParamComboBox->clear(); const QString sMask("%1 - %2"); switch (ctype) { case samplv1_controls::CC: { if (m_ui.ControlParamTextLabel) m_ui.ControlParamTextLabel->setEnabled(true); m_ui.ControlParamComboBox->setEnabled(true); m_ui.ControlParamComboBox->setEditable(false); const samplv1widget_controls::Names& controllers = samplv1widget_controls::controllerNames(); for (unsigned short param = 0; param < 128; ++param) { m_ui.ControlParamComboBox->addItem( sMask.arg(param).arg(controllers.value(param)), int(param)); } break; } case samplv1_controls::RPN: { if (m_ui.ControlParamTextLabel) m_ui.ControlParamTextLabel->setEnabled(true); m_ui.ControlParamComboBox->setEnabled(true); m_ui.ControlParamComboBox->setEditable(true); const samplv1widget_controls::Names& rpns = samplv1widget_controls::rpnNames(); samplv1widget_controls::Names::ConstIterator iter = rpns.constBegin(); const samplv1widget_controls::Names::ConstIterator& iter_end = rpns.constEnd(); for ( ; iter != iter_end; ++iter) { const unsigned short param = iter.key(); m_ui.ControlParamComboBox->addItem( sMask.arg(param).arg(iter.value()), int(param)); } break; } case samplv1_controls::NRPN: { if (m_ui.ControlParamTextLabel) m_ui.ControlParamTextLabel->setEnabled(true); m_ui.ControlParamComboBox->setEnabled(true); m_ui.ControlParamComboBox->setEditable(true); const samplv1widget_controls::Names& nrpns = samplv1widget_controls::nrpnNames(); samplv1widget_controls::Names::ConstIterator iter = nrpns.constBegin(); const samplv1widget_controls::Names::ConstIterator& iter_end = nrpns.constEnd(); for ( ; iter != iter_end; ++iter) { const unsigned short param = iter.key(); m_ui.ControlParamComboBox->addItem( sMask.arg(param).arg(iter.value()), int(param)); } break; } case samplv1_controls::CC14: { if (m_ui.ControlParamTextLabel) m_ui.ControlParamTextLabel->setEnabled(true); m_ui.ControlParamComboBox->setEnabled(true); m_ui.ControlParamComboBox->setEditable(false); const samplv1widget_controls::Names& control14s = samplv1widget_controls::control14Names(); for (unsigned short param = 1; param < 32; ++param) { m_ui.ControlParamComboBox->addItem( sMask.arg(param).arg(control14s.value(param)), int(param)); } break; } default: break; } if (iOldParam >= 0 && iOldParam < m_ui.ControlParamComboBox->count()) m_ui.ControlParamComboBox->setCurrentIndex(iOldParam); if (m_ui.ControlParamComboBox->isEditable()) { QObject::connect(m_ui.ControlParamComboBox->lineEdit(), SIGNAL(editingFinished()), SLOT(editControlParamFinished())); if (bOldEditable) m_ui.ControlParamComboBox->setEditText(sOldParam); } } void samplv1widget_control::setControlType ( samplv1_controls::Type ctype ) { const int iControlType = indexFromControlType(ctype); m_ui.ControlTypeComboBox->setCurrentIndex(iControlType); updateControlType(iControlType); } samplv1_controls::Type samplv1widget_control::controlType (void) const { return controlTypeFromIndex(m_ui.ControlTypeComboBox->currentIndex()); } void samplv1widget_control::setControlParam ( unsigned short param ) { const int iControlParam = indexFromControlParam(param); if (iControlParam >= 0) { m_ui.ControlParamComboBox->setCurrentIndex(iControlParam); } else { const QString& sControlParam = QString::number(param); m_ui.ControlParamComboBox->setEditText(sControlParam); } } unsigned short samplv1widget_control::controlParam (void) const { if (m_ui.ControlParamComboBox->isEditable()) { unsigned short param = 0; const QString& sControlParam = m_ui.ControlParamComboBox->currentText(); bool bOk = false; param = sControlParam.toInt(&bOk); if (bOk) return param; } return controlParamFromIndex(m_ui.ControlParamComboBox->currentIndex()); } unsigned short samplv1widget_control::controlChannel (void) const { return m_ui.ControlChannelSpinBox->value(); } samplv1_controls::Type samplv1widget_control::controlTypeFromIndex ( int iIndex ) const { if (iIndex >= 0 && iIndex < m_ui.ControlTypeComboBox->count()) return samplv1_controls::Type( m_ui.ControlTypeComboBox->itemData(iIndex).toInt()); else return samplv1_controls::CC; } int samplv1widget_control::indexFromControlType ( samplv1_controls::Type ctype ) const { return m_ui.ControlTypeComboBox->findData(int(ctype)); } unsigned short samplv1widget_control::controlParamFromIndex ( int iIndex ) const { if (iIndex >= 0 && iIndex < m_ui.ControlParamComboBox->count()) return m_ui.ControlParamComboBox->itemData(iIndex).toInt(); else return 0; } int samplv1widget_control::indexFromControlParam ( unsigned short param ) const { return m_ui.ControlParamComboBox->findData(int(param)); } // end of samplv1widget_control.cpp samplv1-1.4.3/src/PaxHeaders/mimetypes0000644000000000000000000000013015245503134014706 xustar0029 mtime=1788249692.17016207 30 atime=1788249692.170131215 29 ctime=1788249692.17016207 samplv1-1.4.3/src/mimetypes/0000755000175000001440000000000015245503134014755 5ustar00rncbcuserssamplv1-1.4.3/src/mimetypes/PaxHeaders/org.rncbc.samplv1.application-x-samplv1-preset.png0000644000000000000000000000013215245503134026362 xustar0030 mtime=1788249692.170131215 30 atime=1788249692.170131215 30 ctime=1788249692.170131215 samplv1-1.4.3/src/mimetypes/org.rncbc.samplv1.application-x-samplv1-preset.png0000644000175000001440000000330115245503134026347 0ustar00rncbcusersPNG  IHDR szz pHYsodtEXtSoftwarewww.inkscape.org<NIDATXkL{gw50,ɲ KjZMHTjcՉTEURQoQJqqU ӇղݒڑMl0׀wݹ?]pk%G;gΜ3g=Bkv"Lkն6 خ]_b(vZwo_8S(H@:X/ͻ_J&WRar[IȲ46+^ms/#IAt=ou/*Uj[;>FbOOL\ ,i~w<25>~ŞGeE7+ oF399nNWΒL"ӟB6' PQY6k4M|>?ZkSZ^PJs1M) B,Z96Ees~CZ+[FB KGUoig6mf"Zqh Vڰnh.JɲRfttY:ԝ)n~xW~5zQ6mAS6 <˩Sedd%ڳD?ŎtvD" 蠧G-v!Ʈ^gnn%Y\\رc8ùszp $gΜ!M0\r@kr]R(2ωk(AAgg'555ضaضmAC]]a555ttt-rYphcÇJHKQQQAeeBRضCؿ?իFftvveՖ(%! Xyj?SK rTVV 0 X+pqfs(qE"_?ǃ104 \&FUUUx^fgg[8 tsq8q"R2 ]fEziŐ$Hp-BJ6LOOc&3 RMx^2 >L&zi`'HtslVr`E~|>eYy`r5dY[@OfϮ̧x‡'R|s?OrUR&&&'O~'(J㝷^Cj] 1ZoIݞ{Mk^IrёF|>#ц BbHC;ԉ) !^+)Qtzij3kN:!D-`=xtQ^:P5*IENDB`samplv1-1.4.3/src/mimetypes/PaxHeaders/org.rncbc.samplv1.xml0000644000000000000000000000012715245503134020752 xustar0029 mtime=1788249692.17016207 29 atime=1788249692.17016207 29 ctime=1788249692.17016207 samplv1-1.4.3/src/mimetypes/org.rncbc.samplv1.xml0000644000175000001440000000055315245503134020741 0ustar00rncbcusers samplv1 preset samplv1-1.4.3/src/mimetypes/PaxHeaders/org.rncbc.samplv1.application-x-samplv1-preset.svg0000644000000000000000000000013015245503134026373 xustar0029 mtime=1788249692.17016207 30 atime=1788249692.170131215 29 ctime=1788249692.17016207 samplv1-1.4.3/src/mimetypes/org.rncbc.samplv1.application-x-samplv1-preset.svg0000644000175000001440000031233615245503134026375 0ustar00rncbcusers samplv1-1.4.3/src/PaxHeaders/samplv1widget_control.h0000644000000000000000000000013215245503134017451 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_control.h0000644000175000001440000000657415245503134017455 0ustar00rncbcusers// samplv1widget_control.h // /**************************************************************************** Copyright (C) 2012-2022, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_control_h #define __samplv1widget_control_h #include "samplv1_controls.h" #include "samplv1_param.h" #include // forward decls. namespace Ui { class samplv1widget_control; } class QAbstractButton; class QCloseEvent; //---------------------------------------------------------------------------- // samplv1widget_control -- UI wrapper form. class samplv1widget_control : public QDialog { Q_OBJECT public: // Pseudo-singleton instance. static samplv1widget_control *getInstance(); // Pseudo-constructor. static void showInstance( samplv1_controls *pControls, samplv1::ParamIndex index, const QString& sTitle, QWidget *pParent = nullptr); // Control accessors. void setControls(samplv1_controls *pControls, samplv1::ParamIndex index); samplv1_controls *controls() const; samplv1::ParamIndex controlIndex() const; // Process incoming controller key event. void setControlKey(const samplv1_controls::Key& key); samplv1_controls::Key controlKey() const; protected slots: void changed(); void clicked(QAbstractButton *); void reset(); void accept(); void reject(); void activateControlType(int); void editControlParamFinished(); void stabilize(); protected: // Constructor. samplv1widget_control(QWidget *pParent = nullptr); // Destructor. ~samplv1widget_control(); // Pseudo-destructor. void cleanup(); void closeEvent(QCloseEvent *pCloseEvent); // Control type dependency refresh. void updateControlType(int iControlType); void setControlType(samplv1_controls::Type ctype); samplv1_controls::Type controlType() const; void setControlParam(unsigned short param); unsigned short controlParam() const; unsigned short controlChannel() const; samplv1_controls::Type controlTypeFromIndex (int iIndex) const; int indexFromControlType(samplv1_controls::Type ctype) const; unsigned short controlParamFromIndex(int iIndex) const; int indexFromControlParam(unsigned short param) const; private: // The Qt-designer UI struct... Ui::samplv1widget_control *p_ui; Ui::samplv1widget_control& m_ui; // Instance variables. samplv1_controls *m_pControls; // Target subject. samplv1_controls::Key m_key; samplv1::ParamIndex m_index; // Instance variables. int m_iControlParamUpdate; int m_iDirtyCount; int m_iDirtySetup; // Pseudo-singleton instance. static samplv1widget_control *g_pInstance; }; #endif // __samplv1widget_control_h // end of samplv1widget_control.h samplv1-1.4.3/src/PaxHeaders/images0000644000000000000000000000013215245503134014141 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.168675569 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/0000755000175000001440000000000015245503134014206 5ustar00rncbcuserssamplv1-1.4.3/src/images/PaxHeaders/fileOpen.png0000644000000000000000000000013215245503134016465 xustar0030 mtime=1788249692.168675569 30 atime=1788249692.168675569 30 ctime=1788249692.168675569 samplv1-1.4.3/src/images/fileOpen.png0000644000175000001440000000142215245503134016454 0ustar00rncbcusersPNG  IHDRĴl;sBIT|d pHYs & &Q3tEXtSoftwarewww.inkscape.org<IDAT8Օka?w4z*[k8Y:;. b)Tҡ!CVQp`iJ"  fС I3Đv^<>spP|𺶁 qי50\u} >EszñX챮mVUU _XXxif|/np px r ߀'} q.p m=X|gggIT3;;KVcii(<O-NK&π[&񕕕LNNJ,I$qhf#2-Ni>]BPARR,|8ڶM__H. zTU\.d888𐍍 LDD* `H$( dO &z\.*;UDd0 OsjܩDV-၁, 3ɤ<\[[3ED⿚D ‘/qu]?Wh4[*[uE@ QӒH$~{{齽yJ`Y nLF u ???FEhPU_pePp03Ig=X['PoIENDB`samplv1-1.4.3/src/images/PaxHeaders/samplv1.svg0000644000000000000000000000013215245503134016322 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/samplv1.svg0000644000175000001440000030436215245503134016322 0ustar00rncbcusers samplv1-1.4.3/src/images/PaxHeaders/presetEdit.png0000644000000000000000000000013215245503134017034 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/presetEdit.png0000644000175000001440000000054115245503134017024 0ustar00rncbcusersPNG  IHDRa(IDAT8c`R %%RZd1&ⴲ16?W@࿋b `d`dOLy g3oJ'L`!g2߁++khRSSb l//,,⿀A{ϡ˗1񿩩+Ng٘EO{+ϟ/bV4 ("ή9\K'38aϟ#O^K3F4^pVڳ nϼcǶP|13QqY!N l #QpyPQIENDB`samplv1-1.4.3/src/images/PaxHeaders/presetExport.png0000644000000000000000000000013215245503134017430 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/presetExport.png0000644000175000001440000000145615245503134017426 0ustar00rncbcusersPNG  IHDRasRGB,gAMA a cHRMz&u0`:pQ<IDAT8ˍ[HQ%45KR AYݣ,(2)^$B,$*($ ne-5 řq&gO3vrٜ묭諔jBEq!|S$ XH sػELdDۻU[66?=et^Fc:1=,T(..U],-:Gɜ= ]tHIOCVU@ٗXzlu,dgP-)Ec`aQ ,Lټ!^A]޶kdwB$Jj(82n~$Yt<#)&U`s"T3.gp='bi \|S;#0Ni@W,kdoj#H4;nMc4E̊`v8\! l ,u׾3Vau]@Hz*W耿 2CUjKfyO+J 7/VkNP ݂b;oNr&9 + ˣ߬79 X&s*T޵SQT0s"5cw^==D_tʫlT]t&X踝։7MYͺ+ PV6CSU9+GRh&܋z ޓc~Nbw!8<iIENDB`samplv1-1.4.3/src/images/PaxHeaders/presetBankOpen.png0000644000000000000000000000013215245503134017644 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/presetBankOpen.png0000644000175000001440000000156215245503134017640 0ustar00rncbcusersPNG  IHDRa9IDAT8˅hu_{vtSk#Z R !psXʒ fհIDm퇮nλ_mgw=L{o|t]/JIII]MM񦦦/W˫=JͧN/Y4m}mmGl6[FWF"a!Dv?q;*-4Y[z )7 m0?vtaWN}|Y#)6R -*Y5ճl%ףe3Nz= BRtxpIENDB`samplv1-1.4.3/src/images/PaxHeaders/samplv1.png0000644000000000000000000000013215245503134016307 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/samplv1.png0000644000175000001440000000421515245503134016301 0ustar00rncbcusersPNG  IHDR szz pHYsyytEXtSoftwarewww.inkscape.org<IDATX_lU?gܹ3^K[J(PbXj6dÃFŘl"Odb>,>HdxE@EĬe B7sg>F*5{o~}ϙsR;vFGGk1DkZu{nn/W)Քa|<``ffӧ닋@R 4$g: Ð#cGHRT+Uw6o_R՘XVƿgph9t]gݟ]b_)/Qkx J)PPH5 SSL:."aliso֣>Qm 4Aů ~zbJXͳ%R ~```1v4B=.iL'l0° 6o`"t0 PDaDVC}FZ9 C;,իQ(r(hF&aHSg3 L|T2w0[C;hFOhY6mHPZ*ֽ6h˶x U[VQ.2Mhh6_[%ҬG&sUTZ=&)^+&9W\a۶mLOMst!D\ϞŻӌJucǎsNt]GJIR)4M端)%/^q:;;Rr9:]]]qœO>ul0x,eōf>0M)%zjL0 Ldx,6nBQ˲0M~Oq֭[:u*>&&& ƓT*_ķnBJ5+y1Nض(Bx|ڵkzD"X6(4yRT,kN&˚# PlXY(V\.HlYBDzm0 }_r9\tzi47)R8}0u}g.ۖgt]޾{=?/qgvWgG2/\-ֵgrr hl~S<ݹSg .2qz4[oxl3E0ahΏ{=} Xm]D<*&B ѩ,8?ԏ+ӏwi»VI74M U W2soώ_ x8WjP @JR B!pؘ3] Lr)( @4)+* 0v}H)BHuZF-("l!i"ulM0 oTԩS?@ N/[n144GFF_N:kCjdҿDQ̬{~17wtc`+~XCCCٳ{t:M.\(FGs{dGKlndRv. $gVoעSJ뚵J $BR ѣ>sk$3>@H$\:4Bc̗dޣBY=>"ݻK}oC{d3skFBYʕ2{L B,_1UYeGr(W\pa^sxV%"a!4J*tmaAxA:L3ILI[9f1Ī U?UǏӅk-ރ!;LZXi~d7L!1PRq^1ҹ@EX;RD0R3E>yȄ ")(AگȭcJ] Rd[/tJΆ+ T*E(J!m.|E+GxgϞ=A/1f҆qIENDB`samplv1-1.4.3/src/images/PaxHeaders/itemReset.png0000644000000000000000000000013215245503134016665 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.168675569 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/itemReset.png0000644000175000001440000000110315245503134016650 0ustar00rncbcusersPNG  IHDRasBIT|d pHYsbb8ztEXtSoftwarewww.inkscape.org<IDAT8R`__] NHMP ]ڥCS'(tS7%O24bHi/5{clt{s? D$(M/Lr)˲|i .y'aE1'mq("( ԡ}eYf)q mE1;͒l6re}u=" ѨZUBl[c $۶ziVs !Kv;cEp΁R R4M$~;9?5 s~Z!g~Q20J)AG"H7Bay?m4J1LRT.v$"!`8(ur|V*c}q%N~3υri6MZ.:GixUs IENDB`samplv1-1.4.3/src/images/PaxHeaders/ledOff.png0000644000000000000000000000013215245503134016123 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/ledOff.png0000644000175000001440000000123115245503134016110 0ustar00rncbcusersPNG  IHDRabKGD pHYs  tIME,Q &IDATx͒?oP{vҦBRT))  P &>#_ LlCi&n:NJ-3ޫ{~:ҽs6x0 !mם}|h4φc .DY'Pn.\u%S.:\e/z'~t4gVq8493݃c 핺}|: 4@Aq0 ,..=gEGA3XR(%0+>\\Uw۝|fq5IDATx͒MkQ{g26 jlJSB#tD(n+Kw A]P]ٸ&&I?&ׅTk=s}x:ȟJ2fP K[d(6j_777EZ->'XXGgVM8V҅;N޻_b[٩z9^fۨ+DQvC'֯WLw-疲 E$@s^f8[q;j|[ƶT>%5!' óCu $JZ~=4Tv( %.XFLbԇ/;HR.8HD@a'R]bWā|>}Zq@]j6f)O4.EK @ M)˙K9k 5"ZFxl6_8m; |[ R|\pMmLwh<,__\.OW@ ,a8Eݶ?[u*~^IENDB`samplv1-1.4.3/src/images/PaxHeaders/presetOpen.png0000644000000000000000000000013215245503134017050 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/presetOpen.png0000644000175000001440000000105215245503134017036 0ustar00rncbcusersPNG  IHDRasBIT|d pHYsu85tEXtSoftwarewww.inkscape.org<IDAT8?AGW# M!8V%} I!)m *hw,bac"ץHHsn&wy/!3B]Pǀ π@~_0 0M 6.CFj~g4SCaK8BTiOæԝ|o֝mTWqڐxEv aYZ/%[a572 X@@ۯbPYwvG50"c0+s8d%0 | F E&ۮ,IENDB`samplv1-1.4.3/src/images/PaxHeaders/playSample.png0000644000000000000000000000013215245503134017033 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/playSample.png0000644000175000001440000000133615245503134017026 0ustar00rncbcusersPNG  IHDRĴl;sBIT|d pHYs & &Q3tEXtSoftwarewww.inkscape.org<[IDAT8ՔAOA RK bBC聃5^8x$c HSC♛ziOFH84!٦]ڥ;>d37}I7P_ ;l6Ҳ,Ͷ횷ӋzF a\Ud2bzz2@{% mJ) 1_]]l6; 1]m@?pɵjQi|,hfࠓL&=.6 4M*Zޗaf;---}NQ\ 333+eJ)eY;;;af[rrsU*N666~=;ΒsJl||\F ё*Jmss=77r'&&txf_8n_@){{{jjhhH}!D")eBtDX4 ˲\$~J^Wz]Uht]g2bhOMMɝ8Pno˥R8?mqaW[P<_SK7Z:kkl6!HRt-^C p 4&?eTONmC-Z 277_m۶wsϞc\U浛}'T)Bak7v qafN-$H1FMT;ts]F{>ԞL'N9_T8TJ)x,Ku]r`0}/+F;}}Ӹ[Edž4RD8w!@)g2X(ĈL×jT̻?-kZ_V*+=ϛV~@fRLi+;SPPPgFfbq;ٰJ{52:zfP 'ERuj@.QHI$ <FL6t]`֦^ezW/,-w4:" ¤Pô@PׯOEMl)Y_,dqRR 9Ip=J"Q&Rk֬Y@gLQkVB?xR vP7aut]G')ʈFc: @( hlhD-5_E @BJ@r0J{2Hi nh RYXpRqi`LLL6da{::c־JeU 7Ǧ@UY n^(X!U WҵkӧO]JSJ@zzztd'ˇM&Wy躁\nƎ]a}f@#)2,܊ݯ{BB)LY Bӎu]9::u=997P&oz\ }bp (p9Cb 䠄B "DH) |Qv.")%$< H|6+K<-`맧'sTB[d]Np+|⑽|ƓJ.sDt!@ >+v@HqӱDEKs#\Y *AaGIS^{4XTaEQv4H)1㊢{߲S~YV>ůl'Cpъs G%̪nPvy5KĖI)E!dYo}k@@qEafzPTy }PPJ@@jEYB:O~自|#Mcdfp=WCS4"o2L)}?Ȫp]PRu]MucHMN 혝 &|1  #є- ,&>3a5 %ʑWл`KsՅ U)>_L7<;xFC$Q]XʔE\:)e RTgӰL |b)kPDI b0B, n\!(w%ʙ2bm{ ο-;00Ńg_:ӂ󹜞f0 j^&7O!!```%8 G.dvu{ ; v&40 2Xy(2U "!KeJ }ȰjOߴo|Bΐt=׭RWE0 D"dY#ömĥKHX  8h܊omZBZ Q)UpŅJKbp4]%dH ),F( }l\uRD4&p3h~56P C.W WGW8駾tϗzJ۴ԁ_yw],y Tj܇b1,t)u.( 1o(y%ٵ Z05A=)`" " F!VhsO<O&wGEi}-LoJi[f/Ek: 5BBX(buW3cvf>(::L%qaLONcU* κgjCa $w=G!P4W޾r[egQJ4)%㪪\׿SBrbbR`L(Sr3 !}mnȡ=4!Zp!t4uz:(e !.'[٨iF P19~OE OM\5(T# "rzjds TVP*0qukۚP=X gΜAWW(hojA5|zgΞva4% u]T*yرsRs8u]ART*_W{~otz0o;zhĈ%a!)AթJՑJw۷A <&۶qQxnw'U>ab,Ç111>H$عsJqc;??o~-}W*^êP.U~\&=_Z:Ġ*rp<,4B2J^~elݺccc0 G!k;p]'ODkk+cA!DPɭPpCJ2 eVysxݳ33/]8?~T#}wݛсD*8ꂦihjjiزe Ra6(ŰzjX65umU9烮ffg?kϋFLNNػw/077'ݻa6chiiϟúu16:R6ٳ:yDQB3< V{@rh"ḯ6&+^}U^6<(u]d&K)|nRJf2HqR:thZ:/BS@$j @p‚[;ѫTjkkpε944j ˲0229 c0M@cll PV111JRma\.cttBr9R__o0nD<zݽjVJ˗/#J\.cffs9h`041<<B044vJ%y@8iAcc#x":::H{*P?p|ۈ< iBJ 4a&8u}IY֊4MX@ \]bL4*| aja)߃z헒;3`9'% @Bc  iC\ !IENDB`samplv1-1.4.3/src/images/PaxHeaders/presetDelete.png0000644000000000000000000000013215245503134017351 xustar0030 mtime=1788249692.169605869 30 atime=1788249692.169605869 30 ctime=1788249692.169605869 samplv1-1.4.3/src/images/presetDelete.png0000644000175000001440000000110115245503134017332 0ustar00rncbcusersPNG  IHDRasBIT|d pHYsu85tEXtSoftwarewww.inkscape.org<IDAT8ŐMkQLrcL246%tJI]TJ)])] bE\ B\ EJJ I|ndwq_898m IoC,ʝ_sڶ7<:{PԲyOM8{?Ra4*{ssi U.@~6,iB䵮*QZ.oJIM)k|2 yz0@dԨD2`rR 5INЬ]f3vNS)\HZDFI>z[7Mi}me!RT3|uqfg(\;Rf"Ppo--U6Af{uM,[͚@£E0E|oؤEIENDB`samplv1-1.4.3/src/PaxHeaders/samplv1_lv2.cpp0000644000000000000000000000013215245503134015623 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_lv2.cpp0000644000175000001440000013512515245503134015622 0ustar00rncbcusers// samplv1_lv2.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_lv2.h" #include "samplv1_config.h" #include "samplv1_sched.h" #include "samplv1_param.h" #include "samplv1_sample.h" #ifdef CONFIG_LV2_OLD_HEADERS #include "lv2/lv2plug.in/ns/ext/midi/midi.h" #include "lv2/lv2plug.in/ns/ext/time/time.h" #include "lv2/lv2plug.in/ns/ext/atom/util.h" #include "lv2/lv2plug.in/ns/ext/state/state.h" #include "lv2/lv2plug.in/ns/ext/options/options.h" #include "lv2/lv2plug.in/ns/ext/buf-size/buf-size.h" #ifdef CONFIG_LV2_PATCH #include "lv2/lv2plug.in/ns/ext/patch/patch.h" #endif #else #include "lv2/midi/midi.h" #include "lv2/time/time.h" #include "lv2/atom/util.h" #include "lv2/state/state.h" #include "lv2/options/options.h" #include "lv2/buf-size/buf-size.h" #ifdef CONFIG_LV2_PATCH #include "lv2/patch/patch.h" #endif #endif #ifndef CONFIG_LV2_ATOM_FORGE_OBJECT #define lv2_atom_forge_object(forge, frame, id, otype) \ lv2_atom_forge_blank(forge, frame, id, otype) #endif #ifndef CONFIG_LV2_ATOM_FORGE_KEY #define lv2_atom_forge_key(forge, key) \ lv2_atom_forge_property_head(forge, key, 0) #endif #ifndef LV2_STATE__StateChanged #define LV2_STATE__StateChanged LV2_STATE_PREFIX "StateChanged" #endif #ifndef LV2_ATOM__PortEvent #define LV2_ATOM__PortEvent LV2_ATOM_PREFIX "PortEvent" #endif #ifndef LV2_ATOM__portTuple #define LV2_ATOM__portTuple LV2_ATOM_PREFIX "portTuple" #endif #include #include #include #include #include //------------------------------------------------------------------------- // samplv1_lv2 - impl. // // atom-like message used internally with worker/schedule typedef struct { LV2_Atom atom; union { uint32_t key; const char *path; } data; } samplv1_lv2_worker_message; samplv1_lv2::samplv1_lv2 ( double sample_rate, const LV2_Feature *const *host_features ) : samplv1(2, float(sample_rate)) { ::memset(&m_urids, 0, sizeof(m_urids)); m_urid_map = nullptr; m_atom_in = nullptr; m_atom_out = nullptr; m_schedule = nullptr; m_ndelta = 0; #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST m_port_change_request = nullptr; #endif const LV2_Options_Option *host_options = nullptr; for (int i = 0; host_features && host_features[i]; ++i) { const LV2_Feature *host_feature = host_features[i]; if (::strcmp(host_feature->URI, LV2_URID_MAP_URI) == 0) { m_urid_map = (LV2_URID_Map *) host_feature->data; if (m_urid_map) { #if 1//SAMPLV1_LV2_LEGACY m_urids.gen1_sample = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_SAMPLE"); m_urids.gen1_offset_start = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_OFFSET_START"); m_urids.gen1_offset_end = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_OFFSET_END"); m_urids.gen1_loop_start = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_LOOP_START"); m_urids.gen1_loop_end = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_LOOP_END"); m_urids.gen1_loop_fade = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_LOOP_FADE"); m_urids.gen1_loop_zero = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_LOOP_ZERO"); #endif m_urids.p101_sample_file = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P101_SAMPLE_FILE"); m_urids.p102_offset_start = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P102_OFFSET_START"); m_urids.p103_offset_end = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P103_OFFSET_END"); m_urids.p104_loop_start = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P104_LOOP_START"); m_urids.p105_loop_end = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P105_LOOP_END"); m_urids.p105_loop_end_release = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P105_LOOP_END_RELEASE"); m_urids.p106_loop_fade = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P106_LOOP_FADE"); m_urids.p107_loop_zero = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P107_LOOP_ZERO"); m_urids.p108_sample_otabs = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P108_SAMPLE_OTABS"); m_urids.gen1_update = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "GEN1_UPDATE"); m_urids.p201_tuning_enabled = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P201_TUNING_ENABLED"); m_urids.p202_tuning_refPitch = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P202_TUNING_REF_PITCH"); m_urids.p203_tuning_refNote = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P203_TUNING_REF_NOTE"); m_urids.p204_tuning_scaleFile = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P204_TUNING_SCALE_FILE"); m_urids.p205_tuning_keyMapFile = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "P205_TUNING_KEYMAP_FILE"); m_urids.tun1_update = m_urid_map->map( m_urid_map->handle, SAMPLV1_LV2_PREFIX "TUN1_UPDATE"); m_urids.atom_Blank = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Blank); m_urids.atom_Object = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Object); m_urids.atom_Float = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Float); m_urids.atom_Int = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Int); m_urids.atom_Bool = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Bool); m_urids.atom_Path = m_urid_map->map( m_urid_map->handle, LV2_ATOM__Path); #ifdef CONFIG_LV2_PORT_EVENT m_urids.atom_PortEvent = m_urid_map->map( m_urid_map->handle, LV2_ATOM__PortEvent); m_urids.atom_portTuple = m_urid_map->map( m_urid_map->handle, LV2_ATOM__portTuple); #endif m_urids.time_Position = m_urid_map->map( m_urid_map->handle, LV2_TIME__Position); m_urids.time_beatsPerMinute = m_urid_map->map( m_urid_map->handle, LV2_TIME__beatsPerMinute); m_urids.midi_MidiEvent = m_urid_map->map( m_urid_map->handle, LV2_MIDI__MidiEvent); m_urids.midi_MidiEvent = m_urid_map->map( m_urid_map->handle, LV2_MIDI__MidiEvent); m_urids.bufsz_minBlockLength = m_urid_map->map( m_urid_map->handle, LV2_BUF_SIZE__minBlockLength); m_urids.bufsz_maxBlockLength = m_urid_map->map( m_urid_map->handle, LV2_BUF_SIZE__maxBlockLength); #ifdef LV2_BUF_SIZE__nominalBlockLength m_urids.bufsz_nominalBlockLength = m_urid_map->map( m_urid_map->handle, LV2_BUF_SIZE__nominalBlockLength); #endif m_urids.state_StateChanged = m_urid_map->map( m_urid_map->handle, LV2_STATE__StateChanged); #ifdef CONFIG_LV2_PATCH m_urids.patch_Get = m_urid_map->map( m_urid_map->handle, LV2_PATCH__Get); m_urids.patch_Set = m_urid_map->map( m_urid_map->handle, LV2_PATCH__Set); m_urids.patch_property = m_urid_map->map( m_urid_map->handle, LV2_PATCH__property); m_urids.patch_value = m_urid_map->map( m_urid_map->handle, LV2_PATCH__value); #endif } } else if (::strcmp(host_feature->URI, LV2_WORKER__schedule) == 0) m_schedule = (LV2_Worker_Schedule *) host_feature->data; else if (::strcmp(host_feature->URI, LV2_OPTIONS__options) == 0) host_options = (const LV2_Options_Option *) host_feature->data; #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST else if (::strcmp(host_feature->URI, LV2_CONTROL_INPUT_PORT_CHANGE_REQUEST_URI) == 0) m_port_change_request = (LV2_ControlInputPort_Change_Request *) host_feature->data; #endif } uint32_t buffer_size = 1024; // maybe some safe default? for (int i = 0; host_options && host_options[i].key; ++i) { const LV2_Options_Option *host_option = &host_options[i]; if (host_option->type == m_urids.atom_Int) { uint32_t block_length = 0; if (host_option->key == m_urids.bufsz_minBlockLength) block_length = *(int32_t *) host_option->value; else if (host_option->key == m_urids.bufsz_maxBlockLength) block_length = *(int32_t *) host_option->value; #ifdef LV2_BUF_SIZE__nominalBlockLength else if (host_option->key == m_urids.bufsz_nominalBlockLength) block_length = *(int32_t *) host_option->value; #endif // choose the lengthier... if (buffer_size < block_length) buffer_size = block_length; } } samplv1::setBufferSize(buffer_size); lv2_atom_forge_init(&m_forge, m_urid_map); const uint16_t nchannels = samplv1::channels(); m_ins = new float * [nchannels]; m_outs = new float * [nchannels]; for (uint16_t k = 0; k < nchannels; ++k) m_ins[k] = m_outs[k] = nullptr; } samplv1_lv2::~samplv1_lv2 (void) { delete [] m_outs; delete [] m_ins; } void samplv1_lv2::connect_port ( uint32_t port, void *data ) { switch(PortIndex(port)) { case MidiIn: m_atom_in = (LV2_Atom_Sequence *) data; break; case Notify: m_atom_out = (LV2_Atom_Sequence *) data; break; case AudioInL: m_ins[0] = (float *) data; break; case AudioInR: m_ins[1] = (float *) data; break; case AudioOutL: m_outs[0] = (float *) data; break; case AudioOutR: m_outs[1] = (float *) data; break; default: samplv1::setParamPort(samplv1::ParamIndex(port - ParamBase), (float *) data); break; } } void samplv1_lv2::run ( uint32_t nframes ) { const uint16_t nchannels = samplv1::channels(); float *ins[nchannels], *outs[nchannels]; for (uint16_t k = 0; k < nchannels; ++k) { ins[k] = m_ins[k]; outs[k] = m_outs[k]; } if (m_atom_out) { const uint32_t capacity = m_atom_out->atom.size; lv2_atom_forge_set_buffer(&m_forge, (uint8_t *) m_atom_out, capacity); lv2_atom_forge_sequence_head(&m_forge, &m_notify_frame, 0); } uint32_t ndelta = 0; if (m_atom_in) { LV2_ATOM_SEQUENCE_FOREACH(m_atom_in, event) { if (event == nullptr) continue; if (event->body.type == m_urids.midi_MidiEvent) { uint8_t *data = (uint8_t *) LV2_ATOM_BODY(&event->body); if (event->time.frames > ndelta) { const uint32_t nread = event->time.frames - ndelta; if (nread > 0) { samplv1::process(ins, outs, nread); for (uint16_t k = 0; k < nchannels; ++k) { ins[k] += nread; outs[k] += nread; } } } ndelta = event->time.frames; samplv1::process_midi(data, event->body.size); } else if (event->body.type == m_urids.atom_Blank || event->body.type == m_urids.atom_Object) { const LV2_Atom_Object *object = (LV2_Atom_Object *) &event->body; if (object->body.otype == m_urids.time_Position) { LV2_Atom *atom = nullptr; lv2_atom_object_get(object, m_urids.time_beatsPerMinute, &atom, nullptr); if (atom && atom->type == m_urids.atom_Float) { const float host_bpm = ((LV2_Atom_Float *) atom)->body; if (::fabsf(host_bpm - samplv1::tempo()) > 0.001f) samplv1::setTempo(host_bpm); } } #ifdef CONFIG_LV2_PATCH else if (object->body.otype == m_urids.patch_Set) { // set property value const LV2_Atom *property = nullptr; const LV2_Atom *value = nullptr; lv2_atom_object_get(object, m_urids.patch_property, &property, m_urids.patch_value, &value, 0); if (property && value && property->type == m_forge.URID) { const uint32_t key = ((const LV2_Atom_URID *) property)->body; const LV2_URID type = value->type; if ((key == m_urids.p101_sample_file #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_sample #endif ) && type == m_urids.atom_Path) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = key; mesg.atom.size = sizeof(mesg.data.path); mesg.data.path = (const char *) LV2_ATOM_BODY_CONST(value); // schedule loading new sample m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } else if ((key == m_urids.p102_offset_start #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_offset_start #endif ) && type == m_urids.atom_Int) { samplv1_sample *pSample = samplv1::sample(); if (pSample) { const uint32_t offset_start = *(int32_t *) LV2_ATOM_BODY_CONST(value); const uint32_t offset_end = pSample->offsetEnd(); setOffsetRange(offset_start, offset_end, true); } } else if ((key == m_urids.p103_offset_end #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_offset_end #endif ) && type == m_urids.atom_Int) { samplv1_sample *pSample = samplv1::sample(); if (pSample) { const uint32_t offset_start = pSample->offsetStart(); const uint32_t offset_end = *(int32_t *) LV2_ATOM_BODY_CONST(value); setOffsetRange(offset_start, offset_end, true); } } else if ((key == m_urids.p104_loop_start #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_loop_start #endif ) && type == m_urids.atom_Int) { samplv1_sample *pSample = samplv1::sample(); if (pSample) { const uint32_t loop_start = *(int32_t *) LV2_ATOM_BODY_CONST(value); const uint32_t loop_end = pSample->loopEnd(); setLoopRange(loop_start, loop_end, true); } } else if ((key == m_urids.p105_loop_end #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_loop_end #endif ) && type == m_urids.atom_Int) { samplv1_sample *pSample = samplv1::sample(); if (pSample) { const uint32_t loop_start = pSample->loopStart(); const uint32_t loop_end = *(int32_t *) LV2_ATOM_BODY_CONST(value); setLoopRange(loop_start, loop_end, true); } } else if (key == m_urids.p105_loop_end_release && type == m_urids.atom_Bool) { const uint32_t loop_release = *(int32_t *) LV2_ATOM_BODY_CONST(value); setLoopRelease(loop_release > 0, true); } else if ((key == m_urids.p106_loop_fade #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_loop_fade #endif ) && type == m_urids.atom_Int) { const uint32_t loop_fade = *(int32_t *) LV2_ATOM_BODY_CONST(value); setLoopFade(loop_fade, true); } else if ((key == m_urids.p107_loop_zero #if 1//SAMPLV1_LV2_LEGACY || key == m_urids.gen1_loop_zero #endif ) && (type == m_urids.atom_Bool #if 1//SAMPLV1_LV2_LEGACY || type == m_urids.atom_Int #endif )) { const uint32_t loop_zero = *(int32_t *) LV2_ATOM_BODY_CONST(value); setLoopZero(loop_zero > 0, true); } else if (key == m_urids.p108_sample_otabs && type == m_urids.atom_Int) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = key; mesg.atom.size = sizeof(mesg.data.key); mesg.data.key = *(int32_t *) LV2_ATOM_BODY_CONST(value); // schedule loading new sample m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } else if (key == m_urids.p201_tuning_enabled && type == m_urids.atom_Bool) { const int32_t enabled = *(int32_t *) LV2_ATOM_BODY_CONST(value); samplv1::setTuningEnabled(enabled > 0); updateTuning(); } else if (key == m_urids.p202_tuning_refPitch && type == m_urids.atom_Float) { const float refPitch = *(float *) LV2_ATOM_BODY_CONST(value); samplv1::setTuningRefPitch(refPitch); updateTuning(); } else if (key == m_urids.p203_tuning_refNote && type == m_urids.atom_Int) { const int32_t refNote = *(int32_t *) LV2_ATOM_BODY_CONST(value); samplv1::setTuningRefNote(refNote); updateTuning(); } else if (key == m_urids.p204_tuning_scaleFile && type == m_urids.atom_Path) { const char *scaleFile = (const char *) LV2_ATOM_BODY_CONST(value); samplv1::setTuningScaleFile(scaleFile); updateTuning(); } else if (key == m_urids.p205_tuning_keyMapFile && type == m_urids.atom_Path) { const char *keyMapFile = (const char *) LV2_ATOM_BODY_CONST(value); samplv1::setTuningKeyMapFile(keyMapFile); updateTuning(); } } } else if (object->body.otype == m_urids.patch_Get) { // get one or all property values (probably to UI)... const LV2_Atom_URID *prop = nullptr; lv2_atom_object_get(object, m_urids.patch_property, (const LV2_Atom *) &prop, 0); if (prop && prop->atom.type == m_forge.URID) patch_get(prop->body); else patch_get(0); // all } #endif // CONFIG_LV2_PATCH } } // remember last time for worker response m_ndelta = ndelta; // m_atom_in = nullptr; } if (nframes > ndelta) samplv1::process(ins, outs, nframes - ndelta); // test for sample offset/loop changes samplv1::sampleOffsetLoopTest(); } void samplv1_lv2::activate (void) { samplv1::reset(); } void samplv1_lv2::deactivate (void) { samplv1::reset(); } uint32_t samplv1_lv2::urid_map ( const char *uri ) const { return (m_urid_map ? m_urid_map->map(m_urid_map->handle, uri) : 0); } //------------------------------------------------------------------------- // samplv1_lv2 - Instantiation and cleanup. // QApplication *samplv1_lv2::g_qapp_instance = nullptr; unsigned int samplv1_lv2::g_qapp_refcount = 0; void samplv1_lv2::qapp_instantiate (void) { if (qApp == nullptr && g_qapp_instance == nullptr) { static int s_argc = 1; static const char *s_argv[] = { PROJECT_NAME, nullptr }; #if defined(WIN32) || defined(_WIN32) || defined(__WIN32) ::_putenv_s("QT_NO_GLIB", "1"); // Avoid glib event-loop... #else ::setenv("QT_NO_GLIB", "1", 1); // Avoid glib event-loop... #endif #if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #endif g_qapp_instance = new QApplication(s_argc, (char **) s_argv); } if (g_qapp_instance) ++g_qapp_refcount; } void samplv1_lv2::qapp_cleanup (void) { if (g_qapp_instance && --g_qapp_refcount == 0) { delete g_qapp_instance; g_qapp_instance = nullptr; } } QApplication *samplv1_lv2::qapp_instance (void) { return g_qapp_instance; } //------------------------------------------------------------------------- // samplv1_lv2 - LV2 State interface. // static LV2_State_Status samplv1_lv2_state_save ( LV2_Handle instance, LV2_State_Store_Function store, LV2_State_Handle handle, uint32_t flags, const LV2_Feature *const *features ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin == nullptr) return LV2_STATE_ERR_UNKNOWN; LV2_State_Map_Path *map_path = nullptr; #ifdef CONFIG_LV2_STATE_FREE_PATH LV2_State_Free_Path *free_path = nullptr; #endif for (int i = 0; features && features[i]; ++i) { if (map_path == nullptr && ::strcmp(features[i]->URI, LV2_STATE__mapPath) == 0) map_path = (LV2_State_Map_Path *) features[i]->data; #ifdef CONFIG_LV2_STATE_FREE_PATH else if (free_path == nullptr && ::strcmp(features[i]->URI, LV2_STATE__freePath) == 0) free_path = (LV2_State_Free_Path *) features[i]->data; #endif } uint32_t key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P101_SAMPLE_FILE"); if (key == 0) return LV2_STATE_ERR_NO_PROPERTY; uint32_t type = pPlugin->urid_map( map_path ? LV2_ATOM__Path : LV2_ATOM__String); if (type == 0) return LV2_STATE_ERR_BAD_TYPE; #if 0 if (!map_path && (flags & (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE)) == 0) return LV2_STATE_ERR_BAD_FLAGS; #else flags |= (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE); #endif const char *value = pPlugin->sampleFile(); if (value && map_path) value = (*map_path->abstract_path)(map_path->handle, value); if (value == nullptr) return LV2_STATE_ERR_UNKNOWN; size_t size = ::strlen(value) + 1; (*store)(handle, key, value, size, type, flags); #ifdef CONFIG_LV2_STATE_FREE_PATH if (free_path) free_path->free_path(free_path->handle, (char *) value); else #endif if (map_path) ::free((void *) value); // Save state properties... size = sizeof(uint32_t); type = pPlugin->urid_map(LV2_ATOM__Int); if (type) { // Sample octaves... uint32_t otabs = pPlugin->octaves(); if (otabs > 0) { value = (const char *) &otabs; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P108_SAMPLE_OTABS"); if (key) (*store)(handle, key, value, size, type, flags); } // Offset state... uint32_t offset_start = pPlugin->offsetStart(); uint32_t offset_end = pPlugin->offsetEnd(); if (offset_start < offset_end) { value = (const char *) &offset_start; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P102_OFFSET_START"); if (key) (*store)(handle, key, value, size, type, flags); value = (const char *) &offset_end; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P103_OFFSET_END"); if (key) (*store)(handle, key, value, size, type, flags); } // Loop state... uint32_t loop_start = pPlugin->loopStart(); uint32_t loop_end = pPlugin->loopEnd(); if (loop_start < loop_end) { value = (const char *) &loop_start; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P104_LOOP_START"); if (key) (*store)(handle, key, value, size, type, flags); value = (const char *) &loop_end; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P105_LOOP_END"); if (key) (*store)(handle, key, value, size, type, flags); } // Loop cross-fade... uint32_t loop_fade = pPlugin->loopFade(); value = (const char *) &loop_fade; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P106_LOOP_FADE"); if (key) (*store)(handle, key, value, size, type, flags); } type = pPlugin->urid_map(LV2_ATOM__Bool); if (type) { // Loop zero-crossing... uint32_t loop_zero = pPlugin->isLoopZero() ? 1 : 0; value = (const char *) &loop_zero; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P107_LOOP_ZERO"); if (key) (*store)(handle, key, value, size, type, flags); // Loop end-release... uint32_t loop_release = pPlugin->isLoopRelease() ? 1 : 0; value = (const char *) &loop_release; key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P105_LOOP_END_RELEASE"); if (key) (*store)(handle, key, value, size, type, flags); } // FIXME: At this time, only micro-tonal (aka. tuning) settings // are posed to be saved into some XML chunk as state... if (!pPlugin->isTuningEnabled()) return LV2_STATE_SUCCESS; // Save all remaining state as XML chunk... // key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "state"); if (key == 0) return LV2_STATE_ERR_NO_PROPERTY; type = pPlugin->urid_map(LV2_ATOM__Chunk); if (type == 0) return LV2_STATE_ERR_BAD_TYPE; #if 0 if ((flags & (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE)) == 0) return LV2_STATE_ERR_BAD_FLAGS; #else flags |= (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE); #endif QDomDocument doc(PROJECT_NAME); QDomElement eState = doc.createElement("state"); QDomElement eTuning = doc.createElement("tuning"); samplv1_param::saveTuning(pPlugin, doc, eTuning); eState.appendChild(eTuning); doc.appendChild(eState); const QByteArray data(doc.toByteArray()); value = data.constData(); size = data.size(); return (*store)(handle, key, value, size, type, flags); } static LV2_State_Status samplv1_lv2_state_restore ( LV2_Handle instance, LV2_State_Retrieve_Function retrieve, LV2_State_Handle handle, uint32_t flags, const LV2_Feature *const *features ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin == nullptr) return LV2_STATE_ERR_UNKNOWN; LV2_State_Map_Path *map_path = nullptr; #ifdef CONFIG_LV2_STATE_FREE_PATH LV2_State_Free_Path *free_path = nullptr; #endif for (int i = 0; features && features[i]; ++i) { if (::strcmp(features[i]->URI, LV2_STATE__mapPath) == 0) map_path = (LV2_State_Map_Path *) features[i]->data; #ifdef CONFIG_LV2_STATE_FREE_PATH else if (::strcmp(features[i]->URI, LV2_STATE__freePath) == 0) free_path = (LV2_State_Free_Path *) features[i]->data; #endif } uint32_t key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P101_SAMPLE_FILE"); if (key == 0) return LV2_STATE_ERR_NO_PROPERTY; uint32_t string_type = pPlugin->urid_map(LV2_ATOM__String); if (string_type == 0) return LV2_STATE_ERR_BAD_TYPE; uint32_t path_type = pPlugin->urid_map(LV2_ATOM__Path); if (path_type == 0) return LV2_STATE_ERR_BAD_TYPE; size_t size = 0; uint32_t type = 0; // flags = 0; const char *value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_SAMPLE"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } #endif } if (size < 2) return LV2_STATE_ERR_UNKNOWN; if (type != string_type && type != path_type) return LV2_STATE_ERR_BAD_TYPE; if (!map_path && (flags & (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE)) == 0) return LV2_STATE_ERR_BAD_FLAGS; if (value && map_path) value = (*map_path->absolute_path)(map_path->handle, value); if (value == nullptr) return LV2_STATE_ERR_UNKNOWN; // Make sure to get rid of any symlinks... const QString sSampleFile = QFileInfo(QString::fromUtf8(value)).canonicalFilePath(); #ifdef CONFIG_LV2_STATE_FREE_PATH if (free_path) free_path->free_path(free_path->handle, (char *) value); else #endif if (map_path) ::free((void *) value); // open sample file, right away... uint32_t otabs = 0; const uint32_t int_type = pPlugin->urid_map(LV2_ATOM__Int); if (int_type) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P108_SAMPLE_OTABS"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); if (value && size == sizeof(uint32_t) && type == int_type) otabs = *(uint32_t *) value; } } pPlugin->setSampleFile(sSampleFile.toUtf8().constData(), otabs); // Restore state properties... uint32_t offset_start = 0; uint32_t offset_end = 0; uint32_t loop_start = 0; uint32_t loop_end = 0; uint32_t loop_fade = 0; uint32_t loop_zero = 1; // default: true. uint32_t loop_release = 0; if (int_type) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P102_OFFSET_START"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_OFFSET_START"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && type == int_type) offset_start = *(uint32_t *) value; } key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P103_OFFSET_END"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_OFFSET_END"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && type == int_type) offset_end = *(uint32_t *) value; } key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P104_LOOP_START"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_LOOP_START"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && type == int_type) loop_start = *(uint32_t *) value; } key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P105_LOOP_END"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_LOOP_END"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && type == int_type) loop_end = *(uint32_t *) value; } key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P106_LOOP_FADE"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_LOOP_FADE"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && type == int_type) loop_fade = *(uint32_t *) value; } } const uint32_t bool_type = pPlugin->urid_map(LV2_ATOM__Bool); if (int_type || bool_type) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P107_LOOP_ZERO"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); #if 1//SAMPLV1_LV2_LEGACY if (value == nullptr) { key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "GEN1_LOOP_ZERO"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); } } #endif if (value && size == sizeof(uint32_t) && (type == int_type || type == bool_type)) loop_zero = *(uint32_t *) value; } key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "P105_LOOP_END_RELEASE"); if (key) { size = 0; type = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); if (value && size == sizeof(uint32_t) && type == bool_type) loop_release = *(uint32_t *) value; } } pPlugin->setLoopZero(loop_zero > 0); pPlugin->setLoopFade(loop_fade); pPlugin->setLoopRelease(loop_release > 0); if (loop_start < loop_end) pPlugin->setLoopRange(loop_start, loop_end); if (offset_start < offset_end) pPlugin->setOffsetRange(offset_start, offset_end); // Retrieve any remaining state as XML chunk... // key = pPlugin->urid_map(SAMPLV1_LV2_PREFIX "state"); if (key == 0) return LV2_STATE_ERR_NO_PROPERTY; const uint32_t chunk_type = pPlugin->urid_map(LV2_ATOM__Chunk); if (chunk_type == 0) return LV2_STATE_ERR_BAD_TYPE; size = 0; type = 0; // flags = 0; value = (const char *) (*retrieve)(handle, key, &size, &type, &flags); if (value != nullptr && size > 2 && type == chunk_type && (flags & (LV2_STATE_IS_POD | LV2_STATE_IS_PORTABLE))) { QDomDocument doc(PROJECT_NAME); if (doc.setContent(QByteArray(value, size))) { QDomElement eState = doc.documentElement(); if (eState.tagName() == "state") { for (QDomNode nChild = eState.firstChild(); !nChild.isNull(); nChild = nChild.nextSibling()) { QDomElement eChild = nChild.toElement(); if (eChild.isNull()) continue; if (eChild.tagName() == "tuning") samplv1_param::loadTuning(pPlugin, eChild); } } } } pPlugin->reset(); samplv1_sched::sync_notify(pPlugin, samplv1_sched::Sample, 1); return LV2_STATE_SUCCESS; } static const LV2_State_Interface samplv1_lv2_state_interface = { samplv1_lv2_state_save, samplv1_lv2_state_restore }; #ifdef CONFIG_LV2_PROGRAMS #include "samplv1_programs.h" const LV2_Program_Descriptor *samplv1_lv2::get_program ( uint32_t index ) { samplv1_programs *pPrograms = samplv1::programs(); if (!pPrograms->enabled()) return nullptr; const samplv1_programs::Banks& banks = pPrograms->banks(); samplv1_programs::Banks::ConstIterator bank_iter = banks.constBegin(); const samplv1_programs::Banks::ConstIterator& bank_end = banks.constEnd(); for (uint32_t i = 0; bank_iter != bank_end; ++bank_iter) { samplv1_programs::Bank *pBank = bank_iter.value(); const samplv1_programs::Progs& progs = pBank->progs(); samplv1_programs::Progs::ConstIterator prog_iter = progs.constBegin(); const samplv1_programs::Progs::ConstIterator& prog_end = progs.constEnd(); for ( ; prog_iter != prog_end; ++prog_iter, ++i) { samplv1_programs::Prog *pProg = prog_iter.value(); if (i >= index) { m_aProgramName = pProg->name().toUtf8(); m_program.bank = pBank->id(); m_program.program = pProg->id(); m_program.name = m_aProgramName.constData(); return &m_program; } } } return nullptr; } void samplv1_lv2::select_program ( uint32_t bank, uint32_t program ) { samplv1::programs()->select_program(bank, program); } #endif // CONFIG_LV2_PROGRAMS void samplv1_lv2::updatePreset ( bool /*bDirty*/ ) { if (m_schedule /*&& bDirty*/) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.state_StateChanged; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateParam ( samplv1::ParamIndex index ) { #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST if (port_change_request(index)) return; #endif #ifdef CONFIG_LV2_PORT_EVENT if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.atom_PortEvent; mesg.atom.size = sizeof(mesg.data.key); mesg.data.key = uint32_t(index); m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } #endif } void samplv1_lv2::updateParams (void) { #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST if (port_change_requests()) return; #endif #ifdef CONFIG_LV2_PORT_EVENT if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.atom_PortEvent; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } #endif } void samplv1_lv2::updateSample (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.gen1_update; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateOffsetRange (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.p102_offset_start; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); mesg.atom.type = m_urids.p103_offset_end; m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateLoopRange (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.p104_loop_start; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); mesg.atom.type = m_urids.p105_loop_end; m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateLoopFade (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.p106_loop_fade; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateLoopZero (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.p107_loop_zero; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateLoopRelease (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.p105_loop_end_release; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } void samplv1_lv2::updateTuning (void) { if (m_schedule) { samplv1_lv2_worker_message mesg; mesg.atom.type = m_urids.tun1_update; mesg.atom.size = 0; // nothing else matters. m_schedule->schedule_work( m_schedule->handle, sizeof(mesg), &mesg); } } bool samplv1_lv2::worker_work ( const void *data, uint32_t size ) { if (size != sizeof(samplv1_lv2_worker_message)) return false; const samplv1_lv2_worker_message *mesg = (const samplv1_lv2_worker_message *) data; if (mesg->atom.type == m_urids.p101_sample_file) samplv1::setSampleFile(mesg->data.path, samplv1::octaves()); else if (mesg->atom.type == m_urids.p108_sample_otabs) samplv1::setSampleFile(samplv1::sampleFile(), mesg->data.key); else if (mesg->atom.type == m_urids.tun1_update) samplv1::resetTuning(); return true; } bool samplv1_lv2::worker_response ( const void *data, uint32_t size ) { if (size != sizeof(samplv1_lv2_worker_message)) return false; const samplv1_lv2_worker_message *mesg = (const samplv1_lv2_worker_message *) data; #ifdef CONFIG_LV2_PORT_EVENT if (mesg->atom.type == m_urids.atom_PortEvent) { if (mesg->atom.size > 0) return port_event(samplv1::ParamIndex(mesg->data.key)); else return port_events(); } else #endif if (mesg->atom.type == m_urids.state_StateChanged) return state_changed(); // update all properties, and eventually, any observers... samplv1_sched::sync_notify(this, samplv1_sched::Sample, 0); #ifdef CONFIG_LV2_PATCH return patch_get(mesg->atom.type); #else return true; #endif } bool samplv1_lv2::state_changed (void) { lv2_atom_forge_frame_time(&m_forge, m_ndelta); LV2_Atom_Forge_Frame frame; lv2_atom_forge_object(&m_forge, &frame, 0, m_urids.state_StateChanged); lv2_atom_forge_pop(&m_forge, &frame); return true; } #ifdef CONFIG_LV2_PATCH bool samplv1_lv2::patch_set ( LV2_URID key ) { static char s_szNull[1] = {'\0'}; samplv1_sample *pSample = samplv1::sample(); if (pSample == nullptr) return false; lv2_atom_forge_frame_time(&m_forge, m_ndelta); LV2_Atom_Forge_Frame patch_frame; lv2_atom_forge_object(&m_forge, &patch_frame, 0, m_urids.patch_Set); lv2_atom_forge_key(&m_forge, m_urids.patch_property); lv2_atom_forge_urid(&m_forge, key); lv2_atom_forge_key(&m_forge, m_urids.patch_value); if (key == m_urids.p101_sample_file) { const char *pszSampleFile = pSample->filename(); if (pszSampleFile == nullptr) pszSampleFile = s_szNull; lv2_atom_forge_path(&m_forge, pszSampleFile, ::strlen(pszSampleFile) + 1); } else if (key == m_urids.p102_offset_start) lv2_atom_forge_int(&m_forge, pSample->offsetStart()); else if (key == m_urids.p103_offset_end) lv2_atom_forge_int(&m_forge, pSample->offsetEnd()); else if (key == m_urids.p104_loop_start) lv2_atom_forge_int(&m_forge, pSample->loopStart()); else if (key == m_urids.p105_loop_end) lv2_atom_forge_int(&m_forge, pSample->loopEnd()); else if (key == m_urids.p106_loop_fade) lv2_atom_forge_int(&m_forge, pSample->loopCrossFade()); else if (key == m_urids.p107_loop_zero) lv2_atom_forge_bool(&m_forge, pSample->isLoopZeroCrossing()); else if (key == m_urids.p105_loop_end_release) lv2_atom_forge_bool(&m_forge, pSample->isLoopEndRelease()); else if (key == m_urids.p108_sample_otabs) lv2_atom_forge_int(&m_forge, pSample->otabs()); else if (key == m_urids.p201_tuning_enabled) lv2_atom_forge_bool(&m_forge, samplv1::isTuningEnabled()); else if (key == m_urids.p202_tuning_refPitch) lv2_atom_forge_float(&m_forge, samplv1::tuningRefPitch()); else if (key == m_urids.p203_tuning_refNote) lv2_atom_forge_int(&m_forge, samplv1::tuningRefNote()); else if (key == m_urids.p204_tuning_scaleFile) { const char *pszScaleFile = samplv1::tuningScaleFile(); if (pszScaleFile == nullptr) pszScaleFile = s_szNull; lv2_atom_forge_path(&m_forge, pszScaleFile, ::strlen(pszScaleFile) + 1); } else if (key == m_urids.p205_tuning_keyMapFile) { const char *pszKeyMapFile = samplv1::tuningKeyMapFile(); if (pszKeyMapFile == nullptr) pszKeyMapFile = s_szNull; lv2_atom_forge_path(&m_forge, pszKeyMapFile, ::strlen(pszKeyMapFile) + 1); } lv2_atom_forge_pop(&m_forge, &patch_frame); return true; } bool samplv1_lv2::patch_get ( LV2_URID key ) { if (key == 0 || key == m_urids.gen1_update) { patch_set(m_urids.p101_sample_file); patch_set(m_urids.p102_offset_start); patch_set(m_urids.p103_offset_end); patch_set(m_urids.p104_loop_start); patch_set(m_urids.p105_loop_end); patch_set(m_urids.p105_loop_end_release); patch_set(m_urids.p106_loop_fade); patch_set(m_urids.p107_loop_zero); patch_set(m_urids.p108_sample_otabs); if (key) return true; } if (key == 0 || key == m_urids.tun1_update) { patch_set(m_urids.p201_tuning_enabled); patch_set(m_urids.p202_tuning_refPitch); patch_set(m_urids.p203_tuning_refNote); patch_set(m_urids.p204_tuning_scaleFile); patch_set(m_urids.p205_tuning_keyMapFile); if (key) return true; } if (key) patch_set(key); return true; } #endif // CONFIG_LV2_PATCH #ifdef CONFIG_LV2_PORT_EVENT bool samplv1_lv2::port_event ( samplv1::ParamIndex index ) { lv2_atom_forge_frame_time(&m_forge, m_ndelta); LV2_Atom_Forge_Frame obj_frame; lv2_atom_forge_object(&m_forge, &obj_frame, 0, m_urids.atom_PortEvent); lv2_atom_forge_key(&m_forge, m_urids.atom_portTuple); LV2_Atom_Forge_Frame tup_frame; lv2_atom_forge_tuple(&m_forge, &tup_frame); lv2_atom_forge_int(&m_forge, int32_t(ParamBase + index)); lv2_atom_forge_float(&m_forge, samplv1::paramValue(index)); lv2_atom_forge_pop(&m_forge, &tup_frame); lv2_atom_forge_pop(&m_forge, &obj_frame); return true; } bool samplv1_lv2::port_events (void) { lv2_atom_forge_frame_time(&m_forge, m_ndelta); LV2_Atom_Forge_Frame obj_frame; lv2_atom_forge_object(&m_forge, &obj_frame, 0, m_urids.atom_PortEvent); lv2_atom_forge_key(&m_forge, m_urids.atom_portTuple); LV2_Atom_Forge_Frame tup_frame; lv2_atom_forge_tuple(&m_forge, &tup_frame); for (uint32_t i = 0; i < samplv1::NUM_PARAMS; ++i) { samplv1::ParamIndex index = samplv1::ParamIndex(i); lv2_atom_forge_int(&m_forge, int32_t(ParamBase + index)); lv2_atom_forge_float(&m_forge, samplv1::paramValue(index)); } lv2_atom_forge_pop(&m_forge, &tup_frame); lv2_atom_forge_pop(&m_forge, &obj_frame); return true; } #endif // CONFIG_LV2_PORT_EVENT #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST bool samplv1_lv2::port_change_request ( samplv1::ParamIndex index ) { if (m_port_change_request == nullptr) return false; if (m_port_change_request->handle == nullptr) return false; if (m_port_change_request->request_change == nullptr) return false; return m_port_change_request->request_change( m_port_change_request->handle, uint32_t(ParamBase + index), samplv1::paramValue(index)) == LV2_CONTROL_INPUT_PORT_CHANGE_SUCCESS; } bool samplv1_lv2::port_change_requests (void) { if (m_port_change_request == nullptr) return false; if (m_port_change_request->handle == nullptr) return false; if (m_port_change_request->request_change == nullptr) return false; for (uint32_t i = 0; i < samplv1::NUM_PARAMS; ++i) { samplv1::ParamIndex index = samplv1::ParamIndex(i); m_port_change_request->request_change( m_port_change_request->handle, uint32_t(ParamBase + index), samplv1::paramValue(index)); } return true; } #endif // CONFIG_LV2_PORT_CHANGE_REQUEST //------------------------------------------------------------------------- // samplv1_lv2 - LV2 desc. // static LV2_Handle samplv1_lv2_instantiate ( const LV2_Descriptor *, double sample_rate, const char *, const LV2_Feature *const *host_features ) { samplv1_lv2::qapp_instantiate(); return new samplv1_lv2(sample_rate, host_features); } static void samplv1_lv2_connect_port ( LV2_Handle instance, uint32_t port, void *data ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) pPlugin->connect_port(port, data); } static void samplv1_lv2_run ( LV2_Handle instance, uint32_t nframes ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) pPlugin->run(nframes); } static void samplv1_lv2_activate ( LV2_Handle instance ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) pPlugin->activate(); } static void samplv1_lv2_deactivate ( LV2_Handle instance ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) pPlugin->deactivate(); } static void samplv1_lv2_cleanup ( LV2_Handle instance ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) delete pPlugin; samplv1_lv2::qapp_cleanup(); } #ifdef CONFIG_LV2_PROGRAMS static const LV2_Program_Descriptor *samplv1_lv2_programs_get_program ( LV2_Handle instance, uint32_t index ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) return pPlugin->get_program(index); else return nullptr; } static void samplv1_lv2_programs_select_program ( LV2_Handle instance, uint32_t bank, uint32_t program ) { samplv1_lv2 *pPlugin = static_cast (instance); if (pPlugin) pPlugin->select_program(bank, program); } static const LV2_Programs_Interface samplv1_lv2_programs_interface = { samplv1_lv2_programs_get_program, samplv1_lv2_programs_select_program, }; #endif // CONFIG_LV2_PROGRAMS static LV2_Worker_Status samplv1_lv2_worker_work ( LV2_Handle instance, LV2_Worker_Respond_Function respond, LV2_Worker_Respond_Handle handle, uint32_t size, const void *data ) { samplv1_lv2 *pSampl = static_cast (instance); if (pSampl && pSampl->worker_work(data, size)) { respond(handle, size, data); return LV2_WORKER_SUCCESS; } return LV2_WORKER_ERR_UNKNOWN; } static LV2_Worker_Status samplv1_lv2_worker_response ( LV2_Handle instance, uint32_t size, const void *data ) { samplv1_lv2 *pSampl = static_cast (instance); if (pSampl && pSampl->worker_response(data, size)) return LV2_WORKER_SUCCESS; else return LV2_WORKER_ERR_UNKNOWN; } static const LV2_Worker_Interface samplv1_lv2_worker_interface = { samplv1_lv2_worker_work, samplv1_lv2_worker_response, nullptr }; static const void *samplv1_lv2_extension_data ( const char *uri ) { #ifdef CONFIG_LV2_PROGRAMS if (::strcmp(uri, LV2_PROGRAMS__Interface) == 0) return &samplv1_lv2_programs_interface; else #endif if (::strcmp(uri, LV2_WORKER__interface) == 0) return &samplv1_lv2_worker_interface; else if (::strcmp(uri, LV2_STATE__interface) == 0) return &samplv1_lv2_state_interface; return nullptr; } static const LV2_Descriptor samplv1_lv2_descriptor = { SAMPLV1_LV2_URI, samplv1_lv2_instantiate, samplv1_lv2_connect_port, samplv1_lv2_activate, samplv1_lv2_run, samplv1_lv2_deactivate, samplv1_lv2_cleanup, samplv1_lv2_extension_data }; LV2_SYMBOL_EXPORT const LV2_Descriptor *lv2_descriptor ( uint32_t index ) { return (index == 0 ? &samplv1_lv2_descriptor : nullptr); } // end of samplv1_lv2.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_sample.h0000644000000000000000000000013215245503134017252 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.172675585 30 ctime=1788249692.172675585 samplv1-1.4.3/src/samplv1widget_sample.h0000644000175000001440000001056615245503134017252 0ustar00rncbcusers// samplv1widget_sample.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_sample_h #define __samplv1widget_sample_h #include #include // Forward decl. class samplv1_ui; class samplv1_sample; class QDragEnterEvent; class QDropEvent; //---------------------------------------------------------------------------- // samplv1widget_sample -- Custom widget class samplv1widget_sample : public QFrame { Q_OBJECT public: // Constructor. samplv1widget_sample(QWidget *pParent = nullptr); // Destructor. ~samplv1widget_sample(); // Settlers. void setInstance(samplv1_ui *pSamplUi); samplv1_ui *instance() const; // Parameter accessors. void setSample(samplv1_sample *pSample); samplv1_sample *sample() const; void setSampleName(const QString& sName); const QString& sampleName() const; // Offset mode. void setOffset(bool bOffset); bool isOffset() const; // Offset getters. uint32_t offsetStart() const; uint32_t offsetEnd() const; // Loop mode. void setLoop(bool bLoop); bool isLoop() const; // Loop point getters. uint32_t loopStart() const; uint32_t loopEnd() const; // Direct note-on methods. void directNoteOn(); // Value/text format converter utilities. uint32_t valueFromText (const QString& text) const; QString textFromValue (uint32_t value) const; signals: // Load new sample file. void loadSampleFile(const QString&); // Offset/loop range changed. void offsetRangeChanged(); void loopRangeChanged(); public slots: // Browse for a new sample. void openSample(); // Effective sample slot. void loadSample(samplv1_sample *pSample); // Offset point setters. void setOffsetStart(uint32_t iOffsetStart); void setOffsetEnd(uint32_t iOffsetEnd); // Loop point setters. void setLoopStart(uint32_t iLoopStart); void setLoopEnd(uint32_t iLoopEnd); protected slots: // Direct note-off/timeout methods. void directNoteOff(); protected: // Sanitizer helper. int safeX(int x) const; // Sanitized converters. int pixelFromFrames(uint32_t n) const; uint32_t framesFromPixel(int x) const; // Widget resize handler. void resizeEvent(QResizeEvent *); // Draw canvas. void paintEvent(QPaintEvent *); // Mouse interaction. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); void mouseDoubleClickEvent(QMouseEvent *pMouseEvent); // Trap for escape key. void keyPressEvent(QKeyEvent *pKeyEvent); // Drag-n-drop (more of the later) support. void dragEnterEvent(QDragEnterEvent *pDragEnterEvent); void dropEvent(QDropEvent *pDropEvent); // Reset drag/select state. void resetDragState(); // Update tool-tip. void updateToolTip(); // Default size hint. QSize sizeHint() const; private: // Instance state. samplv1_ui *m_pSamplUi; samplv1_sample *m_pSample; unsigned short m_iChannels; QPolygon **m_ppPolyg; QString m_sName; // Drag state. enum DragState { DragNone = 0, DragStart, DragOffsetRange, DragOffsetStart, DragOffsetEnd, DragLoopRange, DragLoopStart, DragLoopEnd, } m_dragState, m_dragCursor; QPoint m_posDrag; int m_iDragOffsetStartX; int m_iDragOffsetEndX; int m_iDragLoopStartX; int m_iDragLoopEndX; samplv1_sample *m_pDragSample; int m_iDirectNoteOn; // Offset state. bool m_bOffset; uint32_t m_iOffsetStart; uint32_t m_iOffsetEnd; // Loop state. bool m_bLoop; uint32_t m_iLoopStart; uint32_t m_iLoopEnd; }; #endif // __samplv1widget_sample_h // end of samplv1widget_sample.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_param.h0000644000000000000000000000013215245503134017071 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_param.h0000644000175000001440000002150715245503134017066 0ustar00rncbcusers// samplv1widget_param.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_param_h #define __samplv1widget_param_h #include #include #include #include #include // Forward declarations. class QLabel; class QComboBox; class QCheckBox; //------------------------------------------------------------------------- // samplv1widget_param - Custom composite widget. class samplv1widget_param : public QWidget { Q_OBJECT public: // Constructor. samplv1widget_param(QWidget *pParent = 0); // Accessors. virtual void setText(const QString& sText); virtual QString text() const; virtual void setMaximum(float fMaximum); float maximum() const; virtual void setMinimum(float fMinimum); float minimum() const; void resetDefaultValue(); bool isDefaultValue() const; void setDefaultValue(float fDefaultValue); float defaultValue() const; virtual QString valueText() const; float value() const; // Scale multiplier accessors. void setScale(float fScale); float scale() const; public slots: // Virtual accessor. virtual void setValue(float fValue); signals: // Change signal. void valueChanged(float); protected: // Mouse behavior event handler. void mousePressEvent(QMouseEvent *pMouseEvent); // Scale/value converters. float scaleFromValue(float fValue) const; float valueFromScale(float fScale) const; private: // Current value. float m_fValue; // Current value range. float m_fMinimum; float m_fMaximum; // Default value. float m_fDefaultValue; int m_iDefaultValue; // Scale multiplier (default=100). float m_fScale; }; //------------------------------------------------------------------------- // samplv1widget_dial - A better QDial widget. class samplv1widget_dial : public QDial { Q_OBJECT public: // Constructor. samplv1widget_dial(QWidget *pParent = 0); // Dial mode behavior: // DefaultMode - default (old) QDial behavior. // LinearMode - proportionally to distance in one ortogonal axis. // AngularMode - angularly relative to widget center. enum DialMode { DefaultMode = 0, LinearMode, AngularMode }; // Set knob dial mode behavior. static void setDialMode(DialMode dialMode); static DialMode dialMode(); protected: // Mouse angle determination. float mouseAngle(const QPoint& pos); // Alternate mouse behavior event handlers. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); private: // Alternate mouse behavior tracking. bool m_bMousePressed; QPoint m_posMouse; // Just for more precission on the movement float m_fLastDragValue; // Knob dial mode behavior. static DialMode g_dialMode; }; //------------------------------------------------------------------------- // samplv1widget_knob - Custom knob/dial widget. class samplv1widget_knob : public samplv1widget_param { Q_OBJECT public: // Constructor. samplv1widget_knob(QWidget *pParent = 0); // Accessors. void setText(const QString& sText); QString text() const; void setMaximum(float fMaximum); void setMinimum(float fMinimum); public slots: // Virtual accessor. void setValue(float fValue); protected slots: // Dial change slot. void dialValueChanged(int); protected: // Scale-step accessors. void setSingleStep(float fSingleStep); float singleStep() const; private: // Widget members. QLabel *m_pLabel; samplv1widget_dial *m_pDial; }; //------------------------------------------------------------------------- // samplv1widget_edit - A better QDoubleSpinBox widget. class samplv1widget_edit : public QDoubleSpinBox { Q_OBJECT public: // Constructor. samplv1widget_edit(QWidget *pParent = 0); // Edit mode behavior: // DefaultMode - default (immediate value changes) behavior. // DeferredMode - deferred value changes (to when editing is finished). enum EditMode { DefaultMode = 0, DeferredMode }; // Set spin-box edit mode behavior. static void setEditMode(EditMode editMode); static EditMode editMode(); protected slots: // Alternate value change behavior handlers. void lineEditTextChanged(const QString&); void spinBoxEditingFinished(); void spinBoxValueChanged(double); signals: // Alternate value change signal. void valueChangedEx(double); protected: // Inherited/override methods. QValidator::State validate(QString& sText, int& iPos) const; private: // Alternate edit behavior tracking. int m_iTextChanged; // Spin-box edit mode behavior. static EditMode g_editMode; }; //------------------------------------------------------------------------- // samplv1widget_spin - Custom knob/spin-box widget. class samplv1widget_spin : public samplv1widget_knob { Q_OBJECT public: // Constructor. samplv1widget_spin(QWidget *pParent = 0); // Virtual accessors. void setMaximum(float fMaximum); void setMinimum(float fMinimum); QString valueText() const; // Specialized accessors. void setSpecialValueText(const QString& sText); QString specialValueText() const; bool isSpecialValue() const; void setDecimals(int iDecimals); int decimals() const; public slots: // Virtual accessor. void setValue(float fValue); protected slots: // Change slot. void spinBoxValueChanged(double); private: // Widget members. samplv1widget_edit *m_pSpinBox; }; //------------------------------------------------------------------------- // samplv1widget_combo - Custom knob/combo-box widget. class samplv1widget_combo : public samplv1widget_knob { Q_OBJECT public: // Constructor. samplv1widget_combo(QWidget *pParent = 0); // Virtual accessors. QString valueText() const; // Specialized accessors. void insertItems(int iIndex, const QStringList& items); void clear(); public slots: // Virtual accessor. void setValue(float fValue); protected slots: // Change slot. void comboBoxValueChanged(int); protected: // Reimplemented mouse-wheel stepping. void wheelEvent(QWheelEvent *pWheelEvent); private: // Widget members. QComboBox *m_pComboBox; }; //------------------------------------------------------------------------- // samplv1widget_radio - Custom radio-button widget. class samplv1widget_radio : public samplv1widget_param { Q_OBJECT public: // Constructor. samplv1widget_radio(QWidget *pParent = 0); // Desstructor. ~samplv1widget_radio(); // Virtual accessors. QString valueText() const; // Specialized accessors. void insertItems(int iIndex, const QStringList& items); void clear(); public slots: // Virtual accessor. void setValue(float fValue); protected slots: // Change slot. void radioGroupValueChanged(int); private: // Widget members. QButtonGroup m_group; }; //------------------------------------------------------------------------- // samplv1widget_check - Custom check-box widget. class samplv1widget_check : public samplv1widget_param { Q_OBJECT public: // Constructor. samplv1widget_check(QWidget *pParent = 0); // Desstructor. ~samplv1widget_check(); // Accessors. void setText(const QString& sText); QString text() const; void setAlignment(Qt::Alignment alignment); Qt::Alignment alignment() const; public slots: // Virtual accessor. void setValue(float fValue); protected slots: // Change slot. void checkBoxValueChanged(bool); private: // Widget members. QCheckBox *m_pCheckBox; Qt::Alignment m_alignment; }; //------------------------------------------------------------------------- // samplv1widget_group - Custom checkable group-box widget. class samplv1widget_group : public QGroupBox { Q_OBJECT public: // Constructor. samplv1widget_group(QWidget *pParent = 0); // Desstructor. ~samplv1widget_group(); // Accessors. void setToolTip(const QString& sToolTip); QString toolTip() const; samplv1widget_param *param() const; protected slots: // Change slot. void paramValueChanged(float); void groupBoxValueChanged(bool); private: // Widget members. samplv1widget_param *m_pParam; }; #endif // __samplv1widget_param_h // end of samplv1widget_param.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_env.h0000644000000000000000000000013215245503134016561 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_env.h0000644000175000001440000000524315245503134016555 0ustar00rncbcusers// samplv1widget_env.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_env_h #define __samplv1widget_env_h #include #include //---------------------------------------------------------------------------- // samplv1widget_env -- Custom widget class samplv1widget_env : public QFrame { Q_OBJECT public: // Constructor. samplv1widget_env(QWidget *pParent = nullptr); // Destructor. ~samplv1widget_env(); // Parameter getters. float attack() const; float decay() const; float sustain() const; float release() const; public slots: // Parameter setters. void setAttack(float fAttack); void setDecay(float fDecay); void setSustain(float fSustain); void setRelease(float fRelease); signals: // Parameter change signals. void attackChanged(float fAttack); void decayChanged(float fDecay); void sustainChanged(float fSustain); void releaseChanged(float fRelease); protected: // Draw canvas. void paintEvent(QPaintEvent *); // Parameter node indexes. enum NodeIndex { Idle = 1, Attack = 2, Decay = 3, Sustain = 4, Release = 5, End = 6 }; // Draw rectangular point. QRect nodeRect(int iNode) const; int nodeIndex(const QPoint& pos) const; void dragNode(const QPoint& pos); // Mouse interaction. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); // Resize canvas. void resizeEvent(QResizeEvent *); // Update the drawing polygon. void updatePolygon(); private: // Instance state. float m_fAttack; float m_fDecay; float m_fSustain; float m_fRelease; // Draw state. QPolygon m_poly; // Drag state. int m_iDragNode; QPoint m_posDrag; }; #endif // __samplv1widget_env_h // end of samplv1widget_env.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_jack.cpp0000644000000000000000000000013215245503134017234 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_jack.cpp0000644000175000001440000001267515245503134017237 0ustar00rncbcusers// samplv1widget_jack.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_jack.h" #include "samplv1widget_palette.h" #include "samplv1_jack.h" #ifdef CONFIG_NSM #include "samplv1_nsm.h" #endif #include #include #include #include #include #ifndef CONFIG_BINDIR #define CONFIG_BINDIR CONFIG_PREFIX "/bin" #endif #ifndef CONFIG_DATADIR #define CONFIG_DATADIR CONFIG_PREFIX "/share" #endif #ifndef CONFIG_LIBDIR #if defined(__x86_64__) #define CONFIG_LIBDIR CONFIG_PREFIX "/lib64" #else #define CONFIG_LIBDIR CONFIG_PREFIX "/lib" #endif #endif #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) #define CONFIG_PLUGINSDIR CONFIG_LIBDIR "/qt4/plugins" #elif QT_VERSION < QT_VERSION_CHECK(6, 0, 0) #define CONFIG_PLUGINSDIR CONFIG_LIBDIR "/qt5/plugins" #else #define CONFIG_PLUGINSDIR CONFIG_LIBDIR "/qt6/plugins" #endif //------------------------------------------------------------------------- // samplv1widget_jack - impl. // // Constructor. samplv1widget_jack::samplv1widget_jack ( samplv1_jack *pSampl ) : samplv1widget(), m_pSampl(pSampl) #ifdef CONFIG_NSM , m_pNsmClient(nullptr) #endif { // Special style paths... QString sPluginsPath = QApplication::applicationDirPath(); sPluginsPath.remove(CONFIG_BINDIR); sPluginsPath.append(CONFIG_PLUGINSDIR); if (QDir(sPluginsPath).exists()) QApplication::addLibraryPath(sPluginsPath); // Custom color/style themes... samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { const QChar sep = QDir::separator(); QString sPalettePath = QApplication::applicationDirPath(); sPalettePath.remove(CONFIG_BINDIR); sPalettePath.append(CONFIG_DATADIR); sPalettePath.append(sep); sPalettePath.append(PROJECT_NAME); sPalettePath.append(sep); sPalettePath.append("palette"); if (QDir(sPalettePath).exists()) { QStringList names; names.append("KXStudio"); names.append("Wonton Soup"); QStringListIterator name_iter(names); while (name_iter.hasNext()) { const QString& name = name_iter.next(); const QFileInfo fi(sPalettePath, name + ".conf"); if (fi.isReadable()) { samplv1widget_palette::addNamedPaletteConf( pConfig, name, fi.absoluteFilePath()); } } } if (!pConfig->sCustomColorTheme.isEmpty()) { QPalette pal; if (samplv1widget_palette::namedPalette( pConfig, pConfig->sCustomColorTheme, pal)) samplv1widget::setPalette(pal); } if (!pConfig->sCustomStyleTheme.isEmpty()) { QApplication::setStyle( QStyleFactory::create(pConfig->sCustomStyleTheme)); } } // Initialize (user) interface stuff... m_pSamplUi = new samplv1_ui(m_pSampl, false); // Initialise preset stuff... clearPreset(); // Initial update, always... updateSample(m_pSamplUi->sample()); resetParamValues(); resetParamKnobs(); // May initialize the scheduler/work notifier. openSchedNotifier(); } // Destructor. samplv1widget_jack::~samplv1widget_jack (void) { delete m_pSamplUi; } // Synth engine accessor. samplv1_ui *samplv1widget_jack::ui_instance (void) const { return m_pSamplUi; } #ifdef CONFIG_NSM // NSM client accessors. void samplv1widget_jack::setNsmClient ( samplv1_nsm *pNsmClient ) { m_pNsmClient = pNsmClient; } samplv1_nsm *samplv1widget_jack::nsmClient (void) const { return m_pNsmClient; } #endif // CONFIG_NSM // Param port method. void samplv1widget_jack::updateParam ( samplv1::ParamIndex index, float fValue ) const { m_pSamplUi->setParamValue(index, fValue); } // Dirty flag method. void samplv1widget_jack::updateDirtyPreset ( bool bDirtyPreset ) { samplv1widget::updateDirtyPreset(bDirtyPreset); #ifdef CONFIG_NSM if (m_pNsmClient && m_pNsmClient->is_active() && bDirtyPreset) m_pNsmClient->dirty(true); #endif } // Application close. void samplv1widget_jack::closeEvent ( QCloseEvent *pCloseEvent ) { #ifdef CONFIG_NSM if (m_pNsmClient && m_pNsmClient->is_active()) { pCloseEvent->ignore(); samplv1widget::hide(); } else #endif // Let's be sure about that... if (queryClose()) { pCloseEvent->accept(); #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) QApplication::exit(0); #else QApplication::quit(); #endif } else { pCloseEvent->ignore(); } } #ifdef CONFIG_NSM // Optional GUI handlers. void samplv1widget_jack::showEvent ( QShowEvent *pShowEvent ) { samplv1widget::showEvent(pShowEvent); if (m_pNsmClient) m_pNsmClient->visible(true); } void samplv1widget_jack::hideEvent ( QHideEvent *pHideEvent ) { if (m_pNsmClient) m_pNsmClient->visible(false); samplv1widget::hideEvent(pHideEvent); } #endif // CONFIG_NSM // end of samplv1widget_jack.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_jack.h0000644000000000000000000000013215245503134016701 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_jack.h0000644000175000001440000000426115245503134016674 0ustar00rncbcusers// samplv1widget_jack.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_jack_h #define __samplv1widget_jack_h #include "samplv1widget.h" // Forward decls. class samplv1_jack; #ifdef CONFIG_NSM class samplv1_nsm; #endif //------------------------------------------------------------------------- // samplv1widget_jack - decl. // class samplv1widget_jack : public samplv1widget { public: // Constructor. samplv1widget_jack(samplv1_jack *pSampl); // Destructor. ~samplv1widget_jack(); #ifdef CONFIG_NSM // NSM client accessors. void setNsmClient(samplv1_nsm *pNsmClient); samplv1_nsm *nsmClient() const; #endif // CONFIG_NSM // Dirty flag method. void updateDirtyPreset(bool bDirtyPreset); protected: // Synth engine accessor. samplv1_ui *ui_instance() const; // Param port method. void updateParam(samplv1::ParamIndex index, float fValue) const; // Application close. void closeEvent(QCloseEvent *pCloseEvent); #ifdef CONFIG_NSM // Optional GUI handlers. void showEvent(QShowEvent *pShowEvent); void hideEvent(QHideEvent *pHideEvent); #endif // CONFIG_NSM private: // Instance variables. samplv1 *m_pSampl; samplv1_ui *m_pSamplUi; #ifdef CONFIG_NSM samplv1_nsm *m_pNsmClient; #endif }; #endif // __samplv1widget_jack_h // end of samplv1widget_jack.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_preset.h0000644000000000000000000000013215245503134017273 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_preset.h0000644000175000001440000000505515245503134017270 0ustar00rncbcusers// samplv1widget_preset.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_preset_h #define __samplv1widget_preset_h #include "samplv1widget_presets.h" #include // Forward declarations. class samplv1_presets; class QToolButton; class QComboBox; class QTreeWidgetItem; //------------------------------------------------------------------------- // samplv1widget_preset - Custom preset-box widget. class samplv1widget_preset : public QWidget { Q_OBJECT public: // Constructor. samplv1widget_preset(QWidget *pParent = nullptr); void setPreset(const QString& sPreset); QString preset() const; void setDirtyPreset(bool bDirtyPreset); bool isDirtyPreset() const; void initPreset(); void clearPreset(); bool queryPreset(); void reloadPresets(); void loadPresets(); void savePresets(); signals: void newPresetFile(); void loadPresetFile(const QString&, const QString&); void savePresetFile(const QString&, const QString&); void resetPresetFile(); void presetActivated(const QString&); protected slots: void newPreset(); void openPreset(); void activatePreset(const QString&); void savePreset(); void deletePreset(); void resetPreset(); protected: void loadPreset(const QString&); void savePreset(const QString&); void stabilizePreset(); private: // Widget members. QToolButton *m_pNewButton; QToolButton *m_pOpenButton; samplv1widget_presets::ComboBox *m_pComboBox; QToolButton *m_pSaveButton; QToolButton *m_pDeleteButton; QToolButton *m_pResetButton; samplv1widget_presets *m_pPresetsView; int m_iInitPreset; int m_iDirtyPreset; }; #endif // __samplv1widget_preset_h // end of samplv1widget_preset.h samplv1-1.4.3/src/PaxHeaders/samplv1_tuning.cpp0000644000000000000000000000013215245503134016424 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_tuning.cpp0000644000175000001440000002011615245503134016414 0ustar00rncbcusers// samplv1_tuning.cpp // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ //------------------------------------------------------------------------- // TuningMap // // -- borrowed, stirred and refactored from amsynth -- // https://github.com/amsynth/amsynth // Copyright (C) 2001-2012 Nick Dowell // /* * A TuningMap consists of two parts. * * The "key map" maps from MIDI note numbers to logical note numbers * for the scale. This is often the identity mapping, but if your * scale has, for example, 11 notes in it, you'll want to skip one * per octave so the scale lines up with the pattern of keys on a * standard keyboard. * * The "scale" maps from those logical note numbers to actual pitches. * In terms of member variables, "scale" and "scaleDesc" belong to the * scale, and everything else belongs to the mapping. * * For more information, refer to http://www.huygens-fokker.org/scala/ */ #include "samplv1_tuning.h" #include #include #include // Default ctor. samplv1_tuning::samplv1_tuning ( float refPitch, int refNote ) { reset(refPitch, refNote); } // Default is 12-tone equal temperament, wstern standard mapping. void samplv1_tuning::reset ( float refPitch, int refNote ) { m_refPitch = refPitch; m_refNote = refNote; m_zeroNote = 0; m_scale.clear(); for (int i = 0; i < 12; ++i) m_scale.push_back(::powf(2.0f, (i + 1) / 12.0f)); m_mapRepeatInc = 1; m_mapping.clear(); m_mapping.push_back(0); updateBasePitch(); } void samplv1_tuning::updateBasePitch (void) { // Clever, huh? m_basePitch = 1.0f; m_basePitch = m_refPitch / noteToPitch(m_refNote); } // Load custom Scala key-map file (.kbm) bool samplv1_tuning::loadKeyMapFile ( const QString& keyMapFile ) { QFile file(keyMapFile); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return false; QTextStream fs(&file); int mapSize = -1; int firstNote = -1; int lastNote = -1; int zeroNote = -1; int refNote = -1; float refPitch = 0.0f; int mapRepeatInc = -1; QVector mapping; while (!fs.atEnd()) { const QString& line = fs.readLine().simplified(); // Skip all-whitespace lines... if (line.isEmpty()) continue; // Skip comment lines... if (line.at(0) == '!') continue; bool ok = false; const QString& val = line.section(' ', 0, 0); // An active range should be defined on this line... if (line.at(0) == '<') { // No overlap is checked for; // it wouldn't hurt anything if ranges overlapped. const int min = line.section(' ', 1, 1).toInt(&ok); if (!ok || min < 0) return false; ok = false; const int max = line.section(' ', 2, 2).toInt(&ok); if (!ok || max < min || max > 127) return false; } else if (mapSize < 0) { mapSize = val.toInt(&ok); if (!ok || mapSize < 0) return false; } else if (firstNote < 0) { firstNote = val.toInt(&ok); if (!ok || firstNote < 0 || firstNote > 127) return false; } else if (lastNote < 0) { lastNote = val.toInt(&ok); if (!ok || lastNote < 0 || lastNote > 127) return false; } else if (zeroNote < 0) { zeroNote = val.toInt(&ok); if (!ok || zeroNote < 0 || zeroNote > 127) return false; } else if (refNote < 0) { refNote = val.toInt(&ok); if (!ok || refNote < 0 || refNote > 127) return false; } else if (refPitch <= 0.0f) { refPitch = val.toFloat(&ok); if (!ok || refPitch < 0.001f) return false; } else if (mapRepeatInc < 0) { mapRepeatInc = val.toInt(&ok); if (!ok || mapRepeatInc < 0) return false; } else if (line.at(0).toLower() == 'x') { mapping.push_back(-1); // unmapped key } else { const int mapEntry = val.toInt(&ok); if (!ok || mapEntry < 0) return false; mapping.push_back(mapEntry); } } // Didn't get far enough? if (mapRepeatInc < 0) return false; // Special case for "automatic" linear mapping if (mapSize == 0) { if (!mapping.empty()) return false; m_keyMapFile = keyMapFile; m_zeroNote = zeroNote; m_refNote = refNote; m_refPitch = refPitch; m_mapRepeatInc = 1; m_mapping.clear(); m_mapping.push_back(0); updateBasePitch(); return true; } // Some of the kbm files included with Scala have // extra x's at the end for no good reason //if (mapping.size() > mapSize) // return false; mapping.resize(mapSize); // Check to make sure reference pitch is actually mapped int refIndex = (refNote - zeroNote) % mapSize; if (refIndex < 0) refIndex += mapSize; if (mapping.at(refIndex) < 0) return false; m_keyMapFile = keyMapFile; m_zeroNote = zeroNote; m_refNote = refNote; m_refPitch = refPitch; if (mapRepeatInc == 0) m_mapRepeatInc = mapSize; else m_mapRepeatInc = mapRepeatInc; m_mapping = mapping; updateBasePitch(); return true; } // Load custom Scala scale file (.scl) bool samplv1_tuning::loadScaleFile ( const QString& scaleFile ) { QFile file(scaleFile); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return false; QTextStream fs(&file); QString scaleDesc; int scaleSize = -1; QVector scale; while (!fs.atEnd()) { const QString& line = fs.readLine().simplified(); // Skip all-whitespace lines after description... if (line.isEmpty() && !scaleDesc.isEmpty()) continue; // Skip comment lines if (line.at(0) == '!') continue; if (scaleDesc.isEmpty()) scaleDesc = line; else if (scaleSize < 0) { bool ok = false; scaleSize = line.section(' ', 0, 0).toInt(&ok); if (!ok || scaleSize < 0) return false; } else scale.push_back(parseScaleLine(line)); } if (scaleDesc.isEmpty() || scale.size() != scaleSize) return false; m_scaleFile = scaleFile; m_scaleDesc = scaleDesc; m_scale = scale; updateBasePitch(); return true; } // Convert a single line of a Scala scale file to a frequency relative to 1/1. float samplv1_tuning::parseScaleLine ( const QString& line ) const { bool ok = false; if (line.contains('.')) { // Treat as cents... const float cents = line.section(' ', 0, 0).toFloat(&ok); if (!ok || cents < 0.001f) return 0.0f; else return ::powf(2.0f, cents / 1200.0f); } else { // Treat as ratio... const long n = line.section('/', 0, 0).toLong(&ok); if (!ok || n < 0) return 0.0f; ok = false; const long d = line.section('/', 1, 1).toLong(&ok); if (!ok || d < 0) return 0.0f; else return float(n) / float(d); } } // The main pitch/frequency (Hz) getter. float samplv1_tuning::noteToPitch ( int note ) const { if (note < 0 || note > 127 || m_mapping.empty()) return 0.0f; const int mapSize = m_mapping.size(); int nRepeats = (note - m_zeroNote) / mapSize; int mapIndex = (note - m_zeroNote) % mapSize; if (mapIndex < 0) { mapIndex += mapSize; --nRepeats; } if (m_mapping.at(mapIndex) < 0) return 0.0f; // unmapped note const int scaleDegree = nRepeats * m_mapRepeatInc + m_mapping.at(mapIndex); const int scaleSize = m_scale.size(); int nOctaves = scaleDegree / scaleSize; int scaleIndex = scaleDegree % scaleSize; if (scaleIndex < 0) { scaleIndex += scaleSize; --nOctaves; } const float pitch = m_basePitch * ::powf(m_scale.at(scaleSize - 1), nOctaves); if (scaleIndex > 0) return pitch * m_scale.at(scaleIndex - 1); else return pitch; } // end of samplv1_tuning.cpp samplv1-1.4.3/src/PaxHeaders/palette0000644000000000000000000000013115245503134014331 xustar0030 mtime=1788249692.170222891 29 atime=1788249692.17016207 30 ctime=1788249692.170222891 samplv1-1.4.3/src/palette/0000755000175000001440000000000015245503134014377 5ustar00rncbcuserssamplv1-1.4.3/src/palette/PaxHeaders/KXStudio.conf0000644000000000000000000000012715245503134016774 xustar0029 mtime=1788249692.17016207 29 atime=1788249692.17016207 29 ctime=1788249692.17016207 samplv1-1.4.3/src/palette/KXStudio.conf0000644000175000001440000000165515245503134016767 0ustar00rncbcusers[ColorThemes] KXStudio\AlternateBase=#0e0e0e, #0e0e0e, #0c0c0c KXStudio\Base=#070707, #070707, #060606 KXStudio\BrightText=#ffffff, #ffffff, #ffffff KXStudio\Button=#1c1c1c, #1c1c1c, #181818 KXStudio\ButtonText=#f0f0f0, #f0f0f0, #5a5a5a KXStudio\Dark=#818181, #818181, #818181 KXStudio\Highlight=#3c3c3c, #222222, #0e0e0e KXStudio\HighlightedText=#ffffff, #f0f0f0, #535353 KXStudio\Light=#bfbfbf, #bfbfbf, #bfbfbf KXStudio\Link=#6464e6, #6464e6, #22224a KXStudio\LinkVisited=#e664e6, #e664e6, #4a224a KXStudio\Mid=#5e5e5e, #5e5e5e, #5e5e5e KXStudio\Midlight=#9b9b9b, #9b9b9b, #9b9b9b KXStudio\NoRole=#000000, #000000, #000000 KXStudio\PlaceholderText=#000000, #000000, #000000 KXStudio\Shadow=#9b9b9b, #9b9b9b, #9b9b9b KXStudio\Text=#e6e6e6, #e6e6e6, #4a4a4a KXStudio\ToolTipBase=#040404, #040404, #040404 KXStudio\ToolTipText=#e6e6e6, #e6e6e6, #e6e6e6 KXStudio\Window=#111111, #111111, #0e0e0e KXStudio\WindowText=#f0f0f0, #f0f0f0, #535353 samplv1-1.4.3/src/palette/PaxHeaders/Wonton Soup.conf0000644000000000000000000000013115245503134017450 xustar0030 mtime=1788249692.170222891 29 atime=1788249692.17016207 30 ctime=1788249692.170222891 samplv1-1.4.3/src/palette/Wonton Soup.conf0000644000175000001440000000202615245503134017441 0ustar00rncbcusers[ColorThemes] Wonton%20Soup\AlternateBase=#434750, #434750, #3b3e46 Wonton%20Soup\Base=#3c4048, #3c4048, #34383f Wonton%20Soup\BrightText=#ffffff, #ffffff, #ffffff Wonton%20Soup\Button=#525863, #525863, #484d57 Wonton%20Soup\ButtonText=#d2def0, #d2def0, #6f7682 Wonton%20Soup\Dark=#282b31, #282b31, #23262b Wonton%20Soup\Highlight=#78889c, #515a67, #40444d Wonton%20Soup\HighlightedText=#d1e1f4, #b6c1d0, #616872 Wonton%20Soup\Light=#5f6572, #5f6572, #565c68 Wonton%20Soup\Link=#9cd4ff, #9cd4ff, #526677 Wonton%20Soup\LinkVisited=#4080ff, #4080ff, #364c77 Wonton%20Soup\Mid=#3f444c, #3f444c, #383b43 Wonton%20Soup\Midlight=#545a65, #545a65, #4b515b Wonton%20Soup\NoRole=#000000, #000000, #000000 Wonton%20Soup\PlaceholderText=#000000, #000000, #000000 Wonton%20Soup\Shadow=#1d1f23, #1d1f23, #191b1e Wonton%20Soup\Text=#d2def0, #d2def0, #636973 Wonton%20Soup\ToolTipBase=#b6c1d0, #b6c1d0, #b6c1d0 Wonton%20Soup\ToolTipText=#2a2c30, #2a2c30, #2a2c30 Wonton%20Soup\Window=#494e58, #494e58, #40444d Wonton%20Soup\WindowText=#b6c1d0, #b6c1d0, #616872 samplv1-1.4.3/src/PaxHeaders/samplv1_param.h0000644000000000000000000000013215245503134015665 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_param.h0000644000175000001440000000561415245503134015663 0ustar00rncbcusers// samplv1_param.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_param_h #define __samplv1_param_h #include "samplv1.h" #include // forward decl. class QDomElement; class QDomDocument; //------------------------------------------------------------------------- // samplv1_param - decl. // namespace samplv1_param { // Abstract/absolute path functors. class map_path { public: virtual QString absolutePath(const QString& sAbstractPath) const; virtual QString abstractPath(const QString& sAbsolutePath) const; }; // Preset initialization method. bool newPreset(samplv1 *pSampl); // Preset serialization methods. bool loadPreset(samplv1 *pSampl, const QString& sPresetFile); bool loadPresetEx(samplv1 *pSampl, const QString& sPresetFile); bool loadPresetName(samplv1 *pSampl, const QString& sPreset); bool savePreset(samplv1 *pSampl, const QString& sPresetFile, bool bSymLink = false); // Sample serialization methods. void loadSamples(samplv1 *pSampl, const QDomElement& eSamples, const map_path& mapPath = map_path()); void saveSamples(samplv1 *pSampl, QDomDocument& doc, QDomElement& eSamples, const map_path& mapPath = map_path(), bool bSymLink = false); // Tuning serialization methods. void loadTuning(samplv1 *pSampl, const QDomElement& eTuning); void saveTuning(samplv1 *pSampl, QDomDocument& doc, QDomElement& eTuning, bool bSymLink = false); // Default parameter name/value helpers. const char *paramName(samplv1::ParamIndex index); float paramDefaultValue(samplv1::ParamIndex index); float paramSafeValue(samplv1::ParamIndex index, float fValue); float paramValue(samplv1::ParamIndex index, float fScale); float paramScale(samplv1::ParamIndex index, float fValue); bool paramFloat(samplv1::ParamIndex index); // Load/save and convert canonical/absolute filename helpers. QString loadFilename(const QString& sFilename); QString saveFilename(const QString& sFilename, bool bSymLink); }; #endif // __samplv1_param_h // end of samplv1_param.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_wave.h0000644000000000000000000000013215245503134016733 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.172675585 30 ctime=1788249692.172675585 samplv1-1.4.3/src/samplv1widget_wave.h0000644000175000001440000000437315245503134016732 0ustar00rncbcusers// samplv1widget_wave.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_wave_h #define __samplv1widget_wave_h #include // Forward decl. class samplv1_wave_lf; //---------------------------------------------------------------------------- // samplv1widget_wave -- Custom widget class samplv1widget_wave : public QFrame { Q_OBJECT public: // Constructor. samplv1widget_wave(QWidget *pParent = nullptr); // Destructor. ~samplv1widget_wave(); // Parameter getters. float waveShape() const; float waveWidth() const; public slots: // Parameter setters. void setWaveShape(float fWaveShape); void setWaveWidth(float fWaveWidth); signals: // Parameter change signals. void waveShapeChanged(float fWaveShape); void waveWidthChanged(float fWaveWidth); protected: // Draw canvas. void paintEvent(QPaintEvent *); // Drag/move curve. void dragCurve(const QPoint& pos); // Mouse interaction. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); void mouseDoubleClickEvent(QMouseEvent *pMouseEvent); void wheelEvent(QWheelEvent *pWheelEvent); private: // Instance state. samplv1_wave_lf *m_pWave; // Drag state. bool m_bDragging; int m_iDragShape; QPoint m_posDrag; }; #endif // __samplv1widget_wave_h // end of samplv1widget_wave.h samplv1-1.4.3/src/PaxHeaders/appdata0000644000000000000000000000013215245503134014306 xustar0030 mtime=1788249692.166751278 30 atime=1788249692.166570553 30 ctime=1788249692.166751278 samplv1-1.4.3/src/appdata/0000755000175000001440000000000015245503134014353 5ustar00rncbcuserssamplv1-1.4.3/src/appdata/PaxHeaders/org.rncbc.samplv1.desktop0000644000000000000000000000013215245503134021215 xustar0030 mtime=1788249692.166733154 30 atime=1788249692.166733154 30 ctime=1788249692.166733154 samplv1-1.4.3/src/appdata/org.rncbc.samplv1.desktop0000644000175000001440000000101015245503134021175 0ustar00rncbcusers[Desktop Entry] Name=samplv1 Version=1.0 GenericName=MIDI Comment=samplv1 is an old school polyphonic sampler Comment[fr]=samplv1 est un échantillonneur polyphonique à l'ancienne Exec=samplv1_jack %f Icon=org.rncbc.samplv1 Categories=Audio;AudioVideo;Midi;X-Alsa;X-Jack;Qt; MimeType=application/x-samplv1-preset; Keywords=Audio;MIDI;ALSA;JACK;Synthesizer;Sampler;LV2;Qt; Terminal=false Type=Application StartupWMClass=samplv1_jack X-Window-Icon=samplv1 X-SuSE-translate=true X-NSM-Capable=true X-NSM-Exec=samplv1_jack samplv1-1.4.3/src/appdata/PaxHeaders/org.rncbc.samplv1.metainfo.xml0000644000000000000000000000013215245503134022145 xustar0030 mtime=1788249692.166751278 30 atime=1788249692.166733154 30 ctime=1788249692.166751278 samplv1-1.4.3/src/appdata/org.rncbc.samplv1.metainfo.xml0000644000175000001440000000352515245503134022142 0ustar00rncbcusers org.rncbc.samplv1 FSFAP GPL-2.0+ samplv1 an old-school polyphonic sampler

samplv1 is an old-school polyphonic sampler synthesizer with stereo fx.

features:

  • pure stand-alone JACK client with JACK-session, NSM and both JACK MIDI and ALSA MIDI input support;
  • LV2 instrument plugin. URI: http\://samplv1.sourceforge.net/lv2

org.rncbc.samplv1.desktop samplv1_jack https://samplv1.sourceforge.io/image/samplv1-screenshot9.png The main window showing the application in action Audio MIDI ALSA JACK Synthesizer Sampler LV2 Qt https://samplv1.sourceforge.io https://github.com/rncbc/samplv1 rncbc.org rncbc aka. Rui Nuno Capela rncbc@rncbc.org
samplv1-1.4.3/src/PaxHeaders/samplv1_presets.cpp0000644000000000000000000000013215245503134016605 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_presets.cpp0000644000175000001440000001106715245503134016602 0ustar00rncbcusers// samplv1_presets.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_presets.h" //------------------------------------------------------------------------- // samplv1_presets - Bank/presets database class (singleton). // // ctor. samplv1_presets::samplv1_presets (void) { } // dtor. samplv1_presets::~samplv1_presets (void) { clear_banks(); clear_presets(); } // bank/preset managers void samplv1_presets::Bank::add_preset ( const QString& preset_name, int after_index ) { if (!m_preset_list.contains(preset_name)) { if (after_index >= 0) m_preset_list.insert(after_index + 1, preset_name); else m_preset_list.append(preset_name); } } void samplv1_presets::Bank::remove_preset ( const QString& preset_name ) { const int preset_index = m_preset_list.indexOf(preset_name); if (preset_index >= 0) m_preset_list.removeAt(preset_index); } void samplv1_presets::Bank::clear_presets (void) { m_preset_list.clear(); } // bank managers samplv1_presets::Bank *samplv1_presets::find_bank ( const QString& bank_name ) const { return m_banks.value(bank_name, nullptr); } samplv1_presets::Bank *samplv1_presets::find_preset_bank ( const QString& preset_name ) const { Banks::ConstIterator banks_iter = m_banks.constBegin(); const Banks::ConstIterator& banks_end = m_banks.constEnd(); for ( ; banks_iter != banks_end; ++banks_iter) { Bank *bank = banks_iter.value(); if (bank->preset_list().contains(preset_name)) return bank; } return nullptr; } samplv1_presets::Bank *samplv1_presets::add_bank ( const QString& bank_name ) { Bank *bank = find_bank(bank_name); if (bank == nullptr) { bank = new Bank(bank_name); m_banks.insert(bank_name, bank); m_bank_list.append(bank_name); } return bank; } void samplv1_presets::remove_bank ( const QString& bank_name ) { Bank *bank = find_bank(bank_name); if (bank && m_banks.remove(bank_name)) delete bank; const int bank_index = m_bank_list.indexOf(bank_name); if (bank_index >= 0) m_bank_list.removeAt(bank_index); } void samplv1_presets::clear_banks (void) { qDeleteAll(m_banks); m_banks.clear(); m_bank_list.clear(); } // preset managers samplv1_presets::Preset *samplv1_presets::find_preset ( const QString& preset_name ) const { return m_presets.value(preset_name, nullptr); } samplv1_presets::Preset *samplv1_presets::add_preset ( const QString& preset_name, const QString& after_preset ) { Preset *preset = find_preset(preset_name); if (preset == nullptr) { preset = new Preset(preset_name); m_presets.insert(preset_name, preset); if (after_preset.isEmpty()) { if (!find_preset_bank(preset_name) && !m_preset_list.contains(preset_name)) { m_preset_list.append(preset_name); } } else { int after_index; Bank *bank = find_preset_bank(after_preset); if (bank) { after_index = bank->preset_list().indexOf(after_preset); bank->add_preset(preset_name, after_index); } else { after_index = m_preset_list.indexOf(after_preset); if (after_index >= 0) m_preset_list.insert(after_index + 1, preset_name); else m_preset_list.append(preset_name); } } } return preset; } void samplv1_presets::remove_preset ( const QString& preset_name ) { Preset *preset = m_presets.value(preset_name, nullptr); if (preset && m_presets.remove(preset_name)) delete preset; Bank *bank = find_preset_bank(preset_name); if (bank) { bank->remove_preset(preset_name); } else { const int preset_index = m_preset_list.indexOf(preset_name); if (preset_index >= 0) m_preset_list.removeAt(preset_index); } } void samplv1_presets::clear_presets (void) { qDeleteAll(m_presets); m_presets.clear(); m_preset_list.clear(); } // end of samplv1_presets.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_lv2.h0000644000000000000000000000013215245503134015270 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_lv2.h0000644000175000001440000001177315245503134015271 0ustar00rncbcusers// samplv1_lv2.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_lv2_h #define __samplv1_lv2_h #include "samplv1.h" #ifdef CONFIG_LV2_OLD_HEADERS #include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" #include "lv2/lv2plug.in/ns/ext/worker/worker.h" #else #include "lv2/urid/urid.h" #include "lv2/atom/atom.h" #include "lv2/atom/forge.h" #include "lv2/worker/worker.h" #endif #define SAMPLV1_LV2_URI "http://samplv1.sourceforge.net/lv2" #define SAMPLV1_LV2_PREFIX SAMPLV1_LV2_URI "#" #ifdef CONFIG_LV2_PROGRAMS #include "lv2_programs.h" #include #endif #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST #include "lv2_port_change_request.h" #endif // Forward decls. class QApplication; //------------------------------------------------------------------------- // samplv1_lv2 - decl. // class samplv1_lv2 : public samplv1 { public: samplv1_lv2(double sample_rate, const LV2_Feature *const *host_features); ~samplv1_lv2(); enum PortIndex { MidiIn = 0, Notify, AudioInL, AudioInR, AudioOutL, AudioOutR, ParamBase }; void connect_port(uint32_t port, void *data); void run(uint32_t nframes); void activate(); void deactivate(); uint32_t urid_map(const char *uri) const; #ifdef CONFIG_LV2_PROGRAMS const LV2_Program_Descriptor *get_program(uint32_t index); void select_program(uint32_t bank, uint32_t program); #endif bool worker_work(const void *data, uint32_t size); bool worker_response(const void *data, uint32_t size); static void qapp_instantiate(); static void qapp_cleanup(); static QApplication *qapp_instance(); protected: void updatePreset(bool bDirty); void updateParam(samplv1::ParamIndex index); void updateParams(); void updateSample(); void updateOffsetRange(); void updateLoopRange(); void updateLoopFade(); void updateLoopZero(); void updateLoopRelease(); void updateTuning(); bool state_changed(); #ifdef CONFIG_LV2_PATCH bool patch_set(LV2_URID key); bool patch_get(LV2_URID key); #endif #ifdef CONFIG_LV2_PORT_EVENT bool port_event(samplv1::ParamIndex index); bool port_events(); #endif #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST bool port_change_request(samplv1::ParamIndex index); bool port_change_requests(); #endif private: LV2_URID_Map *m_urid_map; struct lv2_urids { #if 1//SAMPLV1_LV2_LEGACY LV2_URID gen1_sample; LV2_URID gen1_offset_start; LV2_URID gen1_offset_end; LV2_URID gen1_loop_start; LV2_URID gen1_loop_end; LV2_URID gen1_loop_fade; LV2_URID gen1_loop_zero; #endif LV2_URID p101_sample_file; LV2_URID p102_offset_start; LV2_URID p103_offset_end; LV2_URID p104_loop_start; LV2_URID p105_loop_end; LV2_URID p105_loop_end_release; LV2_URID p106_loop_fade; LV2_URID p107_loop_zero; LV2_URID p108_sample_otabs; LV2_URID gen1_update; LV2_URID p201_tuning_enabled; LV2_URID p202_tuning_refPitch; LV2_URID p203_tuning_refNote; LV2_URID p204_tuning_scaleFile; LV2_URID p205_tuning_keyMapFile; LV2_URID tun1_update; LV2_URID atom_Blank; LV2_URID atom_Object; LV2_URID atom_Float; LV2_URID atom_Int; LV2_URID atom_Bool; LV2_URID atom_Path; #ifdef CONFIG_LV2_PORT_EVENT LV2_URID atom_PortEvent; LV2_URID atom_portTuple; #endif LV2_URID time_Position; LV2_URID time_beatsPerMinute; LV2_URID midi_MidiEvent; LV2_URID bufsz_minBlockLength; LV2_URID bufsz_maxBlockLength; LV2_URID bufsz_nominalBlockLength; LV2_URID state_StateChanged; #ifdef CONFIG_LV2_PATCH LV2_URID patch_Get; LV2_URID patch_Set; LV2_URID patch_property; LV2_URID patch_value; #endif } m_urids; LV2_Atom_Forge m_forge; LV2_Atom_Forge_Frame m_notify_frame; LV2_Worker_Schedule *m_schedule; uint32_t m_ndelta; LV2_Atom_Sequence *m_atom_in; LV2_Atom_Sequence *m_atom_out; float **m_ins; float **m_outs; #ifdef CONFIG_LV2_PROGRAMS LV2_Program_Descriptor m_program; QByteArray m_aProgramName; #endif #ifdef CONFIG_LV2_PORT_CHANGE_REQUEST LV2_ControlInputPort_Change_Request *m_port_change_request; #endif static QApplication *g_qapp_instance; static unsigned int g_qapp_refcount; }; #endif// __samplv1_lv2_h // end of samplv1_lv2.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_keybd.h0000644000000000000000000000013215245503134017067 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_keybd.h0000644000175000001440000001070015245503134017055 0ustar00rncbcusers// samplv1widget_keybd.h // /**************************************************************************** Copyright (C) 2012-2025, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_keybd_h #define __samplv1widget_keybd_h #include #include #include //------------------------------------------------------------------------- // samplv1widget_keybd - A horizontal piano keyboard widget. class samplv1widget_keybd : public QWidget { Q_OBJECT public: // Constructor. samplv1widget_keybd(QWidget *pParent = 0); // Note range predicate. void setNoteRange(bool bNoteRange); bool isNoteRange() const; // Note enabled predicates. void setNoteEnabled(int iNote, bool bEnabled); bool isNoteEnabled(int iNote) const; void setAllNotesEnabled(bool bEnabled); // Default note-on velocity. void setVelocity(int iVelocity); int velocity() const; // Keyboard note range getters. int noteLow() const; int noteHigh() const; // Highlighted note getter. int noteKey() const; public slots: // Keyboard note range setters. void setNoteLow(int iNoteLow); void setNoteHigh(int iNoteHigh); // Keyboard note/key actions. void noteOn(int iNote); void noteOff(int iNote); void allNotesOff(); // Highlighted note setter. void setNoteKey(int iNoteKey); signals: // Piano keyboard note-on/off signal. void noteOnClicked(int iNote, int iVelocity); // Keyboard note range changed signal. void noteRangeChanged(); protected slots: // Kill dangling notes, if any... void allNotesTimeout(); protected: // Keyboard note range sanitizers. int safeNoteLow(int iNoteLow) const; int safeNoteHigh(int iNoteHigh) const; // Piano key rectangle finder. QRect noteRect(int iNote, bool bOn = false) const; QPainterPath notePath(int iNote, bool bOn = false) const; // Piano keyboard note-on/off handlers. void dragNoteOn(const QPoint& pos); void dragNoteOff(); // Piano keyboard note descriminator. int noteAt(const QPoint& pos) const; // (Re)create the complete view pixmap. void updatePixmap(); // Paint event handler. void paintEvent(QPaintEvent *pPaintEvent); // Resize event handler. void resizeEvent(QResizeEvent *pResizeEvent); // Alternate mouse behavior event handlers. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); // Keyboard event handler. void keyPressEvent(QKeyEvent *pKeyEvent); // Trap for help/tool-tip events. bool eventFilter(QObject *pObject, QEvent *pEvent); // Present a tooltip for a note. void noteToolTip(const QPoint& pos) const; // Default note name map accessor. QString noteName(int iNote) const; // Reset drag/select state. void resetDragState(); protected: // Constants static const int NUM_NOTES = 128; static const int MIN_NOTE = 0; static const int MAX_NOTE = 127; static const int MIN_VELOCITY = 1; static const int MAX_VELOCITY = 127; // Local double-buffering pixmap. QPixmap m_pixmap; // Current notes being keyed on. struct Note { bool enabled; bool on; QPainterPath path; } m_notes[NUM_NOTES]; // Keyboard note range state. enum DragState { DragNone = 0, DragStart, DragNoteRange, DragNoteLow, DragNoteHigh } m_dragState, m_dragCursor; QPoint m_posDrag; // Piano keyboard note range. bool m_bNoteRange; int m_iNoteLow; int m_iNoteLowX; int m_iNoteHigh; int m_iNoteHighX; // Current note being keyed on. int m_iNoteOn; // Current note-on timeout. int m_iTimeout; // Default note-on velocity. int m_iVelocity; // Current highlighted note. int m_iNoteKey; }; #endif // __samplv1widget_keybd_h // end of samplv1widget_keybd.h samplv1-1.4.3/src/PaxHeaders/samplv1_pshifter.cpp0000644000000000000000000000013215245503134016744 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170460835 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_pshifter.cpp0000644000175000001440000003204715245503134016742 0ustar00rncbcusers// samplv1_pshifter.cpp // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_pshifter.h" //--------------------------------------------------------------------------- // samplv1_pshifter - Pitch-shift processor. // // default pitch-shifting algorithm. samplv1_pshifter::Type samplv1_pshifter::g_type = samplv1_pshifter::Default; // Constructor. samplv1_pshifter::samplv1_pshifter ( uint16_t nchannels, float srate ) : m_nchannels(nchannels), m_srate(srate) { } // Destructor. samplv1_pshifter::~samplv1_pshifter (void) { } // Default pitch-shifting algorithm accessor. void samplv1_pshifter::setDefaultType ( Type type ) { g_type = type; } samplv1_pshifter::Type samplv1_pshifter::defaultType (void) { return g_type; } // Factory methods (static) samplv1_pshifter *samplv1_pshifter::create ( uint16_t nchannels, float srate, uint16_t nsize, uint16_t nover ) { if (g_type == RubberBand) { #ifdef CONFIG_LIBRUBBERBAND return new samplv1_rubberband_pshifter(nchannels, srate); #else return nullptr; #endif } return new samplv1_smbernsee_pshifter(nchannels, srate, nsize, nover); } void samplv1_pshifter::destroy ( samplv1_pshifter *pshifter ) { if (pshifter) delete pshifter; } #ifdef CONFIG_LIBRUBBERBAND #include //--------------------------------------------------------------------------- // samplv1_rubberband_pshifter - RubberBand pitch-shift processor. // // Constructor. samplv1_rubberband_pshifter::samplv1_rubberband_pshifter ( uint16_t nchannels, float srate ) : samplv1_pshifter(nchannels, srate) { } // Destructor. samplv1_rubberband_pshifter::~samplv1_rubberband_pshifter (void) { } // Processor. void samplv1_rubberband_pshifter::process ( float **pframes, uint32_t nframes, float pshift ) { RubberBand::RubberBandStretcher stretcher( size_t(m_srate), size_t(m_nchannels), RubberBand::RubberBandStretcher::OptionWindowLong | RubberBand::RubberBandStretcher::OptionChannelsTogether | RubberBand::RubberBandStretcher::OptionThreadingNever | RubberBand::RubberBandStretcher::OptionPitchHighQuality, 1.0, double(pshift)); // stretcher.setExpectedInputDuration(nframes); stretcher.setMaxProcessSize(nframes); stretcher.study(pframes, nframes, true); stretcher.process(pframes, nframes, true); uint32_t navail = stretcher.available(); if (navail > nframes) navail = nframes; if (navail > 0) stretcher.retrieve(pframes, navail); } #endif // CONFIG_LIBRUBBERBAND /* Name: samplv1_smbernsee_pshifter Based on: smbPitchShift.cpp Version: 1.2 URL: http://www.dspdimension.com Routine for doing pitch shifting while maintaining duration using the Short Time Fourier Transform. COPYRIGHT 1999-2009 Stephan M. Bernsee The Wide Open License (WOL) Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice and this license appear in all source copies. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. See http://www.dspguru.com/wol.htm for more information. */ #include #include #include #ifdef CONFIG_FFTW3 // nothing here. #else /* FFT routine, (C) 1996 Stephan M. Bernsee. sign = +1 is FFT (direct); -1 is iFFT (inverse). Fills pframes[0...2*nsize-1] with the Fourier transform of the time domain data in pframes[0...2*nsize-1]. The FFT array takes and returns the cosine and sine parts in an interleaved manner, ie. pframes[0] = cosPart[0], pframes[1] = sinPart[0], asf. nsize must be a power of 2. It expects a complex input signal; ie. when working with 'common' audio signals our input signal has to be passed as {in[0],0,in[1],0,in[2],0,...} asf. In that case, the transform of the frequencies of interest is in pframes[0...nsize]. */ static void smbFft ( float *pframes, uint32_t nframes, int sign ) { uint32_t i, bitm, j, le, le2, k; float wr, wi, arg, *p1, *p2, temp; float tr, ti, ur, ui, *p1r, *p1i, *p2r, *p2i; const uint32_t nsize2 = (nframes << 1); for (i = 2; i < nsize2 - 2; i += 2) { for (bitm = 2, j = 0; bitm < nsize2; bitm <<= 1) { if (i & bitm) ++j; j <<= 1; } if (i < j) { p1 = pframes + i; p2 = pframes + j; temp = *p1; *(p1++) = *p2; *(p2++) = temp; temp = *p1; *p1 = *p2; *p2 = temp; } } const uint32_t nsize = uint32_t(::rintf(::log2f(nframes))); for (k = 0, le = 2; k < nsize; ++k) { le <<= 1; le2 = (le >> 1); ur = 1.0f; ui = 0.0f; arg = M_PI / (le2 >> 1); wr = ::cosf(arg); wi = - sign * ::sinf(arg); for (j = 0; j < le2; j += 2) { p1r = pframes + j; p1i = p1r + 1; p2r = p1r + le2; p2i = p2r + 1; for (i = j; i < nsize2; i += le) { tr = *p2r * ur - *p2i * ui; ti = *p2r * ui + *p2i * ur; *p2r = *p1r - tr; *p2i = *p1i - ti; *p1r += tr; *p1i += ti; p1r += le; p1i += le; p2r += le; p2i += le; } tr = ur * wr - ui * wi; ui = ur * wi + ui * wr; ur = tr; } } } #endif // CONFIG_FFTW3 //--------------------------------------------------------------------------- // samplv1_smbernsee_pshifter - S.M.Bernsee pitch-shift processor. // // Constructor. samplv1_smbernsee_pshifter::samplv1_smbernsee_pshifter ( uint16_t nchannels, float srate, uint16_t nsize, uint16_t nover ) : samplv1_pshifter(nchannels, srate), m_nsize(nsize), m_nover(nover) { // allocate working arrays m_fwind = new float [m_nsize]; m_ififo = new float [m_nsize]; m_ofifo = new float [m_nsize]; #ifdef CONFIG_FFTW3 m_idata = new float [m_nsize << 1]; m_odata = new float [m_nsize << 1]; #else m_fdata = new float [m_nsize << 1]; #endif m_plast = new float [(m_nsize >> 1) + 1]; m_phase = new float [(m_nsize >> 1) + 1]; m_accum = new float [m_nsize << 1]; m_afreq = new float [m_nsize]; m_amagn = new float [m_nsize]; m_sfreq = new float [m_nsize]; m_smagn = new float [m_nsize]; // initialize working arrays // ::memset(m_fwind, 0, m_nsize * sizeof(float)); ::memset(m_ififo, 0, m_nsize * sizeof(float)); ::memset(m_ofifo, 0, m_nsize * sizeof(float)); #ifdef CONFIG_FFTW3 ::memset(m_idata, 0, (m_nsize << 1) * sizeof(float)); ::memset(m_odata, 0, (m_nsize << 1) * sizeof(float)); #else ::memset(m_fdata, 0, (m_nsize << 1) * sizeof(float)); #endif ::memset(m_plast, 0, ((m_nsize >> 1) + 1) * sizeof(float)); ::memset(m_phase, 0, ((m_nsize >> 1) + 1) * sizeof(float)); ::memset(m_accum, 0, (m_nsize << 1) * sizeof(float)); ::memset(m_afreq, 0, m_nsize * sizeof(float)); ::memset(m_amagn, 0, m_nsize * sizeof(float)); #ifdef CONFIG_FFTW3 // create plans m_aplan = ::fftwf_plan_r2r_1d(nsize, m_idata, m_odata, FFTW_R2HC, FFTW_ESTIMATE); m_splan = ::fftwf_plan_r2r_1d(nsize, m_idata, m_odata, FFTW_HC2R, FFTW_ESTIMATE); #endif // pre-compute windowing table... for (uint32_t j = 0; j < m_nsize; ++j) m_fwind[j] = 0.5f - 0.5f * ::cosf(2.0f * M_PI * float(j) / float(m_nsize)); } // Destructor. samplv1_smbernsee_pshifter::~samplv1_smbernsee_pshifter (void) { #ifdef CONFIG_FFTW3 // destroy plans ::fftwf_destroy_plan(m_splan); ::fftwf_destroy_plan(m_aplan); #endif // de-allocate working arrays delete [] m_smagn; delete [] m_sfreq; delete [] m_amagn; delete [] m_afreq; delete [] m_accum; delete [] m_phase; delete [] m_plast; #ifdef CONFIG_FFTW3 delete [] m_odata; delete [] m_idata; #else delete [] m_fdata; #endif delete [] m_ofifo; delete [] m_ififo; delete [] m_fwind; } // Processor. void samplv1_smbernsee_pshifter::process ( float **pframes, uint32_t nframes, float pshift ) { for (uint16_t k = 0; k < m_nchannels; ++k) process_k(pframes[k], nframes, pshift); } // Channel processor. void samplv1_smbernsee_pshifter::process_k ( float *pframes, uint32_t nframes, float pshift ) { // set up some handy variables const uint32_t nsize2 = (m_nsize >> 1); const uint32_t nstep = (m_nsize / m_nover); const uint32_t nlatency = (m_nsize - nstep); const float freqb = m_srate / float(m_nsize); // frequency per bin. const float expct = 2.0f * M_PI * float(nstep) / float(m_nsize); uint32_t i, j, k, noffset = nlatency; float magn, phase, temp; // main processing loop... // for (i = 0; i < nframes; ++i) { // as long as we have not yet collected enough data just read in m_ififo[noffset] = pframes[i]; pframes[i] = m_ofifo[noffset - nlatency]; ++noffset; // now we have enough data for processing... // if (noffset >= m_nsize) { noffset = nlatency; // do windowing and real, imag interleave for (j = 0; j < m_nsize; ++j) { #ifdef CONFIG_FFTW3 m_idata[j] = m_ififo[j] * m_fwind[j]; if (j > 0) m_idata[(m_nsize << 1) - j] = 0.0f; #else k = (j << 1); m_fdata[k] = m_ififo[j] * m_fwind[j]; m_fdata[k + 1] = 0.0f; #endif } // analysis direct transform... // #ifdef CONFIG_FFTW3 ::fftwf_execute(m_aplan); #else smbFft(m_fdata, m_nsize, +1); #endif // this is the analysis step... for (j = 0; j <= nsize2; ++j) { // de-interlace FFT buffer #ifdef CONFIG_FFTW3 const float real = m_odata[j]; const float imag = m_odata[m_nsize - j]; #else k = (j << 1); const float real = m_fdata[k]; const float imag = m_fdata[k + 1]; #endif // compute magnitude and phase magn = 2.0f * ::sqrtf(real * real + imag * imag); phase = ::atan2f(imag, real); // compute phase difference temp = phase - m_plast[j]; m_plast[j] = phase; // subtract expected phase difference temp -= float(j) * expct; // map delta phase into +/- Pi interval long q = ::lrintf(temp / M_PI); if (q < 0) q -= (q & 1); else q += (q & 1); temp -= M_PI * float(q); // get deviation from bin frequency from the +/- Pi interval temp = m_nover * temp / (2.0f * M_PI); // compute the k-th partials' true frequency temp = float(j) * freqb + temp * freqb; // store magnitude and true frequency in analysis arrays m_amagn[j] = magn; m_afreq[j] = temp; } // do the actual pitch shifting... // ::memset(m_sfreq, 0, m_nsize * sizeof(float)); ::memset(m_smagn, 0, m_nsize * sizeof(float)); for (j = 0; j <= nsize2; ++j) { k = j * pshift; if (k <= nsize2) { m_sfreq[k] = m_afreq[j] * pshift; m_smagn[k] += m_amagn[j]; } } // synthesis step... // for (j = 0; j <= nsize2; ++j) { // get magnitude and true frequency from synthesis arrays temp = m_sfreq[j]; magn = m_smagn[j]; // subtract bin mid frequency temp -= float(j) * freqb; // get bin deviation from freq deviation temp /= freqb; // take osamp into account temp = 2.0f * M_PI * temp / float(m_nover); // add the overlap phase advance back in temp += float(j) * expct; // accumulate delta phase to get bin phase m_phase[j] += temp; phase = m_phase[j]; // get real and imag part and re-interleave #ifdef CONFIG_FFTW3 m_idata[j] = magn * ::cosf(phase); m_idata[m_nsize - j] = magn * ::sinf(phase); #else k = (j << 1); m_fdata[k] = magn * ::cosf(phase); m_fdata[k + 1] = magn * ::sinf(phase); #endif } // synthesis inverse transform... // #ifdef CONFIG_FFTW3 ::fftwf_execute(m_splan); #else // zero negative frequencies for (j = m_nsize + 2; j < (m_nsize << 1); ++j) m_fdata[j] = 0.0f; smbFft(m_fdata, m_nsize, -1); #endif // do windowing and add to output accumulator for (j = 0; j < m_nsize; ++j) #ifdef CONFIG_FFTW3 m_accum[j] += m_fwind[j] * m_odata[j] / (nsize2 * m_nover); #else m_accum[j] += 2.0f * m_fwind[j] * m_fdata[j << 1] / (nsize2 * m_nover); #endif for (j = 0; j < nstep; ++j) m_ofifo[j] = m_accum[j]; // shift accumulator ::memmove(m_accum, m_accum + nstep, m_nsize * sizeof(float)); // move input for (j = 0; j < nlatency; ++j) m_ififo[j] = m_ififo[j + nstep]; } } // shift result ::memmove(pframes, pframes + nlatency, (nframes - nlatency) * sizeof(float)); // run linear fade-in/out... // avoid attack/release clicks and pops. // const float fstep = 1.0f / float(m_nover); float fgain = 0.0f; for (i = 0; i < m_nover; ++i) { *pframes++ *= fgain; fgain += fstep; } pframes += (nframes - (m_nover << 1)); for (i = 0; i < m_nover; ++i) { *pframes++ *= fgain; fgain -= fstep; } } // end of samplv1_pshifter.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_formant.cpp0000644000000000000000000000013215245503134016566 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_formant.cpp0000644000175000001440000002012115245503134016552 0ustar00rncbcusers// samplv1_formant.cpp // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_formant.h" //--------------------------------------------------------------------- // formant filter. // // A formant parallel filter after Dennis H. Klatt's // Software for a cascade/parallel formant synthesizer // 1979 MIT; 1980 Acoustical Society of America. // // formant tables. // // The Canonical Csound Reference Manual // Appendix D. Formant Values // http://www.csounds.com/manual/html/MiscFormants.html // samplv1_formant::Vtab samplv1_formant::g_alto_vtab[NUM_VOWELS] = { // Table D.1. alto “a” {{ 800.0f, 1150.0f, 2800.0f, 3500.0f, 4950.0f }, { 0.0f, -4.0f, -20.0f, -36.0f, -60.0f }, { 80.0f, 90.0f, 120.0f, 130.0f, 140.0f }}, // Table D.2. alto “e” {{ 400.0f, 1600.0f, 2700.0f, 3300.0f, 4950.0f }, { 0.0f, -24.0f, -30.0f, -35.0f, -60.0f }, { 60.0f, 80.0f, 120.0f, 150.0f, 200.0f }}, // Table D.3. alto “i” {{ 350.0f, 1700.0f, 2700.0f, 3700.0f, 4950.0f }, { 0.0f, -20.0f, -30.0f, -36.0f, -60.0f }, { 50.0f, 100.0f, 120.0f, 150.0f, 200.0f }}, // Table D.4. alto “o” {{ 450.0f, 800.0f, 2830.0f, 3500.0f, 4950.0f }, { 0.0f, -9.0f, -16.0f, -28.0f, -55.0f }, { 70.0f, 80.0f, 100.0f, 130.0f, 135.0f }}, // Table D.5. alto “u” {{ 325.0f, 700.0f, 2530.0f, 3500.0f, 4950.0f }, { 0.0f, -12.0f, -30.0f, -40.0f, -64.0f }, { 50.0f, 60.0f, 170.0f, 180.0f, 200.0f }} }; samplv1_formant::Vtab samplv1_formant::g_bass_vtab[NUM_VOWELS] = { // Table D.6. bass “a” {{ 600.0f, 1040.0f, 2250.0f, 2450.0f, 2750.0f }, { 0.0f, -7.0f, -9.0f, -9.0f, -20.0f }, { 60.0f, 70.0f, 110.0f, 120.0f, 130.0f }}, // Table D.7. bass “e” {{ 400.0f, 1620.0f, 2400.0f, 2800.0f, 3100.0f }, { 0.0f, -12.0f, -9.0f, -12.0f, -18.0f }, { 40.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.8. bass “i” {{ 250.0f, 1750.0f, 2600.0f, 3050.0f, 3340.0f }, { 0.0f, -30.0f, -16.0f, -22.0f, -28.0f }, { 60.0f, 90.0f, 100.0f, 120.0f, 120.0f }}, // Table D.9. bass “o” {{ 400.0f, 750.0f, 2400.0f, 2600.0f, 2900.0f }, { 0.0f, -11.0f, -21.0f, -20.0f, -40.0f }, { 40.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.10. bass “u” {{ 350.0f, 600.0f, 2400.0f, 2675.0f, 2950.0f }, { 0.0f, -20.0f, -32.0f, -28.0f, -36.0f }, { 40.0f, 80.0f, 100.0f, 120.0f, 120.0f }} }; samplv1_formant::Vtab samplv1_formant::g_countertenor_vtab[NUM_VOWELS] = { // Table D.11. countertenor “a” {{ 660.0f, 1120.0f, 2750.0f, 3000.0f, 3350.0f }, { 0.0f, -6.0f, -23.0f, -24.0f, -38.0f }, { 80.0f, 90.0f, 120.0f, 130.0f, 140.0f }}, // Table D.12. countertenor “e” {{ 440.0f, 1800.0f, 2700.0f, 3000.0f, 3300.0f }, { 0.0f, -14.0f, -18.0f, -20.0f, -20.0f }, { 70.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.13. countertenor “i” {{ 270.0f, 1850.0f, 2900.0f, 3350.0f, 3590.0f }, { 0.0f, -24.0f, -24.0f, -36.0f, -36.0f }, { 40.0f, 90.0f, 100.0f, 120.0f, 120.0f }}, // Table D.14. countertenor “o” {{ 430.0f, 820.0f, 2700.0f, 3000.0f, 3300.0f }, { 0.0f, -10.0f, -26.0f, -22.0f, -34.0f }, { 40.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.15. countertenor “u” {{ 370.0f, 630.0f, 2750.0f, 3000.0f, 3400.0f }, { 0.0f, -20.0f, -23.0f, -30.0f, -34.0f }, { 40.0f, 60.0f, 100.0f, 120.0f, 120.0f }} }; samplv1_formant::Vtab samplv1_formant::g_soprano_vtab[NUM_VOWELS] = { // Table D.16. soprano “a” {{ 800.0f, 1150.0f, 2900.0f, 3900.0f, 4950.0f }, { 0.0f, -6.0f, -32.0f, -20.0f, -50.0f }, { 80.0f, 90.0f, 120.0f, 130.0f, 140.0f }}, // Table D.17. soprano “e” {{ 350.0f, 2000.0f, 2800.0f, 3600.0f, 4950.0f }, { 0.0f, -20.0f, -15.0f, -40.0f, -56.0f }, { 60.0f, 100.0f, 120.0f, 150.0f, 200.0f }}, // Table D.18. soprano “i” {{ 270.0f, 2140.0f, 2950.0f, 3900.0f, 4950.0f }, { 0.0f, -12.0f, -26.0f, -26.0f, -44.0f }, { 60.0f, 90.0f, 100.0f, 120.0f, 120.0f }}, // Table D.19. soprano “o” {{ 450.0f, 800.0f, 2830.0f, 3800.0f, 4950.0f }, { 0.0f, -11.0f, -22.0f, -22.0f, -50.0f }, { 40.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.20. soprano “u” {{ 325.0f, 700.0f, 2700.0f, 3800.0f, 4950.0f }, { 0.0f, -16.0f, -35.0f, -40.0f, -60.0f }, { 50.0f, 60.0f, 170.0f, 180.0f, 200.0f }} }; samplv1_formant::Vtab samplv1_formant::g_tenor_vtab[NUM_VOWELS] = { // Table D.21. tenor “a” {{ 650.0f, 1080.0f, 2650.0f, 2900.0f, 3250.0f }, { 0.0f, -6.0f, -7.0f, -8.0f, -22.0f }, { 80.0f, 90.0f, 120.0f, 130.0f, 140.0f }}, // Table D.22. tenor “e” {{ 400.0f, 1700.0f, 2600.0f, 3200.0f, 3580.0f }, { 0.0f, -14.0f, -12.0f, -14.0f, -20.0f }, { 70.0f, 80.0f, 100.0f, 120.0f, 120.0f }}, // Table D.23. tenor “i” {{ 290.0f, 1870.0f, 2800.0f, 3250.0f, 3540.0f }, { 0.0f, -15.0f, -18.0f, -20.0f, -30.0f }, { 40.0f, 90.0f, 100.0f, 120.0f, 120.0f }}, // Table D.24. tenor “o” {{ 400.0f, 800.0f, 2600.0f, 2800.0f, 3000.0f }, { 0.0f, -10.0f, -12.0f, -12.0f, -26.0f }, { 70.0f, 80.0f, 100.0f, 130.0f, 135.0f }}, // Table D.25. tenor “u” {{ 350.0f, 600.0f, 2700.0f, 2900.0f, 3300.0f }, { 0.0f, -20.0f, -17.0f, -14.0f, -26.0f }, { 40.0f, 60.0f, 100.0f, 120.0f, 120.0f }} }; // base vocal tables. samplv1_formant::Vtab *samplv1_formant::g_vtabs[NUM_VTABS] = { g_bass_vtab, g_tenor_vtab, g_countertenor_vtab, g_soprano_vtab, g_alto_vtab }; // compute coeffs. for given vocal formant table void samplv1_formant::Impl::vtab_coeffs ( Coeffs& coeffs, const Vtab *vtab, uint32_t i, float p ) { const float Fi = vtab->freq[i]; const float Gi = vtab->gain[i]; const float Bi = vtab->band[i] * p; const float Ai = ::powf(10.0f, (0.05f * Gi)); const float Ri = ::expf(-M_PI * Bi / m_srate); coeffs.b2 = Ri * Ri; coeffs.b1 = 2.0f * Ri * ::cosf(2.0f * M_PI * Fi / m_srate); coeffs.a0 = Ai * (1.0f - coeffs.b1 + coeffs.b2); } // reset method impl. void samplv1_formant::Impl::reset_coeffs ( float cutoff, float reso ) { const float fK = cutoff * float(NUM_VTABS - 1); const uint32_t k = uint32_t(fK); const float fJ = (fK - float(k)) * float(NUM_VOWELS - 1); const uint32_t j = uint32_t(fJ); const float dJ = (fJ - float(j)); // vowel morph fraction const float q = 4.0f * reso * reso + 1.0f; const float p = 1.0f / q; // vocal/vowel formant morphing const Vtab *vtabs = g_vtabs[k]; const Vtab *vtab1 = &vtabs[j]; const Vtab *vtab2 = vtab1; if (j < NUM_VOWELS - 1) vtab2 = &vtabs[j + 1]; else if (k < NUM_VTABS - 1) vtab2 = &g_vtabs[k + 1][0]; Coeffs coeff2; for (uint32_t i = 0; i < NUM_FORMANTS; ++i) { Coeffs& coeff1 = m_ctabs[i]; vtab_coeffs(coeff1, vtab1, i, p); vtab_coeffs(coeff2, vtab2, i, p); coeff1.a0 += dJ * (coeff2.a0 - coeff1.a0); coeff1.b1 += dJ * (coeff2.b1 - coeff1.b1); coeff1.b2 += dJ * (coeff2.b2 - coeff1.b2); } } // reset coeffs. method void samplv1_formant::reset_coeffs (void) { if (m_pImpl) { m_pImpl->reset_coeffs(m_cutoff, m_reso); for (uint32_t i = 0; i < NUM_FORMANTS; ++i) m_filters[i].reset_coeffs(m_pImpl->coeffs(i)); } } // end of samplv1_formant.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_list.h0000644000000000000000000000013215245503134015540 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_list.h0000644000175000001440000000330515245503134015531 0ustar00rncbcusers// samplv1_list.h // /**************************************************************************** Copyright (C) 2012, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_list_h #define __samplv1_list_h //------------------------------------------------------------------------- // samplv1_list - generic double-linked list node. template class samplv1_list { public: samplv1_list() : m_prev(0), m_next(0) {} void append(T *p) { p->m_prev = m_prev; p->m_next = 0; if (m_prev) m_prev->m_next = p; else m_next = p; m_prev = p; } void remove(T *p) { if (p->m_prev) p->m_prev->m_next = p->m_next; else m_next = p->m_next; if (p->m_next) p->m_next->m_prev = p->m_prev; else m_prev = p->m_prev; } T *prev() const { return m_prev; } T *next() const { return m_next; } private: T *m_prev; T *m_next; }; #endif // __samplv1_list_h // end of samplv1_list.h samplv1-1.4.3/src/PaxHeaders/samplv1_programs.h0000644000000000000000000000013215245503134016417 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_programs.h0000644000175000001440000000751015245503134016412 0ustar00rncbcusers// samplv1_programs.h // /**************************************************************************** Copyright (C) 2012-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_programs_h #define __samplv1_programs_h #include "samplv1_sched.h" #include "samplv1_param.h" #include //------------------------------------------------------------------------- // samplv1_programs - Bank/programs database class. // class samplv1_programs { public: // ctor. samplv1_programs(samplv1 *pSampl); // dtor. ~samplv1_programs(); // operational mode flags. void enabled(bool on) { m_enabled = on; } bool enabled() const { return m_enabled; } // prog. base node class Prog { public: Prog(uint16_t id, const QString& name) : m_id(id), m_name(name) {} uint16_t id() const { return m_id; } const QString& name() const { return m_name; } void set_name(const QString& name) { m_name = name; } private: uint16_t m_id; QString m_name; }; typedef QMap Progs; // bank node class Bank : public Prog { public: Bank(uint16_t id, const QString& name) : Prog(id, name) {} ~Bank() { clear_progs(); } const Progs& progs() const { return m_progs; } // prog. managers Prog *find_prog(uint16_t prog_id) const; Prog *add_prog(uint16_t prog_id, const QString& prog_name); void remove_prog(uint16_t prog_id); void clear_progs(); private: Progs m_progs; }; typedef QMap Banks; const Banks& banks() const { return m_banks; } // bank managers Bank *find_bank(uint16_t bank_id) const; Bank *add_bank(uint16_t bank_id, const QString& bank_name); void remove_bank(uint16_t bank_id); void clear_banks(); // current bank/prog. managers void bank_select_msb(uint8_t bank_msb); void bank_select_lsb(uint8_t bank_lsb); void bank_select(uint16_t bank_id); void prog_change(uint16_t prog_id); void select_program(uint16_t bank_id, uint16_t prog_id); void process_program(samplv1 *pSampl, uint16_t bank_id, uint16_t prog_id); Bank *current_bank() const { return m_bank; } Prog *current_prog() const { return m_prog; } protected: uint16_t current_bank_id() const; // current bank/prog. scheduled thread class Sched : public samplv1_sched { public: // ctor. Sched (samplv1 *pSampl) : samplv1_sched(pSampl, Programs), m_bank_id(0), m_prog_id(0) {} // schedule (override) void select_program(uint16_t bank_id, uint16_t prog_id) { if (m_bank_id != bank_id || m_prog_id != prog_id) { m_bank_id = bank_id; m_prog_id = prog_id; schedule(); } } // process (virtual). void process(int) { samplv1 *pSampl = instance(); samplv1_programs *pPrograms = pSampl->programs(); pPrograms->process_program(pSampl, m_bank_id, m_prog_id); } private: // instance variables. uint16_t m_bank_id; uint16_t m_prog_id; }; private: // instance variables. bool m_enabled; Sched m_sched; uint8_t m_bank_msb; uint8_t m_bank_lsb; Bank *m_bank; Prog *m_prog; Banks m_banks; }; #endif // __samplv1_programs_h // end of samplv1_programs.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_spinbox.h0000644000000000000000000000013215245503134017453 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.172675585 30 ctime=1788249692.172675585 samplv1-1.4.3/src/samplv1widget_spinbox.h0000644000175000001440000000576215245503134017455 0ustar00rncbcusers// samplv1widget_spinbox.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_spinbox_h #define __samplv1widget_spinbox_h #include #include //---------------------------------------------------------------------------- // samplv1widget_spinbox -- A time-formatted spin-box widget. class samplv1widget_spinbox : public QAbstractSpinBox { Q_OBJECT public: // Constructor. samplv1widget_spinbox(QWidget *parent = 0); // Time-scale accessors. void setSampleRate(float srate); float sampleRate() const; // Display-format accessors. enum Format { Frames = 0, Time }; void setFormat(Format format); Format format() const; // Nominal value (in frames) accessors. void setValue(uint32_t value); uint32_t value() const; // Minimum value (in frames) accessors. void setMinimum(uint32_t minimum); uint32_t minimum() const; // Maximum value (in frames) accessors. void setMaximum(uint32_t maximum); uint32_t maximum() const; // Value/text format converter utilities. static uint32_t valueFromText( const QString& text, Format format, float srate); static QString textFromValue( uint32_t value, Format format, float srate); signals: // Common value change notification. void valueChanged(uint32_t); void valueChanged(const QString&); protected: // Mark that we got actual value. void showEvent(QShowEvent *); // Inherited/override methods. QValidator::State validate(QString& text, int& pos) const; void fixup(QString& text) const; void stepBy(int steps); StepEnabled stepEnabled() const; // Value/text format converters. uint32_t valueFromText(const QString& text) const; QString textFromValue(uint32_t value) const; // Common value/text setlers. bool updateValue(uint32_t value, bool notify); void updateText(); protected slots: // Pseudo-fixup slot. void editingFinishedSlot(); void valueChangedSlot(const QString&); private: // Instance variables. float m_srate; Format m_format; uint32_t m_value; uint32_t m_minimum; uint32_t m_maximum; int m_changed; }; #endif // __samplv1widget_spinbox_h // end of samplv1widget_spinbox.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_keybd.cpp0000644000000000000000000000013215245503134017422 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_keybd.cpp0000644000175000001440000004312115245503134017413 0ustar00rncbcusers// samplv1widget_keybd.cpp // /**************************************************************************** Copyright (C) 2012-2025, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_keybd.h" #include "samplv1_ui.h" #include #include #include #include #include #include #include #include //------------------------------------------------------------------------- // samplv1widget_keybd - A horizontal piano keyboard widget. // Constructor. samplv1widget_keybd::samplv1widget_keybd ( QWidget *pParent ) : QWidget(pParent) { const QFont& font = QWidget::font(); #if QT_VERSION < QT_VERSION_CHECK(6, 2, 0) QWidget::setFont(QFont(font.family(), font.pointSize() - 3)); #else QWidget::setFont(QFont(QStringList() << font.family(), font.pointSize() - 3)); #endif QWidget::setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); QWidget::setMinimumSize(QSize(440, 22)); QWidget::setMouseTracking(true); for (int n = 0; n < NUM_NOTES; ++n) { Note& note = m_notes[n]; note.enabled = false; note.on = false; } m_dragCursor = DragNone; m_bNoteRange = false; m_iNoteLow = MIN_NOTE; m_iNoteLowX = 0; m_iNoteHigh = MAX_NOTE; m_iNoteHighX = 0; m_iNoteOn = -1; m_iTimeout = 0; m_iVelocity = (MIN_VELOCITY + MAX_VELOCITY) / 2; m_iNoteKey = -1; resetDragState(); // Trap for help/tool-tips and leave events. QWidget::installEventFilter(this); } // Note range predicate. void samplv1widget_keybd::setNoteRange ( bool bNoteRange ) { m_bNoteRange = bNoteRange; QWidget::update(); } bool samplv1widget_keybd::isNoteRange (void) const { return m_bNoteRange; } // Note enabled predicate. void samplv1widget_keybd::setNoteEnabled ( int iNote, bool bEnabled ) { if (iNote >= MIN_NOTE && MAX_NOTE >= iNote) m_notes[iNote].enabled = bEnabled; } bool samplv1widget_keybd::isNoteEnabled ( int iNote ) const { if (iNote >= MIN_NOTE && MAX_NOTE >= iNote) return m_notes[iNote].enabled; else return false; } void samplv1widget_keybd::setAllNotesEnabled ( bool bEnabled ) { for (int n = 0; n < NUM_NOTES; ++n) setNoteEnabled(n, bEnabled); } // Default note-on velocity. void samplv1widget_keybd::setVelocity ( int iVelocity ) { if (iVelocity < MIN_VELOCITY) iVelocity = MIN_VELOCITY; if (iVelocity > MAX_VELOCITY) iVelocity = MAX_VELOCITY; m_iVelocity = iVelocity; } int samplv1widget_keybd::velocity (void) const { return m_iVelocity; } // Keyboard note range sanitizers. int samplv1widget_keybd::safeNoteLow ( int iNoteLow ) const { if (iNoteLow < MIN_NOTE) iNoteLow = MIN_NOTE; if (iNoteLow > m_iNoteHigh) iNoteLow = m_iNoteHigh; return iNoteLow; } int samplv1widget_keybd::safeNoteHigh ( int iNoteHigh ) const { if (iNoteHigh > MAX_NOTE) iNoteHigh = MAX_NOTE; if (iNoteHigh < m_iNoteLow) iNoteHigh = m_iNoteLow; return iNoteHigh; } // Keyboard note range setters/getters. void samplv1widget_keybd::setNoteLow ( int iNoteLow ) { m_iNoteLow = safeNoteLow(iNoteLow); m_iNoteLowX = noteRect(m_iNoteLow).left(); QWidget::update(); } int samplv1widget_keybd::noteLow (void) const { return m_iNoteLow; } void samplv1widget_keybd::setNoteHigh ( int iNoteHigh ) { m_iNoteHigh = safeNoteHigh(iNoteHigh); m_iNoteHighX = noteRect(m_iNoteHigh).right(); QWidget::update(); } int samplv1widget_keybd::noteHigh (void) const { return m_iNoteHigh; } void samplv1widget_keybd::setNoteKey ( int iNoteKey ) { if (iNoteKey >= MIN_NOTE && MAX_NOTE >= iNoteKey) { m_notes[iNoteKey].path = notePath(iNoteKey, true); m_iNoteKey = iNoteKey; } else { m_iNoteKey = -1; } QWidget::update(); } int samplv1widget_keybd::noteKey (void) const { return m_iNoteKey; } // Piano key rectangle finder. QRect samplv1widget_keybd::noteRect ( int iNote, bool bOn ) const { return notePath(iNote, bOn).boundingRect().toRect(); } QPainterPath samplv1widget_keybd::notePath ( int iNote, bool bOn ) const { QPainterPath path; const int w = QWidget::width(); const int h = QWidget::height(); const float wn = float(w - 4) / float(NUM_NOTES); const float wk = 12.0f * wn / 7.0f; int k = (iNote % 12); if (k >= 5) ++k; const int nk = (iNote / 12) * 7 + (k >> 1); const int x2 = int(wk * float(nk)); const int w2 = int(wn + 0.5f); QPainterPath path1; path1.addRect(x2 + int(wk - float(w2 >> 1)), 0, w2 + 1, (h << 1) / 3); if (k & 1) { path = path1; } else if (bOn) { path.addRect(x2, 0, wk, h); if ((k == 0 || k == 2 || k == 6 || k == 8 || k == 10) && iNote < MAX_NOTE) path = path.subtracted(path1.translated(+ 0.5f, 0.0f)); if ((k == 2 || k == 4 || k == 8 || k == 10 || k == 12) && iNote > MIN_NOTE) path = path.subtracted(path1.translated(+ 0.5f - wk, 0.0f)); } else { path.addRect(x2, 0, (w2 << 1), h); } return path; } // Piano keyboard note/key actions. void samplv1widget_keybd::noteOn ( int iNote ) { if (iNote < m_iNoteLow || iNote > m_iNoteHigh) return; // If it ain't changed we won't change it ;) Note& note = m_notes[iNote]; if (note.on) return; // Now for the sounding new one... note.on = true; note.path = notePath(iNote, true); QWidget::update(note.path.boundingRect().toRect()); } void samplv1widget_keybd::noteOff ( int iNote ) { if (iNote < m_iNoteLow || iNote > m_iNoteHigh) return; // Turn off old note... Note& note = m_notes[iNote]; if (!note.on) return; // Now for the sounding new one... note.on = false; QWidget::update(note.path.boundingRect().toRect()); } void samplv1widget_keybd::allNotesOff (void) { for (int n = 0; n < NUM_NOTES; ++n) noteOff(n); } // Kill dangling notes, if any... void samplv1widget_keybd::allNotesTimeout (void) { if (m_iTimeout < 1) return; if (m_iNoteOn >= 0) { ++m_iTimeout; QTimer::singleShot(1200, this, SLOT(allNotesTimeout())); // +3sec. return; } for (int n = 0; n < NUM_NOTES; ++n) { Note& note = m_notes[n]; if (note.on) { note.on = false; QWidget::update(note.path.boundingRect().toRect()); emit noteOnClicked(n, 0); } } m_iTimeout = 0; } // Piano keyboard note-on handler. void samplv1widget_keybd::dragNoteOn ( const QPoint& pos ) { // Compute new key cordinates... const int iNote = noteAt(pos); if (iNote < m_iNoteLow || iNote > m_iNoteHigh || iNote == m_iNoteOn) return; // Were we pending on some sounding note? dragNoteOff(); // Now for the sounding new one... m_iNoteOn = iNote; // noteOn(iNote); emit noteOnClicked(iNote, m_iVelocity); if (++m_iTimeout == 1) QTimer::singleShot(1200, this, SLOT(allNotesTimeout())); // +3sec. } // Piano keyboard note-off handler. void samplv1widget_keybd::dragNoteOff (void) { if (m_iNoteOn < 0) return; // Turn off old note... const int iNote = m_iNoteOn; m_iNoteOn = -1; // noteOff(iNote); emit noteOnClicked(iNote, 0); } // Piano keyboard note descriminator. int samplv1widget_keybd::noteAt ( const QPoint& pos ) const { const int w = QWidget::width(); const int h = QWidget::height(); const int yk = (h << 1) / 3; int iNote = (NUM_NOTES * pos.x()) / w; if (pos.y() >= yk) { int k = (iNote % 12); if (k >= 5) ++k; if (k & 1) { const int xk = ((w * iNote) + (w >> 1)) / NUM_NOTES; if (pos.x() >= xk) ++iNote; else --iNote; } } return iNote; } // (Re)create the complete view pixmap. void samplv1widget_keybd::updatePixmap (void) { const int w = QWidget::width(); const int h = QWidget::height(); if (w < 4 || h < 4) return; const QPalette& pal = QWidget::palette(); const bool bDark = (pal.base().color().value() < 128); const QColor& rgbLine = pal.mid().color(); const QColor& rgbLight = QColor(Qt::white).darker(bDark ? 240 : 160); const QColor& rgbDark = QColor(Qt::black).lighter(bDark ? 120 : 180); m_pixmap = QPixmap(w, h); m_pixmap.fill(pal.window().color()); QPainter painter(&m_pixmap); // painter.initFrom(this); const float wn = float(w - 4) / float(NUM_NOTES); const float wk = 12.0f * wn / 7.0f; const int w2 = int(wn + 0.5f); const int h3 = (h << 1) / 3; QLinearGradient gradLight(0, 0, 0, h); gradLight.setColorAt(0.0, rgbLight); gradLight.setColorAt(0.1, rgbLight.lighter()); painter.fillRect(0, 0, w, h, gradLight); painter.setPen(rgbLine); int n, k; for (n = 0; n < NUM_NOTES; ++n) { k = (n % 12); if (k >= 5) ++k; if ((k & 1) == 0) { const int nk = (n / 12) * 7 + (k >> 1); const int x1 = int(wk * float(nk)); painter.drawLine(x1, 0, x1, h); if (k == 0 && w2 > 10) painter.drawText(x1 + 4, h - 4, noteName(n)); } } QLinearGradient gradDark(0, 0, 0, h3); gradDark.setColorAt(0.0, rgbLight); gradDark.setColorAt(0.4, rgbDark); gradDark.setColorAt(0.92, rgbDark); gradDark.setColorAt(0.96, rgbLight); gradDark.setColorAt(1.0, rgbDark); painter.setBrush(gradDark); for (n = 0; n < NUM_NOTES; ++n) { k = (n % 12); if (k >= 5) ++k; if (k & 1) { const int nk = (n / 12) * 7 + (k >> 1); const int x1 = int(wk * float(nk + 1) - float(w2 >> 1)); painter.drawRect(x1, 0, w2, h3); } m_notes[n].path = notePath(n, (n == m_iNoteKey && m_iNoteKey >= MIN_NOTE && MAX_NOTE >= m_iNoteKey)); } m_iNoteLowX = noteRect(m_iNoteLow).left(); m_iNoteHighX = noteRect(m_iNoteHigh).right(); } // Paint event handler. void samplv1widget_keybd::paintEvent ( QPaintEvent *pPaintEvent ) { QPainter painter(this); // Render the pixmap region... const QRect& rect = pPaintEvent->rect(); painter.drawPixmap(rect, m_pixmap, rect); const QPalette& pal = QWidget::palette(); QColor rgbGray = pal.mid().color(); rgbGray.setAlpha(120); // Are we enabled still? if (!QWidget::isEnabled()) { painter.fillRect(rect, rgbGray); return; } // Are we sticking in some note? QColor rgbOver = pal.highlight().color().darker(120); rgbOver.setAlpha(180); for (int n = 0; n < NUM_NOTES; ++n) { Note& note = m_notes[n]; if (!note.enabled) painter.fillPath(note.path, rgbGray); else if (note.on) painter.fillPath(note.path, rgbOver); } // Keyboard range lines... if (m_bNoteRange) { const int w = QWidget::width(); const int h = QWidget::height(); const int x1 = m_iNoteLowX; const int x2 = m_iNoteHighX; rgbOver = pal.dark().color().darker(); rgbOver.setAlpha(120); if (x1 > 0) painter.fillRect(0, 0, x1, h, rgbOver); if (x2 < w) painter.fillRect(x2, 0, w, h, rgbOver); } // Current highlighted note. if (m_iNoteKey >= MIN_NOTE && MAX_NOTE >= m_iNoteKey) { rgbOver = pal.highlight().color().lighter(); rgbOver.setAlpha(120); painter.fillPath(m_notes[m_iNoteKey].path, rgbOver); } } // Resize event handler. void samplv1widget_keybd::resizeEvent ( QResizeEvent *pResizeEvent ) { updatePixmap(); return QWidget::resizeEvent(pResizeEvent); } // Alternate mouse behavior event handlers. void samplv1widget_keybd::mousePressEvent ( QMouseEvent *pMouseEvent ) { const QPoint& pos = pMouseEvent->pos(); switch (pMouseEvent->button()) { case Qt::LeftButton: if (m_dragCursor == DragNone) { // Are we keying in some keyboard? if ((pMouseEvent->modifiers() & (Qt::ShiftModifier | Qt::ControlModifier)) == 0) { dragNoteOn(pos); noteToolTip(pos); } // Maybe we'll start something... m_dragState = DragStart; m_posDrag = pos; } else { m_dragState = m_dragCursor; } // Fall thru... default: break; } // QWidget::mousePressEvent(pMouseEvent); } void samplv1widget_keybd::mouseMoveEvent ( QMouseEvent *pMouseEvent ) { const QPoint& pos = pMouseEvent->pos(); switch (m_dragState) { case DragNone: if (m_bNoteRange) { // Are we already moving/dragging something? const int dx = 4; const int x1 = m_iNoteLowX; const int x2 = m_iNoteHighX; if (::abs(x2 - pos.x()) < dx) { m_dragCursor = DragNoteHigh; QWidget::setCursor(QCursor(Qt::SizeHorCursor)); QToolTip::showText( QWidget::mapToGlobal(pos), tr("High: %1 (%2)") .arg(noteName(m_iNoteHigh)).arg(m_iNoteHigh), this); } else if (::abs(x1 - pos.x()) < dx) { m_dragCursor = DragNoteLow; QWidget::setCursor(QCursor(Qt::SizeHorCursor)); QToolTip::showText( QWidget::mapToGlobal(pos), tr("Low: %1 (%2)") .arg(noteName(m_iNoteLow)).arg(m_iNoteLow), this); } else if (m_dragCursor != DragNone) { m_dragCursor = DragNone; QWidget::unsetCursor(); } } break; case DragNoteLow: if (m_bNoteRange) { const int iNoteLow = safeNoteLow(noteAt(pos)); m_iNoteLowX = noteRect(iNoteLow).left(); QWidget::update(); QToolTip::showText( QCursor::pos(), tr("Low: %1 (%2)") .arg(noteName(iNoteLow)).arg(iNoteLow), this); } break; case DragNoteHigh: if (m_bNoteRange) { const int iNoteHigh = safeNoteHigh(noteAt(pos)); m_iNoteHighX = noteRect(iNoteHigh).right(); QWidget::update(); QToolTip::showText( QCursor::pos(), tr("High: %1 (%2)") .arg(noteName(iNoteHigh)).arg(iNoteHigh), this); } break; case DragNoteRange: if (m_bNoteRange) { const int w = QWidget::width(); if (w > 0) { // Rubber-band offset selection... const QRect& rect = QRect(m_posDrag, pos).normalized(); int iNoteLow = (NUM_NOTES * rect.left()) / w; int iNoteHigh = (NUM_NOTES * rect.right()) / w; if (iNoteLow < MIN_NOTE) iNoteLow = MIN_NOTE; if (iNoteLow > iNoteHigh) iNoteLow = iNoteHigh; if (iNoteHigh > MAX_NOTE) iNoteHigh = MAX_NOTE; if (iNoteHigh < iNoteLow) iNoteHigh = iNoteLow; m_iNoteLowX = noteRect(iNoteLow).left(); m_iNoteHighX = noteRect(iNoteHigh).right(); QWidget::update(); QToolTip::showText( QWidget::mapToGlobal(pos), tr("Low: %1 (%2) High: %3 (%4)") .arg(noteName(iNoteLow)).arg(iNoteLow) .arg(noteName(iNoteHigh)).arg(iNoteHigh), this); } } break; case DragStart: if (m_bNoteRange) { if ((m_posDrag - pos).manhattanLength() > QApplication::startDragDistance()) { // Start dragging alright... if (m_dragCursor != DragNone) m_dragState = m_dragCursor; else if (pMouseEvent->modifiers() & (Qt::ShiftModifier | Qt::ControlModifier)) { // Rubber-band starting... m_dragState = m_dragCursor = DragNoteRange; QWidget::setCursor(QCursor(Qt::SizeHorCursor)); } } } // Are we still hovering the keyboard? if (m_dragState == DragStart) { dragNoteOn(pos); noteToolTip(pos); } // Fall thru... default: break; } // QWidget::mouseMoveEvent(pMouseEvent); } void samplv1widget_keybd::mouseReleaseEvent ( QMouseEvent *pMouseEvent ) { const QPoint& pos = pMouseEvent->pos(); switch (m_dragState) { case DragNoteLow: if (m_bNoteRange) { setNoteLow(noteAt(pos)); emit noteRangeChanged(); } break; case DragNoteHigh: if (m_bNoteRange) { setNoteHigh(noteAt(pos)); emit noteRangeChanged(); } break; case DragNoteRange: if (m_bNoteRange) { const int w = QWidget::width(); if (w > 0) { const QRect& rect = QRect(m_posDrag, pos).normalized(); int iNoteLow = (NUM_NOTES * rect.left()) / w; int iNoteHigh = (NUM_NOTES * rect.right()) / w; if (iNoteLow < MIN_NOTE) iNoteLow = MIN_NOTE; if (iNoteHigh > MAX_NOTE) iNoteHigh = MAX_NOTE; if (iNoteLow > iNoteHigh) iNoteLow = iNoteHigh; if (iNoteHigh < iNoteLow) iNoteHigh = iNoteLow; m_iNoteLow = iNoteLow; m_iNoteLowX = noteRect(iNoteLow).left(); m_iNoteHigh = iNoteHigh; m_iNoteHighX = noteRect(iNoteHigh).right(); QWidget::update(); emit noteRangeChanged(); } } break; // Fall thru... default: break; } // Were we stuck on some keyboard note? resetDragState(); // QWidget::mouseReleaseEvent(pMouseEvent); } // Keyboard event handler. void samplv1widget_keybd::keyPressEvent ( QKeyEvent *pKeyEvent ) { switch (pKeyEvent->key()) { case Qt::Key_Escape: resetDragState(); QWidget::update(); break; default: QWidget::keyPressEvent(pKeyEvent); break; } } // Trap for help/tool-tip events. bool samplv1widget_keybd::eventFilter ( QObject *pObject, QEvent *pEvent ) { if (static_cast (pObject) == this) { if (pEvent->type() == QEvent::ToolTip) { QHelpEvent *pHelpEvent = static_cast (pEvent); if (pHelpEvent && m_dragCursor == DragNone) { noteToolTip(pHelpEvent->pos()); return true; } } else if (pEvent->type() == QEvent::Leave) { dragNoteOff(); return true; } } // Not handled here. return QWidget::eventFilter(pObject, pEvent); } // Present a tooltip for a note. void samplv1widget_keybd::noteToolTip ( const QPoint& pos ) const { const int iNote = noteAt(pos); if (iNote < MIN_NOTE || iNote > MAX_NOTE) return; QToolTip::showText(QWidget::mapToGlobal(pos), QString("%1 (%2)").arg(noteName(iNote)).arg(iNote)); } // Default note name map accessor. QString samplv1widget_keybd::noteName ( int iNote ) const { return samplv1_ui::noteName(iNote); } // Reset drag/select state. void samplv1widget_keybd::resetDragState (void) { dragNoteOff(); if (m_dragCursor != DragNone) QWidget::unsetCursor(); m_dragState = m_dragCursor = DragNone; } // end of samplv1widget_keybd.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_preset.cpp0000644000000000000000000000013215245503134017626 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_preset.cpp0000644000175000001440000002600215245503134017616 0ustar00rncbcusers// samplv1widget_preset.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_preset.h" #include "samplv1_config.h" #include #include #include #include #include //------------------------------------------------------------------------- // samplv1widget_preset - Custom preset-box widget. // // Constructor. samplv1widget_preset::samplv1widget_preset ( QWidget *pParent ) : QWidget(pParent) { m_pNewButton = new QToolButton(); m_pOpenButton = new QToolButton(); m_pComboBox = new samplv1widget_presets::ComboBox(); m_pSaveButton = new QToolButton(); m_pDeleteButton = new QToolButton(); m_pResetButton = new QToolButton(); m_pPresetsView = m_pComboBox->presetsView(); m_pNewButton->setIcon(QIcon(":/images/presetNew.png")); m_pOpenButton->setIcon(QIcon(":/images/presetOpen.png")); m_pComboBox->setEditable(true); m_pComboBox->setValidator(m_pPresetsView->presetsValidator()); m_pComboBox->setCompleter(nullptr); m_pComboBox->setMinimumWidth(240); m_pSaveButton->setIcon(QIcon(":/images/presetSave.png")); m_pDeleteButton->setIcon(QIcon(":/images/presetDelete.png")); m_pResetButton->setText("Reset"); m_pNewButton->setToolTip(tr("New Preset")); m_pOpenButton->setToolTip(tr("Open Preset")); m_pSaveButton->setToolTip(tr("Save Preset")); m_pDeleteButton->setToolTip(tr("Delete Preset")); m_pResetButton->setToolTip(tr("Reset Preset")); QHBoxLayout *pHBoxLayout = new QHBoxLayout(); pHBoxLayout->setContentsMargins(2, 2, 2, 2); pHBoxLayout->setSpacing(4); pHBoxLayout->addWidget(m_pNewButton); pHBoxLayout->addWidget(m_pOpenButton); pHBoxLayout->addWidget(m_pComboBox); pHBoxLayout->addWidget(m_pSaveButton); pHBoxLayout->addWidget(m_pDeleteButton); pHBoxLayout->addSpacing(4); pHBoxLayout->addWidget(m_pResetButton); QWidget::setLayout(pHBoxLayout); m_iInitPreset = 0; m_iDirtyPreset = 0; // UI signal/slot connections... QObject::connect(m_pNewButton, SIGNAL(clicked()), SLOT(newPreset())); QObject::connect(m_pOpenButton, SIGNAL(clicked()), SLOT(openPreset())); QObject::connect(m_pComboBox, SIGNAL(currentTextChanged(const QString&)), SLOT(activatePreset(const QString&))); #if 0 QObject::connect(m_pComboBox, #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) SIGNAL(textActivated(const QString&)), #else SIGNAL(activated(const QString&)), #endif SLOT(activatePreset(const QString&))); #endif QObject::connect(m_pSaveButton, SIGNAL(clicked()), SLOT(savePreset())); QObject::connect(m_pDeleteButton, SIGNAL(clicked()), SLOT(deletePreset())); QObject::connect(m_pResetButton, SIGNAL(clicked()), SLOT(resetPreset())); loadPresets(); } // Preset name/text accessors. void samplv1widget_preset::clearPreset (void) { ++m_iInitPreset; const bool bBlockSignals = m_pComboBox->blockSignals(true); m_pComboBox->clearEditText(); m_pComboBox->blockSignals(bBlockSignals); } void samplv1widget_preset::setPreset ( const QString& sPreset ) { const bool bBlockSignals = m_pComboBox->blockSignals(true); m_pComboBox->setCurrentPreset(sPreset); m_pComboBox->blockSignals(bBlockSignals); } QString samplv1widget_preset::preset (void) const { return m_pComboBox->currentPreset(); } // Check whether current preset may be reset. bool samplv1widget_preset::queryPreset (void) { if (m_iInitPreset == 0) return true; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return false; if (m_iDirtyPreset > 0) { const QString& sPreset(pConfig->sPreset); if (sPreset.isEmpty()) { if (QMessageBox::warning(this, tr("Warning"), tr("Some parameters have been changed.\n\n" "Do you want to discard the changes?"), QMessageBox::Discard | QMessageBox::Cancel) == QMessageBox::Cancel) return false; } else { switch (QMessageBox::warning(this, tr("Warning"), tr("Some preset parameters have been changed:\n\n" "\"%1\".\n\nDo you want to save the changes?") .arg(sPreset), QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel)) { case QMessageBox::Save: savePreset(sPreset); // Fall thru... case QMessageBox::Discard: break; default: // Cancel... setPreset(sPreset); return false; } } } return true; } // Preset management slots... void samplv1widget_preset::activatePreset ( const QString& sPreset ) { QTreeWidgetItem *pPresetItem = m_pPresetsView->presetItem(sPreset); if (pPresetItem && queryPreset()) { loadPreset(sPreset); emit presetActivated(sPreset); return; } if (pPresetItem == nullptr && m_pPresetsView->bankItem(sPreset)) m_pComboBox->resetCurrentPreset(); stabilizePreset(); } void samplv1widget_preset::loadPreset ( const QString& sPreset ) { if (sPreset.isEmpty()) return; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { emit loadPresetFile(sPreset, pConfig->presetFile(sPreset)); ++m_iInitPreset; pConfig->sPreset = sPreset; setPreset(sPreset); } stabilizePreset(); } void samplv1widget_preset::newPreset (void) { if (!queryPreset()) return; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { emit newPresetFile(); pConfig->sPreset.clear(); clearPreset(); } stabilizePreset(); } void samplv1widget_preset::openPreset (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; m_pPresetsView->setPresetDir(pConfig->sPresetDir); m_pPresetsView->setPresetExt(PROJECT_NAME); m_pPresetsView->setDontUseNativeDialogs(pConfig->bDontUseNativeDialogs); const QStringList& files = m_pPresetsView->openPresetFiles(); if (files.isEmpty()) return; if (!queryPreset()) return; int iPreset = 0; QString sAfterPreset = m_pComboBox->currentPreset(); QStringListIterator iter(files); while (iter.hasNext()) { const QString& sPresetFile = iter.next(); const QFileInfo fi(sPresetFile); const QString& sPreset = m_pPresetsView->presetRenum(fi.completeBaseName()); pConfig->setPresetFile(sPreset, sPresetFile); samplv1_presets::Preset *pPreset = pConfig->presets.add_preset(sPreset, sAfterPreset); if (pPreset) { pPreset->set_file(sPresetFile); if (++iPreset == 1) { ++m_iInitPreset; emit loadPresetFile(sPreset, sPresetFile); pConfig->sPreset = sPreset; pConfig->sPresetDir = fi.absolutePath(); } sAfterPreset = sPreset; } } if (iPreset > 0) loadPresets(); } void samplv1widget_preset::savePreset (void) { savePreset(m_pComboBox->currentPreset()); } void samplv1widget_preset::savePreset ( const QString& sPreset ) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; m_pPresetsView->setPresetDir(pConfig->sPresetDir); m_pPresetsView->setPresetExt(PROJECT_NAME); m_pPresetsView->setDontUseNativeDialogs(pConfig->bDontUseNativeDialogs); if (sPreset.isEmpty()) return; const QString& sPresetFile = m_pPresetsView->savePresetFile(sPreset); int iPreset = 0; if (!sPresetFile.isEmpty()) { emit savePresetFile(sPreset, sPresetFile); pConfig->setPresetFile(sPreset, sPresetFile); samplv1_presets::Preset *pPreset = pConfig->presets.add_preset(sPreset); if (pPreset) { pPreset->set_file(sPresetFile); ++m_iInitPreset; pConfig->sPreset = sPreset; pConfig->sPresetDir = QFileInfo(sPresetFile).absolutePath(); ++iPreset; } } if (iPreset > 0) loadPresets(); } void samplv1widget_preset::deletePreset (void) { const QString& sPreset = m_pComboBox->currentPreset(); if (sPreset.isEmpty()) return; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; if (QMessageBox::warning(QWidget::window(), tr("Warning"), tr("About to remove preset:\n\n" "\"%1\"\n\n" "Are you sure?") .arg(sPreset), QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel) return; pConfig->presets.remove_preset(sPreset); pConfig->removePreset(sPreset); pConfig->sPreset.clear(); loadPresets(); } void samplv1widget_preset::resetPreset (void) { const QString& sPreset = m_pComboBox->currentPreset(); const bool bLoadPreset = (!sPreset.isEmpty() && m_pPresetsView->presetItem(sPreset) != nullptr); if (bLoadPreset && !queryPreset()) return; if (bLoadPreset) { loadPreset(sPreset); } else { emit resetPresetFile(); m_iDirtyPreset = 0; stabilizePreset(); } } // Widget refreshner-loader. void samplv1widget_preset::loadPresets (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; const bool bBlockSignals = m_pComboBox->blockSignals(true); m_pPresetsView->loadPresets(&(pConfig->presets)); if (!pConfig->sPreset.isEmpty()) { if (m_pPresetsView->presetItem(pConfig->sPreset) != nullptr) { m_pComboBox->setCurrentPreset(pConfig->sPreset); m_iDirtyPreset = 0; } else { pConfig->sPreset.clear(); } } if (pConfig->sPreset.isEmpty()) { m_pComboBox->clearEditText(); ++m_iDirtyPreset; } m_pComboBox->blockSignals(bBlockSignals); stabilizePreset(); } void samplv1widget_preset::savePresets (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; if (m_pPresetsView->isDirtyPresets()) { m_pPresetsView->savePresets(&(pConfig->presets)); m_pPresetsView->setDirtyPresets(false); } } // Preset control. void samplv1widget_preset::initPreset (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig && !pConfig->sPreset.isEmpty()) loadPreset(pConfig->sPreset); else newPreset(); } // Dirty flag accessor. void samplv1widget_preset::setDirtyPreset ( bool bDirtyPreset ) { if (bDirtyPreset) ++m_iDirtyPreset; else m_iDirtyPreset = 0; stabilizePreset(); } bool samplv1widget_preset::isDirtyPreset (void) const { return (m_iDirtyPreset > 0); } void samplv1widget_preset::stabilizePreset (void) { const QString& sPreset = m_pComboBox->currentPreset(); const bool bEnabled = (!sPreset.isEmpty()); const bool bExists = (m_pPresetsView->presetItem(sPreset) != nullptr); const bool bDirty = (m_iDirtyPreset > 0); m_pSaveButton->setEnabled(bEnabled && (!bExists || bDirty)); m_pDeleteButton->setEnabled(bEnabled && bExists); m_pResetButton->setEnabled(bDirty); } // end of samplv1widget_preset.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_palette.ui0000644000000000000000000000013215245503134017615 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_palette.ui0000644000175000001440000001722415245503134017613 0ustar00rncbcusers rncbc aka Rui Nuno Capela samplv1 - an old-school polyphonic sampler Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. samplv1widget_palette 0 0 534 640 0 0 Color Themes Name 0 0 320 0 Current color palette name true QComboBox::NoInsert Save current color palette name Save :/images/presetSave.png Delete current color palette name Delete :/images/presetDelete.png Palette 280 360 Current color palette true Generate: 0 0 Qt::StrongFocus Base color to generate palette Reset all current palette colors Reset :/images/itemReset.png Qt::Horizontal 8 20 Import a custom color theme (palette) from file Import... :/images/presetOpen.png Export a custom color theme (palette) to file Export... :/images/presetSave.png Qt::Horizontal 8 20 Show Details Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok samplv1widget_palette::ColorButton nameCombo saveButton deleteButton paletteView generateButton resetButton importButton exportButton detailsCheck dialogButtons samplv1-1.4.3/src/PaxHeaders/samplv1_resampler.h0000644000000000000000000000013215245503134016557 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_resampler.h0000644000175000001440000000525315245503134016554 0ustar00rncbcusers// samplv1_resampler.h // /**************************************************************************** Copyright (C) 2017-2021, rncbc aka Rui Nuno Capela. All rights reserved. Copyright (C) 2006-2012 Fons Adriaensen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_resampler_h #define __samplv1_resampler_h #include // ---------------------------------------------------------------------------- // samplv1_resampler class samplv1_resampler { public: samplv1_resampler(); ~samplv1_resampler(); bool setup(unsigned int fs_inp, unsigned int fs_out, unsigned int nchan, unsigned int hlen); bool setup(unsigned int fs_inp, unsigned int fs_out, unsigned int nchan, unsigned int hlen, float frel); void clear(); bool reset(); int nchan() const { return m_nchan; } int inpsize() const; int inpdist() const; bool process(); unsigned int inp_count; unsigned int out_count; float *inp_data; float *out_data; class Mutex { public: Mutex() { pthread_mutex_init(&m_mutex, 0); } ~Mutex() { pthread_mutex_destroy(&m_mutex); } void lock() { pthread_mutex_lock(&m_mutex); } void unlock() { pthread_mutex_unlock(&m_mutex); } private: pthread_mutex_t m_mutex; }; class Table { public: Table(float fr0, unsigned int hl0, unsigned int np0); ~Table(); Table *next; unsigned int refc; float *ctab; float fr; unsigned int hl; unsigned int np; static Table *create(float fr0, unsigned int hl0, unsigned int np0); static void destroy(Table *table); private: static Table *g_list; static Mutex g_mutex; }; private: Table *m_table; unsigned int m_nchan; unsigned int m_inmax; unsigned int m_index; unsigned int m_nread; unsigned int m_nzero; unsigned int m_phase; unsigned int m_pstep; float *m_buff; void *m_dummy[8]; }; #endif // __samplv1_resampler_h // end of psolva1_resampler.h samplv1-1.4.3/src/PaxHeaders/samplv1_sample.cpp0000644000000000000000000000013215245503134016401 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_sample.cpp0000644000175000001440000002335415245503134016400 0ustar00rncbcusers// samplv1_sample.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_sample.h" #include "samplv1_resampler.h" #include "samplv1_pshifter.h" #include //------------------------------------------------------------------------- // samplv1_sample - sampler wave table. // // ctor. samplv1_sample::samplv1_sample ( float srate ) : m_srate(srate), m_ntabs(0), m_filename(nullptr), m_nchannels(0), m_rate0(0.0f), m_freq0(1.0f), m_ratio(0.0f), m_nframes(0), m_pframes(nullptr), m_reverse(false), m_offset(false), m_offset_start(0), m_offset_end(0), m_offset_phase0(nullptr), m_offset_end2(0), m_loop(false), m_loop_start(0), m_loop_end(0), m_loop_phase1(nullptr), m_loop_phase2(nullptr), m_loop_xfade(0), m_loop_xzero(true), m_loop_end_release(false) { } // copy-ctor. samplv1_sample::samplv1_sample ( const samplv1_sample& sample ) : samplv1_sample(sample.m_srate) { m_loop = sample.m_loop; m_offset = sample.m_offset; m_reverse = sample.m_reverse; m_loop_xfade = sample.m_loop_xfade; m_loop_xzero = sample.m_loop_xzero; m_loop_end_release = sample.m_loop_end_release; } // dtor. samplv1_sample::~samplv1_sample (void) { close(); } // init. bool samplv1_sample::open ( const char *filename, float freq0, uint16_t otabs ) { if (filename == nullptr) return false; const bool same_filename = (m_filename && ::strcmp(m_filename, filename) == 0); char *filename2 = ::strdup(filename); close(); if (!same_filename) { setOffsetRange(0, 0); setLoopRange(0, 0); } m_filename = filename2; SF_INFO info; ::memset(&info, 0, sizeof(info)); SNDFILE *file = ::sf_open(m_filename, SFM_READ, &info); if (file == nullptr) return false; m_nchannels = info.channels; m_rate0 = float(info.samplerate); m_nframes = info.frames; float *buffer = new float [m_nchannels * m_nframes]; const int nread = ::sf_readf_float(file, buffer, m_nframes); if (nread > 0) { // resample start... const uint32_t ninp = uint32_t(nread); const uint32_t rinp = uint32_t(m_rate0); const uint32_t rout = uint32_t(m_srate); if (rinp != rout) { samplv1_resampler resampler; const uint32_t nout = uint32_t(float(ninp) * m_srate / m_rate0); const uint32_t FILTSIZE = 32; // resample medium quality if (resampler.setup(rinp, rout, m_nchannels, FILTSIZE)) { float *inpb = buffer; float *outb = new float [m_nchannels * nout]; resampler.inp_count = ninp; resampler.inp_data = inpb; resampler.out_count = nout; resampler.out_data = outb; resampler.process(); buffer = outb; delete [] inpb; // identical rates now... m_rate0 = float(rout); m_nframes = (nout - resampler.out_count); } } else m_nframes = ninp; // resample end. } m_freq0 = freq0; m_ratio = m_rate0 / (m_freq0 * m_srate); m_ntabs = (otabs << 1); const uint16_t ntabs = (m_ntabs + 1); const uint32_t nsize = (m_nframes + 4); m_pframes = new float ** [ntabs]; m_offset_phase0 = new float [ntabs]; m_loop_phase1 = new float [ntabs]; m_loop_phase2 = new float [ntabs]; samplv1_pshifter *pshifter = nullptr; if (m_ntabs > 0) pshifter = samplv1_pshifter::create(m_nchannels, m_srate); for (uint16_t itab = 0; itab < ntabs; ++itab) { float **pframes = new float * [m_nchannels]; for (uint16_t k = 0; k < m_nchannels; ++k) { pframes[k] = new float [nsize]; ::memset(pframes[k], 0, nsize * sizeof(float)); } uint32_t i = 0; for (uint32_t j = 0; j < m_nframes; ++j) { for (uint16_t k = 0; k < m_nchannels; ++k) pframes[k][j] = buffer[i++]; } const uint16_t itab0 = (m_ntabs >> 1); if (itab != itab0 && pshifter) { const float pshift = 1.0f / ftab(itab); pshifter->process(pframes, m_nframes, pshift); } m_pframes[itab] = pframes; m_offset_phase0[itab] = 0.0f; m_loop_phase1[itab] = 0.0f; m_loop_phase2[itab] = 0.0f; } if (pshifter) samplv1_pshifter::destroy(pshifter); delete [] buffer; ::sf_close(file); if (m_reverse) reverse_sync(); reset(freq0); updateOffset(); updateLoop(); return true; } void samplv1_sample::close (void) { if (m_loop_phase2) { delete [] m_loop_phase2; m_loop_phase2 = nullptr; } if (m_loop_phase1) { delete [] m_loop_phase1; m_loop_phase1 = nullptr; } if (m_offset_phase0) { delete [] m_offset_phase0; m_offset_phase0 = nullptr; } if (m_pframes) { const uint16_t ntabs = m_ntabs + 1; for (uint16_t itab = 0; itab < ntabs; ++itab) { float **pframes = m_pframes[itab]; for (uint16_t k = 0; k < m_nchannels; ++k) delete [] pframes[k]; delete [] pframes; } delete [] m_pframes; m_pframes = nullptr; } m_nframes = 0; m_ratio = 0.0f; m_freq0 = 1.0f; m_rate0 = 0.0f; m_nchannels = 0; m_ntabs = 0; // setOffsetRange(0, 0); // setLoopRange(0, 0); if (m_filename) { ::free(m_filename); m_filename = nullptr; } } // reverse sample buffer. void samplv1_sample::reverse_sync (void) { if (m_nframes > 0 && m_pframes) { const uint16_t ntabs = (m_ntabs + 1); const uint32_t nsize1 = (m_nframes - 1); const uint32_t nsize2 = (m_nframes >> 1); for (uint16_t itab = 0; itab < ntabs; ++itab) { float **pframes = m_pframes[itab]; for (uint16_t k = 0; k < m_nchannels; ++k) { float *frames = pframes[k]; for (uint32_t i = 0; i < nsize2; ++i) { const uint32_t j = nsize1 - i; const float sample = frames[i]; frames[i] = frames[j]; frames[j] = sample; } } } } } // offset range. void samplv1_sample::setOffsetRange ( uint32_t start, uint32_t end ) { if (start > m_nframes) start = m_nframes; if (end > m_nframes || start >= end) end = m_nframes; if (start < end) { m_offset_start = start; m_offset_end = end; } else { m_offset_start = 0; m_offset_end = m_nframes; } if (m_offset_phase0) { const uint16_t ntabs = m_ntabs + 1; if (m_offset && m_offset_start < m_offset_end) { for (uint16_t itab = 0; itab < ntabs; ++itab) m_offset_phase0[itab] = float(zero_crossing(itab, m_offset_start)); m_offset_end2 = zero_crossing((ntabs >> 1), m_offset_end); } else { for (uint16_t itab = 0; itab < ntabs; ++itab) m_offset_phase0[itab] = 0.0f; m_offset_end2 = m_nframes; } } else m_offset_end2 = m_nframes; // offset/loop range stabilizer... if (m_offset_start < m_offset_end) { int loop_update = 0; uint32_t loop_start = m_loop_start; uint32_t loop_end = m_loop_end; if (loop_start < m_offset_start || loop_start > m_offset_end) { loop_start = m_offset_start; ++loop_update; } if (loop_end > m_offset_end || loop_end < m_offset_start) { loop_end = m_offset_end; ++loop_update; } if (loop_update > 0 && loop_start < loop_end) setLoopRange(loop_start, loop_end); } } // offset updater. void samplv1_sample::updateOffset (void) { setOffsetRange(m_offset_start, m_offset_end); } // loop range. void samplv1_sample::setLoopRange ( uint32_t start, uint32_t end ) { if (m_offset && m_offset_start < m_offset_end) { if (start < m_offset_start) start = m_offset_start; if (start > m_offset_end) start = m_offset_end; if (end > m_offset_end) end = m_offset_end; if (end < m_offset_start) end = m_offset_start; } else { if (start > m_nframes) start = m_nframes; if (end > m_nframes) end = m_nframes; } if (start < end) { m_loop_start = start; m_loop_end = end; } else { m_loop_start = 0; m_loop_end = m_nframes; } if (m_loop_phase1 && m_loop_phase2) { const uint16_t ntabs = m_ntabs + 1; for (uint16_t itab = 0; itab < ntabs; ++itab) { if (m_loop && m_loop_start < m_loop_end) { uint32_t start = m_loop_start; uint32_t end = m_loop_end; if (m_loop_xzero) { int slope = 0; end = zero_crossing(itab, m_loop_end, &slope); start = zero_crossing(itab, m_loop_start, &slope); if (start >= end) { start = m_loop_start; end = m_loop_end; } } m_loop_phase1[itab] = float(end - start); m_loop_phase2[itab] = float(end); } else { m_loop_phase1[itab] = 0.0f; m_loop_phase2[itab] = 0.0f; } } } } // loop updater. void samplv1_sample::updateLoop (void) { setLoopRange(m_loop_start, m_loop_end); } // zero-crossing aliasing (all channels). uint32_t samplv1_sample::zero_crossing ( uint16_t itab, uint32_t i, int *slope ) const { const int s0 = (slope ? *slope : 0); if (i > 0) --i; float v0 = zero_crossing_k(itab, i); for (++i; i < m_nframes; ++i) { const float v1 = zero_crossing_k(itab, i); if ((0 >= s0 && v0 >= 0.0f && 0.0f >= v1) || (s0 >= 0 && v1 >= 0.0f && 0.0f >= v0)) { if (slope && s0 == 0) *slope = (v1 < v0 ? -1 : +1); return i; } v0 = v1; } return m_nframes; } // zero-crossing aliasing (median). float samplv1_sample::zero_crossing_k ( uint16_t itab, uint32_t i ) const { float ret = 0.0f; if (m_pframes && m_nchannels > 0) { float **pframes = m_pframes[itab]; for (uint16_t k = 0; k < m_nchannels; ++k) ret += pframes[k][i]; ret /= float(m_nchannels); } return ret; } // end of samplv1_sample.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_config.h0000644000000000000000000000013215245503134016032 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_config.h0000644000175000001440000000761515245503134016033 0ustar00rncbcusers// samplv1_config.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_config_h #define __samplv1_config_h #include "config.h" #include "samplv1_presets.h" #include #include // forward decls. class samplv1_programs; class samplv1_controls; class QDir; //------------------------------------------------------------------------- // samplv1_config - Prototype settings class (singleton). // class samplv1_config : public QSettings { public: // Constructor. samplv1_config(); // Default destructor. ~samplv1_config(); // Default options... QString sPreset; QString sPresetDir; QString sSampleDir; // Knob behavior modes. int iKnobDialMode; int iKnobEditMode; // Special time-formatted spinbox option. int iFrameTimeFormat; // Default randomize factor (percent). float fRandomizePercent; // Special persistent options. bool bControlsEnabled; bool bProgramsEnabled; bool bProgramsPreview; bool bPresetsPreview; bool bUseNativeDialogs; // Run-time special non-persistent options. bool bDontUseNativeDialogs; // Custom color palette/widget style themes. QString sCustomColorTheme; QString sCustomStyleTheme; // Pitch-shit algorithm. int iPitchShiftType; // Micro-tuning options. bool bTuningEnabled; float fTuningRefPitch; int iTuningRefNote; QString sTuningScaleDir; QString sTuningScaleFile; QString sTuningKeyMapDir; QString sTuningKeyMapFile; // Presets database. samplv1_presets presets; // Singleton instance accessor. static samplv1_config *getInstance(); // Preset utility methods. QString presetFile(const QString& sPreset); void setPresetFile(const QString& sPreset, const QString& sPresetFile); void removePreset(const QString& sPreset); // Presets utility methods. void loadPresets(); void savePresets(); static void importPresets( const QString& sFilename, samplv1_presets *pPresets); static void exportPresets( const QString& sFilename, samplv1_presets *pPresets); // Programs utility methods. void loadPrograms(samplv1_programs *pPrograms); void savePrograms(samplv1_programs *pPrograms); // Controllers utility methods. void loadControls(samplv1_controls *pControls); void saveControls(samplv1_controls *pControls); protected: // Absolute/relative path functors. struct MapPath { virtual QString operator()(const QString& sPath) const { return sPath; } }; static void loadPresets( QSettings *pSettings, samplv1_presets *pPresets, const MapPath& mapPath = MapPath()); static void savePresets( QSettings *pSettings, samplv1_presets *pPresets, const MapPath& mapPath = MapPath()); static int loadPresetsConf( QSettings *pSettings, samplv1_presets *pPresets); static int loadPresetsConfDir( samplv1_presets *pPresets, const QDir& dir, QStringList& confs); void clearPrograms(); void clearControls(); // Explicit I/O methods. void load(); void save(); private: // The singleton instance. static samplv1_config *g_pSettings; }; #endif // __samplv1_config_h // end of samplv1_config.h samplv1-1.4.3/src/PaxHeaders/samplv1_ui.cpp0000644000000000000000000000013215245503134015535 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_ui.cpp0000644000175000001440000001372315245503134015533 0ustar00rncbcusers// samplv1_ui.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_ui.h" #include "samplv1_param.h" //------------------------------------------------------------------------- // samplv1_ui - decl. // samplv1_ui::samplv1_ui ( samplv1 *pSampl, bool bPlugin ) : m_pSampl(pSampl), m_bPlugin(bPlugin) { } samplv1 *samplv1_ui::instance (void) const { return m_pSampl; } bool samplv1_ui::isPlugin (void) const { return m_bPlugin; } void samplv1_ui::setSampleFile ( const char *pszSampleFile, uint16_t iOctaves ) { m_pSampl->setSampleFile(pszSampleFile, iOctaves, true); } const char *samplv1_ui::sampleFile (void) const { return m_pSampl->sampleFile(); } uint16_t samplv1_ui::octaves (void) const { return m_pSampl->octaves(); } samplv1_sample *samplv1_ui::sample (void) const { return m_pSampl->sample(); } void samplv1_ui::setReverse ( bool bReverse ) { m_pSampl->setReverse(bReverse); } bool samplv1_ui::isReverse (void) const { return m_pSampl->isReverse(); } void samplv1_ui::setOffset ( bool bOffset ) { m_pSampl->setOffset(bOffset); } bool samplv1_ui::isOffset (void) const { return m_pSampl->isOffset(); } void samplv1_ui::setOffsetRange ( uint32_t iOffsetStart, uint32_t iOffsetEnd ) { m_pSampl->setOffsetRange(iOffsetStart, iOffsetEnd, true); } uint32_t samplv1_ui::offsetStart (void) const { return m_pSampl->offsetStart(); } uint32_t samplv1_ui::offsetEnd (void) const { return m_pSampl->offsetEnd(); } void samplv1_ui::setLoop ( bool bLoop ) { m_pSampl->setLoop(bLoop); } bool samplv1_ui::isLoop (void) const { return m_pSampl->isLoop(); } void samplv1_ui::setLoopRange ( uint32_t iLoopStart, uint32_t iLoopEnd ) { m_pSampl->setLoopRange(iLoopStart, iLoopEnd, true); } uint32_t samplv1_ui::loopStart (void) const { return m_pSampl->loopStart(); } uint32_t samplv1_ui::loopEnd (void) const { return m_pSampl->loopEnd(); } void samplv1_ui::setLoopFade ( uint32_t iLoopFade ) { m_pSampl->setLoopFade(iLoopFade, true); } uint32_t samplv1_ui::loopFade (void) const { return m_pSampl->loopFade(); } void samplv1_ui::setLoopZero ( bool bLoopZero ) { m_pSampl->setLoopZero(bLoopZero, true); } bool samplv1_ui::isLoopZero (void) const { return m_pSampl->isLoopZero(); } void samplv1_ui::setLoopRelease ( bool bLoopRelease ) { m_pSampl->setLoopRelease(bLoopRelease, true); } bool samplv1_ui::isLoopRelease (void) const { return m_pSampl->isLoopRelease(); } bool samplv1_ui::newPreset (void) { return samplv1_param::newPreset(m_pSampl); } bool samplv1_ui::loadPreset ( const QString& sPresetFile ) { return samplv1_param::loadPreset(m_pSampl, sPresetFile); } bool samplv1_ui::savePreset ( const QString& sPresetFile ) { return samplv1_param::savePreset(m_pSampl, sPresetFile); } void samplv1_ui::setParamValue ( samplv1::ParamIndex index, float fValue ) { m_pSampl->setParamValue(index, fValue); } float samplv1_ui::paramValue ( samplv1::ParamIndex index ) const { return m_pSampl->paramValue(index); } samplv1_controls *samplv1_ui::controls (void) const { return m_pSampl->controls(); } samplv1_programs *samplv1_ui::programs (void) const { return m_pSampl->programs(); } void samplv1_ui::reset (void) { return m_pSampl->reset(); } void samplv1_ui::updatePreset ( bool bDirty ) { m_pSampl->updatePreset(bDirty); } void samplv1_ui::updateParam ( samplv1::ParamIndex index ) { m_pSampl->updateParam(index); } void samplv1_ui::midiInEnabled ( bool bEnabled ) { m_pSampl->midiInEnabled(bEnabled); } uint32_t samplv1_ui::midiInCount (void) { return m_pSampl->midiInCount(); } void samplv1_ui::directNoteOn ( int note, int vel ) { m_pSampl->directNoteOn(note, vel); } void samplv1_ui::setTuningEnabled ( bool enabled ) { m_pSampl->setTuningEnabled(enabled); } bool samplv1_ui::isTuningEnabled (void) const { return m_pSampl->isTuningEnabled(); } void samplv1_ui::setTuningRefPitch ( float refPitch ) { m_pSampl->setTuningRefPitch(refPitch); } float samplv1_ui::tuningRefPitch (void) const { return m_pSampl->tuningRefPitch(); } void samplv1_ui::setTuningRefNote ( int refNote ) { m_pSampl->setTuningRefNote(refNote); } int samplv1_ui::tuningRefNote (void) const { return m_pSampl->tuningRefNote(); } void samplv1_ui::setTuningScaleFile ( const char *pszScaleFile ) { m_pSampl->setTuningScaleFile(pszScaleFile); } const char *samplv1_ui::tuningScaleFile (void) const { return m_pSampl->tuningScaleFile(); } void samplv1_ui::setTuningKeyMapFile ( const char *pszKeyMapFile ) { m_pSampl->setTuningKeyMapFile(pszKeyMapFile); } const char *samplv1_ui::tuningKeyMapFile (void) const { return m_pSampl->tuningKeyMapFile(); } void samplv1_ui::resetTuning (void) { m_pSampl->resetTuning(); } // MIDI note/octave name helper (static). QString samplv1_ui::noteName ( int note ) { static const char *s_notes[] = { QT_TR_NOOP("C"), QT_TR_NOOP("C#/Db"), QT_TR_NOOP("D"), QT_TR_NOOP("D#/Eb"), QT_TR_NOOP("E"), QT_TR_NOOP("F"), QT_TR_NOOP("F#/Gb"), QT_TR_NOOP("G"), QT_TR_NOOP("G#/Ab"), QT_TR_NOOP("A"), QT_TR_NOOP("A#/Bb"), QT_TR_NOOP("B") }; return QString("%1 %2").arg(s_notes[note % 12]).arg((note / 12) - 1); } // end of samplv1_ui.cpp samplv1-1.4.3/src/PaxHeaders/samplv1.lv20000644000000000000000000000013215245503134014761 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170222891 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1.lv2/0000755000175000001440000000000015245503134015026 5ustar00rncbcuserssamplv1-1.4.3/src/samplv1.lv2/PaxHeaders/samplv1_ui.ttl0000644000000000000000000000013215245503134017643 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1.lv2/samplv1_ui.ttl0000644000175000001440000000164415245503134017640 0ustar00rncbcusers@prefix lv2: . @prefix lv2ui: . @prefix samplv1_lv2: . lv2ui:ui samplv1_lv2:ui_x11, samplv1_lv2:ui_external . a lv2ui:Qt6UI ; lv2:requiredFeature ; lv2ui:binary . a lv2ui:X11UI ; lv2:requiredFeature ; lv2:optionalFeature lv2ui:resize, lv2ui:idleInterface, lv2ui:showInterface ; lv2:extensionData lv2ui:resize, lv2ui:idleInterface, lv2ui:showInterface ; lv2ui:binary . a ; lv2:requiredFeature ; lv2ui:binary . samplv1-1.4.3/src/samplv1.lv2/PaxHeaders/manifest-win32.ttl0000644000000000000000000000013215245503134020331 xustar0030 mtime=1788249692.170222891 30 atime=1788249692.170222891 30 ctime=1788249692.170222891 samplv1-1.4.3/src/samplv1.lv2/manifest-win32.ttl0000644000175000001440000000040015245503134020313 0ustar00rncbcusers@prefix lv2: . @prefix rdfs: . a lv2:Plugin, lv2:InstrumentPlugin ; lv2:binary ; rdfs:seeAlso , . samplv1-1.4.3/src/samplv1.lv2/PaxHeaders/samplv1.ttl0000644000000000000000000000013215245503134017146 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1.lv2/samplv1.ttl0000644000175000001440000006140215245503134017141 0ustar00rncbcusers@prefix doap: . @prefix foaf: . @prefix rdf: . @prefix rdfs: . @prefix lv2: . @prefix lv2ui: . @prefix lv2urid: . @prefix lv2atom: . @prefix lv2midi: . @prefix lv2time: . @prefix lv2state: . @prefix lv2patch: . @prefix lv2worker: . @prefix lv2resize: . @prefix lv2pg: . @prefix mod: . @prefix samplv1_lv2: . a lv2:Plugin, lv2:InstrumentPlugin, doap:Project ; doap:name "samplv1" ; doap:maintainer [ foaf:name "rncbc aka. Rui Nuno Capela" ; foaf:homepage ; foaf:mbox ; ] ; doap:license ; lv2:minorVersion 0 ; lv2:microVersion 2 ; lv2:requiredFeature lv2urid:map, lv2worker:schedule ; lv2:optionalFeature lv2:hardRTCapable ; lv2:extensionData lv2state:interface, lv2worker:interface ; lv2patch:writable samplv1_lv2:P101_SAMPLE_FILE, samplv1_lv2:P102_OFFSET_START, samplv1_lv2:P103_OFFSET_END, samplv1_lv2:P104_LOOP_START, samplv1_lv2:P105_LOOP_END, samplv1_lv2:P106_LOOP_FADE, samplv1_lv2:P107_LOOP_ZERO, samplv1_lv2:P108_SAMPLE_OTABS, samplv1_lv2:P201_TUNING_ENABLED, samplv1_lv2:P202_TUNING_REF_PITCH, samplv1_lv2:P203_TUNING_REF_NOTE, samplv1_lv2:P204_TUNING_SCALE_FILE, samplv1_lv2:P205_TUNING_KEYMAP_FILE ; lv2:port [ a lv2:InputPort, lv2atom:AtomPort ; lv2atom:bufferType lv2atom:Sequence ; lv2atom:supports lv2midi:MidiEvent, lv2time:Position, lv2patch:Message ; lv2:designation lv2:control ; lv2:index 0 ; lv2:symbol "in"; lv2:name "MIDI In"; ], [ a lv2:OutputPort, lv2atom:AtomPort ; lv2atom:bufferType lv2atom:Sequence ; lv2atom:supports lv2patch:Message ; lv2:designation lv2:control ; lv2resize:minimumSize 5120 ; lv2:index 1 ; lv2:symbol "notify"; lv2:name "Notify"; ] ; lv2:port [ a lv2:InputPort, lv2:AudioPort ; lv2:index 2 ; lv2:symbol "in_L" ; lv2:name "Audio In L" ; ], [ a lv2:InputPort, lv2:AudioPort ; lv2:index 3 ; lv2:symbol "in_R" ; lv2:name "Audio In R" ; ] ; lv2:port [ a lv2:OutputPort, lv2:AudioPort ; lv2:index 4 ; lv2:symbol "Out_L" ; lv2:name "Audio Out L" ; ], [ a lv2:OutputPort, lv2:AudioPort ; lv2:index 5 ; lv2:symbol "Out_R" ; lv2:name "Audio Out R" ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 6 ; lv2:symbol "GEN1_SAMPLE" ; lv2:name "GEN1 Sample" ; lv2:portProperty lv2:integer ; lv2:default 60.0 ; lv2:minimum 0.0 ; lv2:maximum 127.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 7 ; lv2:symbol "GEN1_REVERSE" ; lv2:name "GEN1 Reverse" ; lv2:portProperty lv2:toggled ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 8 ; lv2:symbol "GEN1_OFFSET" ; lv2:name "GEN1 Offset" ; lv2:portProperty lv2:toggled ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 9 ; lv2:symbol "GEN1_OFFSET_1" ; lv2:name "GEN1 Offset Start" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 10 ; lv2:symbol "GEN1_OFFSET_2" ; lv2:name "GEN1 Offset End" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 11 ; lv2:symbol "GEN1_LOOP" ; lv2:name "GEN1 Loop" ; lv2:portProperty lv2:toggled ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 12 ; lv2:symbol "GEN1_LOOP_1" ; lv2:name "GEN1 Loop Start" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 13 ; lv2:symbol "GEN1_LOOP_2" ; lv2:name "GEN1 Loop End" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 14 ; lv2:symbol "GEN1_OCTAVE" ; lv2:name "GEN1 Octave" ; lv2:default 0.0 ; lv2:minimum -4.0 ; lv2:maximum 4.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 15 ; lv2:symbol "GEN1_TUNING" ; lv2:name "GEN1 Tuning" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 16 ; lv2:symbol "GEN1_GLIDE" ; lv2:name "GEN1 Glide" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 17 ; lv2:symbol "GEN1_ENVTIME" ; lv2:name "GEN1 Env.Time" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G101_GEN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 18 ; lv2:symbol "DCF1_ENABLED" ; lv2:name "DCF1 Enabled" ; lv2:portProperty lv2:toggled ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 19 ; lv2:symbol "DCF1_CUTOFF" ; lv2:name "DCF1 Cutoff" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 20 ; lv2:symbol "DCF1_RESO" ; lv2:name "DCF1 Resonance" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 21 ; lv2:symbol "DCF1_TYPE" ; lv2:name "DCF1 Type" ; lv2:portProperty lv2:integer, lv2:enumeration ; lv2:scalePoint [ rdfs:label "LPF"; rdf:value 0 ] ; lv2:scalePoint [ rdfs:label "BPF"; rdf:value 1 ] ; lv2:scalePoint [ rdfs:label "HPF"; rdf:value 2 ] ; lv2:scalePoint [ rdfs:label "BRF"; rdf:value 3 ] ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 3.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 22 ; lv2:symbol "DCF1_SLOPE" ; lv2:name "DCF1 Slope" ; lv2:portProperty lv2:integer, lv2:enumeration ; lv2:scalePoint [ rdfs:label "12dB/oct"; rdf:value 0 ] ; lv2:scalePoint [ rdfs:label "24dB/oct"; rdf:value 1 ] ; lv2:scalePoint [ rdfs:label "Biquad"; rdf:value 2 ] ; lv2:scalePoint [ rdfs:label "Formant"; rdf:value 3 ] ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 3.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 23 ; lv2:symbol "DCF1_ENVELOPE" ; lv2:name "DCF1 Envelope" ; lv2:default 1.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 24 ; lv2:symbol "DCF1_ATTACK" ; lv2:name "DCF1 Attack" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 25 ; lv2:symbol "DCF1_DECAY" ; lv2:name "DCF1 Decay" ; lv2:default 0.2 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 26 ; lv2:symbol "DCF1_SUSTAIN" ; lv2:name "DCF1 Sustain" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 27 ; lv2:symbol "DCF1_RELEASE" ; lv2:name "DCF1 Release" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G102_DCF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 28 ; lv2:symbol "LFO1_ENABLED" ; lv2:name "LFO1 Enabled" ; lv2:portProperty lv2:toggled ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 29 ; lv2:symbol "LFO1_SHAPE" ; lv2:name "LFO1 Wave Shape" ; lv2:portProperty lv2:integer, lv2:enumeration ; lv2:scalePoint [ rdfs:label "Pulse"; rdf:value 0 ] ; lv2:scalePoint [ rdfs:label "Saw"; rdf:value 1 ] ; lv2:scalePoint [ rdfs:label "Sine"; rdf:value 2 ] ; lv2:scalePoint [ rdfs:label "Rand"; rdf:value 3 ] ; lv2:scalePoint [ rdfs:label "Noise"; rdf:value 4 ] ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 4.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 30 ; lv2:symbol "LFO1_WIDTH" ; lv2:name "LFO1 Wave Width" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 31 ; lv2:symbol "LFO1_BPM" ; lv2:name "LFO1 BPM" ; lv2:default 180.0 ; lv2:minimum 0.0 ; lv2:maximum 360.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 32 ; lv2:symbol "LFO1_RATE" ; lv2:name "LFO1 Rate" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 33 ; lv2:symbol "LFO1_SYNC" ; lv2:name "LFO1 Sync" ; lv2:portProperty lv2:toggled ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 34 ; lv2:symbol "LFO1_SWEEP" ; lv2:name "LFO1 Sweep" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 35 ; lv2:symbol "LFO1_PITCH" ; lv2:name "LFO1 Pitch" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 36 ; lv2:symbol "LFO1_CUTOFF" ; lv2:name "LFO1 Cutoff" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 37 ; lv2:symbol "LFO1_RESO" ; lv2:name "LFO1 Resonance" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 38 ; lv2:symbol "LFO1_PANNING" ; lv2:name "LFO1 Panning" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 39 ; lv2:symbol "LFO1_VOLUME" ; lv2:name "LFO1 Volume" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 40 ; lv2:symbol "LFO1_ATTACK" ; lv2:name "LFO1 Attack" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 41 ; lv2:symbol "LFO1_DECAY" ; lv2:name "LFO1 Decay" ; lv2:default 0.1 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 42 ; lv2:symbol "LFO1_SUSTAIN" ; lv2:name "LFO1 Sustain" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 43 ; lv2:symbol "LFO1_RELEASE" ; lv2:name "LFO1 Release" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G103_LFO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 44 ; lv2:symbol "DCA1_ENABLED" ; lv2:name "DCA1 Enabled" ; lv2:portProperty lv2:toggled ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 45 ; lv2:symbol "DCA1_VOLUME" ; lv2:name "DCA1 Volume" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 46 ; lv2:symbol "DCA1_ATTACK" ; lv2:name "DCA1 Attack" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 47 ; lv2:symbol "DCA1_DECAY" ; lv2:name "DCA1 Decay" ; lv2:default 0.1 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 48 ; lv2:symbol "DCA1_SUSTAIN" ; lv2:name "DCA1 Sustain" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 49 ; lv2:symbol "DCA1_RELEASE" ; lv2:name "DCA1 Release" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G104_DCA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 50 ; lv2:symbol "OUT1_WIDTH" ; lv2:name "OUT1 Stereo Width" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G105_OUT1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 51 ; lv2:symbol "OUT1_PANNING" ; lv2:name "OUT1 Panning" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G105_OUT1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 52 ; lv2:symbol "OUT1_FXSEND" ; lv2:name "OUT1 FX Send" ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G105_OUT1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 53 ; lv2:symbol "OUT1_VOLUME" ; lv2:name "OUT1 Volume" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G105_OUT1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 54 ; lv2:symbol "DEF1_PITCHBEND" ; lv2:name "DEF1 Pitchbend" ; lv2:default 0.2 ; lv2:minimum 0.0 ; lv2:maximum 4.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 55 ; lv2:symbol "DEF1_MODWHEEL" ; lv2:name "DEF1 Modwheel" ; lv2:default 0.2 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 56 ; lv2:symbol "DEF1_PRESSURE" ; lv2:name "DEF1 Pressure" ; lv2:default 0.2 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 57 ; lv2:symbol "DEF1_VELOCITY" ; lv2:name "DEF1 Velocity" ; lv2:default 0.2 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 58 ; lv2:symbol "DEF1_CHANNEL" ; lv2:name "DEF1 Channel" ; lv2:portProperty lv2:integer ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 16.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 59 ; lv2:symbol "DEF1_MONO" ; lv2:name "DEF1 Mono" ; lv2:portProperty lv2:integer, lv2:enumeration ; lv2:scalePoint [ rdfs:label "Poly"; rdf:value 0 ] ; lv2:scalePoint [ rdfs:label "Mono"; rdf:value 1 ] ; lv2:scalePoint [ rdfs:label "Legato"; rdf:value 2 ] ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 2.0 ; lv2pg:group samplv1_lv2:G106_DEF1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 60 ; lv2:symbol "CHO1_WET" ; lv2:name "Chorus Wet" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G201_CHO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 61 ; lv2:symbol "CHO1_DELAY" ; lv2:name "Chorus Delay" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G201_CHO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 62 ; lv2:symbol "CHO1_FEEDB" ; lv2:name "Chorus Feedback" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G201_CHO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 63 ; lv2:symbol "CHO1_RATE" ; lv2:name "Chorus Rate" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G201_CHO1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 64 ; lv2:symbol "CHO1_MOD" ; lv2:name "Chorus Modulation" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G201_CHO1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 65 ; lv2:symbol "FLA1_WET" ; lv2:name "Flanger Wet" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G202_FLA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 66 ; lv2:symbol "FLA1_DELAY" ; lv2:name "Flanger Delay" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G202_FLA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 67 ; lv2:symbol "FLA1_FEEDB" ; lv2:name "Flanger Feedback" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G202_FLA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 68 ; lv2:symbol "FLA1_DAFT" ; lv2:name "Flanger Daft" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G202_FLA1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 69 ; lv2:symbol "PHA1_WET" ; lv2:name "Phaser Wet" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G203_PHA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 70 ; lv2:symbol "PHA1_RATE" ; lv2:name "Phaser Rate" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G203_PHA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 71 ; lv2:symbol "PHA1_FEEDB" ; lv2:name "Phaser Feedback" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G203_PHA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 72 ; lv2:symbol "PHA1_DEPTH" ; lv2:name "Phaser Depth" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G203_PHA1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 73 ; lv2:symbol "PHA1_DAFT" ; lv2:name "Phaser Daft" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G203_PHA1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 74 ; lv2:symbol "DEL1_WET" ; lv2:name "Delay Wet" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G204_DEL1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 75 ; lv2:symbol "DEL1_DELAY" ; lv2:name "Delay Delay" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G204_DEL1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 76 ; lv2:symbol "DEL1_FEEDB" ; lv2:name "Delay Feedback" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G204_DEL1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 77 ; lv2:symbol "DEL1_BPM" ; lv2:name "Delay BPM" ; lv2:default 180.0 ; lv2:minimum 0.0 ; lv2:maximum 360.0 ; lv2pg:group samplv1_lv2:G204_DEL1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 78 ; lv2:symbol "REV1_WET" ; lv2:name "Reverb Wet" ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G205_REV1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 79 ; lv2:symbol "REV1_ROOM" ; lv2:name "Reverb Room" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G205_REV1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 80 ; lv2:symbol "REV1_DAMP" ; lv2:name "Reverb Damp" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G205_REV1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 81 ; lv2:symbol "REV1_FEEDB" ; lv2:name "Reverb Feedback" ; lv2:default 0.5 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G205_REV1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 82 ; lv2:symbol "REV1_WIDTH" ; lv2:name "Reverb Width" ; lv2:default 0.0 ; lv2:minimum -1.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G205_REV1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 83 ; lv2:symbol "DYN1_COMPRESS" ; lv2:name "Dynamic Compressor" ; lv2:portProperty lv2:toggled ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G206_DYN1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 84 ; lv2:symbol "DYN1_LIMITER" ; lv2:name "Dynamic Limiter" ; lv2:portProperty lv2:toggled ; lv2:default 1.0 ; lv2:minimum 0.0 ; lv2:maximum 1.0 ; lv2pg:group samplv1_lv2:G206_DYN1 ; ] ; lv2:port [ a lv2:InputPort, lv2:ControlPort ; lv2:index 85 ; lv2:symbol "KEY1_LOW" ; lv2:name "Keyboard Low" ; lv2:portProperty lv2:integer ; lv2:default 0.0 ; lv2:minimum 0.0 ; lv2:maximum 127.0 ; lv2pg:group samplv1_lv2:G401_KEY1 ; ], [ a lv2:InputPort, lv2:ControlPort ; lv2:index 86 ; lv2:symbol "KEY1_HIGH" ; lv2:name "Keyboard High" ; lv2:portProperty lv2:integer ; lv2:default 127.0 ; lv2:minimum 0.0 ; lv2:maximum 127.0 ; lv2pg:group samplv1_lv2:G401_KEY1 ; ] . samplv1_lv2:P101_SAMPLE_FILE a lv2:Parameter ; rdfs:label "P101 Sample File" ; rdfs:range lv2atom:Path ; mod:fileTypes "wav,ogg,flac,aiff,au" . samplv1_lv2:P102_OFFSET_START a lv2:Parameter ; rdfs:label "P102 Offset Start" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 2147483647 . samplv1_lv2:P103_OFFSET_END a lv2:Parameter ; rdfs:label "P103 Offset End" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 2147483647 . samplv1_lv2:P104_LOOP_START a lv2:Parameter ; rdfs:label "P104 Loop Start" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 2147483647 . samplv1_lv2:P105_LOOP_END a lv2:Parameter ; rdfs:label "P105 Loop End" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 2147483647 . samplv1_lv2:P105_LOOP_END_RELEASE a lv2:Parameter ; rdfs:label "P105 Loop End Release" ; rdfs:range lv2atom:Bool . samplv1_lv2:P106_LOOP_FADE a lv2:Parameter ; rdfs:label "P106 Loop Crossfade" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 32767 . samplv1_lv2:P107_LOOP_ZERO a lv2:Parameter ; rdfs:label "P107 Loop Zero-crossing" ; rdfs:range lv2atom:Bool . samplv1_lv2:P108_SAMPLE_OTABS a lv2:Parameter ; rdfs:label "P108 Pitch-shift Octaves" ; rdfs:range lv2atom:Int ; lv2:default 0 ; lv2:minimum 0 ; lv2:maximum 4 . samplv1_lv2:P201_TUNING_ENABLED a lv2:Parameter ; rdfs:label "P201 Tuning Enabled" ; rdfs:range lv2atom:Bool . samplv1_lv2:P202_TUNING_REF_PITCH a lv2:Parameter ; rdfs:label "P202 Tuning Reference Pitch" ; rdfs:range lv2atom:Float ; lv2:default 440.0 ; lv2:minimum 20.0 ; lv2:maximum 8000.0 . samplv1_lv2:P203_TUNING_REF_NOTE a lv2:Parameter ; rdfs:label "P203 Tuning Reference Note" ; rdfs:range lv2atom:Int ; lv2:default 69 ; lv2:minimum 0 ; lv2:maximum 127 . samplv1_lv2:P204_TUNING_SCALE_FILE a lv2:Parameter ; rdfs:label "P204 Tuning Scale File" ; rdfs:range lv2atom:Path ; mod:fileTypes "scl" . samplv1_lv2:P205_TUNING_KEYMAP_FILE a lv2:Parameter ; rdfs:label "P205 Tuning Key Map File" ; rdfs:range lv2atom:Path ; mod:fileTypes "kbm" . samplv1_lv2:G101_GEN1 a lv2pg:InputGroup; lv2:name "Sampler - GEN1" ; lv2:symbol "GEN1" . samplv1_lv2:G102_DCF1 a lv2pg:InputGroup; lv2:name "Sampler - DCF1" ; lv2:symbol "DCF1" . samplv1_lv2:G103_LFO1 a lv2pg:InputGroup; lv2:name "Sampler - LFO1" ; lv2:symbol "LFO1" . samplv1_lv2:G104_DCA1 a lv2pg:InputGroup; lv2:name "Sampler - DCA1" ; lv2:symbol "DCA1" . samplv1_lv2:G105_OUT1 a lv2pg:InputGroup; lv2:name "Sampler - OUT1" ; lv2:symbol "OUT1" . samplv1_lv2:G106_DEF1 a lv2pg:InputGroup; lv2:name "Sampler - DEF1" ; lv2:symbol "DEF1" . samplv1_lv2:G201_CHO1 a lv2pg:InputGroup; lv2:name "Effects - Chorus" ; lv2:symbol "CHO1" . samplv1_lv2:G202_FLA1 a lv2pg:InputGroup; lv2:name "Effects - Flanger" ; lv2:symbol "FLA1" . samplv1_lv2:G203_PHA1 a lv2pg:InputGroup; lv2:name "Effects - Phaser" ; lv2:symbol "PHA1" . samplv1_lv2:G204_DEL1 a lv2pg:InputGroup; lv2:name "Effects - Delay" ; lv2:symbol "DEL1" . samplv1_lv2:G205_REV1 a lv2pg:InputGroup; lv2:name "Effects - Reverb" ; lv2:symbol "REV1" . samplv1_lv2:G206_DYN1 a lv2pg:InputGroup; lv2:name "Effects - Dynamic" ; lv2:symbol "DYN1" . samplv1_lv2:G301_TUN1 a lv2pg:InputGroup; lv2:name "Config - Tuning" ; lv2:symbol "TUN1" . samplv1_lv2:G401_KEY1 a lv2pg:InputGroup; lv2:name "Input - Keyboard" ; lv2:symbol "KEY1" . samplv1-1.4.3/src/samplv1.lv2/PaxHeaders/manifest.ttl0000644000000000000000000000013215245503134017371 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170222891 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1.lv2/manifest.ttl0000644000175000001440000000037715245503134017370 0ustar00rncbcusers@prefix lv2: . @prefix rdfs: . a lv2:Plugin, lv2:InstrumentPlugin ; lv2:binary ; rdfs:seeAlso , . samplv1-1.4.3/src/samplv1.lv2/PaxHeaders/samplv1_ui-win32.ttl0000644000000000000000000000013215245503134020603 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1.lv2/samplv1_ui-win32.ttl0000644000175000001440000000166315245503134020601 0ustar00rncbcusers@prefix lv2: . @prefix lv2ui: . @prefix samplv1_lv2: . lv2ui:ui samplv1_lv2:ui_windows, samplv1_lv2:ui_external . a lv2ui:Qt6UI ; lv2:requiredFeature ; lv2ui:binary . a lv2ui:WindowsUI ; lv2:requiredFeature ; lv2:optionalFeature lv2ui:resize, lv2ui:idleInterface, lv2ui:showInterface ; lv2:extensionData lv2ui:resize, lv2ui:idleInterface, lv2ui:showInterface ; lv2ui:binary . a ; lv2:requiredFeature ; lv2ui:binary . samplv1-1.4.3/src/PaxHeaders/samplv1widget_palette.cpp0000644000000000000000000000013215245503134017762 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_palette.cpp0000644000175000001440000010132715245503134017756 0ustar00rncbcusers// samplv1widget_palette.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_palette.h" #include "ui_samplv1widget_palette.h" #include #include #include #include #include #include #include #include #include #include #include // Local static consts. static const char *ColorThemesGroup = "/ColorThemes/"; static const char *PaletteEditorGroup = "/PaletteEditor/"; static const char *DefaultDirKey = "DefaultDir"; static const char *ShowDetailsKey = "ShowDetails"; static const char *DefaultSuffix = "conf"; static struct { const char *key; QPalette::ColorRole value; } g_colorRoles[] = { { "Window", QPalette::Window }, { "WindowText", QPalette::WindowText }, { "Button", QPalette::Button }, { "ButtonText", QPalette::ButtonText }, { "Light", QPalette::Light }, { "Midlight", QPalette::Midlight }, { "Dark", QPalette::Dark }, { "Mid", QPalette::Mid }, { "Text", QPalette::Text }, { "BrightText", QPalette::BrightText }, { "Base", QPalette::Base }, { "AlternateBase", QPalette::AlternateBase }, { "Shadow", QPalette::Shadow }, { "Highlight", QPalette::Highlight }, { "HighlightedText", QPalette::HighlightedText }, { "Link", QPalette::Link }, { "LinkVisited", QPalette::LinkVisited }, { "ToolTipBase", QPalette::ToolTipBase }, { "ToolTipText", QPalette::ToolTipText }, #if QT_VERSION >= QT_VERSION_CHECK(5, 12, 0) { "PlaceholderText", QPalette::PlaceholderText }, #endif { "NoRole", QPalette::NoRole }, { nullptr, QPalette::NoRole } }; //------------------------------------------------------------------------- // samplv1widget_palette samplv1widget_palette::samplv1widget_palette ( QWidget *parent, const QPalette& pal ) : QDialog(parent), p_ui(new Ui::samplv1widget_palette), m_ui(*p_ui) { m_ui.setupUi(this); m_settings = nullptr; m_owner = false; m_modelUpdated = false; m_paletteUpdated = false; m_dirtyCount = 0; m_dirtyTotal = 0; updateGenerateButton(); m_paletteModel = new PaletteModel(this); m_ui.paletteView->setModel(m_paletteModel); ColorDelegate *delegate = new ColorDelegate(this); m_ui.paletteView->setItemDelegate(delegate); m_ui.paletteView->setEditTriggers(QAbstractItemView::AllEditTriggers); // m_ui.paletteView->setAlternatingRowColors(true); m_ui.paletteView->setSelectionBehavior(QAbstractItemView::SelectRows); m_ui.paletteView->setDragEnabled(true); m_ui.paletteView->setDropIndicatorShown(true); m_ui.paletteView->setRootIsDecorated(false); m_ui.paletteView->setColumnHidden(2, true); m_ui.paletteView->setColumnHidden(3, true); QObject::connect(m_ui.nameCombo, SIGNAL(editTextChanged(const QString&)), SLOT(nameComboChanged(const QString&))); QObject::connect(m_ui.saveButton, SIGNAL(clicked()), SLOT(saveButtonClicked())); QObject::connect(m_ui.deleteButton, SIGNAL(clicked()), SLOT(deleteButtonClicked())); QObject::connect(m_ui.generateButton, SIGNAL(changed()), SLOT(generateButtonChanged())); QObject::connect(m_ui.resetButton, SIGNAL(clicked()), SLOT(resetButtonClicked())); QObject::connect(m_ui.detailsCheck, SIGNAL(clicked()), SLOT(detailsCheckClicked())); QObject::connect(m_ui.importButton, SIGNAL(clicked()), SLOT(importButtonClicked())); QObject::connect(m_ui.exportButton, SIGNAL(clicked()), SLOT(exportButtonClicked())); QObject::connect(m_paletteModel, SIGNAL(paletteChanged(const QPalette&)), SLOT(paletteChanged(const QPalette&))); QObject::connect(m_ui.dialogButtons, SIGNAL(accepted()), SLOT(accept())); QObject::connect(m_ui.dialogButtons, SIGNAL(rejected()), SLOT(reject())); setPalette(pal, pal); QDialog::adjustSize(); } samplv1widget_palette::~samplv1widget_palette (void) { setSettings(nullptr); delete p_ui; } void samplv1widget_palette::setPalette ( const QPalette& pal ) { m_palette = pal; #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) const uint mask = pal.resolveMask(); #else const uint mask = pal.resolve(); #endif for (int i = 0; g_colorRoles[i].key; ++i) { if ((mask & (1 << i)) == 0) { const QPalette::ColorRole cr = g_colorRoles[i].value; m_palette.setBrush(QPalette::Active, cr, m_parentPalette.brush(QPalette::Active, cr)); m_palette.setBrush(QPalette::Inactive, cr, m_parentPalette.brush(QPalette::Inactive, cr)); m_palette.setBrush(QPalette::Disabled, cr, m_parentPalette.brush(QPalette::Disabled, cr)); } } #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) m_palette.setResolveMask(mask); #else m_palette.resolve(mask); #endif updateGenerateButton(); m_paletteUpdated = true; if (!m_modelUpdated) m_paletteModel->setPalette(m_palette, m_parentPalette); m_paletteUpdated = false; } void samplv1widget_palette::setPalette ( const QPalette& pal, const QPalette& parentPal ) { m_parentPalette = parentPal; setPalette(pal); } const QPalette& samplv1widget_palette::palette (void) const { return m_palette; } void samplv1widget_palette::setSettings ( QSettings *settings, bool owner ) { if (m_settings && m_owner) delete m_settings; m_settings = settings; m_owner = owner; m_ui.detailsCheck->setChecked(isShowDetails()); updateNamedPaletteList(); updateDialogButtons(); } QSettings *samplv1widget_palette::settings (void) const { return m_settings; } void samplv1widget_palette::nameComboChanged ( const QString& name ) { if (m_dirtyCount > 0 && m_ui.nameCombo->findText(name) < 0) { updateDialogButtons(); } else { resetButtonClicked(); setPaletteName(name); ++m_dirtyTotal; } } void samplv1widget_palette::saveButtonClicked (void) { const QString& name = m_ui.nameCombo->currentText(); if (name.isEmpty()) return; QString filename = namedPaletteConf(name); if (filename.isEmpty() || !QFileInfo(filename).isWritable()) { const QString& title = tr("Save Palette - %1").arg(QDialog::windowTitle()); QStringList filters; filters.append(tr("Palette files (*.%1)").arg(DefaultSuffix)); filters.append(tr("All files (*.*)")); QString dirname = defaultDir(); if (!dirname.isEmpty()) dirname.append(QDir::separator()); dirname.append(paletteName() + '.' + DefaultSuffix); filename = QFileDialog::getSaveFileName(this, title, dirname, filters.join(";;")); } if (!filename.isEmpty() && saveNamedPaletteConf(name, filename, m_palette)) { addNamedPaletteConf(name, filename); setPalette(m_palette, m_palette); updateNamedPaletteList(); resetButtonClicked(); } } void samplv1widget_palette::deleteButtonClicked (void) { const QString& name = m_ui.nameCombo->currentText(); if (m_ui.nameCombo->findText(name) >= 0) { deleteNamedPaletteConf(name); updateNamedPaletteList(); updateDialogButtons(); } } void samplv1widget_palette::generateButtonChanged (void) { const QColor& color = m_ui.generateButton->brush().color(); const QPalette& pal = QPalette(color); setPalette(pal); ++m_dirtyCount; updateDialogButtons(); } void samplv1widget_palette::resetButtonClicked (void) { const bool blocked = blockSignals(true); for (int i = 0; g_colorRoles[i].key; ++i) { const QPalette::ColorRole cr = g_colorRoles[i].value; const QModelIndex& index = m_paletteModel->index(cr, 0); m_paletteModel->setData(index, false, Qt::EditRole); } m_dirtyCount = 0; updateDialogButtons(); blockSignals(blocked); } void samplv1widget_palette::detailsCheckClicked (void) { const int cw = (m_ui.paletteView->viewport()->width() >> 2); QHeaderView *header = m_ui.paletteView->header(); header->resizeSection(0, cw); if (m_ui.detailsCheck->isChecked()) { m_ui.paletteView->setColumnHidden(2, false); m_ui.paletteView->setColumnHidden(3, false); header->resizeSection(1, cw); header->resizeSection(2, cw); header->resizeSection(3, cw); m_paletteModel->setGenerate(false); } else { m_ui.paletteView->setColumnHidden(2, true); m_ui.paletteView->setColumnHidden(3, true); header->resizeSection(1, cw * 3); m_paletteModel->setGenerate(true); } } void samplv1widget_palette::importButtonClicked (void) { const QString& title = tr("Import File - %1").arg(QDialog::windowTitle()); QStringList filters; filters.append(tr("Palette files (*.%1)").arg(DefaultSuffix)); filters.append(tr("All files (*.*)")); const QString& filename = QFileDialog::getOpenFileName(this, title, defaultDir(), filters.join(";;")); if (filename.isEmpty()) return; QSettings conf(filename, QSettings::IniFormat); conf.beginGroup(ColorThemesGroup); const QStringList names = conf.childGroups(); conf.endGroup(); int imported = 0; QStringListIterator name_iter(names); while (name_iter.hasNext()) { const QString& name = name_iter.next(); if (!name.isEmpty()) { addNamedPaletteConf(name, filename); setPaletteName(name); ++imported; } } if (imported > 0) { updateNamedPaletteList(); resetButtonClicked(); setDefaultDir(QFileInfo(filename).absolutePath()); } else { QMessageBox::warning(this, tr("Warning - %1").arg(QDialog::windowTitle()), tr("Could not import from file:\n\n" "%1\n\nSorry.").arg(filename)); } } void samplv1widget_palette::exportButtonClicked (void) { const QString& title = tr("Export File - %1").arg(QDialog::windowTitle()); QStringList filters; filters.append(tr("Palette files (*.%1)").arg(DefaultSuffix)); filters.append(tr("All files (*.*)")); QString dirname = defaultDir(); if (!dirname.isEmpty()) dirname.append(QDir::separator()); dirname.append(paletteName() + '.' + DefaultSuffix); const QString& filename = QFileDialog::getSaveFileName(this, title, dirname, filters.join(";;")); if (filename.isEmpty()) return; const QFileInfo fi(filename); const QString& name = fi.baseName(); if (saveNamedPaletteConf(name, filename, m_palette)) { // addNamedPaletteConf(name, filename); setDefaultDir(fi.absolutePath()); } } void samplv1widget_palette::paletteChanged ( const QPalette& pal ) { m_modelUpdated = true; if (!m_paletteUpdated) setPalette(pal); m_modelUpdated = false; ++m_dirtyCount; updateDialogButtons(); } void samplv1widget_palette::setPaletteName ( const QString& name ) { const bool blocked = m_ui.nameCombo->blockSignals(true); m_ui.nameCombo->setEditText(name); QPalette pal; if (namedPalette(m_settings, name, pal, true)) setPalette(pal, pal); m_dirtyCount = 0; updateDialogButtons(); m_ui.nameCombo->blockSignals(blocked); } QString samplv1widget_palette::paletteName (void) const { return m_ui.nameCombo->currentText(); } void samplv1widget_palette::updateNamedPaletteList (void) { const bool blocked = m_ui.nameCombo->blockSignals(true); const QString old_name = m_ui.nameCombo->currentText(); m_ui.nameCombo->clear(); m_ui.nameCombo->insertItems(0, namedPaletteList()); // m_ui.nameCombo->model()->sort(0); const int i = m_ui.nameCombo->findText(old_name); if (i >= 0) m_ui.nameCombo->setCurrentIndex(i); else m_ui.nameCombo->setEditText(old_name); m_ui.nameCombo->blockSignals(blocked); } void samplv1widget_palette::updateGenerateButton (void) { m_ui.generateButton->setBrush( m_palette.brush(QPalette::Active, QPalette::Button)); } void samplv1widget_palette::updateDialogButtons (void) { const QString& name = m_ui.nameCombo->currentText(); const QString& filename = namedPaletteConf(name); const int i = m_ui.nameCombo->findText(name); m_ui.saveButton->setEnabled(!name.isEmpty() && (m_dirtyCount > 0 || i < 0)); m_ui.deleteButton->setEnabled(i >= 0); m_ui.resetButton->setEnabled(m_dirtyCount > 0); m_ui.exportButton->setEnabled(!name.isEmpty() || i >= 0); m_ui.dialogButtons->button(QDialogButtonBox::Ok)->setEnabled(i >= 0); } bool samplv1widget_palette::namedPalette ( const QString& name, QPalette& pal ) const { return namedPalette(m_settings, name, pal); } bool samplv1widget_palette::namedPalette ( QSettings *settings, const QString& name, QPalette& pal, bool fixup ) { int result = 0; if (!name.isEmpty() && loadNamedPalette(settings, name, pal)) { ++result; } else { const QString& filename = namedPaletteConf(settings, name); if (!filename.isEmpty() && QFileInfo(filename).isReadable() && loadNamedPaletteConf(name, filename, pal)) { ++result; } } // Dark themes grayed/disabled color group fix... if (!fixup && pal.base().color().value() < 0x7f) { const QColor& color = pal.window().color(); const int groups = int(QPalette::Active | QPalette::Inactive) + 1; for (int i = 0; i < groups; ++i) { const QPalette::ColorGroup cg = QPalette::ColorGroup(i); pal.setBrush(cg, QPalette::Light, color.lighter(140)); pal.setBrush(cg, QPalette::Midlight, color.lighter(100)); pal.setBrush(cg, QPalette::Mid, color.lighter(90)); pal.setBrush(cg, QPalette::Dark, color.darker(160)); pal.setBrush(cg, QPalette::Shadow, color.darker(180)); } pal.setColorGroup(QPalette::Disabled, pal.windowText().color().darker(), pal.button(), pal.light(), pal.dark(), pal.mid(), pal.text().color().darker(), pal.text().color().lighter(), pal.base(), pal.window()); #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) pal.setColor(QPalette::Disabled, QPalette::Highlight, pal.mid().color()); pal.setColor(QPalette::Disabled, QPalette::ButtonText, pal.mid().color()); #endif ++result; } return (result > 0); } QStringList samplv1widget_palette::namedPaletteList (void) const { return namedPaletteList(m_settings); } QStringList samplv1widget_palette::namedPaletteList ( QSettings *settings ) { QStringList list; if (settings) { settings->beginGroup(ColorThemesGroup); list.append(settings->childKeys()); list.append(settings->childGroups()); // legacy... settings->endGroup(); } return list; } QString samplv1widget_palette::namedPaletteConf ( const QString& name ) const { return namedPaletteConf(m_settings, name); } QString samplv1widget_palette::namedPaletteConf ( QSettings *settings, const QString& name ) { QString ret; if (settings && !name.isEmpty()) { settings->beginGroup(ColorThemesGroup); ret = settings->value(name).toString(); settings->endGroup(); } return ret; } void samplv1widget_palette::addNamedPaletteConf ( const QString& name, const QString& filename ) { addNamedPaletteConf(m_settings, name, filename); ++m_dirtyTotal; } void samplv1widget_palette::addNamedPaletteConf ( QSettings *settings, const QString& name, const QString& filename ) { if (settings) { settings->beginGroup(ColorThemesGroup); settings->remove(name); // remove legacy keys! settings->setValue(name, filename); settings->endGroup(); } } void samplv1widget_palette::deleteNamedPaletteConf ( const QString& name ) { if (m_settings) { m_settings->beginGroup(ColorThemesGroup); m_settings->remove(name); m_settings->endGroup(); ++m_dirtyTotal; } } bool samplv1widget_palette::loadNamedPaletteConf ( const QString& name, const QString& filename, QPalette& pal ) { QSettings conf(filename, QSettings::IniFormat); return loadNamedPalette(&conf, name, pal); } bool samplv1widget_palette::saveNamedPaletteConf ( const QString& name, const QString& filename, const QPalette& pal ) { QSettings conf(filename, QSettings::IniFormat); return saveNamedPalette(&conf, name, pal); } bool samplv1widget_palette::loadNamedPalette ( QSettings *settings, const QString& name, QPalette& pal ) { if (settings == nullptr) return false; int result = 0; settings->beginGroup(ColorThemesGroup); QStringListIterator name_iter(settings->childGroups()); while (name_iter.hasNext() && !result) { const QString& name2 = name_iter.next(); if (name2 == name) { #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) uint mask = pal.resolve(); #endif settings->beginGroup(name + '/'); QStringListIterator iter(settings->childKeys()); while (iter.hasNext()) { const QString& key = iter.next(); const QPalette::ColorRole cr = samplv1widget_palette::colorRole(key); const QStringList& clist = settings->value(key).toStringList(); if (clist.count() == 3) { pal.setColor(QPalette::Active, cr, QColor(clist.at(0))); pal.setColor(QPalette::Inactive, cr, QColor(clist.at(1))); pal.setColor(QPalette::Disabled, cr, QColor(clist.at(2))); #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) mask &= ~(1 << int(cr)); #endif ++result; } } #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) pal.resolve(mask); #endif settings->endGroup(); } } settings->endGroup(); return (result > 0); } bool samplv1widget_palette::saveNamedPalette ( QSettings *settings, const QString& name, const QPalette& pal ) { if (settings == nullptr) return false; settings->beginGroup(ColorThemesGroup); settings->beginGroup(name + '/'); for (int i = 0; g_colorRoles[i].key; ++i) { const QString& key = QString::fromLatin1(g_colorRoles[i].key); const QPalette::ColorRole cr = g_colorRoles[i].value; QStringList clist; clist.append(pal.color(QPalette::Active, cr).name()); clist.append(pal.color(QPalette::Inactive, cr).name()); clist.append(pal.color(QPalette::Disabled, cr).name()); settings->setValue(key, clist); } settings->endGroup(); settings->endGroup(); return true; } QPalette::ColorRole samplv1widget_palette::colorRole ( const QString& name ) { static QHash s_colorRoles; if (s_colorRoles.isEmpty()) { for (int i = 0; g_colorRoles[i].key; ++i) { const QString& key = QString::fromLatin1(g_colorRoles[i].key); const QPalette::ColorRole value = g_colorRoles[i].value; s_colorRoles.insert(key, value); } } return s_colorRoles.value(name, QPalette::NoRole); } bool samplv1widget_palette::isDirty (void) const { return (m_dirtyTotal > 0); } void samplv1widget_palette::accept (void) { setShowDetails(m_ui.detailsCheck->isChecked()); if (m_dirtyCount > 0) saveButtonClicked(); QDialog::accept(); } void samplv1widget_palette::reject (void) { if (m_dirtyCount > 0) { const QString& name = paletteName(); if (name.isEmpty()) { if (QMessageBox::warning(this, tr("Warning - %1").arg(QDialog::windowTitle()), tr("Some settings have been changed.\n\n" "Do you want to discard the changes?"), QMessageBox::Discard | QMessageBox::Cancel) == QMessageBox::Cancel) return; } else { switch (QMessageBox::warning(this, tr("Warning - %1").arg(QDialog::windowTitle()), tr("Some settings have been changed:\n\n" "\"%1\".\n\nDo you want to save the changes?") .arg(name), QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel)) { case QMessageBox::Save: saveButtonClicked(); // Fall thru... case QMessageBox::Discard: break; default: // Cancel... return; } } } QDialog::reject(); } void samplv1widget_palette::setDefaultDir ( const QString& dir ) { if (m_settings) { m_settings->beginGroup(PaletteEditorGroup); m_settings->setValue(DefaultDirKey, dir); m_settings->endGroup(); } } QString samplv1widget_palette::defaultDir (void) const { QString dir; if (m_settings) { m_settings->beginGroup(PaletteEditorGroup); dir = m_settings->value(DefaultDirKey).toString(); m_settings->endGroup(); } return dir; } void samplv1widget_palette::setShowDetails ( bool on ) { if (m_settings) { m_settings->beginGroup(PaletteEditorGroup); m_settings->setValue(ShowDetailsKey, on); m_settings->endGroup(); } } bool samplv1widget_palette::isShowDetails (void) const { bool on = false; if (m_settings) { m_settings->beginGroup(PaletteEditorGroup); on = m_settings->value(ShowDetailsKey).toBool(); m_settings->endGroup(); } return on; } void samplv1widget_palette::showEvent ( QShowEvent *event ) { QDialog::showEvent(event); detailsCheckClicked(); } void samplv1widget_palette::resizeEvent ( QResizeEvent *event ) { QDialog::resizeEvent(event); detailsCheckClicked(); } //------------------------------------------------------------------------- // samplv1widget_palette::PaletteModel samplv1widget_palette::PaletteModel::PaletteModel ( QObject *parent ) : QAbstractTableModel(parent) { for (m_nrows = 0; g_colorRoles[m_nrows].key; ++m_nrows) { const QPalette::ColorRole value = g_colorRoles[m_nrows].value; const QString& key = QString::fromLatin1(g_colorRoles[m_nrows].key); m_roleNames.insert(value, key); } m_generate = true; } int samplv1widget_palette::PaletteModel::rowCount ( const QModelIndex& ) const { return m_nrows; } int samplv1widget_palette::PaletteModel::columnCount ( const QModelIndex& ) const { return 4; } QVariant samplv1widget_palette::PaletteModel::data ( const QModelIndex& index, int role ) const { if (!index.isValid()) return QVariant(); if (index.row() < 0 || index.row() >= m_nrows) return QVariant(); if (index.column() < 0 || index.column() >= 4) return QVariant(); if (index.column() == 0) { if (role == Qt::DisplayRole) return m_roleNames.value(QPalette::ColorRole(index.row())); if (role == Qt::EditRole) { #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) const uint mask = m_palette.resolveMask(); #else const uint mask = m_palette.resolve(); #endif return bool(mask & (1 << index.row())); } } else if (role == Qt::BackgroundRole) { return m_palette.color( columnToGroup(index.column()), QPalette::ColorRole(index.row())); } return QVariant(); } bool samplv1widget_palette::PaletteModel::setData ( const QModelIndex& index, const QVariant& value, int role ) { if (!index.isValid()) return false; if (index.column() != 0 && role == Qt::BackgroundRole) { const QColor& color = value.value(); const QPalette::ColorRole cr = QPalette::ColorRole(index.row()); const QPalette::ColorGroup cg = columnToGroup(index.column()); m_palette.setBrush(cg, cr, color); QModelIndex index_begin = PaletteModel::index(cr, 0); QModelIndex index_end = PaletteModel::index(cr, 3); if (m_generate) { m_palette.setBrush(QPalette::Inactive, cr, color); switch (cr) { case QPalette::WindowText: case QPalette::Text: case QPalette::ButtonText: case QPalette::Base: break; case QPalette::Dark: m_palette.setBrush(QPalette::Disabled, QPalette::WindowText, color); m_palette.setBrush(QPalette::Disabled, QPalette::Dark, color); m_palette.setBrush(QPalette::Disabled, QPalette::Text, color); m_palette.setBrush(QPalette::Disabled, QPalette::ButtonText, color); index_begin = PaletteModel::index(0, 0); index_end = PaletteModel::index(m_nrows - 1, 3); break; case QPalette::Window: m_palette.setBrush(QPalette::Disabled, QPalette::Base, color); m_palette.setBrush(QPalette::Disabled, QPalette::Window, color); index_begin = PaletteModel::index(QPalette::Base, 0); break; case QPalette::Highlight: m_palette.setBrush(QPalette::Disabled, QPalette::Highlight, color.darker(120)); break; default: m_palette.setBrush(QPalette::Disabled, cr, color); break; } } emit paletteChanged(m_palette); emit dataChanged(index_begin, index_end); return true; } if (index.column() == 0 && role == Qt::EditRole) { #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) uint mask = m_palette.resolveMask(); #else uint mask = m_palette.resolve(); #endif const bool masked = value.value(); const int i = index.row(); if (masked) { mask |= (1 << i); } else { const QPalette::ColorRole cr = QPalette::ColorRole(i); m_palette.setBrush(QPalette::Active, cr, m_parentPalette.brush(QPalette::Active, cr)); m_palette.setBrush(QPalette::Inactive, cr, m_parentPalette.brush(QPalette::Inactive, cr)); m_palette.setBrush(QPalette::Disabled, cr, m_parentPalette.brush(QPalette::Disabled, cr)); mask &= ~(1 << i); } #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) m_palette.setResolveMask(mask); #else m_palette.resolve(mask); #endif emit paletteChanged(m_palette); const QModelIndex& index_end = PaletteModel::index(i, 3); emit dataChanged(index, index_end); return true; } return false; } Qt::ItemFlags samplv1widget_palette::PaletteModel::flags ( const QModelIndex& index ) const { if (!index.isValid()) return Qt::ItemIsEnabled; else return Qt::ItemIsEditable | Qt::ItemIsEnabled; } QVariant samplv1widget_palette::PaletteModel::headerData ( int section, Qt::Orientation orientation, int role ) const { if (orientation == Qt::Horizontal && role == Qt::DisplayRole) { if (section == 0) return tr("Color Role"); else if (section == groupToColumn(QPalette::Active)) return tr("Active"); else if (section == groupToColumn(QPalette::Inactive)) return tr("Inactive"); else if (section == groupToColumn(QPalette::Disabled)) return tr("Disabled"); } return QVariant(); } const QPalette& samplv1widget_palette::PaletteModel::palette(void) const { return m_palette; } void samplv1widget_palette::PaletteModel::setPalette ( const QPalette& palette, const QPalette& parentPalette ) { m_palette = palette; m_parentPalette = parentPalette; const QModelIndex& index_begin = index(0, 0); const QModelIndex& index_end = index(m_nrows - 1, 3); emit dataChanged(index_begin, index_end); } QPalette::ColorGroup samplv1widget_palette::PaletteModel::columnToGroup ( int index ) const { if (index == 1) return QPalette::Active; else if (index == 2) return QPalette::Inactive; return QPalette::Disabled; } int samplv1widget_palette::PaletteModel::groupToColumn ( QPalette::ColorGroup group ) const { if (group == QPalette::Active) return 1; else if (group == QPalette::Inactive) return 2; return 3; } //------------------------------------------------------------------------- // samplv1widget_palette::ColorDelegate QWidget *samplv1widget_palette::ColorDelegate::createEditor ( QWidget *parent, const QStyleOptionViewItem&, const QModelIndex& index ) const { QWidget *editor = nullptr; if (index.column() == 0) { RoleEditor *ed = new RoleEditor(parent); QObject::connect(ed, SIGNAL(changed(QWidget *)), SIGNAL(commitData(QWidget *))); // ed->setFocusPolicy(Qt::NoFocus); // ed->installEventFilter(const_cast(this)); editor = ed; } else { ColorEditor *ed = new ColorEditor(parent); QObject::connect(ed, SIGNAL(changed(QWidget *)), SIGNAL(commitData(QWidget *))); ed->setFocusPolicy(Qt::NoFocus); ed->installEventFilter(const_cast(this)); editor = ed; } return editor; } void samplv1widget_palette::ColorDelegate::setEditorData ( QWidget *editor, const QModelIndex& index ) const { if (index.column() == 0) { const bool masked = index.model()->data(index, Qt::EditRole).value(); RoleEditor *ed = static_cast(editor); ed->setEdited(masked); const QString& colorName = index.model()->data(index, Qt::DisplayRole).value(); ed->setLabel(colorName); } else { const QColor& color = index.model()->data(index, Qt::BackgroundRole).value(); ColorEditor *ed = static_cast(editor); ed->setColor(color); } } void samplv1widget_palette::ColorDelegate::setModelData ( QWidget *editor, QAbstractItemModel *model, const QModelIndex& index ) const { if (index.column() == 0) { RoleEditor *ed = static_cast(editor); const bool masked = ed->edited(); model->setData(index, masked, Qt::EditRole); } else { ColorEditor *ed = static_cast(editor); if (ed->changed()) { const QColor& color = ed->color(); model->setData(index, color, Qt::BackgroundRole); } } } void samplv1widget_palette::ColorDelegate::updateEditorGeometry ( QWidget *editor, const QStyleOptionViewItem& option, const QModelIndex& index ) const { QItemDelegate::updateEditorGeometry(editor, option, index); editor->setGeometry(editor->geometry().adjusted(0, 0, -1, -1)); } void samplv1widget_palette::ColorDelegate::paint ( QPainter *painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const { QStyleOptionViewItem opt = option; const bool masked = index.model()->data(index, Qt::EditRole).value(); if (index.column() == 0 && masked) opt.font.setBold(true); QItemDelegate::paint(painter, opt, index); // painter->setPen(opt.palette.midlight().color()); painter->setPen(Qt::darkGray); painter->drawLine(opt.rect.right(), opt.rect.y(), opt.rect.right(), opt.rect.bottom()); painter->drawLine(opt.rect.x(), opt.rect.bottom(), opt.rect.right(), opt.rect.bottom()); } QSize samplv1widget_palette::ColorDelegate::sizeHint ( const QStyleOptionViewItem& option, const QModelIndex &index) const { return QItemDelegate::sizeHint(option, index) + QSize(4, 4); } //------------------------------------------------------------------------- // samplv1widget_palette::ColorButton samplv1widget_palette::ColorButton::ColorButton ( QWidget *parent ) : QPushButton(parent), m_brush(Qt::darkGray) { QPushButton::setMinimumWidth(48); QObject::connect(this, SIGNAL(clicked()), SLOT(chooseColor())); } const QBrush& samplv1widget_palette::ColorButton::brush (void) const { return m_brush; } void samplv1widget_palette::ColorButton::setBrush ( const QBrush& brush ) { m_brush = brush; update(); } void samplv1widget_palette::ColorButton::paintEvent ( QPaintEvent *event ) { QPushButton::paintEvent(event); QStyleOptionButton opt; opt.initFrom(this); const QRect& rect = style()->subElementRect(QStyle::SE_PushButtonContents, &opt, this); QPainter paint(this); paint.setBrush(QBrush(m_brush.color())); paint.drawRect(rect.adjusted(+1, +1, -2, -2)); } void samplv1widget_palette::ColorButton::chooseColor (void) { const QColor color = QColorDialog::getColor(m_brush.color(), this); if (color.isValid()) { m_brush.setColor(color); emit changed(); } } //------------------------------------------------------------------------- // samplv1widget_palette::ColorEditor samplv1widget_palette::ColorEditor::ColorEditor ( QWidget *parent ) : QWidget(parent) { QLayout *layout = new QHBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); m_button = new samplv1widget_palette::ColorButton(this); layout->addWidget(m_button); QObject::connect(m_button, SIGNAL(changed()), SLOT(colorChanged())); setFocusProxy(m_button); m_changed = false; } void samplv1widget_palette::ColorEditor::setColor ( const QColor& color ) { m_button->setBrush(color); m_changed = false; } QColor samplv1widget_palette::ColorEditor::color (void) const { return m_button->brush().color(); } void samplv1widget_palette::ColorEditor::colorChanged (void) { m_changed = true; emit changed(this); } bool samplv1widget_palette::ColorEditor::changed (void) const { return m_changed; } //------------------------------------------------------------------------- // samplv1widget_palette::RoleEditor samplv1widget_palette::RoleEditor::RoleEditor ( QWidget *parent ) : QWidget(parent) { m_edited = false; QHBoxLayout *layout = new QHBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); layout->setSpacing(0); m_label = new QLabel(this); layout->addWidget(m_label); m_label->setAutoFillBackground(true); m_label->setIndent(3); // HACK: it should have the same value of textMargin in QItemDelegate setFocusProxy(m_label); m_button = new QToolButton(this); m_button->setToolButtonStyle(Qt::ToolButtonIconOnly); m_button->setIcon(QPixmap(":/images/itemReset.png")); m_button->setIconSize(QSize(8, 8)); m_button->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::MinimumExpanding)); layout->addWidget(m_button); QObject::connect(m_button, SIGNAL(clicked()), SLOT(resetProperty())); } void samplv1widget_palette::RoleEditor::setLabel ( const QString& label ) { m_label->setText(label); } void samplv1widget_palette::RoleEditor::setEdited ( bool on ) { QFont font; if (on) font.setBold(on); m_label->setFont(font); m_button->setEnabled(on); m_edited = on; } bool samplv1widget_palette::RoleEditor::edited (void) const { return m_edited; } void samplv1widget_palette::RoleEditor::resetProperty (void) { setEdited(false); emit changed(this); } // end of samplv1widget_palette.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_programs.cpp0000644000000000000000000000013215245503134020156 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.172675585 30 ctime=1788249692.172675585 samplv1-1.4.3/src/samplv1widget_programs.cpp0000644000175000001440000004731515245503134020160 0ustar00rncbcusers// samplv1widget_programs.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_programs.h" #include "samplv1_programs.h" #include "samplv1_presets.h" #include "samplv1_config.h" #include "samplv1widget_presets.h" #include #include #include #include //---------------------------------------------------------------------------- // samplv1widget_programs::ItemDelegate -- Custom (tree) list item delegate. class samplv1widget_programs::ItemDelegate : public QStyledItemDelegate { public: // ctor. ItemDelegate(QObject *pParent = nullptr); // painting void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; QSize sizeHint( const QStyleOptionViewItem& option, const QModelIndex& index) const; // editing QWidget *createEditor(QWidget *pParent, const QStyleOptionViewItem& option, const QModelIndex& index) const; void setEditorData(QWidget *pEditor, const QModelIndex& index) const; void setModelData(QWidget *pEditor, QAbstractItemModel *pModel, const QModelIndex& index) const; }; //---------------------------------------------------------------------------- // samplv1widget_programs_item_delegate -- Custom (tree) list item delegate. // ctor. samplv1widget_programs::ItemDelegate::ItemDelegate ( QObject *pParent ) : QStyledItemDelegate(pParent) { } // painting // void samplv1widget_programs::ItemDelegate::paint ( QPainter *pPainter, const QStyleOptionViewItem& option, const QModelIndex& index ) const { QStyleOptionViewItem opt = option; samplv1widget_programs *pWidget = qobject_cast(parent()); if (pWidget) { QTreeWidgetItem *pItem = pWidget->itemFromIndex(index); if (pItem && pItem->parent() == nullptr) { if (index.column() == 1) opt.font.setWeight(QFont::Bold); if (pWidget->currentItem() == pItem) { opt.palette.setColor(QPalette::Text, opt.palette.color(QPalette::HighlightedText)); } } } QStyledItemDelegate::paint(pPainter, opt, index); } QSize samplv1widget_programs::ItemDelegate::sizeHint ( const QStyleOptionViewItem& option, const QModelIndex& index ) const { return QStyledItemDelegate::sizeHint(option, index) + QSize(4, 4); } // editing // QWidget *samplv1widget_programs::ItemDelegate::createEditor ( QWidget *pParent, const QStyleOptionViewItem& /*option*/, const QModelIndex& index ) const { QWidget *pEditor = nullptr; switch (index.column()) { case 0: // Data. { QSpinBox *pSpinBox = new QSpinBox(pParent); pSpinBox->setMinimum(0); if (index.parent().isValid()) pSpinBox->setMaximum(127); else pSpinBox->setMaximum(16383); pEditor = pSpinBox; break; } case 1: // Text. { if (index.parent().isValid()) { samplv1widget_presets::ComboBox *pComboBox = new samplv1widget_presets::ComboBox(pParent); pComboBox->setEditable(false); samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) (pComboBox->presetsView())->loadPresets(&(pConfig->presets)); pEditor = pComboBox; } else { QLineEdit *pLineEdit = new QLineEdit(pParent); pEditor = pLineEdit; } break; } default: break; } #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_programs::ItemDelegate::createEditor(%p, %d, %d) = %p", pParent, index.row(), index.column(), pEditor); #endif return pEditor; } void samplv1widget_programs::ItemDelegate::setEditorData ( QWidget *pEditor, const QModelIndex& index ) const { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_programs::ItemDelegate::setEditorData(%p, %d, %d)", pEditor, index.row(), index.column()); #endif switch (index.column()) { case 0: // Data. { const QString& sData = index.data().toString(); // = index.model()->data(index, Qt::DisplayRole).toString(); QSpinBox *pSpinBox = qobject_cast (pEditor); if (pSpinBox) { const int iData = sData.section("=", 0, 0).toInt(); pSpinBox->setValue(iData); } break; } case 1: // Text. { const QString& sText = index.data().toString(); // = index.model()->data(index, Qt::DisplayRole).toString(); if (index.parent().isValid()) { samplv1widget_presets::ComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { pComboBox->setCurrentPreset(sText); } } else { QLineEdit *pLineEdit = qobject_cast (pEditor); if (pLineEdit) pLineEdit->setText(sText); } break; } default: break; } } void samplv1widget_programs::ItemDelegate::setModelData ( QWidget *pEditor, QAbstractItemModel *pModel, const QModelIndex& index ) const { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_programs::ItemDelegate::setModelData(%p, %d, %d)", pEditor, index.row(), index.column()); #endif switch (index.column()) { case 0: // Data. { QSpinBox *pSpinBox = qobject_cast (pEditor); if (pSpinBox) { const int iData = pSpinBox->value(); QString sData = QString::number(iData); if (index.parent().isValid()) sData += " ="; pModel->setData(index, sData); } break; } case 1: // Text. { if (index.parent().isValid()) { samplv1widget_presets::ComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const QString& sText = pComboBox->currentPreset(); pModel->setData(index, sText); } } else { QLineEdit *pLineEdit = qobject_cast (pEditor); if (pLineEdit) { const QString& sText = pLineEdit->text(); pModel->setData(index, sText); } } break; } default: break; } // Done. } //---------------------------------------------------------------------------- // samplv1widget_programs -- UI wrapper form. // ctor. samplv1widget_programs::samplv1widget_programs ( QWidget *pParent ) : QTreeWidget(pParent) { QTreeWidget::setColumnCount(2); QTreeWidget::setRootIsDecorated(true); QTreeWidget::setAlternatingRowColors(true); QTreeWidget::setUniformRowHeights(true); QTreeWidget::setAllColumnsShowFocus(true); QTreeWidget::setSelectionBehavior(QAbstractItemView::SelectRows); QTreeWidget::setSelectionMode(QAbstractItemView::SingleSelection); QHeaderView *pHeaderView = QTreeWidget::header(); #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) pHeaderView->setResizeMode(QHeaderView::ResizeToContents); #else pHeaderView->setSectionResizeMode(QHeaderView::ResizeToContents); #endif pHeaderView->hide(); QTreeWidget::setItemDelegate(new ItemDelegate(this)); QObject::connect(this, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(itemChangedSlot(QTreeWidgetItem *, int))); QObject::connect(this, SIGNAL(itemExpanded(QTreeWidgetItem *)), SLOT(itemExpandedSlot(QTreeWidgetItem *))); QObject::connect(this, SIGNAL(itemCollapsed(QTreeWidgetItem *)), SLOT(itemCollapsedSlot(QTreeWidgetItem *))); } // dtor. samplv1widget_programs::~samplv1widget_programs (void) { } // utilities. void samplv1widget_programs::loadPrograms ( samplv1_programs *pPrograms ) { QTreeWidget::clear(); QList items; QTreeWidgetItem *pCurrentItem = nullptr; const samplv1_programs::Banks& banks = pPrograms->banks(); samplv1_programs::Banks::ConstIterator bank_iter = banks.constBegin(); const samplv1_programs::Banks::ConstIterator& bank_end = banks.constEnd(); for ( ; bank_iter != bank_end; ++bank_iter) { samplv1_programs::Bank *pBank = bank_iter.value(); QTreeWidgetItem *pBankItem = new QTreeWidgetItem(this); pBankItem->setIcon(0, QIcon(":/images/presetBankOpen.png")); pBankItem->setText(0, QString::number(pBank->id())); pBankItem->setText(1, pBank->name()); pBankItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); pBankItem->setData(0, Qt::UserRole, pBank->id()); const samplv1_programs::Progs& progs = pBank->progs(); samplv1_programs::Progs::ConstIterator prog_iter = progs.constBegin(); const samplv1_programs::Progs::ConstIterator& prog_end = progs.constEnd(); for ( ; prog_iter != prog_end; ++prog_iter) { samplv1_programs::Prog *pProg = prog_iter.value(); QTreeWidgetItem *pProgItem = new QTreeWidgetItem(pBankItem); pProgItem->setIcon(1, QIcon(":/images/samplv1_preset.png")); pProgItem->setText(0, QString::number(pProg->id()) + " ="); pProgItem->setText(1, pProg->name()); pProgItem->setFlags( Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable); pProgItem->setData(0, Qt::TextAlignmentRole, int(Qt::AlignRight | Qt::AlignVCenter)); pProgItem->setData(0, Qt::UserRole, pProg->id()); if (pBank == pPrograms->current_bank() && pProg == pPrograms->current_prog()) pCurrentItem = pProgItem; } items.append(pBankItem); } QTreeWidget::addTopLevelItems(items); QTreeWidget::expandAll(); QTreeWidget::setCurrentItem(pCurrentItem); } void samplv1widget_programs::savePrograms ( samplv1_programs *pPrograms ) { pPrograms->clear_banks(); const int iBankCount = QTreeWidget::topLevelItemCount(); for (int iBank = 0 ; iBank < iBankCount; ++iBank) { QTreeWidgetItem *pBankItem = QTreeWidget::topLevelItem(iBank); uint16_t bank_id = pBankItem->data(0, Qt::UserRole).toInt(); const QString& bank_name = pBankItem->text(1).simplified(); samplv1_programs::Bank *pBank = pPrograms->add_bank(bank_id, bank_name); const int iProgCount = pBankItem->childCount(); for (int iProg = 0 ; iProg < iProgCount; ++iProg) { QTreeWidgetItem *pProgItem = pBankItem->child(iProg); uint16_t prog_id = pProgItem->data(0, Qt::UserRole).toInt(); const QString& prog_name = pProgItem->text(1).simplified(); pBank->add_prog(prog_id, prog_name); } } } QString samplv1widget_programs::currentProgramName (void) const { QString sProgramName; const QList& selectedItems = QTreeWidget::selectedItems(); if (!selectedItems.isEmpty()) { QTreeWidgetItem *pProgItem = selectedItems.first(); sProgramName = pProgItem->text(1).simplified(); } return sProgramName; } // slots. void samplv1widget_programs::addBankItem (void) { QTreeWidget::setFocus(); QTreeWidgetItem *pBankItem = newBankItem(); if (pBankItem) { QTreeWidget::setCurrentItem(pBankItem); QTreeWidget::editItem(pBankItem, 1); } } void samplv1widget_programs::addProgramItem (void) { QTreeWidget::setFocus(); QTreeWidgetItem *pProgItem = newProgramItem(); if (pProgItem) { QTreeWidget::setCurrentItem(pProgItem); QTreeWidget::editItem(pProgItem, 1); } } void samplv1widget_programs::addPresetItems ( samplv1_presets *pPresets ) { QStringList preset_list = pPresets->preset_list(); QStringListIterator bank_iter(pPresets->bank_list()); while (bank_iter.hasNext()) { const QString& sBank = bank_iter.next(); samplv1_presets::Bank *pBank = pPresets->find_bank(sBank); if (pBank) preset_list.append(pBank->preset_list()); } // Skip presets already mapped to programs... int iBankData = 0; QTreeWidgetItem *pBank0Item = nullptr; const int iBankCount = QTreeWidget::topLevelItemCount(); for (int iBank = 0; iBank < iBankCount; ++iBank) { QTreeWidgetItem *pBankItem = QTreeWidget::topLevelItem(iBank); const int iData = pBankItem->data(0, Qt::UserRole).toInt(); if (iData == 0) pBank0Item = pBankItem; if (iBankData < iData) iBankData = iData; if (iBankData >= 16383) return; const int iProgCount = pBankItem->childCount(); for (int iProg = 0; iProg < iProgCount; ++iProg) { QTreeWidgetItem *pProgItem = pBankItem->child(iProg); preset_list.removeAll(pProgItem->text(1)); } } if (preset_list.isEmpty()) return; QStringListIterator preset_iter(preset_list); while (preset_iter.hasNext()) { const QString& sPreset = preset_iter.next(); samplv1_presets::Bank *pBank = pPresets->find_preset_bank(sPreset); QTreeWidgetItem *pBankItem = nullptr; if (pBank) { const QString& sBank = pBank->name(); const QList& items = QTreeWidget::findItems( sBank, Qt::MatchExactly|Qt::MatchRecursive, 1); QListIterator iter(items); while (iter.hasNext()) { QTreeWidgetItem *pItem = iter.next(); if (pItem->parent() == nullptr) { pBankItem = pItem; break; } } if (pBankItem == nullptr) { pBankItem = new QTreeWidgetItem(QStringList() << QString::number(++iBankData) << sBank); pBankItem->setIcon(0, QIcon(":/images/presetBank.png")); pBankItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); pBankItem->setData(0, Qt::UserRole, iBankData); QTreeWidget::addTopLevelItem(pBankItem); } } else // Check for default bank... if (pBank0Item == nullptr) { pBank0Item = new QTreeWidgetItem(QStringList() << QString::number(0) << tr("Bank 0")); pBank0Item->setIcon(0, QIcon(":/images/presetBank.png")); pBank0Item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); pBank0Item->setData(0, Qt::UserRole, 0); QTreeWidget::insertTopLevelItem(0, pBank0Item); } if (pBankItem == nullptr) pBankItem = pBank0Item; // Add program, filling in the gaps... int iProg = 0; int iProgData = 0; const int iProgCount = pBankItem->childCount(); for ( ; iProg < iProgCount; ++iProg) { QTreeWidgetItem *pProgItem = pBankItem->child(iProg); const int iData = pProgItem->data(0, Qt::UserRole).toInt(); if (iData != iProg) { iProgData = iProg - 1; break; } iProgData = iData; } if (iProgCount > 0) ++iProgData; if (iProgData >= 128) continue; QTreeWidgetItem *pProgItem = new QTreeWidgetItem(QStringList() << QString::number(iProgData) + " =" << sPreset); pProgItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable); pProgItem->setData(0, Qt::TextAlignmentRole, int(Qt::AlignRight | Qt::AlignVCenter)); pProgItem->setData(0, Qt::UserRole, iProgData); pProgItem->setIcon(1, QIcon(":/images/samplv1_preset.png")); pBankItem->insertChild(iProg, pProgItem); pBankItem->setExpanded(true); } } // factory methods. QTreeWidgetItem *samplv1widget_programs::newBankItem (void) { QTreeWidgetItem *pItem = QTreeWidget::currentItem(); QTreeWidgetItem *pBankItem = (pItem ? pItem->parent() : nullptr); if (pBankItem == nullptr) pBankItem = pItem; int iBank = 0; int iBankData = 0; if (pBankItem) { iBankData = pBankItem->data(0, Qt::UserRole).toInt() + 1; if (iBankData > 16383) iBankData = 0; else iBank = QTreeWidget::indexOfTopLevelItem(pBankItem) + 1; } const int iBankCount = QTreeWidget::topLevelItemCount(); for ( ; iBank < iBankCount; ++iBank) { pBankItem = QTreeWidget::topLevelItem(iBank); if (iBankData < pBankItem->data(0, Qt::UserRole).toInt()) break; if (++iBankData > 16383) return nullptr; } pBankItem = new QTreeWidgetItem(QStringList() << QString::number(iBankData) << tr("Bank %1").arg(iBankData)); pBankItem->setIcon(0, QIcon(":/images/presetBank.png")); pBankItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); pBankItem->setData(0, Qt::UserRole, iBankData); QTreeWidget::insertTopLevelItem(iBank, pBankItem); return pBankItem; } QTreeWidgetItem *samplv1widget_programs::newProgramItem (void) { QTreeWidgetItem *pItem = QTreeWidget::currentItem(); QTreeWidgetItem *pBankItem = (pItem ? pItem->parent() : nullptr); QTreeWidgetItem *pProgItem = nullptr; if (pBankItem == nullptr) pBankItem = pItem; else pProgItem = pItem; if (pBankItem == nullptr) pBankItem = QTreeWidget::topLevelItem(0); if (pBankItem == nullptr) pBankItem = newBankItem(); if (pBankItem == nullptr) return nullptr; const int iBankData = pBankItem->data(0, Qt::UserRole).toInt(); int iProg = 0; int iProgData = 0; if (pProgItem) { iProgData = pProgItem->data(0, Qt::UserRole).toInt() + 1; if (iProgData > 127) iProgData = 0; else iProg = pBankItem->indexOfChild(pProgItem) + 1; } const int iProgCount = pBankItem->childCount(); for ( ; iProg < iProgCount; ++iProg) { pProgItem = pBankItem->child(iProg); if (iProgData < pProgItem->data(0, Qt::UserRole).toInt()) break; if (++iProgData > 127) return nullptr; } QString sProgram = tr("Program %1.%2").arg(iBankData).arg(iProgData); samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { QStringList preset_list; const QStringList& bank_list = pConfig->presets.bank_list(); if (iBankData < bank_list.count()) { const QString& sBank = bank_list.at(iBankData); samplv1_presets::Bank *pBank = pConfig->presets.find_bank(sBank); if (pBank) preset_list = pBank->preset_list(); } else { preset_list = pConfig->presets.preset_list(); } if (iProgData < preset_list.count()) sProgram = preset_list.at(iProgData); } pProgItem = new QTreeWidgetItem(QStringList() << QString::number(iProgData) + " =" << sProgram); pProgItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable); pProgItem->setData(0, Qt::TextAlignmentRole, int(Qt::AlignRight | Qt::AlignVCenter)); pProgItem->setData(0, Qt::UserRole, iProgData); pProgItem->setIcon(1, QIcon(":/images/samplv1_preset.png")); pBankItem->insertChild(iProg, pProgItem); pBankItem->setExpanded(true); return pProgItem; } void samplv1widget_programs::itemChangedSlot ( QTreeWidgetItem *pItem, int ) { const int iData = pItem->text(0).section("=", 0, 0).toInt(); if (iData == pItem->data(0, Qt::UserRole).toInt()) return; const bool bBlockSignals = QTreeWidget::blockSignals(true); QTreeWidgetItem *pBankItem = pItem->parent(); if (pBankItem) { int iProg, iProgData = 0; const int iOldProg = pBankItem->indexOfChild(pItem); pItem = pBankItem->takeChild(iOldProg); const int iProgCount = pBankItem->childCount(); for (iProg = 0; iProg < iProgCount; ++iProg) { QTreeWidgetItem *pProgItem = pBankItem->child(iProg); iProgData = pProgItem->data(0, Qt::UserRole).toInt(); if (iProgData >= iData) break; } if (iProgData == iData) { iProg = iOldProg; iProgData = pItem->data(0, Qt::UserRole).toInt(); pItem->setText(0, QString::number(iProgData) + " ="); } else pItem->setData(0, Qt::UserRole, iData); pBankItem->insertChild(iProg, pItem); } else { int iBank, iBankData = 0; const bool bExpanded = pItem->isExpanded(); const int iOldBank = QTreeWidget::indexOfTopLevelItem(pItem); pItem = QTreeWidget::takeTopLevelItem(iOldBank); const int iBankCount = QTreeWidget::topLevelItemCount(); for (iBank = 0; iBank < iBankCount; ++iBank) { pBankItem = QTreeWidget::topLevelItem(iBank); iBankData = pBankItem->data(0, Qt::UserRole).toInt(); if (iBankData >= iData) break; } if (iBankData == iData) { iBank = iOldBank; iBankData = pItem->data(0, Qt::UserRole).toInt(); pItem->setText(0, QString::number(iBankData)); } else pItem->setData(0, Qt::UserRole, iData); QTreeWidget::insertTopLevelItem(iBank, pItem); pItem->setExpanded(bExpanded); } QTreeWidget::setCurrentItem(pItem); QTreeWidget::blockSignals(bBlockSignals); } void samplv1widget_programs::itemExpandedSlot ( QTreeWidgetItem *pItem ) { if (pItem->parent() == nullptr) pItem->setIcon(0, QIcon(":/images/presetBankOpen.png")); } void samplv1widget_programs::itemCollapsedSlot ( QTreeWidgetItem *pItem ) { if (pItem->parent() == nullptr) pItem->setIcon(0, QIcon(":/images/presetBank.png")); } // end of samplv1widget_programs.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_nsm.h0000644000000000000000000000013215245503134015362 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_nsm.h0000644000175000001440000000646115245503134015361 0ustar00rncbcusers// samplv1_nsm.h // /**************************************************************************** Copyright (C) 2012-2023, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_nsm_h #define __samplv1_nsm_h #include "samplv1_config.h" #include #ifdef CONFIG_LIBLO #include #endif //--------------------------------------------------------------------------- // samplv1_nsm - NSM OSC client agent. class samplv1_nsm : public QObject { Q_OBJECT public: // Constructor. samplv1_nsm(const QString& nsm_url, QObject *pParent = 0); // Destructor. ~samplv1_nsm(); // Session activation accessor. bool is_active() const; // Session manager accessors. const QString& manager() const; const QString& capabilities() const; // Session client accessors. const QString& path_name() const; const QString& display_name() const; const QString& client_name() const; // Session client methods. void announce(const QString& app_name, const QString& capabilities); void dirty(bool is_dirty); void visible(bool is_visible); void progress(float percent); void message(int priority, const QString& mesg); // Status/error codes enum ReplyCode { ERR_OK = 0, ERR_GENERAL = -1, ERR_INCOMPATIBLE_API = -2, ERR_BLACKLISTED = -3, ERR_LAUNCH_FAILED = -4, ERR_NO_SUCH_FILE = -5, ERR_NO_SESSION_OPEN = -6, ERR_UNSAVED_CHANGES = -7, ERR_NOT_NOW = -8, ERR_BAD_PROJECT = -9, ERR_CREATE_FAILED = -10 }; // Session client reply methods. void open_reply(ReplyCode reply_code = ERR_OK); void save_reply(ReplyCode reply_code = ERR_OK); // Server methods response methods. void nsm_announce_error( const char *mesg); void nsm_announce_reply( const char *mesg, const char *manager, const char *capabilities); void nsm_open( const char *path_name, const char *display_name, const char *client_name); void nsm_save(); void nsm_loaded(); void nsm_show(); void nsm_hide(); protected: void reply(const QString& path, ReplyCode reply_code); signals: // Session client callbacks. void active(bool is_active); void open(); void save(); void loaded(); void show(); void hide(); private: // Instance variables. #ifdef CONFIG_LIBLO lo_address m_address; lo_server_thread m_thread; lo_server m_server; #endif bool m_active; bool m_dirty; QString m_manager; QString m_capabilities; QString m_path_name; QString m_display_name; QString m_client_name; }; #endif // __samplv1_nsm_h // end of samplv1_nsm.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_config.cpp0000644000000000000000000000013215245503134017571 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1widget_config.cpp0000644000175000001440000011470315245503134017567 0ustar00rncbcusers// samplv1widget_config.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_config.h" #include "samplv1widget_param.h" #include "samplv1widget_palette.h" #include "samplv1widget.h" #include "samplv1_ui.h" #include "samplv1_pshifter.h" #include "samplv1_controls.h" #include "samplv1_programs.h" #include "ui_samplv1widget_config.h" #include #include #include #include #include #include #include #include // Default (empty/blank) name. static const char *g_pszDefName = QT_TRANSLATE_NOOP("samplv1widget_config", "(default)"); //---------------------------------------------------------------------------- // samplv1widget_config -- UI wrapper form. // ctor. samplv1widget_config::samplv1widget_config ( samplv1widget *pParent, samplv1_ui *pSamplUi ) : QDialog(pParent), p_ui(new Ui::samplv1widget_config), m_ui(*p_ui), m_pSamplUi(pSamplUi) { // Setup UI struct... m_ui.setupUi(this); #if QT_VERSION < QT_VERSION_CHECK(6, 1, 0) QDialog::setWindowIcon(QIcon(":/images/samplv1.png")); #endif // Pitch-shift types. m_ui.PitchShiftTypeComboBox->addItem(tr("(default)")); m_ui.PitchShiftTypeComboBox->addItem(tr("S.M.Bernsee")); #ifdef CONFIG_LIBRUBBERBAND m_ui.PitchShiftTypeComboBox->addItem(tr("RubberBand")); #endif // Note names. QStringList notes; for (int note = 0; note < 128; ++note) notes << samplv1_ui::noteName(note); m_ui.TuningRefNoteComboBox->insertItems(0, notes); // Tuning specifics setup... m_ui.TuningTabBar->addTab(tr("&Global")); m_ui.TuningTabBar->addTab(tr("&Instance")); // Dialog dirty flags. m_iDirtyTuning = 0; m_iDirtyControls = 0; m_iDirtyPrograms = 0; m_iDirtyPresets = 0; m_iDirtyOptions = 0; // Whether presets exist... m_bPresets = false; m_iLoadPreset = 0; // Setup options... samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig && m_pSamplUi) { const bool bPlugin = m_pSamplUi->isPlugin(); m_ui.PresetsPreviewCheckBox->setChecked(pConfig->bPresetsPreview); m_ui.ProgramsPreviewCheckBox->setChecked(pConfig->bProgramsPreview); m_ui.UseNativeDialogsCheckBox->setChecked(pConfig->bUseNativeDialogs); m_ui.KnobDialModeComboBox->setCurrentIndex(pConfig->iKnobDialMode); m_ui.KnobEditModeComboBox->setCurrentIndex(pConfig->iKnobEditMode); m_ui.FrameTimeFormatComboBox->setCurrentIndex(pConfig->iFrameTimeFormat); m_ui.RandomizePercentSpinBox->setValue(pConfig->fRandomizePercent); m_ui.PitchShiftTypeComboBox->setCurrentIndex(pConfig->iPitchShiftType); // Custom display options (only for no-plugin forms)... m_ui.CustomStyleThemeTextLabel->setEnabled(!bPlugin); m_ui.CustomStyleThemeComboBox->setEnabled(!bPlugin); resetCustomColorThemes(pConfig->sCustomColorTheme); resetCustomStyleThemes(pConfig->sCustomStyleTheme); // Load presets database... samplv1_presets *pPresets = &(pConfig->presets); m_bPresets = !pPresets->isEmpty(); m_ui.PresetsTreeWidget->loadPresets(pPresets); m_ui.PresetsTreeWidget->setPresetItem(pConfig->sPreset); m_ui.PresetsPreviewCheckBox->setEnabled(!bPlugin && m_bPresets); // Load controllers database... samplv1_controls *pControls = m_pSamplUi->controls(); if (pControls) { m_ui.ControlsTreeWidget->loadControls(pControls); m_ui.ControlsEnabledCheckBox->setEnabled(bPlugin); m_ui.ControlsEnabledCheckBox->setChecked(pControls->enabled()); } // Load programs database... samplv1_programs *pPrograms = m_pSamplUi->programs(); if (pPrograms) { m_ui.ProgramsTreeWidget->loadPrograms(pPrograms); m_ui.ProgramsEnabledCheckBox->setEnabled(bPlugin && m_bPresets); m_ui.ProgramsPreviewCheckBox->setEnabled(!bPlugin && m_bPresets); m_ui.ProgramsEnabledCheckBox->setChecked(pPrograms->enabled()); } // Initialize conveniency options... loadComboBoxHistory(m_ui.TuningScaleFileComboBox); loadComboBoxHistory(m_ui.TuningKeyMapFileComboBox); // Micro-tonal tuning settings... const int iTuningTab = (m_pSamplUi->isTuningEnabled() ? 1 : 0); m_ui.TuningTabBar->setCurrentIndex(iTuningTab); tuningTabChanged(iTuningTab); } // Signal/slots connections... QObject::connect(m_ui.ControlsAddItemToolButton, SIGNAL(clicked()), SLOT(controlsAddItem())); QObject::connect(m_ui.ControlsEditToolButton, SIGNAL(clicked()), SLOT(controlsEditItem())); QObject::connect(m_ui.ControlsDeleteToolButton, SIGNAL(clicked()), SLOT(controlsDeleteItem())); QObject::connect(m_ui.ControlsTreeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)), SLOT(controlsCurrentChanged())); QObject::connect(m_ui.ControlsTreeWidget, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(controlsChanged())); QObject::connect(m_ui.ControlsEnabledCheckBox, SIGNAL(toggled(bool)), SLOT(controlsEnabled(bool))); QObject::connect(m_ui.ProgramsAddBankToolButton, SIGNAL(clicked()), SLOT(programsAddBankItem())); QObject::connect(m_ui.ProgramsAddItemToolButton, SIGNAL(clicked()), SLOT(programsAddItem())); QObject::connect(m_ui.ProgramsEditToolButton, SIGNAL(clicked()), SLOT(programsEditItem())); QObject::connect(m_ui.ProgramsDeleteToolButton, SIGNAL(clicked()), SLOT(programsDeleteItem())); QObject::connect(m_ui.ProgramsAddPresetsToolButton, SIGNAL(clicked()), SLOT(programsAddPresetItems())); QObject::connect(m_ui.ProgramsTreeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)), SLOT(programsCurrentChanged())); QObject::connect(m_ui.ProgramsTreeWidget, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(programsChanged())); QObject::connect(m_ui.ProgramsTreeWidget, SIGNAL(itemActivated(QTreeWidgetItem *, int)), SLOT(programsActivated())); QObject::connect(m_ui.ProgramsEnabledCheckBox, SIGNAL(toggled(bool)), SLOT(programsEnabled(bool))); QObject::connect(m_ui.PresetsAddBankToolButton, SIGNAL(clicked()), SLOT(presetsAddBankItem())); QObject::connect(m_ui.PresetsAddItemToolButton, SIGNAL(clicked()), SLOT(presetsAddItem())); QObject::connect(m_ui.PresetsRenameToolButton, SIGNAL(clicked()), SLOT(presetsRenameItem())); QObject::connect(m_ui.PresetsRemoveToolButton, SIGNAL(clicked()), SLOT(presetsRemoveItem())); QObject::connect(m_ui.PresetsImportToolButton, SIGNAL(clicked()), SLOT(presetsImportItems())); QObject::connect(m_ui.PresetsExportToolButton, SIGNAL(clicked()), SLOT(presetsExportItems())); QObject::connect(m_ui.PresetsTreeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)), SLOT(presetsCurrentChanged())); QObject::connect(m_ui.PresetsTreeWidget, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(presetsChanged())); QObject::connect(m_ui.PresetsTreeWidget, SIGNAL(itemActivated(QTreeWidgetItem *, int)), SLOT(presetsActivated())); // Custom context menu... m_ui.ControlsTreeWidget->setContextMenuPolicy(Qt::CustomContextMenu); m_ui.ProgramsTreeWidget->setContextMenuPolicy(Qt::CustomContextMenu); m_ui.PresetsTreeWidget->setContextMenuPolicy(Qt::CustomContextMenu); QObject::connect(m_ui.ControlsTreeWidget, SIGNAL(customContextMenuRequested(const QPoint&)), SLOT(controlsContextMenuRequested(const QPoint&))); QObject::connect(m_ui.ProgramsTreeWidget, SIGNAL(customContextMenuRequested(const QPoint&)), SLOT(programsContextMenuRequested(const QPoint&))); QObject::connect(m_ui.PresetsTreeWidget, SIGNAL(customContextMenuRequested(const QPoint&)), SLOT(presetsContextMenuRequested(const QPoint&))); // Tuning slots... QObject::connect(m_ui.TuningTabBar, SIGNAL(currentChanged(int)), SLOT(tuningTabChanged(int))); QObject::connect(m_ui.TuningEnabledCheckBox, SIGNAL(toggled(bool)), SLOT(tuningChanged())); QObject::connect(m_ui.TuningRefNoteComboBox, SIGNAL(activated(int)), SLOT(tuningChanged())); QObject::connect(m_ui.TuningRefPitchSpinBox, SIGNAL(valueChanged(double)), SLOT(tuningChanged())); QObject::connect(m_ui.TuningRefNotePushButton, SIGNAL(clicked()), SLOT(tuningRefNoteClicked())); QObject::connect(m_ui.TuningScaleFileComboBox, SIGNAL(activated(int)), SLOT(tuningChanged())); QObject::connect(m_ui.TuningScaleFileToolButton, SIGNAL(clicked()), SLOT(tuningScaleFileClicked())); QObject::connect(m_ui.TuningKeyMapFileToolButton, SIGNAL(clicked()), SLOT(tuningKeyMapFileClicked())); QObject::connect(m_ui.TuningKeyMapFileComboBox, SIGNAL(activated(int)), SLOT(tuningChanged())); // Options slots... QObject::connect(m_ui.PresetsPreviewCheckBox, SIGNAL(toggled(bool)), SLOT(optionsChanged())); QObject::connect(m_ui.ProgramsPreviewCheckBox, SIGNAL(toggled(bool)), SLOT(optionsChanged())); QObject::connect(m_ui.UseNativeDialogsCheckBox, SIGNAL(toggled(bool)), SLOT(optionsChanged())); QObject::connect(m_ui.KnobDialModeComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); QObject::connect(m_ui.KnobEditModeComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); QObject::connect(m_ui.CustomColorThemeComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); QObject::connect(m_ui.CustomColorThemeToolButton, SIGNAL(clicked()), SLOT(editCustomColorThemes())); QObject::connect(m_ui.CustomStyleThemeComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); QObject::connect(m_ui.FrameTimeFormatComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); QObject::connect(m_ui.RandomizePercentSpinBox, SIGNAL(valueChanged(double)), SLOT(optionsChanged())); QObject::connect(m_ui.PitchShiftTypeComboBox, SIGNAL(activated(int)), SLOT(optionsChanged())); // Dialog commands... QObject::connect(m_ui.DialogButtonBox, SIGNAL(accepted()), SLOT(accept())); QObject::connect(m_ui.DialogButtonBox, SIGNAL(rejected()), SLOT(reject())); // Done. stabilize(); } // dtor. samplv1widget_config::~samplv1widget_config (void) { delete p_ui; } samplv1_ui *samplv1widget_config::ui_instance (void) const { return m_pSamplUi; } // controllers command slots. void samplv1widget_config::controlsAddItem (void) { m_ui.ControlsTreeWidget->addControlItem(); controlsChanged(); } void samplv1widget_config::controlsEditItem (void) { QTreeWidgetItem *pItem = m_ui.ControlsTreeWidget->currentItem(); if (pItem) m_ui.ControlsTreeWidget->editItem(pItem, 0); controlsChanged(); } void samplv1widget_config::controlsDeleteItem (void) { QTreeWidgetItem *pItem = m_ui.ControlsTreeWidget->currentItem(); if (pItem) delete pItem; controlsChanged(); } // controllers janitorial slots. void samplv1widget_config::controlsCurrentChanged (void) { stabilize(); } void samplv1widget_config::controlsContextMenuRequested ( const QPoint& pos ) { QTreeWidgetItem *pItem = m_ui.ControlsTreeWidget->currentItem(); QMenu menu(this); QAction *pAction; bool bEnabled = (m_pSamplUi && m_pSamplUi->controls() != nullptr); pAction = menu.addAction(QIcon(":/images/samplv1_preset.png"), tr("&Add Controller"), this, SLOT(controlsAddItem())); pAction->setEnabled(bEnabled); menu.addSeparator(); bEnabled = bEnabled && (pItem != nullptr); pAction = menu.addAction(QIcon(":/images/presetEdit.png"), tr("&Edit"), this, SLOT(controlsEditItem())); pAction->setEnabled(bEnabled); menu.addSeparator(); pAction = menu.addAction(QIcon(":/images/presetDelete.png"), tr("&Delete"), this, SLOT(controlsDeleteItem())); pAction->setEnabled(bEnabled); menu.exec(m_ui.ControlsTreeWidget->mapToGlobal(pos)); } void samplv1widget_config::controlsEnabled ( bool bOn ) { if (m_pSamplUi) { samplv1_controls *pControls = m_pSamplUi->controls(); if (pControls && m_pSamplUi->isPlugin()) pControls->enabled(bOn); } controlsChanged(); } void samplv1widget_config::controlsChanged (void) { ++m_iDirtyControls; stabilize(); } // programs command slots. void samplv1widget_config::programsAddBankItem (void) { m_ui.ProgramsTreeWidget->addBankItem(); programsChanged(); } void samplv1widget_config::programsAddItem (void) { m_ui.ProgramsTreeWidget->addProgramItem(); programsChanged(); } void samplv1widget_config::programsEditItem (void) { QTreeWidgetItem *pItem = m_ui.ProgramsTreeWidget->currentItem(); if (pItem) m_ui.ProgramsTreeWidget->editItem(pItem, 1); programsChanged(); } void samplv1widget_config::programsDeleteItem (void) { QTreeWidgetItem *pItem = m_ui.ProgramsTreeWidget->currentItem(); if (pItem) delete pItem; programsChanged(); } void samplv1widget_config::programsAddPresetItems (void) { // Get the presets... samplv1_presets presets; m_ui.PresetsTreeWidget->savePresets(&presets); m_ui.ProgramsTreeWidget->addPresetItems(&presets); programsChanged(); } // presets command slots. void samplv1widget_config::presetsAddBankItem (void) { m_ui.PresetsTreeWidget->addBankItem(); presetsChanged(); } void samplv1widget_config::presetsAddItem (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { m_ui.PresetsTreeWidget->setPresetDir(pConfig->sPresetDir); m_ui.PresetsTreeWidget->setPresetExt(PROJECT_NAME); m_ui.PresetsTreeWidget->setDontUseNativeDialogs( pConfig->bDontUseNativeDialogs); } m_ui.PresetsTreeWidget->addPresetItem(); presetsChanged(); } void samplv1widget_config::presetsRenameItem (void) { QTreeWidgetItem *pItem = m_ui.PresetsTreeWidget->currentItem(); if (pItem) m_ui.PresetsTreeWidget->editItem(pItem, 0); presetsChanged(); } void samplv1widget_config::presetsRemoveItem (void) { QTreeWidgetItem *pItem = m_ui.PresetsTreeWidget->currentItem(); if (pItem) delete pItem; presetsChanged(); } void samplv1widget_config::presetsImportItems (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; QString sFilename; const QString sExt(PROJECT_NAME ".conf"); const QString& sTitle = tr("Import Bank/Presets"); QStringList filters; filters.append(tr("Bank/Preset files (*.%1)").arg(sExt)); filters.append(tr("All files (*.*)")); const QString& sFilter = filters.join(";;"); QWidget *pParentWidget = nullptr; QFileDialog::Options options; if (pConfig->bDontUseNativeDialogs) { options |= QFileDialog::DontUseNativeDialog; pParentWidget = QWidget::window(); } #if 1//QT_VERSION < QT_VERSION_CHECK(4, 4, 0) sFilename = QFileDialog::getOpenFileName(pParentWidget, sTitle, pConfig->sPresetDir, sFilter, nullptr, options); #else QFileDialog fileDialog(pParentWidget, sTitle, pConfig->sPresetDir, sFilter); fileDialog.setAcceptMode(QFileDialog::AcceptOpen); fileDialog.setFileMode(QFileDialog::ExistingFiles); fileDialog.setDefaultSuffix(pConfig->sPresetExt); QList urls(fileDialog.sidebarUrls()); urls.append(QUrl::fromLocalFile(pConfig->sPresetDir)); fileDialog.setSidebarUrls(urls); fileDialog.setOptions(options); if (fileDialog.exec()) sFilename = fileDialog.selectedFiles().first(); #endif if (sFilename.isEmpty()) return; const QString& sPreset = m_ui.PresetsTreeWidget->currentPreset(); samplv1_presets presets; m_ui.PresetsTreeWidget->savePresets(&presets); samplv1_config::importPresets(sFilename, &presets); m_ui.PresetsTreeWidget->loadPresets(&presets); m_ui.PresetsTreeWidget->setPresetItem(sPreset); stabilize(); } void samplv1widget_config::presetsExportItems (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; QString sFilename; const QString sExt(PROJECT_NAME ".conf"); const QString& sTitle = tr("Export Bank/Presets"); QStringList filters; filters.append(tr("Bank/Preset files (*.%1)").arg(sExt)); filters.append(tr("All files (*.*)")); const QString& sFilter = filters.join(";;"); QWidget *pParentWidget = nullptr; QFileDialog::Options options; if (pConfig->bDontUseNativeDialogs) { options |= QFileDialog::DontUseNativeDialog; pParentWidget = QWidget::window(); } #if 1//QT_VERSION < QT_VERSION_CHECK(4, 4, 0) sFilename = QFileDialog::getSaveFileName(pParentWidget, sTitle, pConfig->sPresetDir, sFilter, nullptr, options); #else QFileDialog fileDialog(pParentWidget, sTitle, pConfig->sPresetDir, sFilter); fileDialog.setAcceptMode(QFileDialog::AcceptSave); fileDialog.setFileMode(QFileDialog::AnyFiles); fileDialog.setDefaultSuffix(pConfig->sPresetExt); QList urls(fileDialog.sidebarUrls()); urls.append(QUrl::fromLocalFile(pConfig->sPresetDir)); fileDialog.setSidebarUrls(urls); fileDialog.setOptions(options); if (fileDialog.exec()) sFilename = fileDialog.selectedFiles().first(); #endif if (sFilename.isEmpty()) return; if (QFileInfo(sFilename).completeSuffix() != sExt) sFilename += '.' + sExt; samplv1_presets presets; m_ui.PresetsTreeWidget->savePresets(&presets); samplv1_config::exportPresets(sFilename, &presets); stabilize(); } // programs janitor slots. void samplv1widget_config::programsCurrentChanged (void) { stabilize(); } void samplv1widget_config::programsContextMenuRequested ( const QPoint& pos ) { QTreeWidgetItem *pItem = m_ui.ProgramsTreeWidget->currentItem(); QMenu menu(this); QAction *pAction; bool bEnabled = (m_pSamplUi && m_pSamplUi->programs() != nullptr); pAction = menu.addAction(QIcon(":/images/presetBank.png"), tr("Add &Bank"), this, SLOT(programsAddBankItem())); pAction->setEnabled(bEnabled); pAction = menu.addAction(QIcon(":/images/samplv1_preset.png"), tr("&Add Program"), this, SLOT(programsAddItem())); pAction->setEnabled(bEnabled); menu.addSeparator(); bEnabled = bEnabled && (pItem != nullptr); pAction = menu.addAction(QIcon(":/images/presetEdit.png"), tr("&Edit"), this, SLOT(programsEditItem())); pAction->setEnabled(bEnabled); menu.addSeparator(); pAction = menu.addAction(QIcon(":/images/presetDelete.png"), tr("&Delete"), this, SLOT(programsDeleteItem())); pAction->setEnabled(bEnabled); menu.exec(m_ui.ProgramsTreeWidget->mapToGlobal(pos)); } void samplv1widget_config::programsEnabled ( bool bOn ) { if (m_pSamplUi) { samplv1_programs *pPrograms = m_pSamplUi->programs(); if (pPrograms && m_pSamplUi->isPlugin()) pPrograms->enabled(bOn); } programsChanged(); } void samplv1widget_config::programsChanged (void) { ++m_iDirtyPrograms; stabilize(); } void samplv1widget_config::programsActivated (void) { if (m_ui.ProgramsPreviewCheckBox->isChecked()) loadPreset(m_ui.ProgramsTreeWidget->currentProgramName()); stabilize(); } // programs janitor slots. void samplv1widget_config::presetsCurrentChanged (void) { stabilize(); } void samplv1widget_config::presetsContextMenuRequested ( const QPoint& pos ) { QTreeWidgetItem *pCurrentItem = m_ui.PresetsTreeWidget->currentItem(); QMenu menu(this); QAction *action; action = menu.addAction(QIcon(":/images/presetBank.png"), tr("Add &Bank"), this, SLOT(presetsAddBankItem())); action->setEnabled(true); action = menu.addAction(QIcon(":/images/samplv1_preset.png"), tr("Add &Preset"), this, SLOT(presetsAddItem())); action->setEnabled(true); menu.addSeparator(); action = menu.addAction(QIcon(":/images/presetEdit.png"), tr("&Rename"), this, SLOT(presetsRenameItem())); action->setEnabled(pCurrentItem != nullptr); menu.addSeparator(); action = menu.addAction(QIcon(":/images/presetDelete.png"), tr("Re&move"), this, SLOT(presetsRemoveItem())); action->setEnabled(pCurrentItem != nullptr); menu.exec(m_ui.PresetsTreeWidget->mapToGlobal(pos)); } void samplv1widget_config::presetsChanged (void) { ++m_iDirtyPresets; stabilize(); } void samplv1widget_config::presetsActivated (void) { if (m_ui.PresetsPreviewCheckBox->isChecked()) loadPreset(m_ui.PresetsTreeWidget->currentPreset()); stabilize(); } // tuning command slots void samplv1widget_config::tuningTabChanged ( int iTuningTab ) { // Prevent loss of some tuning changes here... if (m_iDirtyTuning > 0 && QMessageBox::warning(this, tr("Warning"), tr("%1 tuning settings have been changed.\n\n" "Do you want to discard the changes?") .arg(m_ui.TuningTabBar->tabText(1 - iTuningTab).remove('&')), QMessageBox::Discard | QMessageBox::Cancel) == QMessageBox::Cancel) { const bool bBlockSignals = m_ui.TuningTabBar->blockSignals(true); m_ui.TuningTabBar->setCurrentIndex(1 - iTuningTab); m_ui.TuningTabBar->blockSignals(bBlockSignals); return; } if (iTuningTab == 0) { // Global (default) scope... samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) { m_ui.TuningEnabledCheckBox->setChecked(pConfig->bTuningEnabled); m_ui.TuningRefNoteComboBox->setCurrentIndex(pConfig->iTuningRefNote); m_ui.TuningRefPitchSpinBox->setValue(double(pConfig->fTuningRefPitch)); setComboBoxCurrentItem( m_ui.TuningScaleFileComboBox, QFileInfo(pConfig->sTuningScaleFile)); setComboBoxCurrentItem( m_ui.TuningKeyMapFileComboBox, QFileInfo(pConfig->sTuningKeyMapFile)); } } else if (m_pSamplUi) { // Instance scope... m_ui.TuningEnabledCheckBox->setChecked(m_pSamplUi->isTuningEnabled()); m_ui.TuningRefNoteComboBox->setCurrentIndex(m_pSamplUi->tuningRefNote()); m_ui.TuningRefPitchSpinBox->setValue(double(m_pSamplUi->tuningRefPitch())); setComboBoxCurrentItem( m_ui.TuningScaleFileComboBox, QFileInfo(QString::fromUtf8(m_pSamplUi->tuningScaleFile()))); setComboBoxCurrentItem( m_ui.TuningKeyMapFileComboBox, QFileInfo(QString::fromUtf8(m_pSamplUi->tuningKeyMapFile()))); } // Reset tuning dirty flag... m_iDirtyTuning = 0; } void samplv1widget_config::tuningRefNoteClicked (void) { m_ui.TuningRefNoteComboBox->setCurrentIndex(69); m_ui.TuningRefPitchSpinBox->setValue(double(440.0f)); tuningChanged(); } void samplv1widget_config::tuningScaleFileClicked (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; QString sTuningScaleFile = m_ui.TuningScaleFileComboBox->currentText(); const QString sExt("scl"); const QString& sTitle = tr("Open Scale File"); QStringList filters; filters.append(tr("Scale files (*.%1)").arg(sExt)); filters.append(tr("All files (*.*)")); const QString& sFilter = filters.join(";;"); QWidget *pParentWidget = nullptr; QFileDialog::Options options; if (pConfig->bDontUseNativeDialogs) { options |= QFileDialog::DontUseNativeDialog; pParentWidget = QWidget::window(); } #if 1//QT_VERSION < QT_VERSION_CHECK(4, 4, 0) sTuningScaleFile = QFileDialog::getOpenFileName(pParentWidget, sTitle, pConfig->sTuningScaleDir, sFilter, nullptr, options); #else QFileDialog fileDialog(pParentWidget, sTitle, sTuningScaleFile, sFilter); fileDialog.setAcceptMode(QFileDialog::AcceptOpen); fileDialog.setFileMode(QFileDialog::ExistingFiles); fileDialog.setDefaultSuffix(sExt); QList urls(fileDialog.sidebarUrls()); urls.append(QUrl::fromLocalFile(pConfig->sTuningScaleDir)); fileDialog.setSidebarUrls(urls); fileDialog.setOptions(options); if (fileDialog.exec()) sTuningScaleFile = fileDialog.selectedFiles().first(); #endif if (!sTuningScaleFile.isEmpty()) { const QFileInfo info(sTuningScaleFile); if (setComboBoxCurrentItem(m_ui.TuningScaleFileComboBox, info)) { pConfig->sTuningScaleDir = info.absolutePath(); tuningChanged(); } } } void samplv1widget_config::tuningKeyMapFileClicked (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; QString sTuningKeyMapFile = m_ui.TuningKeyMapFileComboBox->currentText(); const QString sExt("kbm"); const QString& sTitle = tr("Open Key Map File"); QStringList filters; filters.append(tr("Key Map files (*.%1)").arg(sExt)); filters.append(tr("All files (*.*)")); const QString& sFilter = filters.join(";;"); QWidget *pParentWidget = nullptr; QFileDialog::Options options; if (pConfig->bDontUseNativeDialogs) { options |= QFileDialog::DontUseNativeDialog; pParentWidget = QWidget::window(); } #if 1//QT_VERSION < QT_VERSION_CHECK(4, 4, 0) sTuningKeyMapFile = QFileDialog::getOpenFileName(pParentWidget, sTitle, pConfig->sTuningKeyMapDir, sFilter, nullptr, options); #else QFileDialog fileDialog(pParentWidget, sTitle, sTuningKeyMapFile, sFilter); fileDialog.setAcceptMode(QFileDialog::AcceptOpen); fileDialog.setFileMode(QFileDialog::ExistingFiles); fileDialog.setDefaultSuffix(sExt); QList urls(fileDialog.sidebarUrls()); urls.append(QUrl::fromLocalFile(pConfig->sTuningKeyMapDir)); fileDialog.setSidebarUrls(urls); fileDialog.setOptions(options); if (fileDialog.exec()) sTuningKeyMapFile = fileDialog.selectedFiles().first(); #endif if (!sTuningKeyMapFile.isEmpty()) { const QFileInfo info(sTuningKeyMapFile); if (setComboBoxCurrentItem(m_ui.TuningKeyMapFileComboBox, info)) { pConfig->sTuningKeyMapDir = info.absolutePath(); tuningChanged(); } } } void samplv1widget_config::tuningChanged (void) { ++m_iDirtyTuning; stabilize(); } // options slot. void samplv1widget_config::optionsChanged (void) { ++m_iDirtyOptions; stabilize(); } // stabilizer. void samplv1widget_config::stabilize (void) { QTreeWidgetItem *pItem = m_ui.ControlsTreeWidget->currentItem(); bool bEnabled = (m_pSamplUi && m_pSamplUi->controls() != nullptr); m_ui.ControlsAddItemToolButton->setEnabled(bEnabled); bEnabled = bEnabled && (pItem != nullptr); m_ui.ControlsEditToolButton->setEnabled(bEnabled); m_ui.ControlsDeleteToolButton->setEnabled(bEnabled); pItem = m_ui.ProgramsTreeWidget->currentItem(); bEnabled = (m_pSamplUi && m_pSamplUi->programs() != nullptr && m_bPresets); m_ui.ProgramsPreviewCheckBox->setEnabled( bEnabled && m_ui.ProgramsEnabledCheckBox->isChecked()); m_ui.ProgramsAddBankToolButton->setEnabled(bEnabled); m_ui.ProgramsAddItemToolButton->setEnabled(bEnabled); bEnabled = bEnabled && (pItem != nullptr); m_ui.ProgramsEditToolButton->setEnabled(bEnabled); m_ui.ProgramsDeleteToolButton->setEnabled(bEnabled); pItem = m_ui.PresetsTreeWidget->currentItem(); bEnabled = m_bPresets; m_ui.PresetsExportToolButton->setEnabled(bEnabled); m_ui.PresetsPreviewCheckBox->setEnabled(bEnabled); bEnabled = bEnabled && (pItem != nullptr); m_ui.PresetsRenameToolButton->setEnabled(bEnabled); m_ui.PresetsRemoveToolButton->setEnabled(bEnabled); bEnabled = m_ui.TuningEnabledCheckBox->isChecked(); const bool bTuningRefEnabled = bEnabled && comboBoxCurrentItem(m_ui.TuningKeyMapFileComboBox).isEmpty(); m_ui.TuningRefNoteTextLabel->setEnabled(bTuningRefEnabled); m_ui.TuningRefNoteComboBox->setEnabled(bTuningRefEnabled); m_ui.TuningRefPitchSpinBox->setEnabled(bTuningRefEnabled); m_ui.TuningRefNotePushButton->setEnabled(bTuningRefEnabled); m_ui.TuningScaleFileTextLabel->setEnabled(bEnabled); m_ui.TuningScaleFileComboBox->setEnabled(bEnabled); m_ui.TuningScaleFileToolButton->setEnabled(bEnabled); m_ui.TuningKeyMapFileTextLabel->setEnabled(bEnabled); m_ui.TuningKeyMapFileComboBox->setEnabled(bEnabled); m_ui.TuningKeyMapFileToolButton->setEnabled(bEnabled); const bool bValid = (m_iDirtyTuning > 0 || m_iDirtyControls > 0 || m_iDirtyPrograms > 0 || m_iDirtyPresets > 0 || m_ui.PresetsTreeWidget->isDirtyPresets() || m_iDirtyOptions > 0 || m_iLoadPreset > 0); m_ui.DialogButtonBox->button(QDialogButtonBox::Ok)->setEnabled(bValid); } // dialog slots. void samplv1widget_config::accept (void) { if (m_pSamplUi == nullptr) return; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; samplv1widget *pParentWidget = qobject_cast (parentWidget()); if (pParentWidget == nullptr) return; if (m_iDirtyTuning > 0) { // Micro-tonal tuning settings... if (m_ui.TuningTabBar->currentIndex() == 0) { // Global (default) scope... pConfig->bTuningEnabled = m_ui.TuningEnabledCheckBox->isChecked(); pConfig->iTuningRefNote = m_ui.TuningRefNoteComboBox->currentIndex(); pConfig->fTuningRefPitch = float(m_ui.TuningRefPitchSpinBox->value()); pConfig->sTuningScaleFile = comboBoxCurrentItem(m_ui.TuningScaleFileComboBox); pConfig->sTuningKeyMapFile = comboBoxCurrentItem(m_ui.TuningKeyMapFileComboBox); } else { m_pSamplUi->setTuningEnabled( m_ui.TuningEnabledCheckBox->isChecked()); m_pSamplUi->setTuningRefNote( m_ui.TuningRefNoteComboBox->currentIndex()); m_pSamplUi->setTuningRefPitch( float(m_ui.TuningRefPitchSpinBox->value())); m_pSamplUi->setTuningScaleFile(comboBoxCurrentItem( m_ui.TuningScaleFileComboBox).toUtf8().constData()); m_pSamplUi->setTuningKeyMapFile(comboBoxCurrentItem( m_ui.TuningKeyMapFileComboBox).toUtf8().constData()); } // Reset/update micro-tonal tuning... m_pSamplUi->resetTuning(); // Save other conveniency options... saveComboBoxHistory(m_ui.TuningScaleFileComboBox); saveComboBoxHistory(m_ui.TuningKeyMapFileComboBox); // Reset dirty flag. m_iDirtyTuning = 0; } if (m_iDirtyControls > 0) { // Save controls... samplv1_controls *pControls = m_pSamplUi->controls(); if (pControls) { m_ui.ControlsTreeWidget->saveControls(pControls); pConfig->saveControls(pControls); // Reset dirty flag. m_iDirtyControls = 0; } } if (m_iDirtyPrograms > 0) { // Save programs... samplv1_programs *pPrograms = m_pSamplUi->programs(); if (pPrograms) { m_ui.ProgramsTreeWidget->savePrograms(pPrograms); pConfig->savePrograms(pPrograms); // Reset dirty flag. m_iDirtyPrograms = 0; } } if (m_iDirtyPresets > 0 || m_ui.PresetsTreeWidget->isDirtyPresets()) { // Save presets... samplv1_presets *pPresets = &(pConfig->presets); if (pPresets) { m_ui.PresetsTreeWidget->savePresets(pPresets); m_ui.PresetsTreeWidget->setDirtyPresets(false); // Update main preset selector. pParentWidget->loadPresets(); // Sync to disk. pConfig->savePresets(); // Reset dirty flag. m_iDirtyPresets = 0; } } if (m_iDirtyOptions > 0) { // Save options... pConfig->bPresetsPreview = m_ui.PresetsPreviewCheckBox->isChecked(); pConfig->bProgramsPreview = m_ui.ProgramsPreviewCheckBox->isChecked(); pConfig->bUseNativeDialogs = m_ui.UseNativeDialogsCheckBox->isChecked(); pConfig->bDontUseNativeDialogs = !pConfig->bUseNativeDialogs; pConfig->fRandomizePercent = float(m_ui.RandomizePercentSpinBox->value()); const int iOldKnobDialMode = pConfig->iKnobDialMode; const int iOldKnobEditMode = pConfig->iKnobEditMode; const int iOldFrameTimeFormat = pConfig->iFrameTimeFormat; const int iOldPitchShiftType = pConfig->iPitchShiftType; pConfig->iKnobDialMode = m_ui.KnobDialModeComboBox->currentIndex(); pConfig->iKnobEditMode = m_ui.KnobEditModeComboBox->currentIndex(); pConfig->iFrameTimeFormat = m_ui.FrameTimeFormatComboBox->currentIndex(); pConfig->iPitchShiftType = m_ui.PitchShiftTypeComboBox->currentIndex(); int iNeedRestart = 0; if (!m_pSamplUi->isPlugin()) { const QString sOldCustomStyleTheme = pConfig->sCustomStyleTheme; if (m_ui.CustomStyleThemeComboBox->currentIndex() > 0) pConfig->sCustomStyleTheme = m_ui.CustomStyleThemeComboBox->currentText(); else pConfig->sCustomStyleTheme.clear(); if (pConfig->sCustomStyleTheme != sOldCustomStyleTheme) { if (pConfig->sCustomStyleTheme.isEmpty()) { ++iNeedRestart; } else { QApplication::setStyle( QStyleFactory::create(pConfig->sCustomStyleTheme)); } } } const QString sOldCustomColorTheme = pConfig->sCustomColorTheme; if (m_ui.CustomColorThemeComboBox->currentIndex() > 0) pConfig->sCustomColorTheme = m_ui.CustomColorThemeComboBox->currentText(); else pConfig->sCustomColorTheme.clear(); if (pConfig->sCustomColorTheme != sOldCustomColorTheme) { if (pConfig->sCustomColorTheme.isEmpty()) { ++iNeedRestart; } else { QPalette pal; if (samplv1widget_palette::namedPalette( pConfig, pConfig->sCustomColorTheme, pal)) pParentWidget->setPalette(pal); } } if (pConfig->iKnobDialMode != iOldKnobDialMode || pConfig->iKnobEditMode != iOldKnobEditMode || pConfig->iFrameTimeFormat != iOldFrameTimeFormat) { pParentWidget->updateConfig(); } if (pConfig->iPitchShiftType != iOldPitchShiftType) { ++iNeedRestart; samplv1_pshifter::setDefaultType( samplv1_pshifter::Type(pConfig->iPitchShiftType)); } // Show restart message if needed... if (iNeedRestart > 0) { QMessageBox::information(this, tr("Information"), tr("Some settings may be only effective\n" "next time you start this application.")); } // Reset dirty flag. m_iDirtyOptions = 0; } // Just go with dialog acceptance. QDialog::accept(); } void samplv1widget_config::reject (void) { bool bReject = true; // Check if there's any pending changes... if (m_iDirtyTuning > 0 || m_iDirtyControls > 0 || m_iDirtyPrograms > 0 || m_iDirtyPresets > 0 || m_ui.PresetsTreeWidget->isDirtyPresets() || m_iDirtyOptions > 0 || m_iLoadPreset > 0) { QMessageBox::StandardButtons buttons = QMessageBox::Discard | QMessageBox::Cancel; if (m_ui.DialogButtonBox->button(QDialogButtonBox::Ok)->isEnabled()) buttons |= QMessageBox::Apply; switch (QMessageBox::warning(this, tr("Warning"), tr("Some settings have been changed.\n\n" "Do you want to apply the changes?"), buttons)) { case QMessageBox::Apply: accept(); return; case QMessageBox::Discard: break; default: // Cancel. bReject = false; } } if (bReject && m_iLoadPreset > 0) loadPreset(m_sSavePreset); if (bReject) QDialog::reject(); } // Custom color palette theme manager. void samplv1widget_config::editCustomColorThemes (void) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; samplv1widget_palette form(this); form.setSettings(pConfig); QString sCustomColorTheme; int iDirtyCustomColorTheme = 0; const int iCustomColorTheme = m_ui.CustomColorThemeComboBox->currentIndex(); if (iCustomColorTheme > 0) { sCustomColorTheme = m_ui.CustomColorThemeComboBox->itemText(iCustomColorTheme); form.setPaletteName(sCustomColorTheme); } if (form.exec() == QDialog::Accepted) { sCustomColorTheme = form.paletteName(); ++iDirtyCustomColorTheme; } if (iDirtyCustomColorTheme > 0 || form.isDirty()) { resetCustomColorThemes(sCustomColorTheme); optionsChanged(); } } // Custom color palette themes settler. void samplv1widget_config::resetCustomColorThemes ( const QString& sCustomColorTheme ) { m_ui.CustomColorThemeComboBox->clear(); m_ui.CustomColorThemeComboBox->addItem( tr(g_pszDefName)); samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig) m_ui.CustomColorThemeComboBox->addItems( samplv1widget_palette::namedPaletteList(pConfig)); int iCustomColorTheme = 0; if (!sCustomColorTheme.isEmpty()) { iCustomColorTheme = m_ui.CustomColorThemeComboBox->findText( sCustomColorTheme); if (iCustomColorTheme < 0) iCustomColorTheme = 0; } m_ui.CustomColorThemeComboBox->setCurrentIndex(iCustomColorTheme); } // Custom widget style themes settler. void samplv1widget_config::resetCustomStyleThemes ( const QString& sCustomStyleTheme ) { m_ui.CustomStyleThemeComboBox->clear(); m_ui.CustomStyleThemeComboBox->addItem( tr(g_pszDefName)); m_ui.CustomStyleThemeComboBox->addItems( QStyleFactory::keys()); int iCustomStyleTheme = 0; if (!sCustomStyleTheme.isEmpty() && m_pSamplUi && !m_pSamplUi->isPlugin()) { iCustomStyleTheme = m_ui.CustomStyleThemeComboBox->findText( sCustomStyleTheme); if (iCustomStyleTheme < 0) iCustomStyleTheme = 0; } m_ui.CustomStyleThemeComboBox->setCurrentIndex(iCustomStyleTheme); } // Combo box history persistence helper implementation. void samplv1widget_config::loadComboBoxHistory ( QComboBox *pComboBox ) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; // Load combobox list from configuration settings file... const bool bBlockSignals = pComboBox->blockSignals(true); pConfig->beginGroup("/History"); const QStringList& history = pConfig->value('/' + pComboBox->objectName()).toStringList(); QStringListIterator iter(history); while (iter.hasNext()) { const QFileInfo info(iter.next()); if (info.exists() && info.isReadable()) { const QString& sPath = info.canonicalFilePath(); pComboBox->insertItem(0, info.fileName(), sPath); } } pConfig->endGroup(); pComboBox->blockSignals(bBlockSignals); } void samplv1widget_config::saveComboBoxHistory ( QComboBox *pComboBox ) { samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; // Save combobox list to configuration settings file... const bool bBlockSignals = pComboBox->blockSignals(true); pConfig->beginGroup("/History"); QStringList history; const int iCount = pComboBox->count(); for (int i = 0; i < iCount; ++i) { const QString& sData = pComboBox->itemData(i).toString(); if (!sData.isEmpty()) history.prepend(sData); } pConfig->setValue('/' + pComboBox->objectName(), history); pConfig->endGroup(); pComboBox->blockSignals(bBlockSignals); } // Combo box settter/gettter helper prototypes. bool samplv1widget_config::setComboBoxCurrentItem ( QComboBox *pComboBox, const QFileInfo& info ) { const bool bBlockSignals = pComboBox->blockSignals(true); const bool bResult = info.exists() && info.isReadable(); if (bResult) { const QString& sData = info.canonicalFilePath(); int iIndex = pComboBox->findData(sData); if (iIndex < 0) { pComboBox->insertItem(0, info.fileName(), sData); iIndex = 0; } pComboBox->setCurrentIndex(iIndex); pComboBox->setToolTip(sData); } else { pComboBox->setCurrentIndex(pComboBox->count() - 1); // pComboBox->setToolTip(pComboBox->currentText()); } pComboBox->blockSignals(bBlockSignals); return bResult; } QString samplv1widget_config::comboBoxCurrentItem ( QComboBox *pComboBox ) { QString sData; const int iIndex = pComboBox->currentIndex(); if (iIndex >= 0) sData = pComboBox->itemData(iIndex).toString(); return sData; } // Programs/preset preview stuff... void samplv1widget_config::loadPreset ( const QString& sPreset ) { if (sPreset.isEmpty()) return; samplv1_config *pConfig = samplv1_config::getInstance(); if (pConfig == nullptr) return; const QString& sPresetFile = pConfig->presetFile(sPreset); if (sPresetFile.isEmpty()) return; samplv1widget *pParentWidget = qobject_cast (parentWidget()); if (pParentWidget && pParentWidget->loadPreset(sPreset, sPresetFile)) { if (++m_iLoadPreset == 1) m_sSavePreset = pConfig->sPreset; pConfig->sPreset = sPreset; } } // end of samplv1widget_config.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_controls.cpp0000644000000000000000000000013215245503134020167 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_controls.cpp0000644000175000001440000005612415245503134020167 0ustar00rncbcusers// samplv1widget_controls.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1widget_controls.h" #include "samplv1_controls.h" #include "samplv1_config.h" #include #include #include #include #include //---------------------------------------------------------------------------- // samplv1widget_controls::ItemDelegate -- Custom (tree) list item delegate. class samplv1widget_controls::ItemDelegate : public QStyledItemDelegate { public: // ctor. ItemDelegate(QObject *pParent = nullptr); // painting QSize sizeHint( const QStyleOptionViewItem& option, const QModelIndex& index) const; // editing QWidget *createEditor(QWidget *pParent, const QStyleOptionViewItem& option, const QModelIndex& index) const; void setEditorData(QWidget *pEditor, const QModelIndex& index) const; void setModelData(QWidget *pEditor, QAbstractItemModel *pModel, const QModelIndex& index) const; }; //---------------------------------------------------------------------------- // MIDI Controller Names - Default controller names hash map. const samplv1widget_controls::Names& samplv1widget_controls::controllerNames (void) { static struct { unsigned short param; const char *name; } s_controllers[] = { { 0, QT_TR_NOOP("Bank Select (coarse)") }, { 1, QT_TR_NOOP("Modulation Wheel (coarse)") }, { 2, QT_TR_NOOP("Breath Controller (coarse)") }, { 4, QT_TR_NOOP("Foot Pedal (coarse)") }, { 5, QT_TR_NOOP("Portamento Time (coarse)") }, { 6, QT_TR_NOOP("Data Entry (coarse)") }, { 7, QT_TR_NOOP("Volume (coarse)") }, { 8, QT_TR_NOOP("Balance (coarse)") }, { 10, QT_TR_NOOP("Pan Position (coarse)") }, { 11, QT_TR_NOOP("Expression (coarse)") }, { 12, QT_TR_NOOP("Effect Control 1 (coarse)") }, { 13, QT_TR_NOOP("Effect Control 2 (coarse)") }, { 16, QT_TR_NOOP("General Purpose Slider 1") }, { 17, QT_TR_NOOP("General Purpose Slider 2") }, { 18, QT_TR_NOOP("General Purpose Slider 3") }, { 19, QT_TR_NOOP("General Purpose Slider 4") }, { 32, QT_TR_NOOP("Bank Select (fine)") }, { 33, QT_TR_NOOP("Modulation Wheel (fine)") }, { 34, QT_TR_NOOP("Breath Controller (fine)") }, { 36, QT_TR_NOOP("Foot Pedal (fine)") }, { 37, QT_TR_NOOP("Portamento Time (fine)") }, { 38, QT_TR_NOOP("Data Entry (fine)") }, { 39, QT_TR_NOOP("Volume (fine)") }, { 40, QT_TR_NOOP("Balance (fine)") }, { 42, QT_TR_NOOP("Pan Position (fine)") }, { 43, QT_TR_NOOP("Expression (fine)") }, { 44, QT_TR_NOOP("Effect Control 1 (fine)") }, { 45, QT_TR_NOOP("Effect Control 2 (fine)") }, { 64, QT_TR_NOOP("Hold Pedal (on/off)") }, { 65, QT_TR_NOOP("Portamento (on/off)") }, { 66, QT_TR_NOOP("Sostenuto Pedal (on/off)") }, { 67, QT_TR_NOOP("Soft Pedal (on/off)") }, { 68, QT_TR_NOOP("Legato Pedal (on/off)") }, { 69, QT_TR_NOOP("Hold 2 Pedal (on/off)") }, { 70, QT_TR_NOOP("Sound Variation") }, { 71, QT_TR_NOOP("Filter Resonance") }, { 72, QT_TR_NOOP("Release Time") }, { 73, QT_TR_NOOP("Attack Time") }, { 74, QT_TR_NOOP("Brightness") }, { 75, QT_TR_NOOP("Decay Time") }, { 76, QT_TR_NOOP("Vibrato Rate") }, { 77, QT_TR_NOOP("Vibrato Depth") }, { 78, QT_TR_NOOP("Vibrato Delay") }, { 80, QT_TR_NOOP("General Purpose Button 1 (on/off)") }, { 81, QT_TR_NOOP("General Purpose Button 2 (on/off)") }, { 82, QT_TR_NOOP("General Purpose Button 3 (on/off)") }, { 83, QT_TR_NOOP("General Purpose Button 4 (on/off)") }, { 91, QT_TR_NOOP("Effects Level") }, { 92, QT_TR_NOOP("Tremolo Level") }, { 93, QT_TR_NOOP("Chorus Level") }, { 94, QT_TR_NOOP("Celeste Level") }, { 95, QT_TR_NOOP("Phaser Level") }, { 96, QT_TR_NOOP("Data Button Increment") }, { 97, QT_TR_NOOP("Data Button Decrement") }, { 98, QT_TR_NOOP("Non-Registered Parameter (fine)") }, { 99, QT_TR_NOOP("Non-Registered Parameter (coarse)") }, {100, QT_TR_NOOP("Registered Parameter (fine)") }, {101, QT_TR_NOOP("Registered Parameter (coarse)") }, {120, QT_TR_NOOP("All Sound Off") }, {121, QT_TR_NOOP("All Controllers Off") }, {122, QT_TR_NOOP("Local Keyboard (on/off)") }, {123, QT_TR_NOOP("All Notes Off") }, {124, QT_TR_NOOP("Omni Mode Off") }, {125, QT_TR_NOOP("Omni Mode On") }, {126, QT_TR_NOOP("Mono Operation") }, {127, QT_TR_NOOP("Poly Operation") }, { 0, nullptr } }; static Names s_controllerNames; // Pre-load controller-names hash table... if (s_controllerNames.isEmpty()) { for (int i = 0; s_controllers[i].name; ++i) { s_controllerNames.insert(s_controllers[i].param, QObject::tr(s_controllers[i].name, "controllerName")); } } return s_controllerNames; } //---------------------------------------------------------------------------- // MIDI RPN Names - Default RPN names hash map. const samplv1widget_controls::Names& samplv1widget_controls::rpnNames (void) { static struct { unsigned short param; const char *name; } s_rpns[] = { { 0, QT_TR_NOOP("Pitch Bend Sensitivity") }, { 1, QT_TR_NOOP("Fine Tune") }, { 2, QT_TR_NOOP("Coarse Tune") }, { 3, QT_TR_NOOP("Tuning Program") }, { 4, QT_TR_NOOP("Tuning Bank") }, { 0, nullptr } }; static Names s_rpnNames; if (s_rpnNames.isEmpty()) { // Pre-load RPN-names hash table... for (int i = 0; s_rpns[i].name; ++i) { s_rpnNames.insert(s_rpns[i].param, QObject::tr(s_rpns[i].name, "rpnName")); } } return s_rpnNames; } //---------------------------------------------------------------------------- // MIDI NRPN Names - Default NRPN names hash map. const samplv1widget_controls::Names& samplv1widget_controls::nrpnNames (void) { static struct { unsigned short param; const char *name; } s_nrpns[] = { { 136, QT_TR_NOOP("Vibrato Rate") }, { 137, QT_TR_NOOP("Vibrato Depth") }, { 138, QT_TR_NOOP("Vibrato Delay") }, { 160, QT_TR_NOOP("Filter Cutoff") }, { 161, QT_TR_NOOP("Filter Resonance") }, { 227, QT_TR_NOOP("EG Attack") }, { 228, QT_TR_NOOP("EG Decay") }, { 230, QT_TR_NOOP("EG Release") }, // GS Drum NRPN map... { 2560, QT_TR_NOOP("Drum Filter Cutoff") }, { 2688, QT_TR_NOOP("Drum Filter Resonance") }, { 2816, QT_TR_NOOP("Drum EG Attack") }, { 2944, QT_TR_NOOP("Drum EG Decay") }, { 3072, QT_TR_NOOP("Drum Pitch Coarse") }, { 3200, QT_TR_NOOP("Drum Pitch Fine") }, { 3328, QT_TR_NOOP("Drum Level") }, { 3584, QT_TR_NOOP("Drum Pan") }, { 3712, QT_TR_NOOP("Drum Reverb Send") }, { 3840, QT_TR_NOOP("Drum Chorus Send") }, { 3968, QT_TR_NOOP("Drum Variation Send") }, { 0, nullptr } }; static struct { unsigned char note; const char *name; } s_drums[] = { // GM Drum note map... { 35, QT_TR_NOOP("Acoustic Bass Drum") }, { 36, QT_TR_NOOP("Bass Drum 1") }, { 37, QT_TR_NOOP("Side Stick") }, { 38, QT_TR_NOOP("Acoustic Snare") }, { 39, QT_TR_NOOP("Hand Clap") }, { 40, QT_TR_NOOP("Electric Snare") }, { 41, QT_TR_NOOP("Low Floor Tom") }, { 42, QT_TR_NOOP("Closed Hi-Hat") }, { 43, QT_TR_NOOP("High Floor Tom") }, { 44, QT_TR_NOOP("Pedal Hi-Hat") }, { 45, QT_TR_NOOP("Low Tom") }, { 46, QT_TR_NOOP("Open Hi-Hat") }, { 47, QT_TR_NOOP("Low-Mid Tom") }, { 48, QT_TR_NOOP("Hi-Mid Tom") }, { 49, QT_TR_NOOP("Crash Cymbal 1") }, { 50, QT_TR_NOOP("High Tom") }, { 51, QT_TR_NOOP("Ride Cymbal 1") }, { 52, QT_TR_NOOP("Chinese Cymbal") }, { 53, QT_TR_NOOP("Ride Bell") }, { 54, QT_TR_NOOP("Tambourine") }, { 55, QT_TR_NOOP("Splash Cymbal") }, { 56, QT_TR_NOOP("Cowbell") }, { 57, QT_TR_NOOP("Crash Cymbal 2") }, { 58, QT_TR_NOOP("Vibraslap") }, { 59, QT_TR_NOOP("Ride Cymbal 2") }, { 60, QT_TR_NOOP("Hi Bongo") }, { 61, QT_TR_NOOP("Low Bongo") }, { 62, QT_TR_NOOP("Mute Hi Conga") }, { 63, QT_TR_NOOP("Open Hi Conga") }, { 64, QT_TR_NOOP("Low Conga") }, { 65, QT_TR_NOOP("High Timbale") }, { 66, QT_TR_NOOP("Low Timbale") }, { 67, QT_TR_NOOP("High Agogo") }, { 68, QT_TR_NOOP("Low Agogo") }, { 69, QT_TR_NOOP("Cabasa") }, { 70, QT_TR_NOOP("Maracas") }, { 71, QT_TR_NOOP("Short Whistle") }, { 72, QT_TR_NOOP("Long Whistle") }, { 73, QT_TR_NOOP("Short Guiro") }, { 74, QT_TR_NOOP("Long Guiro") }, { 75, QT_TR_NOOP("Claves") }, { 76, QT_TR_NOOP("Hi Wood Block") }, { 77, QT_TR_NOOP("Low Wood Block") }, { 78, QT_TR_NOOP("Mute Cuica") }, { 79, QT_TR_NOOP("Open Cuica") }, { 80, QT_TR_NOOP("Mute Triangle") }, { 81, QT_TR_NOOP("Open Triangle") }, { 0, nullptr } }; static Names s_nrpnNames; if (s_nrpnNames.isEmpty()) { // Pre-load NRPN-names hash table... const QString sDrumNrpnName("%1 (%2)"); for (int i = 0; s_nrpns[i].name; ++i) { const unsigned short param = s_nrpns[i].param; const QString& sName = QObject::tr(s_nrpns[i].name, "nrpnName"); if (param < 2560) { s_nrpnNames.insert(param, sName); } else { for (int j = 0; s_drums[j].name; ++j) { const unsigned char note = s_drums[j].note; s_nrpnNames.insert(param + note, sDrumNrpnName.arg(sName).arg(note)); } } } } return s_nrpnNames; } //---------------------------------------------------------------------------- // MIDI Control-14 Names - Default controller names hash map. const samplv1widget_controls::Names& samplv1widget_controls::control14Names (void) { static struct { unsigned short param; const char *name; } s_control14s[] = { { 1, QT_TR_NOOP("Modulation Wheel (14bit)") }, { 2, QT_TR_NOOP("Breath Controller (14bit)") }, { 4, QT_TR_NOOP("Foot Pedal (14bit)") }, { 5, QT_TR_NOOP("Portamento Time (14bit)") }, { 7, QT_TR_NOOP("Volume (14bit)") }, { 8, QT_TR_NOOP("Balance (14bit)") }, { 10, QT_TR_NOOP("Pan Position (14bit)") }, { 11, QT_TR_NOOP("Expression (14bit)") }, { 12, QT_TR_NOOP("Effect Control 1 (14bit)") }, { 13, QT_TR_NOOP("Effect Control 2 (14bit)") }, { 16, QT_TR_NOOP("General Purpose Slider 1 (14bit)") }, { 17, QT_TR_NOOP("General Purpose Slider 2 (14bit)") }, { 18, QT_TR_NOOP("General Purpose Slider 3 (14bit)") }, { 19, QT_TR_NOOP("General Purpose Slider 4 (14bit)") }, { 0, nullptr } }; static Names s_control14Names; if (s_control14Names.isEmpty()) { // Pre-load controller-names hash table... for (int i = 0; s_control14s[i].name; ++i) { s_control14Names.insert(s_control14s[i].param, QObject::tr(s_control14s[i].name, "control14Name")); } } return s_control14Names; } //---------------------------------------------------------------------------- // MIDI Controller Names general helpers. static QComboBox *controlParamComboBox ( samplv1_controls::Type ctype, QWidget *pParent ) { QComboBox *pComboBox = new QComboBox(pParent); samplv1widget_controls::Names map; int iParamMin = 0; int iParamMax = iParamMin; switch(ctype) { case samplv1_controls::CC: iParamMin = 0; iParamMax = 128; map = samplv1widget_controls::controllerNames(); break; case samplv1_controls::RPN: map = samplv1widget_controls::rpnNames(); break; case samplv1_controls::NRPN: map = samplv1widget_controls::nrpnNames(); break; case samplv1_controls::CC14: iParamMin = 1; iParamMax = 32; map = samplv1widget_controls::control14Names(); // Fall thru... default: break; } const bool bEditable = (iParamMin >= iParamMax); pComboBox->setEditable(bEditable); pComboBox->setInsertPolicy(QComboBox::NoInsert); const QString sMask("%1 - %2"); if (bEditable) { samplv1widget_controls::Names::ConstIterator iter = map.constBegin(); const samplv1widget_controls::Names::ConstIterator& iter_end = map.constEnd(); for ( ; iter != iter_end; ++iter) { const unsigned short param = iter.key(); pComboBox->addItem(sMask.arg(param).arg(iter.value()), int(param)); } } else { for (int iParam = iParamMin; iParam < iParamMax; ++iParam) { const unsigned short param = iParam; pComboBox->addItem(sMask.arg(param).arg(map.value(param)), iParam); } } return pComboBox; } static QString controlParamName ( samplv1_controls::Type ctype, unsigned short param ) { samplv1widget_controls::Names map; switch(ctype) { case samplv1_controls::CC: map = samplv1widget_controls::controllerNames(); break; case samplv1_controls::RPN: map = samplv1widget_controls::rpnNames(); break; case samplv1_controls::NRPN: map = samplv1widget_controls::nrpnNames(); break; case samplv1_controls::CC14: map = samplv1widget_controls::control14Names(); // Fall thru... default: break; } const QString sMask("%1 - %2"); samplv1widget_controls::Names::ConstIterator iter = map.constFind(param); if (iter == map.constEnd()) return QString::number(param); else return sMask.arg(param).arg(iter.value()); } //---------------------------------------------------------------------------- // samplv1widget_controls::ItemDelegate -- Custom (tree) list item delegate. // ctor. samplv1widget_controls::ItemDelegate::ItemDelegate ( QObject *pParent ) : QStyledItemDelegate(pParent) { } // painting // QSize samplv1widget_controls::ItemDelegate::sizeHint ( const QStyleOptionViewItem& option, const QModelIndex& index ) const { const int x = (index.column() == 1 ? 32 : 4); // Type is special. return QStyledItemDelegate::sizeHint(option, index) + QSize(x, 4); } // editing // QWidget *samplv1widget_controls::ItemDelegate::createEditor ( QWidget *pParent, const QStyleOptionViewItem& /*option*/, const QModelIndex& index ) const { QWidget *pEditor = nullptr; switch (index.column()) { case 0: // Channel. { QSpinBox *pSpinBox = new QSpinBox(pParent); pSpinBox->setMinimum(0); pSpinBox->setMaximum(16); pSpinBox->setSpecialValueText(tr("Auto")); pEditor = pSpinBox; break; } case 1: // Type. { QComboBox *pComboBox = new QComboBox(pParent); pComboBox->setEditable(false); pComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::CC)); pComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::RPN)); pComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::NRPN)); pComboBox->addItem( samplv1_controls::textFromType(samplv1_controls::CC14)); pEditor = pComboBox; break; } case 2: // Parameter. { const QModelIndex& ctype_index = index.sibling(index.row(), 1); const QString& sType = ctype_index.data().toString(); const samplv1_controls::Type ctype = samplv1_controls::typeFromText(sType); pEditor = controlParamComboBox(ctype, pParent); break; } case 3: // Subject. { QComboBox *pComboBox = new QComboBox(pParent); pComboBox->setEditable(false); for (uint32_t i = 0; i < samplv1::NUM_PARAMS; ++i) pComboBox->addItem( samplv1_param::paramName(samplv1::ParamIndex(i))); pEditor = pComboBox; break; } default: break; } #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_controls::ItemDelegate::createEditor(%p, %d, %d) = %p", pParent, index.row(), index.column(), pEditor); #endif return pEditor; } void samplv1widget_controls::ItemDelegate::setEditorData ( QWidget *pEditor, const QModelIndex& index ) const { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_controls::ItemDelegate::setEditorData(%p, %d, %d)", pEditor, index.row(), index.column()); #endif switch (index.column()) { case 0: // Channel. { const int iChannel = index.data().toInt(); // = index.model()->data(index, Qt::DisplayRole).toInt(); QSpinBox *pSpinBox = qobject_cast (pEditor); if (pSpinBox) pSpinBox->setValue(iChannel); break; } case 1: // Type. { const QString& sText = index.data().toString(); // = index.model()->data(index, Qt::DisplayRole).toString(); QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const int iIndex = pComboBox->findText(sText); if (iIndex >= 0) pComboBox->setCurrentIndex(iIndex); else pComboBox->setCurrentIndex(0); } break; } case 2: // Parameter. { const int iParam = index.data(Qt::UserRole).toInt(); // = index.model()->data(index, Qt::DisplayRole).toString(); QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const int iIndex = pComboBox->findData(iParam); if (iIndex >= 0) pComboBox->setCurrentIndex(iIndex); else pComboBox->setEditText(index.data().toString()); } break; } case 3: // Subject. { const int iIndex = index.data(Qt::UserRole).toInt(); // = index.model()->data(index, Qt::DisplayRole).toInt(); QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) pComboBox->setCurrentIndex(iIndex); break; } default: break; } } void samplv1widget_controls::ItemDelegate::setModelData ( QWidget *pEditor, QAbstractItemModel *pModel, const QModelIndex& index ) const { #ifdef CONFIG_DEBUG_0 qDebug("samplv1widget_controls_item_delegate::setModelData(%p, %d, %d)", pEditor, index.row(), index.column()); #endif switch (index.column()) { case 0: // Channel. { QSpinBox *pSpinBox = qobject_cast (pEditor); if (pSpinBox) { const int iChannel = pSpinBox->value(); const QString& sText = (iChannel > 0 ? QString::number(iChannel) : tr("Auto")); pModel->setData(index, sText); } break; } case 1: // Type. { QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const QString& sType = pComboBox->currentText(); pModel->setData(index, sType); } break; } case 2: // Parameter. { QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const int iIndex = pComboBox->currentIndex(); QString sText; int iParam; if (iIndex >= 0) { sText = pComboBox->itemText(iIndex); iParam = pComboBox->itemData(iIndex).toInt(); } else { sText = pComboBox->currentText(); iParam = sText.toInt(); } pModel->setData(index, sText); pModel->setData(index, iParam, Qt::UserRole); } break; } case 3: // Subject. { QComboBox *pComboBox = qobject_cast (pEditor); if (pComboBox) { const int iIndex = pComboBox->currentIndex(); pModel->setData(index, samplv1_param::paramName(samplv1::ParamIndex(iIndex))); pModel->setData(index, iIndex, Qt::UserRole); } break; } default: break; } // Done. } //---------------------------------------------------------------------------- // samplv1widget_controls -- UI wrapper form. // ctor. samplv1widget_controls::samplv1widget_controls ( QWidget *pParent ) : QTreeWidget(pParent) { QTreeWidget::setColumnCount(4); QTreeWidget::setRootIsDecorated(false); QTreeWidget::setAlternatingRowColors(true); QTreeWidget::setUniformRowHeights(true); QTreeWidget::setAllColumnsShowFocus(false); QTreeWidget::setSelectionBehavior(QAbstractItemView::SelectRows); QTreeWidget::setSelectionMode(QAbstractItemView::SingleSelection); QHeaderView *pHeaderView = QTreeWidget::header(); #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) pHeaderView->setResizeMode(QHeaderView::ResizeToContents); #else pHeaderView->setSectionResizeMode(QHeaderView::ResizeToContents); #endif // pHeaderView->hide(); QTreeWidget::setItemDelegate(new ItemDelegate(this)); QObject::connect(this, SIGNAL(itemChanged(QTreeWidgetItem *, int)), SLOT(itemChangedSlot(QTreeWidgetItem *, int))); } // dtor. samplv1widget_controls::~samplv1widget_controls (void) { } // utilities. void samplv1widget_controls::loadControls ( samplv1_controls *pControls ) { QTreeWidget::clear(); const QIcon icon(":/images/samplv1_control.png"); QList items; const samplv1_controls::Map& map = pControls->map(); samplv1_controls::Map::ConstIterator iter = map.constBegin(); const samplv1_controls::Map::ConstIterator& iter_end = map.constEnd(); for ( ; iter != iter_end; ++iter) { const samplv1_controls::Key& key = iter.key(); const samplv1_controls::Type ctype = key.type(); const unsigned short channel = key.channel(); const samplv1_controls::Data& data = iter.value(); const samplv1::ParamIndex index = samplv1::ParamIndex(data.index); QTreeWidgetItem *pItem = new QTreeWidgetItem(this); // pItem->setIcon(0, icon); pItem->setText(0, (channel > 0 ? QString::number(channel) : tr("Auto"))); pItem->setText(1, samplv1_controls::textFromType(ctype)); pItem->setText(2, controlParamName(ctype, key.param)); pItem->setData(2, Qt::UserRole, int(key.param)); pItem->setIcon(3, icon); pItem->setText(3, samplv1_param::paramName(index)); pItem->setData(3, Qt::UserRole, data.index); pItem->setData(3, Qt::UserRole + 1, data.flags); pItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable); items.append(pItem); } QTreeWidget::addTopLevelItems(items); QTreeWidget::expandAll(); } void samplv1widget_controls::saveControls ( samplv1_controls *pControls ) { pControls->clear(); const int iItemCount = QTreeWidget::topLevelItemCount(); for (int iItem = 0 ; iItem < iItemCount; ++iItem) { QTreeWidgetItem *pItem = QTreeWidget::topLevelItem(iItem); const unsigned short channel = pItem->text(0).toInt(); const samplv1_controls::Type ctype = samplv1_controls::typeFromText(pItem->text(1)); samplv1_controls::Key key; key.status = ctype | (channel & 0x1f); key.param = pItem->data(2, Qt::UserRole).toInt(); samplv1_controls::Data data; data.index = pItem->data(3, Qt::UserRole).toInt(); data.flags = pItem->data(3, Qt::UserRole + 1).toInt(); pControls->add_control(key, data); } } // slots. void samplv1widget_controls::addControlItem (void) { QTreeWidget::setFocus(); QTreeWidgetItem *pItem = newControlItem(); if (pItem) { QTreeWidget::setCurrentItem(pItem); QTreeWidget::editItem(pItem, 0); } } // factory methods. QTreeWidgetItem *samplv1widget_controls::newControlItem (void) { QTreeWidgetItem *pItem = new QTreeWidgetItem(); const QIcon icon(":/images/samplv1_control.png"); const samplv1_controls::Type ctype = samplv1_controls::CC; // pItem->setIcon(0, icon); pItem->setText(0, tr("Auto")); pItem->setText(1, samplv1_controls::textFromType(ctype)); pItem->setText(2, controlParamName(ctype, 0)); pItem->setData(2, Qt::UserRole, 0); pItem->setIcon(3, icon); pItem->setText(3, samplv1_param::paramName(samplv1::ParamIndex(0))); pItem->setData(3, Qt::UserRole, 0); pItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable); QTreeWidget::addTopLevelItem(pItem); return pItem; } void samplv1widget_controls::itemChangedSlot ( QTreeWidgetItem *pItem, int column ) { if (column == 1) { const bool bBlockSignals = QTreeWidget::blockSignals(true); const QString& sType = pItem->text(1); const samplv1_controls::Type ctype = samplv1_controls::typeFromText(sType); const int iParam = pItem->data(2, Qt::UserRole).toInt(); pItem->setText(2, controlParamName(ctype, iParam)); QTreeWidget::blockSignals(bBlockSignals); } } // end of samplv1widget_controls.cpp samplv1-1.4.3/src/PaxHeaders/samplv1.cpp0000644000000000000000000000013215245503134015040 xustar0030 mtime=1788249692.170222891 30 atime=1788249692.170222891 30 ctime=1788249692.170222891 samplv1-1.4.3/src/samplv1.cpp0000644000175000001440000017451015245503134015040 0ustar00rncbcusers// samplv1.cpp // /**************************************************************************** Copyright (C) 2012-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1.h" #include "samplv1_sample.h" #include "samplv1_wave.h" #include "samplv1_ramp.h" #include "samplv1_list.h" #include "samplv1_filter.h" #include "samplv1_formant.h" #include "samplv1_fx.h" #include "samplv1_reverb.h" #include "samplv1_pshifter.h" #include "samplv1_config.h" #include "samplv1_controls.h" #include "samplv1_programs.h" #include "samplv1_tuning.h" #include "samplv1_sched.h" #ifdef CONFIG_DEBUG_0 #include #endif #include //------------------------------------------------------------------------- // samplv1_impl // // -- borrowed and revamped from synth.h of synth4 // Copyright (C) 2007 jorgen, linux-vst.com // const uint8_t MAX_VOICES = 64; // max polyphony const uint8_t MAX_NOTES = 128; const float MIN_ENV_MSECS = 0.5f; // min 500 usec per stage const float MAX_ENV_MSECS = 5000.0f; // max 5 sec per stage (default) const float OCTAVE_SCALE = 12.0f; const float TUNING_SCALE = 1.0f; const float SWEEP_SCALE = 0.5f; const float PITCH_SCALE = 0.5f; const uint8_t MAX_DIRECT_NOTES = (MAX_VOICES >> 2); // maximum helper inline float samplv1_max ( float a, float b ) { return (a > b ? a : b); } // hyperbolic-tangent fast approximation inline float samplv1_tanhf ( const float x ) { const float x2 = x * x; return x * (27.0f + x2) / (27.0f + 9.0f * x2); } // sigmoids inline float samplv1_sigmoid ( const float x ) { // return 2.0f / (1.0f + ::expf(-5.0f * x)) - 1.0f; return samplv1_tanhf(2.0f * x); } inline float samplv1_sigmoid_0 ( const float x, const float t0 ) { const float t1 = 1.0f - t0; #if 0 if (x > +t1) return +t1 + t0 * samplv1_tanhf(+(x - t1) / t0); else if (x < -t1) return -t1 - t0 * samplv1_tanhf(-(x + t1) / t0); else return x; #else return (x < -1.0f ? -t1 : (x > +1.0f ? t1 : t1 * x * (1.5f - 0.5f * x * x))); #endif } inline float samplv1_sigmoid_1 ( const float x, const float t0 = 0.01f ) { return 0.5f * (1.0f + samplv1_sigmoid_0(2.0f * x - 1.0f, t0)); } // velocity hard-split curve inline float samplv1_velocity ( const float x, const float p = 0.2f ) { return ::powf(x, (1.0f - p)); } // pitchbend curve inline float samplv1_pow2f ( const float x ) { // simplest power-of-2 straight linearization // -- x argument valid in [-1, 1] interval // return 1.0f + (x < 0.0f ? 0.5f : 1.0f) * x; return ::powf(2.0f, x); } // convert note to frequency (hertz) inline float samplv1_freq2 ( float delta ) { return ::powf(2.0f, delta / 12.0f); } inline float samplv1_freq ( int note ) { return (440.0f / 32.0f) * samplv1_freq2(float(note - 9)); } // parameter port (basic) class samplv1_port { public: samplv1_port() : m_port(nullptr), m_value(0.0f), m_vport(0.0f) {} virtual ~samplv1_port() {} void set_port(float *port) { m_port = port; } float *port() const { return m_port; } virtual void set_value(float value) { m_value = value; if (m_port) m_vport = *m_port; } float value() const { return m_value; } float *value_ptr() { tick(1); return &m_value; } virtual float tick(uint32_t /*nstep*/) { if (m_port && ::fabsf(*m_port - m_vport) > 0.001f) set_value(*m_port); return m_value; } float operator *() { return tick(1); } private: float *m_port; float m_value; float m_vport; }; // parameter port (smoothed) class samplv1_port2 : public samplv1_port { public: samplv1_port2() : m_vtick(0.0f), m_vstep(0.0f), m_nstep(0) {} static const uint32_t NSTEP = 32; void set_value(float value) { m_vtick = samplv1_port::value(); m_nstep = NSTEP; m_vstep = (value - m_vtick) / float(m_nstep); samplv1_port::set_value(value); } float tick(uint32_t nstep) { if (m_nstep == 0) return samplv1_port::tick(nstep); if (m_nstep >= nstep) { m_vtick += m_vstep * float(nstep); m_nstep -= nstep; } else { m_vtick += m_vstep * float(m_nstep); m_nstep = 0; } return m_vtick; } private: float m_vtick; float m_vstep; uint32_t m_nstep; }; // parameter port (scheduled/detached) class samplv1_port3_sched : public samplv1_sched { public: // ctor. samplv1_port3_sched(samplv1 *pSampl) : samplv1_sched(pSampl, samplv1_sched::Controller) {} // (pure) virtual prober. virtual float probe(int sid) const = 0; }; class samplv1_port3 : public samplv1_port { public: samplv1_port3(samplv1_port3_sched *sched, samplv1::ParamIndex index) : m_sched(sched), m_index(index) {} void set_value(float value) { const float v0 = m_sched->probe(m_index); const float d0 = ::fabsf(value - v0); samplv1_port::set_value(value); if (d0 > 0.001f) m_sched->schedule(m_index); } void set_value_sync(float value) { samplv1_port::set_value(value); } private: samplv1_port3_sched *m_sched; samplv1::ParamIndex m_index; }; // envelope struct samplv1_env { // envelope stages enum Stage { Idle = 0, Attack, Decay, Sustain, Release, End }; // per voice struct State { // ctor. State() : running(false), stage(Idle), phase(0.0f), delta(0.0f), value(0.0f), c1(1.0f), c0(0.0f), frames(0) {} // process float tick() { if (running && frames > 0) { phase += delta; value = c1 * phase * (2.0f - phase) + c0; --frames; } return value; } // state bool running; Stage stage; float phase; float delta; float value; float c1, c0; uint32_t frames; }; void start(State *p) { p->running = true; p->stage = Attack; p->frames = uint32_t(*attack * *attack * max_frames); if (p->frames < min_frames1) // prevent click on too fast attack p->frames = min_frames1; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->value = 0.0f; p->c1 = 1.0f; p->c0 = 0.0f; } void next(State *p) { if (p->stage == Attack) { p->stage = Decay; p->frames = uint32_t(*decay * *decay * max_frames); if (p->frames < min_frames2) // prevent click on too fast decay p->frames = min_frames2; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->c1 = *sustain - 1.0f; p->c0 = p->value; } else if (p->stage == Decay) { p->running = false; // stay at this stage until note_off received p->stage = Sustain; p->frames = 0; p->phase = 0.0f; p->delta = 0.0f; p->c1 = 0.0f; p->c0 = p->value; } else if (p->stage == Release) { p->running = false; p->stage = End; p->frames = 0; p->phase = 0.0f; p->delta = 0.0f; p->value = 0.0f; p->c1 = 0.0f; p->c0 = 0.0f; } } void note_off(State *p) { p->running = true; p->stage = Release; p->frames = uint32_t(*release * *release * max_frames); if (p->frames < min_frames2) // prevent click on too fast release p->frames = min_frames2; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->c1 = -(p->value); p->c0 = p->value; } void note_off_fast(State *p) { p->running = true; p->stage = Release; p->frames = min_frames2; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->c1 = -(p->value); p->c0 = p->value; } void restart(State *p, bool legato) { p->running = true; if (legato) { p->stage = Decay; p->frames = min_frames2; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->c1 = *sustain - p->value; p->c0 = 0.0f; } else { p->stage = Attack; p->frames = uint32_t(*attack * *attack * max_frames); if (p->frames < min_frames1) p->frames = min_frames1; p->phase = 0.0f; p->delta = 1.0f / float(p->frames); p->c1 = 1.0f; p->c0 = 0.0f; } } void idle(State *p) { p->running = false; p->stage = Idle; p->frames = 0; p->phase = 0.0f; p->delta = 0.0f; p->value = 1.0f; p->c1 = 0.0f; p->c0 = 0.0f; } // parameters samplv1_port attack; samplv1_port decay; samplv1_port sustain; samplv1_port release; uint32_t min_frames1; uint32_t min_frames2; uint32_t max_frames; }; // midi control struct samplv1_ctl { samplv1_ctl() { reset(); } void reset() { pressure = 0.0f; pitchbend = 1.0f; modwheel = 0.0f; panning = 0.0f; volume = 1.0f; sustain = false; } float pressure; float pitchbend; float modwheel; float panning; float volume; bool sustain; }; // dco class samplv1_gen : samplv1_port3_sched { public: samplv1_gen(samplv1 *pSampl) : samplv1_port3_sched(pSampl), reverse(this, samplv1::GEN1_REVERSE), offset(this, samplv1::GEN1_OFFSET), offset_1(this, samplv1::GEN1_OFFSET_1), offset_2(this, samplv1::GEN1_OFFSET_2), loop(this, samplv1::GEN1_LOOP), loop_1(this, samplv1::GEN1_LOOP_1), loop_2(this, samplv1::GEN1_LOOP_2) {} samplv1_port sample; samplv1_port3 reverse; samplv1_port3 offset; samplv1_port3 offset_1; samplv1_port3 offset_2; samplv1_port3 loop; samplv1_port3 loop_1; samplv1_port3 loop_2; samplv1_port octave; samplv1_port tuning; samplv1_port glide; samplv1_port envtime; float sample0, envtime0; protected: float probe(int sid) const { float ret = 0.0f; samplv1 *pSampl = samplv1_port3_sched::instance(); switch (samplv1::ParamIndex(sid)) { case samplv1::GEN1_REVERSE: ret = (pSampl->isReverse() ? 1.0f : 0.0f); break; case samplv1::GEN1_OFFSET: ret = (pSampl->isOffset() ? 1.0f : 0.0f); break; case samplv1::GEN1_OFFSET_1: { const uint32_t iSampleLength = pSampl->length(); const uint32_t iOffsetStart = pSampl->offsetStart(); ret = (iSampleLength > 0 ? float(iOffsetStart) / float(iSampleLength) : 0.0f); break; } case samplv1::GEN1_OFFSET_2: { const uint32_t iSampleLength = pSampl->length(); const uint32_t iOffsetEnd = pSampl->offsetEnd(); ret = (iSampleLength > 0 ? float(iOffsetEnd) / float(iSampleLength) : 1.0f); break; } case samplv1::GEN1_LOOP: ret = (pSampl->isLoop() ? 1.0f : 0.0f); break; case samplv1::GEN1_LOOP_1: { const uint32_t iSampleLength = pSampl->length(); const uint32_t iLoopStart = pSampl->loopStart(); ret = (iSampleLength > 0 ? float(iLoopStart) / float(iSampleLength) : 0.0f); break; } case samplv1::GEN1_LOOP_2: { const uint32_t iSampleLength = pSampl->length(); const uint32_t iLoopEnd = pSampl->loopEnd(); ret = (iSampleLength > 0 ? float(iLoopEnd) / float(iSampleLength) : 1.0f); break; } default: break; } return ret; } void process(int sid) { samplv1 *pSampl = samplv1_port3_sched::instance(); switch (samplv1::ParamIndex(sid)) { case samplv1::GEN1_REVERSE: pSampl->setReverse(reverse.value() > 0.5f, true); break; case samplv1::GEN1_OFFSET: pSampl->setOffset(offset.value() > 0.5f, true); break; case samplv1::GEN1_OFFSET_1: if (pSampl->isOffset()) { const uint32_t iSampleLength = pSampl->length(); const uint32_t iOffsetEnd = pSampl->offsetEnd(); uint32_t iOffsetStart = uint32_t(offset_1.value() * float(iSampleLength)); if (pSampl->isLoop()) { const uint32_t iLoopStart = pSampl->loopStart(); if (iOffsetStart >= iLoopStart) iOffsetStart = iLoopStart - 1; } if (iOffsetStart >= iOffsetEnd) iOffsetStart = iOffsetEnd - 1; pSampl->setOffsetRange(iOffsetStart, iOffsetEnd, true); } break; case samplv1::GEN1_OFFSET_2: if (pSampl->isOffset()) { const uint32_t iSampleLength = pSampl->length(); const uint32_t iOffsetStart = pSampl->offsetStart(); uint32_t iOffsetEnd = uint32_t(offset_2.value() * float(iSampleLength)); if (pSampl->isLoop()) { const uint32_t iLoopEnd = pSampl->loopEnd(); if (iLoopEnd >= iOffsetEnd) iOffsetEnd = iLoopEnd + 1; } if (iOffsetStart >= iOffsetEnd) iOffsetEnd = iOffsetStart + 1; pSampl->setOffsetRange(iOffsetStart, iOffsetEnd, true); } break; case samplv1::GEN1_LOOP: pSampl->setLoop(loop.value() > 0.5f, true); break; case samplv1::GEN1_LOOP_1: if (pSampl->isLoop()) { const uint32_t iSampleLength = pSampl->length(); const uint32_t iLoopEnd = pSampl->loopEnd(); uint32_t iLoopStart = uint32_t(loop_1.value() * float(iSampleLength)); if (pSampl->isOffset()) { const uint32_t iOffsetStart = pSampl->offsetStart(); if (iLoopStart < iOffsetStart) iLoopStart = iOffsetStart; } if (iLoopStart >= iLoopEnd) iLoopStart = iLoopEnd - 1; pSampl->setLoopRange(iLoopStart, iLoopEnd, true); } break; case samplv1::GEN1_LOOP_2: if (pSampl->isLoop()) { const uint32_t iSampleLength = pSampl->length(); const uint32_t iLoopStart = pSampl->loopStart(); uint32_t iLoopEnd = uint32_t(loop_2.value() * float(iSampleLength)); if (pSampl->isOffset()) { const uint32_t iOffsetEnd = pSampl->offsetEnd(); if (iLoopEnd > iOffsetEnd) iLoopEnd = iOffsetEnd; } if (iLoopStart >= iLoopEnd) iLoopEnd = iLoopStart + 1; pSampl->setLoopRange(iLoopStart, iLoopEnd, true); } break; default: break; } } }; // dcf struct samplv1_dcf { samplv1_port enabled; samplv1_port2 cutoff; samplv1_port2 reso; samplv1_port type; samplv1_port slope; samplv1_port2 envelope; samplv1_env env; }; // lfo struct samplv1_voice; struct samplv1_lfo { samplv1_port enabled; samplv1_port shape; samplv1_port width; samplv1_port2 bpm; samplv1_port2 rate; samplv1_port sync; samplv1_port2 sweep; samplv1_port2 pitch; samplv1_port2 cutoff; samplv1_port2 reso; samplv1_port2 panning; samplv1_port2 volume; samplv1_env env; samplv1_voice *psync; }; // dca struct samplv1_dca { samplv1_port enabled; samplv1_port volume; samplv1_env env; }; // def (ranges) struct samplv1_def { samplv1_port pitchbend; samplv1_port modwheel; samplv1_port pressure; samplv1_port velocity; samplv1_port channel; samplv1_port mono; }; // out (mix) struct samplv1_out { samplv1_port width; samplv1_port panning; samplv1_port fxsend; samplv1_port volume; }; // chorus (fx) struct samplv1_cho { samplv1_port wet; samplv1_port delay; samplv1_port feedb; samplv1_port rate; samplv1_port mod; }; // flanger (fx) struct samplv1_fla { samplv1_port wet; samplv1_port delay; samplv1_port feedb; samplv1_port daft; }; // phaser (fx) struct samplv1_pha { samplv1_port wet; samplv1_port rate; samplv1_port feedb; samplv1_port depth; samplv1_port daft; }; // delay (fx) struct samplv1_del { samplv1_port wet; samplv1_port delay; samplv1_port feedb; samplv1_port bpm; }; // reverb struct samplv1_rev { samplv1_port wet; samplv1_port room; samplv1_port damp; samplv1_port feedb; samplv1_port width; }; // dynamic(compressor/limiter) struct samplv1_dyn { samplv1_port compress; samplv1_port limiter; }; // keyboard/note range struct samplv1_key { samplv1_port low; samplv1_port high; bool is_note(int key) { return (key >= int(*low) && int(*high) >= key); } }; // glide (portamento) class samplv1_glide { public: samplv1_glide(float& last) : m_last(last) { reset(); } void reset( uint32_t frames = 0, float freq = 0.0f ) { m_frames = frames; if (m_frames > 0) { m_freq = m_last; m_step = (m_freq - freq) / float(m_frames); } else { m_freq = 0.0f; m_step = 0.0f; } m_last = freq; } float tick() { if (m_frames > 0) { m_freq -= m_step; --m_frames; } return m_freq; } private: uint32_t m_frames; float m_step; float m_freq; float& m_last; }; // balance smoother (1 parameters) class samplv1_bal1 : public samplv1_ramp1 { public: samplv1_bal1() : samplv1_ramp1(2) {} protected: float evaluate(uint16_t i) { samplv1_ramp1::update(); const float wbal = 0.25f * M_PI * (1.0f + m_param1_v); return M_SQRT2 * (i & 1 ? ::sinf(wbal) : ::cosf(wbal)); } }; // balance smoother (2 parameters) class samplv1_bal2 : public samplv1_ramp2 { public: samplv1_bal2() : samplv1_ramp2(2) {} protected: float evaluate(uint16_t i) { samplv1_ramp2::update(); const float wbal = 0.25f * M_PI * (1.0f + m_param1_v) * (1.0f + m_param2_v); return M_SQRT2 * (i & 1 ? ::sinf(wbal) : ::cosf(wbal)); } }; // pressure smoother (3 parameters) class samplv1_pre : public samplv1_ramp3 { public: samplv1_pre() : samplv1_ramp3() {} protected: float evaluate(uint16_t) { samplv1_ramp3::update(); return m_param1_v * samplv1_max(m_param2_v, m_param3_v); } }; // common phasor (LFO sync) class samplv1_phasor { public: samplv1_phasor(uint32_t nsize = 1024) : m_nsize(nsize), m_nframes(0) {} void process(uint32_t nframes) { m_nframes += nframes; while (m_nframes >= m_nsize) m_nframes -= m_nsize; } float pshift() const { return float(m_nframes) / float(m_nsize); } private: uint32_t m_nsize; uint32_t m_nframes; }; // forward decl. class samplv1_impl; // voice struct samplv1_voice : public samplv1_list { samplv1_voice(samplv1_impl *pImpl); int note; // voice note float vel; // key velocity float pre; // key pressure/after-touch samplv1_generator gen1; // generator samplv1_oscillator lfo1; // low frequency oscilattor float gen1_freq; // frequency and phase float lfo1_sample; samplv1_filter1 dcf11, dcf12; // filters samplv1_filter2 dcf13, dcf14; samplv1_filter3 dcf15, dcf16; samplv1_formant dcf17, dcf18; samplv1_env::State dca1_env; // envelope states samplv1_env::State dcf1_env; samplv1_env::State lfo1_env; samplv1_glide gen1_glide; // glides (portamento) samplv1_pre dca1_pre; float out1_panning; float out1_volume; samplv1_bal1 out1_pan; // output panning samplv1_ramp1 out1_vol; // output volume bool sustain; }; // MIDI input asynchronous status notification class samplv1_midi_in : public samplv1_sched { public: samplv1_midi_in (samplv1 *pSampl) : samplv1_sched(pSampl, MidiIn), m_enabled(false), m_count(0) {} void schedule_event() { if (m_enabled && ++m_count < 2) schedule(-1); } void schedule_note(int key, int vel) { if (m_enabled) schedule((vel << 7) | key); } void process(int) {} void enabled(bool on) { m_enabled = on; m_count = 0; } uint32_t count() { const uint32_t ret = m_count; m_count = 0; return ret; } private: bool m_enabled; uint32_t m_count; }; // micro-tuning/instance implementation class samplv1_tun { public: samplv1_tun() : enabled(false), refPitch(440.0f), refNote(69) {} bool enabled; float refPitch; int refNote; QString scaleFile; QString keyMapFile; }; // polyphonic sampler implementation class samplv1_impl { public: samplv1_impl(samplv1 *pSampl, uint16_t nchannels, float srate, uint32_t nsize); ~samplv1_impl(); void setChannels(uint16_t nchannels); uint16_t channels() const; void setSampleRate(float srate); float sampleRate() const; void setSampleFile(const char *pszSampleFile, uint16_t otabs); const char *sampleFile() const; uint16_t octaves() const; void setBufferSize(uint32_t nsize); uint32_t bufferSize() const; void setTempo(float bpm); float tempo() const; void setParamPort(samplv1::ParamIndex index, float *pfParam); samplv1_port *paramPort(samplv1::ParamIndex index); void setParamValue(samplv1::ParamIndex index, float fValue); float paramValue(samplv1::ParamIndex index); void updateEnvTimes(); samplv1_controls *controls(); samplv1_programs *programs(); void setTuningEnabled(bool enabled); bool isTuningEnabled() const; void setTuningRefPitch(float refPitch); float tuningRefPitch() const; void setTuningRefNote(int refNote); int tuningRefNote() const; void setTuningScaleFile(const char *pszScaleFile); const char *tuningScaleFile() const; void setTuningKeyMapFile(const char *pszKeyMapFile); const char *tuningKeyMapFile() const; void resetTuning(); void process_midi(uint8_t *data, uint32_t size); void process(float **ins, float **outs, uint32_t nframes); void stabilize(); void reset(); void sampleReverseTest(); void sampleReverseSync(); void sampleOffsetTest(); void sampleOffsetSync(); void sampleOffsetRangeSync(); void sampleLoopTest(); void sampleLoopSync(); void sampleLoopRangeSync(); void midiInEnabled(bool on); uint32_t midiInCount(); void directNoteOn(int note, int vel); bool running(bool on); samplv1_sample_ref gen1_sample; samplv1_wave_lf lfo1_wave; float gen1_last; samplv1_formant::Impl dcf1_formant; protected: void allSoundOff(); void allControllersOff(); void allNotesOff(); void allSustainOff(); void allSustainOn(); float get_bpm ( float bpm ) const { return (bpm > 0.0f ? bpm : m_bpm); } samplv1_voice *alloc_voice () { samplv1_voice *pv = m_free_list.next(); if (pv) { m_free_list.remove(pv); gen1_sample.acquire(); pv->gen1.reset(gen1_sample.next()); m_play_list.append(pv); ++m_nvoices; } return pv; } void free_voice ( samplv1_voice *pv ) { gen1_sample.release(); if (m_lfo1.psync == pv) m_lfo1.psync = nullptr; m_play_list.remove(pv); m_free_list.append(pv); --m_nvoices; } void alloc_sfxs(uint32_t nsize); private: samplv1_config m_config; samplv1_controls m_controls; samplv1_programs m_programs; samplv1_midi_in m_midi_in; samplv1_tun m_tun; uint16_t m_nchannels; float m_srate; float m_bpm; float m_freqs[MAX_NOTES]; samplv1_ctl m_ctl1; samplv1_gen m_gen1; samplv1_dcf m_dcf1; samplv1_lfo m_lfo1; samplv1_dca m_dca1; samplv1_out m_out1; samplv1_def m_def; samplv1_cho m_cho; samplv1_fla m_fla; samplv1_pha m_pha; samplv1_del m_del; samplv1_rev m_rev; samplv1_dyn m_dyn; samplv1_key m_key; samplv1_voice **m_voices; samplv1_voice *m_notes[MAX_NOTES]; samplv1_list m_free_list; samplv1_list m_play_list; samplv1_ramp1 m_wid1; samplv1_bal2 m_pan1; samplv1_ramp3 m_vol1; float **m_sfxs; uint32_t m_nsize; samplv1_fx_chorus m_chorus; samplv1_fx_flanger *m_flanger; samplv1_fx_phaser *m_phaser; samplv1_fx_delay *m_delay; samplv1_fx_comp *m_comp; samplv1_reverb m_reverb; // process direct note on/off... volatile uint16_t m_direct_note; struct direct_note { uint8_t status, note, vel; } m_direct_notes[MAX_DIRECT_NOTES]; volatile int m_nvoices; volatile bool m_running; }; // voice constructor samplv1_voice::samplv1_voice ( samplv1_impl *pImpl ) : note(-1), vel(0.0f), pre(0.0f), gen1(nullptr), lfo1(&pImpl->lfo1_wave), gen1_freq(0.0f), lfo1_sample(0.0f), dcf17(&pImpl->dcf1_formant), dcf18(&pImpl->dcf1_formant), gen1_glide(pImpl->gen1_last), out1_panning(0.0f), out1_volume(1.0f), sustain(false) { } // engine constructor samplv1_impl::samplv1_impl ( samplv1 *pSampl, uint16_t nchannels, float srate, uint32_t nsize ) : m_controls(pSampl), m_programs(pSampl), m_midi_in(pSampl), m_bpm(180.0f), m_gen1(pSampl), m_nvoices(0), m_running(false) { // initialize sample list. gen1_sample.append(new samplv1_sample(srate)); // null sample. m_gen1.sample0 = 0.0f; // max env. stage length (default) m_gen1.envtime0 = 0.0001f * MAX_ENV_MSECS; // glide note. gen1_last = 0.0f; // allocate voice pool. m_voices = new samplv1_voice * [MAX_VOICES]; for (int i = 0; i < MAX_VOICES; ++i) { m_voices[i] = new samplv1_voice(this); m_free_list.append(m_voices[i]); } for (int note = 0; note < MAX_NOTES; ++note) m_notes[note] = nullptr; // local buffers none yet m_sfxs = nullptr; m_nsize = 0; // flangers none yet m_flanger = nullptr; // phasers none yet m_phaser = nullptr; // delays none yet m_delay = nullptr; // compressors none yet m_comp = nullptr; // Pitch-shifting support... samplv1_pshifter::setDefaultType( samplv1_pshifter::Type(m_config.iPitchShiftType)); // Micro-tuning support, if any... resetTuning(); // load controllers & programs database... m_config.loadControls(&m_controls); m_config.loadPrograms(&m_programs); // number of channels setChannels(nchannels); // set default sample rate setSampleRate(srate); // set default buffer size setBufferSize(nsize); // reset all voices allControllersOff(); allNotesOff(); running(true); } // destructor samplv1_impl::~samplv1_impl (void) { #if 0 // DO NOT save programs database here: // prevent multi-instance clash... m_config.savePrograms(&m_programs); #endif // deallocate sample filenames //setSampleFile(nullptr, 0); gen1_sample.clear_refs(true); // deallocate voice pool. for (int i = 0; i < MAX_VOICES; ++i) delete m_voices[i]; delete [] m_voices; // deallocate local buffers alloc_sfxs(0); // deallocate channels setChannels(0); } void samplv1_impl::setChannels ( uint16_t nchannels ) { m_nchannels = nchannels; // deallocate flangers if (m_flanger) { delete [] m_flanger; m_flanger = nullptr; } // deallocate phasers if (m_phaser) { delete [] m_phaser; m_phaser = nullptr; } // deallocate delays if (m_delay) { delete [] m_delay; m_delay = nullptr; } // deallocate compressors if (m_comp) { delete [] m_comp; m_comp = nullptr; } } uint16_t samplv1_impl::channels (void) const { return m_nchannels; } void samplv1_impl::setSampleRate ( float srate ) { // set internal sample rate m_srate = srate; // update waves sample rate gen1_sample.next()->setSampleRate(m_srate); lfo1_wave.setSampleRate(m_srate); updateEnvTimes(); dcf1_formant.setSampleRate(m_srate); } float samplv1_impl::sampleRate (void) const { return m_srate; } void samplv1_impl::setBufferSize ( uint32_t nsize ) { // set nominal buffer size if (m_nsize < nsize) alloc_sfxs(nsize); } uint32_t samplv1_impl::bufferSize (void) const { return m_nsize; } void samplv1_impl::setTempo ( float bpm ) { // set nominal tempo (BPM) m_bpm = bpm; } float samplv1_impl::tempo (void) const { return m_bpm; } // allocate local buffers void samplv1_impl::alloc_sfxs ( uint32_t nsize ) { if (m_sfxs) { for (uint16_t k = 0; k < m_nchannels; ++k) delete [] m_sfxs[k]; delete [] m_sfxs; m_sfxs = nullptr; m_nsize = 0; } if (m_nsize < nsize) { m_nsize = nsize; m_sfxs = new float * [m_nchannels]; for (uint16_t k = 0; k < m_nchannels; ++k) m_sfxs[k] = new float [m_nsize]; } } void samplv1_impl::updateEnvTimes (void) { // update envelope range times in frames const float srate_ms = 0.001f * m_srate; float envtime_msecs = 10000.0f * m_gen1.envtime0; if (envtime_msecs < MIN_ENV_MSECS) { samplv1_sample *sample = gen1_sample.next(); const uint32_t envtime_frames = (sample->offsetEnd() - sample->offsetStart()) >> 1; envtime_msecs = envtime_frames / srate_ms; } if (envtime_msecs < MIN_ENV_MSECS) envtime_msecs = MIN_ENV_MSECS * 4.0f; const uint32_t min_frames1 = uint32_t(srate_ms * MIN_ENV_MSECS); const uint32_t min_frames2 = (min_frames1 << 2); const uint32_t max_frames = uint32_t(srate_ms * envtime_msecs); m_dcf1.env.min_frames1 = min_frames1; m_dcf1.env.min_frames2 = min_frames2; m_dcf1.env.max_frames = max_frames; m_lfo1.env.min_frames1 = min_frames1; m_lfo1.env.min_frames2 = min_frames2; m_lfo1.env.max_frames = max_frames; m_dca1.env.min_frames1 = min_frames1; m_dca1.env.min_frames2 = min_frames2; m_dca1.env.max_frames = max_frames; } void samplv1_impl::setSampleFile ( const char *pszSampleFile, uint16_t otabs ) { // reset(); samplv1_sample *prev = gen1_sample.prev(); samplv1_sample *next = new samplv1_sample(*prev); if (pszSampleFile) { m_gen1.sample0 = *m_gen1.sample; next->open(pszSampleFile, samplv1_freq(m_gen1.sample0), otabs); } gen1_sample.append(next); gen1_sample.free_refs(); gen1_sample.clear_refs(); updateEnvTimes(); } const char *samplv1_impl::sampleFile (void) const { return gen1_sample.prev()->filename(); } uint16_t samplv1_impl::octaves (void) const { return gen1_sample.prev()->otabs(); } void samplv1_impl::setParamPort ( samplv1::ParamIndex index, float *pfParam ) { static float s_fDummy = 0.0f; if (pfParam == nullptr) pfParam = &s_fDummy; samplv1_port *pParamPort = paramPort(index); if (pParamPort) pParamPort->set_port(pfParam); // check null connections. if (pfParam == &s_fDummy) return; // reset ramps after port (re)connection. switch (index) { case samplv1::OUT1_VOLUME: case samplv1::DCA1_VOLUME: m_vol1.reset( m_out1.volume.value_ptr(), m_dca1.volume.value_ptr(), &m_ctl1.volume); break; case samplv1::OUT1_WIDTH: m_wid1.reset( m_out1.width.value_ptr()); break; case samplv1::OUT1_PANNING: m_pan1.reset( m_out1.panning.value_ptr(), &m_ctl1.panning); break; default: break; } } samplv1_port *samplv1_impl::paramPort ( samplv1::ParamIndex index ) { samplv1_port *pParamPort = nullptr; switch (index) { case samplv1::GEN1_SAMPLE: pParamPort = &m_gen1.sample; break; case samplv1::GEN1_REVERSE: pParamPort = &m_gen1.reverse; break; case samplv1::GEN1_OFFSET: pParamPort = &m_gen1.offset; break; case samplv1::GEN1_OFFSET_1: pParamPort = &m_gen1.offset_1; break; case samplv1::GEN1_OFFSET_2: pParamPort = &m_gen1.offset_2; break; case samplv1::GEN1_LOOP: pParamPort = &m_gen1.loop; break; case samplv1::GEN1_LOOP_1: pParamPort = &m_gen1.loop_1; break; case samplv1::GEN1_LOOP_2: pParamPort = &m_gen1.loop_2; break; case samplv1::GEN1_OCTAVE: pParamPort = &m_gen1.octave; break; case samplv1::GEN1_TUNING: pParamPort = &m_gen1.tuning; break; case samplv1::GEN1_GLIDE: pParamPort = &m_gen1.glide; break; case samplv1::GEN1_ENVTIME: pParamPort = &m_gen1.envtime; break; case samplv1::DCF1_ENABLED: pParamPort = &m_dcf1.enabled; break; case samplv1::DCF1_CUTOFF: pParamPort = &m_dcf1.cutoff; break; case samplv1::DCF1_RESO: pParamPort = &m_dcf1.reso; break; case samplv1::DCF1_TYPE: pParamPort = &m_dcf1.type; break; case samplv1::DCF1_SLOPE: pParamPort = &m_dcf1.slope; break; case samplv1::DCF1_ENVELOPE: pParamPort = &m_dcf1.envelope; break; case samplv1::DCF1_ATTACK: pParamPort = &m_dcf1.env.attack; break; case samplv1::DCF1_DECAY: pParamPort = &m_dcf1.env.decay; break; case samplv1::DCF1_SUSTAIN: pParamPort = &m_dcf1.env.sustain; break; case samplv1::DCF1_RELEASE: pParamPort = &m_dcf1.env.release; break; case samplv1::LFO1_ENABLED: pParamPort = &m_lfo1.enabled; break; case samplv1::LFO1_SHAPE: pParamPort = &m_lfo1.shape; break; case samplv1::LFO1_WIDTH: pParamPort = &m_lfo1.width; break; case samplv1::LFO1_BPM: pParamPort = &m_lfo1.bpm; break; case samplv1::LFO1_RATE: pParamPort = &m_lfo1.rate; break; case samplv1::LFO1_SYNC: pParamPort = &m_lfo1.sync; break; case samplv1::LFO1_SWEEP: pParamPort = &m_lfo1.sweep; break; case samplv1::LFO1_PITCH: pParamPort = &m_lfo1.pitch; break; case samplv1::LFO1_CUTOFF: pParamPort = &m_lfo1.cutoff; break; case samplv1::LFO1_RESO: pParamPort = &m_lfo1.reso; break; case samplv1::LFO1_PANNING: pParamPort = &m_lfo1.panning; break; case samplv1::LFO1_VOLUME: pParamPort = &m_lfo1.volume; break; case samplv1::LFO1_ATTACK: pParamPort = &m_lfo1.env.attack; break; case samplv1::LFO1_DECAY: pParamPort = &m_lfo1.env.decay; break; case samplv1::LFO1_SUSTAIN: pParamPort = &m_lfo1.env.sustain; break; case samplv1::LFO1_RELEASE: pParamPort = &m_lfo1.env.release; break; case samplv1::DCA1_ENABLED: pParamPort = &m_dca1.enabled; break; case samplv1::DCA1_VOLUME: pParamPort = &m_dca1.volume; break; case samplv1::DCA1_ATTACK: pParamPort = &m_dca1.env.attack; break; case samplv1::DCA1_DECAY: pParamPort = &m_dca1.env.decay; break; case samplv1::DCA1_SUSTAIN: pParamPort = &m_dca1.env.sustain; break; case samplv1::DCA1_RELEASE: pParamPort = &m_dca1.env.release; break; case samplv1::OUT1_WIDTH: pParamPort = &m_out1.width; break; case samplv1::OUT1_PANNING: pParamPort = &m_out1.panning; break; case samplv1::OUT1_FXSEND: pParamPort = &m_out1.fxsend; break; case samplv1::OUT1_VOLUME: pParamPort = &m_out1.volume; break; case samplv1::DEF1_PITCHBEND: pParamPort = &m_def.pitchbend; break; case samplv1::DEF1_MODWHEEL: pParamPort = &m_def.modwheel; break; case samplv1::DEF1_PRESSURE: pParamPort = &m_def.pressure; break; case samplv1::DEF1_VELOCITY: pParamPort = &m_def.velocity; break; case samplv1::DEF1_CHANNEL: pParamPort = &m_def.channel; break; case samplv1::DEF1_MONO: pParamPort = &m_def.mono; break; case samplv1::CHO1_WET: pParamPort = &m_cho.wet; break; case samplv1::CHO1_DELAY: pParamPort = &m_cho.delay; break; case samplv1::CHO1_FEEDB: pParamPort = &m_cho.feedb; break; case samplv1::CHO1_RATE: pParamPort = &m_cho.rate; break; case samplv1::CHO1_MOD: pParamPort = &m_cho.mod; break; case samplv1::FLA1_WET: pParamPort = &m_fla.wet; break; case samplv1::FLA1_DELAY: pParamPort = &m_fla.delay; break; case samplv1::FLA1_FEEDB: pParamPort = &m_fla.feedb; break; case samplv1::FLA1_DAFT: pParamPort = &m_fla.daft; break; case samplv1::PHA1_WET: pParamPort = &m_pha.wet; break; case samplv1::PHA1_RATE: pParamPort = &m_pha.rate; break; case samplv1::PHA1_FEEDB: pParamPort = &m_pha.feedb; break; case samplv1::PHA1_DEPTH: pParamPort = &m_pha.depth; break; case samplv1::PHA1_DAFT: pParamPort = &m_pha.daft; break; case samplv1::DEL1_WET: pParamPort = &m_del.wet; break; case samplv1::DEL1_DELAY: pParamPort = &m_del.delay; break; case samplv1::DEL1_FEEDB: pParamPort = &m_del.feedb; break; case samplv1::DEL1_BPM: pParamPort = &m_del.bpm; break; case samplv1::REV1_WET: pParamPort = &m_rev.wet; break; case samplv1::REV1_ROOM: pParamPort = &m_rev.room; break; case samplv1::REV1_DAMP: pParamPort = &m_rev.damp; break; case samplv1::REV1_FEEDB: pParamPort = &m_rev.feedb; break; case samplv1::REV1_WIDTH: pParamPort = &m_rev.width; break; case samplv1::DYN1_COMPRESS: pParamPort = &m_dyn.compress; break; case samplv1::DYN1_LIMITER: pParamPort = &m_dyn.limiter; break; case samplv1::KEY1_LOW: pParamPort = &m_key.low; break; case samplv1::KEY1_HIGH: pParamPort = &m_key.high; break; default: break; } return pParamPort; } void samplv1_impl::setParamValue ( samplv1::ParamIndex index, float fValue ) { samplv1_port *pParamPort = paramPort(index); if (pParamPort) pParamPort->set_value(fValue); } float samplv1_impl::paramValue ( samplv1::ParamIndex index ) { samplv1_port *pParamPort = paramPort(index); return (pParamPort ? pParamPort->value() : 0.0f); } // handle midi input void samplv1_impl::process_midi ( uint8_t *data, uint32_t size ) { for (uint32_t i = 0; i < size; ++i) { // channel status const int channel = (data[i] & 0x0f) + 1; const int status = (data[i] & 0xf0); // channel filter const int ch = int(*m_def.channel); const int on = (ch == 0 || ch == channel); // all system common/real-time ignored if (status == 0xf0) continue; // check data size (#1) if (++i >= size) break; const int key = (data[i] & 0x7f); // program change if (status == 0xc0) { if (on) m_programs.prog_change(key); continue; } // channel aftertouch if (status == 0xd0) { if (on) m_ctl1.pressure = float(key) / 127.0f; continue; } // check data size (#2) if (++i >= size) break; // channel value const int value = (data[i] & 0x7f); // channel/controller filter if (!on) { if (status == 0xb0) m_controls.process_enqueue(channel, key, value); continue; } // note on if (status == 0x90 && value > 0) { if (!m_key.is_note(key)) continue; samplv1_voice *pv; // mono voice modes if (*m_def.mono > 0.0f) { int n = 0; for (pv = m_play_list.next(); pv; pv = pv->next()) { if (pv->note >= 0 && pv->dca1_env.stage != samplv1_env::Release) { m_dcf1.env.note_off_fast(&pv->dcf1_env); m_lfo1.env.note_off_fast(&pv->lfo1_env); m_dca1.env.note_off_fast(&pv->dca1_env); if (++n > 1) { // there shall be only one m_notes[pv->note] = nullptr; pv->note = -1; } } } } pv = m_notes[key]; if (pv && pv->note >= 0/* && !m_ctl1.sustain*/) { // retrigger fast release m_dcf1.env.note_off_fast(&pv->dcf1_env); m_lfo1.env.note_off_fast(&pv->lfo1_env); m_dca1.env.note_off_fast(&pv->dca1_env); m_notes[pv->note] = nullptr; pv->note = -1; } // find free voice pv = alloc_voice(); if (pv) { // waveform pv->note = key; // velocity const float vel = float(value) / 127.0f; // quadratic velocity law pv->vel = samplv1_velocity(vel * vel, *m_def.velocity); // pressure/after-touch pv->pre = 0.0f; pv->dca1_pre.reset( m_def.pressure.value_ptr(), &m_ctl1.pressure, &pv->pre); // frequencies const float gen1_tuning = *m_gen1.octave * OCTAVE_SCALE + *m_gen1.tuning * TUNING_SCALE; pv->gen1_freq = m_freqs[key] * samplv1_freq2(gen1_tuning); // generator pv->gen1.start(pv->gen1_freq); // filters const int dcf1_type = int(*m_dcf1.type); pv->dcf11.reset(samplv1_filter1::Type(dcf1_type)); pv->dcf12.reset(samplv1_filter1::Type(dcf1_type)); pv->dcf13.reset(samplv1_filter2::Type(dcf1_type)); pv->dcf14.reset(samplv1_filter2::Type(dcf1_type)); pv->dcf15.reset(samplv1_filter3::Type(dcf1_type)); pv->dcf16.reset(samplv1_filter3::Type(dcf1_type)); // formant filters const float dcf1_cutoff = *m_dcf1.cutoff; const float dcf1_reso = *m_dcf1.reso; pv->dcf17.reset_filters(dcf1_cutoff, dcf1_reso); pv->dcf18.reset_filters(dcf1_cutoff, dcf1_reso); // envelopes if (*m_dcf1.enabled > 0.0f) m_dcf1.env.start(&pv->dcf1_env); else m_dcf1.env.idle(&pv->dcf1_env); if (*m_lfo1.enabled > 0.0f) m_lfo1.env.start(&pv->lfo1_env); else m_lfo1.env.idle(&pv->lfo1_env); if (*m_dca1.enabled > 0.0f) m_dca1.env.start(&pv->dca1_env); else m_dca1.env.idle(&pv->dca1_env); // something about the loop pv->gen1.setLoop(gen1_sample.next()->isLoop()); // lfos const float lfo1_pshift = (m_lfo1.psync ? m_lfo1.psync->lfo1.pshift() : 0.0f); pv->lfo1_sample = pv->lfo1.start(lfo1_pshift); if (*m_lfo1.sync > 0.0f && m_lfo1.psync == nullptr) m_lfo1.psync = pv; // glides (portamentoa) const float gen1_frames = uint32_t(*m_gen1.glide * *m_gen1.glide * m_srate); pv->gen1_glide.reset(gen1_frames, pv->gen1_freq); // panning pv->out1_panning = 0.0f; pv->out1_pan.reset(&pv->out1_panning); // volume pv->out1_volume = 1.0f; pv->out1_vol.reset(&pv->out1_volume); // sustain pv->sustain = false; // allocated m_notes[key] = pv; } m_midi_in.schedule_note(key, value); } // note off else if (status == 0x80 || (status == 0x90 && value == 0)) { if (!m_key.is_note(key)) continue; samplv1_voice *pv = m_notes[key]; if (pv && pv->note >= 0) { if (m_ctl1.sustain) pv->sustain = true; else if (!pv->sustain) { if (pv->dca1_env.stage != samplv1_env::Release) { m_dca1.env.note_off(&pv->dca1_env); m_dcf1.env.note_off(&pv->dcf1_env); m_lfo1.env.note_off(&pv->lfo1_env); if (gen1_sample.next()->isLoopEndRelease()) pv->gen1.setLoop(false); } m_notes[pv->note] = nullptr; pv->note = -1; // mono legato? if (*m_def.mono > 0.0f) { do pv = pv->prev(); while (pv && pv->note < 0); if (pv && pv->note >= 0) { const bool legato = (*m_def.mono > 1.0f); m_dcf1.env.restart(&pv->dcf1_env, legato); m_lfo1.env.restart(&pv->lfo1_env, legato); m_dca1.env.restart(&pv->dca1_env, legato); pv->gen1.setLoop(*m_gen1.loop > 0.0f); if (!legato) pv->gen1.start(pv->gen1_freq); m_notes[pv->note] = pv; } } } } m_midi_in.schedule_note(key, 0); } // key pressure/poly.aftertouch else if (status == 0xa0) { if (!m_key.is_note(key)) continue; samplv1_voice *pv = m_notes[key]; if (pv && pv->note >= 0) pv->pre = *m_def.pressure * float(value) / 127.0f; } // control change else if (status == 0xb0) { switch (key) { case 0x00: // bank-select MSB (cc#0) m_programs.bank_select_msb(value); break; case 0x01: // modulation wheel (cc#1) m_ctl1.modwheel = *m_def.modwheel * float(value) / 127.0f; break; case 0x07: // channel volume (cc#7) m_ctl1.volume = float(value) / 127.0f; break; case 0x0a: // channel panning (cc#10) m_ctl1.panning = float(value - 64) / 64.0f; break; case 0x20: // bank-select LSB (cc#32) m_programs.bank_select_lsb(value); break; case 0x40: // sustain/damper pedal (cc#64) if (m_ctl1.sustain && value < 64) allSustainOff(); m_ctl1.sustain = bool(value >= 64); break; case 0x42: // sustenuto pedal (cc#66) if (value < 64) allSustainOff(); else allSustainOn(); break; case 0x78: // all sound off (cc#120) allSoundOff(); break; case 0x79: // all controllers off (cc#121) allControllersOff(); break; case 0x7b: // all notes off (cc#123) allNotesOff(); break; } // process controllers... m_controls.process_enqueue(channel, key, value); } // pitch bend else if (status == 0xe0) { const float pitchbend = float(key + (value << 7) - 0x2000) / 8192.0f; m_ctl1.pitchbend = samplv1_pow2f(*m_def.pitchbend * pitchbend); } } // process pending controllers... m_controls.process_dequeue(); // asynchronous event notification... m_midi_in.schedule_event(); } // all controllers off void samplv1_impl::allControllersOff (void) { m_ctl1.reset(); } // all sound off void samplv1_impl::allSoundOff (void) { m_chorus.setSampleRate(m_srate); m_chorus.reset(); for (uint16_t k = 0; k < m_nchannels; ++k) { m_phaser[k].setSampleRate(m_srate); m_delay[k].setSampleRate(m_srate); m_comp[k].setSampleRate(m_srate); m_flanger[k].reset(); m_phaser[k].reset(); m_delay[k].reset(); m_comp[k].reset(); } m_reverb.setSampleRate(m_srate); m_reverb.reset(); } // all notes off void samplv1_impl::allNotesOff (void) { samplv1_voice *pv = m_play_list.next(); while (pv) { if (pv->note >= 0) m_notes[pv->note] = nullptr; free_voice(pv); pv = m_play_list.next(); } gen1_last = 0.0f; m_lfo1.psync = nullptr; m_direct_note = 0; } // all sustained notes off void samplv1_impl::allSustainOff (void) { samplv1_voice *pv = m_play_list.next(); while (pv) { if (pv->note >= 0 && pv->sustain) { pv->sustain = false; if (pv->dca1_env.stage != samplv1_env::Release) { m_dca1.env.note_off(&pv->dca1_env); m_dcf1.env.note_off(&pv->dcf1_env); m_lfo1.env.note_off(&pv->lfo1_env); if (gen1_sample.next()->isLoopEndRelease()) pv->gen1.setLoop(false); m_notes[pv->note] = nullptr; pv->note = -1; } } pv = pv->next(); } } // sustain all notes on (sustenuto) void samplv1_impl::allSustainOn (void) { samplv1_voice *pv = m_play_list.next(); while (pv) { if (pv->note >= 0 && !pv->sustain) pv->sustain = true; pv = pv->next(); } } // direct note-on triggered on next cycle... void samplv1_impl::directNoteOn ( int note, int vel ) { if (vel > 0 && m_nvoices >= MAX_DIRECT_NOTES) return; const uint32_t i = m_direct_note; if (i < MAX_DIRECT_NOTES) { const int ch1 = int(*m_def.channel); const int chan = (ch1 > 0 ? ch1 - 1 : 0) & 0x0f; direct_note& data = m_direct_notes[i]; data.status = (vel > 0 ? 0x90 : 0x80) | chan; data.note = note; data.vel = vel; ++m_direct_note; } } // controllers accessor samplv1_controls *samplv1_impl::controls (void) { return &m_controls; } // programs accessor samplv1_programs *samplv1_impl::programs (void) { return &m_programs; } // Micro-tuning support void samplv1_impl::setTuningEnabled ( bool enabled ) { m_tun.enabled = enabled; } bool samplv1_impl::isTuningEnabled (void) const { return m_tun.enabled; } void samplv1_impl::setTuningRefPitch ( float refPitch ) { m_tun.refPitch = refPitch; } float samplv1_impl::tuningRefPitch (void) const { return m_tun.refPitch; } void samplv1_impl::setTuningRefNote ( int refNote ) { m_tun.refNote = refNote; } int samplv1_impl::tuningRefNote (void) const { return m_tun.refNote; } void samplv1_impl::setTuningScaleFile ( const char *pszScaleFile ) { m_tun.scaleFile = QString::fromUtf8(pszScaleFile); } const char *samplv1_impl::tuningScaleFile (void) const { return m_tun.scaleFile.toUtf8().constData(); } void samplv1_impl::setTuningKeyMapFile ( const char *pszKeyMapFile ) { m_tun.keyMapFile = QString::fromUtf8(pszKeyMapFile); } const char *samplv1_impl::tuningKeyMapFile (void) const { return m_tun.keyMapFile.toUtf8().constData(); } void samplv1_impl::resetTuning (void) { if (m_tun.enabled) { // Instance micro-tuning, possibly from Scala keymap and scale files... samplv1_tuning tuning( m_tun.refPitch, m_tun.refNote); if (m_tun.keyMapFile.isEmpty()) if (!m_tun.keyMapFile.isEmpty()) tuning.loadKeyMapFile(m_tun.keyMapFile); if (!m_tun.scaleFile.isEmpty()) tuning.loadScaleFile(m_tun.scaleFile); for (int note = 0; note < MAX_NOTES; ++note) m_freqs[note] = tuning.noteToPitch(note); // Done instance tuning. } else if (m_config.bTuningEnabled) { // Global/config micro-tuning, possibly from Scala keymap and scale files... samplv1_tuning tuning( m_config.fTuningRefPitch, m_config.iTuningRefNote); if (!m_config.sTuningKeyMapFile.isEmpty()) tuning.loadKeyMapFile(m_config.sTuningKeyMapFile); if (!m_config.sTuningScaleFile.isEmpty()) tuning.loadScaleFile(m_config.sTuningScaleFile); for (int note = 0; note < MAX_NOTES; ++note) m_freqs[note] = tuning.noteToPitch(note); // Done global/config tuning. } else { // Native/default tuning, 12-tone equal temperament western standard... for (int note = 0; note < MAX_NOTES; ++note) m_freqs[note] = samplv1_freq(note); // Done native/default tuning. } } // all stabilize void samplv1_impl::stabilize (void) { for (int i = 0; i < samplv1::NUM_PARAMS; ++i) { samplv1_port *pParamPort = paramPort(samplv1::ParamIndex(i)); if (pParamPort) pParamPort->tick(samplv1_port2::NSTEP); } } // all reset clear void samplv1_impl::reset (void) { m_vol1.reset( m_out1.volume.value_ptr(), m_dca1.volume.value_ptr(), &m_ctl1.volume); m_pan1.reset( m_out1.panning.value_ptr(), &m_ctl1.panning); m_wid1.reset( m_out1.width.value_ptr()); // flangers if (m_flanger == nullptr) m_flanger = new samplv1_fx_flanger [m_nchannels]; // phasers if (m_phaser == nullptr) m_phaser = new samplv1_fx_phaser [m_nchannels]; // delays if (m_delay == nullptr) m_delay = new samplv1_fx_delay [m_nchannels]; // compressors if (m_comp == nullptr) m_comp = new samplv1_fx_comp [m_nchannels]; // reverbs m_reverb.reset(); // controllers reset. m_controls.reset(); allSoundOff(); // allControllersOff(); allNotesOff(); } // MIDI input asynchronous status notification accessors void samplv1_impl::midiInEnabled ( bool on ) { m_midi_in.enabled(on); } uint32_t samplv1_impl::midiInCount (void) { return m_midi_in.count(); } // synthesize void samplv1_impl::process ( float **ins, float **outs, uint32_t nframes ) { if (!m_running) return; float *v_outs[m_nchannels]; float *v_sfxs[m_nchannels]; // FIXME: fx-send buffer reallocation... seriously? if (m_nsize < nframes) alloc_sfxs(nframes); uint16_t k; for (k = 0; k < m_nchannels; ++k) { ::memset(m_sfxs[k], 0, nframes * sizeof(float)); ::memcpy(outs[k], ins[k], nframes * sizeof(float)); } // process direct note on/off... while (m_direct_note > 0) { const direct_note& data = m_direct_notes[--m_direct_note]; process_midi((uint8_t *) &data, sizeof(data)); } // channel indexes const uint16_t k11 = 0; const uint16_t k12 = (gen1_sample.next()->channels() > 1 ? 1 : 0); // controls const bool lfo1_enabled = (*m_lfo1.enabled > 0.0f); const float lfo1_freq = (lfo1_enabled ? get_bpm(*m_lfo1.bpm) / (60.01f - *m_lfo1.rate * 60.0f) : 0.0f); const float modwheel1 = (lfo1_enabled ? m_ctl1.modwheel + PITCH_SCALE * *m_lfo1.pitch : 0.0f); const bool dcf1_enabled = (*m_dcf1.enabled > 0.0f); const float fxsend1 = *m_out1.fxsend * *m_out1.fxsend; if (m_gen1.sample0 != *m_gen1.sample) { m_gen1.sample0 = *m_gen1.sample; gen1_sample.next()->reset(samplv1_freq(m_gen1.sample0)); } if (m_gen1.envtime0 != *m_gen1.envtime) { m_gen1.envtime0 = *m_gen1.envtime; updateEnvTimes(); } if (lfo1_enabled) { lfo1_wave.reset_test( samplv1_wave::Shape(*m_lfo1.shape), *m_lfo1.width); } // per voice samplv1_voice *pv = m_play_list.next(); while (pv) { samplv1_voice *pv_next = pv->next(); // output buffers for (k = 0; k < m_nchannels; ++k) { v_outs[k] = outs[k]; v_sfxs[k] = m_sfxs[k]; } uint32_t nblock = nframes; while (nblock > 0) { uint32_t ngen = nblock; // process envelope stages if (pv->dca1_env.running && pv->dca1_env.frames < ngen) ngen = pv->dca1_env.frames; if (pv->dcf1_env.running && pv->dcf1_env.frames < ngen) ngen = pv->dcf1_env.frames; if (pv->lfo1_env.running && pv->lfo1_env.frames < ngen) ngen = pv->lfo1_env.frames; for (uint32_t j = 0; j < ngen; ++j) { // velocities const float vel1 = (pv->vel + (1.0f - pv->vel) * pv->dca1_pre.value(j)); // generators const float lfo1_env = (lfo1_enabled ? pv->lfo1_env.tick() : 0.0f); const float lfo1 = (lfo1_enabled ? pv->lfo1_sample * lfo1_env : 0.0f); pv->gen1.next(pv->gen1_freq * (m_ctl1.pitchbend + modwheel1 * lfo1) + pv->gen1_glide.tick()); float gen1 = pv->gen1.value(k11); float gen2 = pv->gen1.value(k12); if (lfo1_enabled) { pv->lfo1_sample = pv->lfo1.sample(lfo1_freq * (1.0f + SWEEP_SCALE * *m_lfo1.sweep * lfo1_env)); } // filters if (dcf1_enabled) { const float env1 = 0.5f * (1.0f + *m_dcf1.envelope * pv->dcf1_env.tick()); const float cutoff1 = samplv1_sigmoid_1(*m_dcf1.cutoff * env1 * (1.0f + *m_lfo1.cutoff * lfo1)); const float reso1 = samplv1_sigmoid_1(*m_dcf1.reso * env1 * (1.0f + *m_lfo1.reso * lfo1)); switch (int(*m_dcf1.slope)) { case 3: // Formant gen1 = pv->dcf17.output(gen1, cutoff1, reso1); gen2 = pv->dcf18.output(gen2, cutoff1, reso1); break; case 2: // Biquad gen1 = pv->dcf15.output(gen1, cutoff1, reso1); gen2 = pv->dcf16.output(gen2, cutoff1, reso1); break; case 1: // 24db/octave gen1 = pv->dcf13.output(gen1, cutoff1, reso1); gen2 = pv->dcf14.output(gen2, cutoff1, reso1); break; case 0: // 12db/octave default: gen1 = pv->dcf11.output(gen1, cutoff1, reso1); gen2 = pv->dcf12.output(gen2, cutoff1, reso1); break; } } // volumes const float wid1 = m_wid1.value(j); const float mid1 = 0.5f * (gen1 + gen2); const float sid1 = 0.5f * (gen1 - gen2); const float vol1 = vel1 * m_vol1.value(j) * pv->dca1_env.tick() * pv->out1_vol.value(j); // outputs const float out1 = vol1 * (mid1 + sid1 * wid1) * pv->out1_pan.value(j, 0) * m_pan1.value(j, 0); const float out2 = vol1 * (mid1 - sid1 * wid1) * pv->out1_pan.value(j, 1) * m_pan1.value(j, 1); for (k = 0; k < m_nchannels; ++k) { const float dry = (k & 1 ? out2 : out1); const float wet = fxsend1 * dry; *v_outs[k]++ += dry - wet; *v_sfxs[k]++ += wet; } if (j == 0) { pv->out1_panning = lfo1 * *m_lfo1.panning; pv->out1_volume = lfo1 * *m_lfo1.volume + 1.0f; } } nblock -= ngen; // voice ramps countdown pv->dca1_pre.process(ngen); pv->out1_pan.process(ngen); pv->out1_vol.process(ngen); // envelope countdowns if (pv->dca1_env.running && pv->dca1_env.frames == 0) m_dca1.env.next(&pv->dca1_env); if (pv->gen1.isOver() || pv->dca1_env.stage == samplv1_env::End) { if (pv->note < 0) free_voice(pv); nblock = 0; } else { if (pv->dcf1_env.running && pv->dcf1_env.frames == 0) m_dcf1.env.next(&pv->dcf1_env); if (pv->lfo1_env.running && pv->lfo1_env.frames == 0) m_lfo1.env.next(&pv->lfo1_env); } } // next playing voice pv = pv_next; } // chorus if (m_nchannels > 1) { m_chorus.process(m_sfxs[0], m_sfxs[1], nframes, *m_cho.wet, *m_cho.delay, *m_cho.feedb, *m_cho.rate, *m_cho.mod); } // effects for (k = 0; k < m_nchannels; ++k) { float *in = m_sfxs[k]; // flanger m_flanger[k].process(in, nframes, *m_fla.wet, *m_fla.delay, *m_fla.feedb, *m_fla.daft * float(k)); // phaser m_phaser[k].process(in, nframes, *m_pha.wet, *m_pha.rate, *m_pha.feedb, *m_pha.depth, *m_pha.daft * float(k)); // delay m_delay[k].process(in, nframes, *m_del.wet, *m_del.delay, *m_del.feedb, get_bpm(*m_del.bpm)); } // reverb if (m_nchannels > 1) { m_reverb.process(m_sfxs[0], m_sfxs[1], nframes, *m_rev.wet, *m_rev.feedb, *m_rev.room, *m_rev.damp, *m_rev.width); } // output mix-down for (k = 0; k < m_nchannels; ++k) { uint32_t n; float *sfx = m_sfxs[k]; // compressor if (int(*m_dyn.compress) > 0) m_comp[k].process(sfx, nframes); // limiter if (int(*m_dyn.limiter) > 0) { float *p = sfx; float *q = sfx; for (n = 0; n < nframes; ++n) *q++ = samplv1_sigmoid(*p++); } // mix-down float *out = outs[k]; for (n = 0; n < nframes; ++n) *out++ += *sfx++; } // post-processing m_dca1.volume.tick(nframes); m_out1.width.tick(nframes); m_out1.panning.tick(nframes); m_out1.volume.tick(nframes); m_wid1.process(nframes); m_pan1.process(nframes); m_vol1.process(nframes); m_controls.process(nframes); } void samplv1_impl::sampleReverseTest (void) { if (m_running) m_gen1.reverse.tick(1); } void samplv1_impl::sampleReverseSync (void) { const bool bReverse = gen1_sample.prev()->isReverse(); m_gen1.reverse.set_value_sync(bReverse ? 1.0f : 0.0f); } void samplv1_impl::sampleOffsetTest (void) { if (m_running) { m_gen1.offset.tick(1); m_gen1.offset_1.tick(1); m_gen1.offset_2.tick(1); } } void samplv1_impl::sampleOffsetSync (void) { const bool bOffset = gen1_sample.prev()->isOffset(); m_gen1.offset.set_value_sync(bOffset ? 1.0f : 0.0f); } void samplv1_impl::sampleOffsetRangeSync (void) { const uint32_t iSampleLength = gen1_sample.prev()->length(); const uint32_t iOffsetStart = gen1_sample.prev()->offsetStart(); const uint32_t iOffsetEnd = gen1_sample.prev()->offsetEnd(); const float fOffset_1 = (iSampleLength > 0 ? float(iOffsetStart) / float(iSampleLength) : 0.0f); const float fOffset_2 = (iSampleLength > 0 ? float(iOffsetEnd) / float(iSampleLength) : 1.0f); m_gen1.offset_1.set_value_sync(fOffset_1); m_gen1.offset_2.set_value_sync(fOffset_2); } void samplv1_impl::sampleLoopTest (void) { if (m_running) { m_gen1.loop.tick(1); m_gen1.loop_1.tick(1); m_gen1.loop_2.tick(1); } } void samplv1_impl::sampleLoopSync (void) { const bool bLoop = gen1_sample.prev()->isLoop(); m_gen1.loop.set_value_sync(bLoop ? 1.0f : 0.0f); } void samplv1_impl::sampleLoopRangeSync (void) { const uint32_t iSampleLength = gen1_sample.prev()->length(); const uint32_t iLoopStart = gen1_sample.prev()->loopStart(); const uint32_t iLoopEnd = gen1_sample.prev()->loopEnd(); const float fLoop_1 = (iSampleLength > 0 ? float(iLoopStart) / float(iSampleLength) : 0.0f); const float fLoop_2 = (iSampleLength > 0 ? float(iLoopEnd) / float(iSampleLength) : 1.0f); m_gen1.loop_1.set_value_sync(fLoop_1); m_gen1.loop_2.set_value_sync(fLoop_2); } // process running state... bool samplv1_impl::running ( bool on ) { const bool running = m_running; m_running = on; return running; } //------------------------------------------------------------------------- // samplv1 - decl. // samplv1::samplv1 ( uint16_t nchannels, float srate, uint32_t nsize ) { m_pImpl = new samplv1_impl(this, nchannels, srate, nsize); } samplv1::~samplv1 (void) { delete m_pImpl; } void samplv1::setChannels ( uint16_t nchannels ) { m_pImpl->setChannels(nchannels); } uint16_t samplv1::channels (void) const { return m_pImpl->channels(); } void samplv1::setSampleRate ( float srate ) { m_pImpl->setSampleRate(srate); } float samplv1::sampleRate (void) const { return m_pImpl->sampleRate(); } void samplv1::setSampleFile ( const char *pszSampleFile, uint16_t iOctaves, bool bSync ) { m_pImpl->setSampleFile(pszSampleFile, iOctaves); if (bSync) updateSample(); } const char *samplv1::sampleFile (void) const { return m_pImpl->sampleFile(); } uint16_t samplv1::octaves (void) const { return m_pImpl->octaves(); } samplv1_sample *samplv1::sample (void) const { return m_pImpl->gen1_sample.prev(); } uint32_t samplv1::length (void) const { return m_pImpl->gen1_sample.prev()->length(); } void samplv1::setReverse ( bool bReverse, bool bSync ) { m_pImpl->gen1_sample.prev()->setReverse(bReverse); m_pImpl->sampleReverseSync(); if (bSync) updateSample(); } bool samplv1::isReverse (void) const { return m_pImpl->gen1_sample.prev()->isReverse(); } void samplv1::setOffset ( bool bOffset, bool bSync ) { m_pImpl->gen1_sample.prev()->setOffset(bOffset); m_pImpl->sampleOffsetSync(); if (bSync) updateOffsetRange(); } bool samplv1::isOffset (void) const { return m_pImpl->gen1_sample.prev()->isOffset(); } void samplv1::setOffsetRange ( uint32_t iOffsetStart, uint32_t iOffsetEnd, bool bSync ) { m_pImpl->gen1_sample.prev()->setOffsetRange(iOffsetStart, iOffsetEnd); m_pImpl->sampleOffsetRangeSync(); m_pImpl->updateEnvTimes(); if (bSync) updateOffsetRange(); } uint32_t samplv1::offsetStart (void) const { return m_pImpl->gen1_sample.prev()->offsetStart(); } uint32_t samplv1::offsetEnd (void) const { return m_pImpl->gen1_sample.prev()->offsetEnd(); } void samplv1::setLoop ( bool bLoop, bool bSync ) { m_pImpl->gen1_sample.prev()->setLoop(bLoop); m_pImpl->sampleLoopSync(); if (bSync) updateLoopRange(); } bool samplv1::isLoop (void) const { return m_pImpl->gen1_sample.prev()->isLoop(); } void samplv1::setLoopRange ( uint32_t iLoopStart, uint32_t iLoopEnd, bool bSync ) { m_pImpl->gen1_sample.prev()->setLoopRange(iLoopStart, iLoopEnd); m_pImpl->sampleLoopRangeSync(); if (bSync) updateLoopRange(); } uint32_t samplv1::loopStart (void) const { return m_pImpl->gen1_sample.prev()->loopStart(); } uint32_t samplv1::loopEnd (void) const { return m_pImpl->gen1_sample.prev()->loopEnd(); } void samplv1::setLoopFade ( uint32_t iLoopFade, bool bSync ) { m_pImpl->gen1_sample.prev()->setLoopCrossFade(iLoopFade); if (bSync) updateLoopFade(); } uint32_t samplv1::loopFade (void) const { return uint32_t(m_pImpl->gen1_sample.prev()->loopCrossFade()); } void samplv1::setLoopZero ( bool bLoopZero, bool bSync ) { m_pImpl->gen1_sample.prev()->setLoopZeroCrossing(bLoopZero); if (bSync) updateLoopZero(); } bool samplv1::isLoopZero (void) const { return m_pImpl->gen1_sample.prev()->isLoopZeroCrossing(); } void samplv1::setLoopRelease ( bool bLoopRelease, bool bSync ) { m_pImpl->gen1_sample.prev()->setLoopEndRelease(bLoopRelease); if (bSync) updateLoopRelease(); } bool samplv1::isLoopRelease (void) const { return m_pImpl->gen1_sample.prev()->isLoopEndRelease(); } void samplv1::setBufferSize ( uint32_t nsize ) { m_pImpl->setBufferSize(nsize); } uint32_t samplv1::bufferSize (void) const { return m_pImpl->bufferSize(); } void samplv1::setTempo ( float bpm ) { m_pImpl->setTempo(bpm); } float samplv1::tempo (void) const { return m_pImpl->tempo(); } void samplv1::setParamPort ( ParamIndex index, float *pfParam ) { m_pImpl->setParamPort(index, pfParam); } samplv1_port *samplv1::paramPort ( ParamIndex index ) const { return m_pImpl->paramPort(index); } void samplv1::setParamValue ( ParamIndex index, float fValue ) { m_pImpl->setParamValue(index, fValue); } float samplv1::paramValue ( ParamIndex index ) const { return m_pImpl->paramValue(index); } void samplv1::process_midi ( uint8_t *data, uint32_t size ) { #ifdef CONFIG_DEBUG_0 fprintf(stderr, "samplv1[%p]::process_midi(%u)", this, size); for (uint32_t i = 0; i < size; ++i) fprintf(stderr, " %02x", data[i]); fprintf(stderr, "\n"); #endif m_pImpl->process_midi(data, size); } void samplv1::process ( float **ins, float **outs, uint32_t nframes ) { m_pImpl->process(ins, outs, nframes); m_pImpl->sampleReverseTest(); } // controllers accessor samplv1_controls *samplv1::controls (void) const { return m_pImpl->controls(); } // programs accessor samplv1_programs *samplv1::programs (void) const { return m_pImpl->programs(); } // process state bool samplv1::running ( bool on ) { return m_pImpl->running(on); } // all stabilize void samplv1::stabilize (void) { m_pImpl->stabilize(); } // all reset clear void samplv1::reset (void) { m_pImpl->reset(); } void samplv1::sampleOffsetLoopTest (void) { m_pImpl->sampleOffsetTest(); m_pImpl->sampleLoopTest(); } // MIDI input asynchronous status notification accessors void samplv1::midiInEnabled ( bool on ) { m_pImpl->midiInEnabled(on); } uint32_t samplv1::midiInCount (void) { return m_pImpl->midiInCount(); } // MIDI direct note on/off triggering void samplv1::directNoteOn ( int note, int vel ) { m_pImpl->directNoteOn(note, vel); } // Micro-tuning support void samplv1::setTuningEnabled ( bool enabled ) { m_pImpl->setTuningEnabled(enabled); } bool samplv1::isTuningEnabled (void) const { return m_pImpl->isTuningEnabled(); } void samplv1::setTuningRefPitch ( float refPitch ) { m_pImpl->setTuningRefPitch(refPitch); } float samplv1::tuningRefPitch (void) const { return m_pImpl->tuningRefPitch(); } void samplv1::setTuningRefNote ( int refNote ) { m_pImpl->setTuningRefNote(refNote); } int samplv1::tuningRefNote (void) const { return m_pImpl->tuningRefNote(); } void samplv1::setTuningScaleFile ( const char *pszScaleFile ) { m_pImpl->setTuningScaleFile(pszScaleFile); } const char *samplv1::tuningScaleFile (void) const { return m_pImpl->tuningScaleFile(); } void samplv1::setTuningKeyMapFile ( const char *pszKeyMapFile ) { m_pImpl->setTuningKeyMapFile(pszKeyMapFile); } const char *samplv1::tuningKeyMapFile (void) const { return m_pImpl->tuningKeyMapFile(); } void samplv1::resetTuning (void) { m_pImpl->resetTuning(); } // end of samplv1.cpp samplv1-1.4.3/src/PaxHeaders/samplv1widget_controls.h0000644000000000000000000000013215245503134017634 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_controls.h0000644000175000001440000000407715245503134017634 0ustar00rncbcusers// samplv1widget_controls.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_controls_h #define __samplv1widget_controls_h #include #include // forward decls. class samplv1_controls; //---------------------------------------------------------------------------- // samplv1widget_controls -- Custom (tree) widget. class samplv1widget_controls : public QTreeWidget { Q_OBJECT public: // ctor. samplv1widget_controls(QWidget *pParent = nullptr); // dtor. ~samplv1widget_controls(); // utilities. void loadControls(samplv1_controls *pControls); void saveControls(samplv1_controls *pControls); // controller name utilities. typedef QMap Names; static const Names& controllerNames(); static const Names& rpnNames(); static const Names& nrpnNames(); static const Names& control14Names(); public slots: // slots. void addControlItem(); protected slots: // private slots. void itemChangedSlot(QTreeWidgetItem *, int); protected: // item delegate decl.. class ItemDelegate; // factory methods. QTreeWidgetItem *newControlItem(); }; #endif // __samplv1widget_controls_h // end of samplv1widget_controls.h samplv1-1.4.3/src/PaxHeaders/samplv1_tuning.h0000644000000000000000000000013215245503134016071 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_tuning.h0000644000175000001440000000611015245503134016057 0ustar00rncbcusers// samplv1_tuning.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_tuning_h #define __samplv1_tuning_h #include #include //------------------------------------------------------------------------- // TuningMap // // -- borrowed, stirred and refactored from amsynth -- // https://github.com/amsynth/amsynth // Copyright (C) 2001-2012 Nick Dowell // /* * A TuningMap consists of two parts. * * The "key map" maps from MIDI note numbers to logical note numbers * for the scale. This is often the identity mapping, but if your * scale has, for example, 11 notes in it, you'll want to skip one * per octave so the scale lines up with the pattern of keys on a * standard keyboard. * * The "scale" maps from those logical note numbers to actual pitches. * In terms of member variables, "scale" and "scaleDesc" belong to the * scale, and everything else belongs to the mapping. * * For more information, refer to http://www.huygens-fokker.org/scala/ */ class samplv1_tuning { public: // Default reference note and pitch (A4 @440hz) samplv1_tuning(float refPitch = 440.0f, int refNote = 69); // Default 12-tone equal temperament, wstern standard mapping void reset(float refPitch, int refNote); // Reference note and pitch accessors. float refPitch() const { return m_refPitch; } int refNote() const { return m_refNote; } // Load custom Scala key map file (.kbm) bool loadKeyMapFile (const QString& filename); // Load custom Scala scale file (.scl) bool loadScaleFile (const QString& filename); const QString& keyMapFile() const { return m_keyMapFile; } const QString& scaleFile() const { return m_scaleFile; } const QString& scaleDesc() const { return m_scaleDesc; } // The main pitch/frequency (Hz) getter float noteToPitch(int note) const; protected: float parseScaleLine(const QString& line) const; void updateBasePitch(); private: // Instance member variables. QString m_keyMapFile; QString m_scaleFile; QString m_scaleDesc; QVector m_scale; float m_refPitch; int m_refNote; int m_zeroNote; int m_mapRepeatInc; float m_basePitch; QVector m_mapping; }; #endif // __samplv1_tuning_h // end of samplv1_tuning.h samplv1-1.4.3/src/PaxHeaders/samplv1_ramp.h0000644000000000000000000000013215245503134015524 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_ramp.h0000644000175000001440000001310115245503134015510 0ustar00rncbcusers// samplv1_ramp.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_ramp_h #define __samplv1_ramp_h #include #include //------------------------------------------------------------------------- // samplv1_ramp - ramp/smooth parameter changes class samplv1_ramp { public: samplv1_ramp(uint16_t nvalues = 1) { m_nvalues = nvalues; m_value0 = new float [m_nvalues]; m_value1 = new float [m_nvalues]; m_delta = new float [m_nvalues]; for (uint16_t i = 0; i < m_nvalues; ++i) m_value0[i] = m_value1[i] = m_delta[i] = 0.0f; m_frames = 0; } virtual ~samplv1_ramp() { delete [] m_delta; delete [] m_value1; delete [] m_value0; } void reset() { for (uint16_t i = 0; i < m_nvalues; ++i) { m_value0[i] = m_value1[i]; m_value1[i] = evaluate(i); } m_frames = 0; } void process(uint32_t nframes) { if (m_frames > 0) { if (nframes > m_frames) nframes = m_frames; for (uint16_t i = 0; i < m_nvalues; ++i) m_value0[i] += float(nframes) * m_delta[i]; m_frames -= nframes; } else if (probe()) { reset(); m_frames = nframes; const uint32_t MIN_FRAMES = 32; if (m_frames < MIN_FRAMES) m_frames = MIN_FRAMES; for (uint16_t i = 0; i < m_nvalues; ++i) m_delta[i] = (m_value1[i] - m_value0[i]) / float(m_frames); } } float value(uint32_t n, uint16_t i = 0) const { return (n < m_frames ? (m_value0[i] + float(n) * m_delta[i]) : m_value1[i]); } protected: virtual bool probe() const = 0; virtual float evaluate(uint16_t i) = 0; private: uint16_t m_nvalues; float *m_value1; float *m_value0; float *m_delta; uint32_t m_frames; }; //------------------------------------------------------------------------- // samplv1_ramp1 (1 port tracking) class samplv1_ramp1 : public samplv1_ramp { public: samplv1_ramp1(uint16_t nvalues = 1) : samplv1_ramp(nvalues), m_param1(nullptr), m_param1_v(0.0f) {} void reset(float *param1) { m_param1 = param1; m_param1_v = 0.0f; samplv1_ramp::reset(); } protected: virtual bool probe() const { return m_param1 && ::fabsf(*m_param1 - m_param1_v) > 0.001f; } virtual float evaluate(uint16_t) { update(); return m_param1_v; } void update() { if (m_param1) m_param1_v = *m_param1; } float *m_param1; float m_param1_v; }; //------------------------------------------------------------------------- // samplv1_ramp2 (2 port tracking) class samplv1_ramp2 : public samplv1_ramp1 { public: samplv1_ramp2(uint16_t nvalues = 1) : samplv1_ramp1(nvalues), m_param2(nullptr), m_param2_v(0.0f) {} void reset(float *param1, float *param2) { m_param2 = param2; m_param2_v = 0.0f; samplv1_ramp1::reset(param1); } protected: virtual bool probe() const { return samplv1_ramp1::probe() || (m_param2 && ::fabsf(*m_param2 - m_param2_v) > 0.001f); } virtual float evaluate(uint16_t i) { update(); return samplv1_ramp1::evaluate(i) * m_param2_v; } void update() { samplv1_ramp1::update(); if (m_param2) m_param2_v = *m_param2; } float *m_param2; float m_param2_v; }; //------------------------------------------------------------------------- // samplv1_ramp3 (3 port tracking) class samplv1_ramp3 : public samplv1_ramp2 { public: samplv1_ramp3(uint16_t nvalues = 1) : samplv1_ramp2(nvalues), m_param3(nullptr), m_param3_v(0.0f) {} void reset(float *param1, float *param2, float *param3) { m_param3 = param3; m_param3_v = 0.0f; samplv1_ramp2::reset(param1, param2); } protected: virtual bool probe() const { return samplv1_ramp2::probe() || (m_param3 && ::fabsf(*m_param3 - m_param3_v) > 0.001f); } virtual float evaluate(uint16_t i) { update(); return samplv1_ramp2::evaluate(i) * m_param3_v; } void update() { samplv1_ramp2::update(); if (m_param3) m_param3_v = *m_param3; } float *m_param3; float m_param3_v; }; //------------------------------------------------------------------------- // samplv1_ramp4 (4 port tracking) class samplv1_ramp4 : public samplv1_ramp3 { public: samplv1_ramp4(uint16_t nvalues = 1) : samplv1_ramp3(nvalues), m_param4(nullptr), m_param4_v(0.0f) {} void reset(float *param1, float *param2, float *param3, float *param4) { m_param4 = param4; m_param4_v = 0.0f; samplv1_ramp3::reset(param1, param2, param3); } protected: virtual bool probe() const { return samplv1_ramp3::probe() || (m_param4 && ::fabsf(*m_param4 - m_param4_v) > 0.001f); } virtual float evaluate(uint16_t i) { update(); return samplv1_ramp3::evaluate(i) * m_param4_v; } void update() { samplv1_ramp3::update(); if (m_param4) m_param4_v = *m_param4; } float *m_param4; float m_param4_v; }; #endif // __samplv1_ramp_h // end of samplv1_ramp.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_filt.h0000644000000000000000000000013215245503134016727 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_filt.h0000644000175000001440000000512115245503134016716 0ustar00rncbcusers// samplv1widget_filt.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_filt_h #define __samplv1widget_filt_h #include #include //---------------------------------------------------------------------------- // samplv1widget_filt -- Custom widget class samplv1widget_filt : public QFrame { Q_OBJECT public: // Constructor. samplv1widget_filt(QWidget *pParent = nullptr); // Destructor. ~samplv1widget_filt(); // Parameter getters. float cutoff() const; float reso() const; float type() const; float slope() const; public slots: // Parameter setters. void setCutoff(float fCutoff); void setReso(float fReso); void setType(float fType); void setSlope(float fSlope); signals: // Parameter change signals. void cutoffChanged(float fCutoff); void resoChanged(float fReso); protected: // Draw canvas. void paintEvent(QPaintEvent *); // Filter types/slopes. enum Types { LPF = 0, BPF = 1, HPF = 2, BRF = 3, L2F = 4 }; enum Slopes { S12DB = 0, S24DB = 1, SBIQUAD = 2, SFORMANT = 3 }; // Drag/move curve. void dragCurve(const QPoint& pos); // Mouse interaction. void mousePressEvent(QMouseEvent *pMouseEvent); void mouseMoveEvent(QMouseEvent *pMouseEvent); void mouseReleaseEvent(QMouseEvent *pMouseEvent); void wheelEvent(QWheelEvent *pWheelEvent); // Resize canvas. void resizeEvent(QResizeEvent *); // Update the drawing path. void updatePath(); private: // Instance state. float m_fCutoff; float m_fReso; int m_iType; int m_iSlope; // Drag state. bool m_bDragging; QPoint m_posDrag; // Drawable path. QPainterPath m_path; }; #endif // __samplv1widget_filt_h // end of samplv1widget_filt.h samplv1-1.4.3/src/PaxHeaders/samplv1_config.cpp0000644000000000000000000000013215245503134016365 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_config.cpp0000644000175000001440000004540015245503134016360 0ustar00rncbcusers// samplv1_config.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_config.h" #include "samplv1_programs.h" #include "samplv1_controls.h" #include #include #include #ifndef CONFIG_BINDIR #define CONFIG_BINDIR CONFIG_PREFIX "/bin" #endif #ifndef CONFIG_DATADIR #define CONFIG_DATADIR CONFIG_PREFIX "/share" #endif // Local static consts. static const char *PresetsGroup = "/Presets"; static const char *PresetsListKey = "/PresetList"; static const char *PresetsBanksGroup = "/Banks"; static const char *PresetsBankListKey = "/BankList"; static const char *PresetsConfGroup = "/PresetsConf"; static const char *PresetsConfListKey = "/ConfList"; static const char *ProgramsGroup = "/Programs"; static const char *BankPrefix = "/Bank_"; static const char *ControlsGroup = "/Controllers"; static const char *ControlPrefix = "/Control"; //------------------------------------------------------------------------- // samplv1_config - Prototype settings structure (pseudo-singleton). // // Singleton instance accessor (static). samplv1_config *samplv1_config::g_pSettings = nullptr; samplv1_config *samplv1_config::getInstance (void) { return g_pSettings; } // Constructor. samplv1_config::samplv1_config (void) : QSettings(PROJECT_DOMAIN, PROJECT_NAME) { g_pSettings = this; load(); } // Default destructor. samplv1_config::~samplv1_config (void) { save(); g_pSettings = nullptr; } // Preset utility methods. QString samplv1_config::presetFile ( const QString& sPreset ) { QSettings::beginGroup(PresetsGroup); const QString sPresetFile(QSettings::value(sPreset).toString()); QSettings::endGroup(); return sPresetFile; } void samplv1_config::setPresetFile ( const QString& sPreset, const QString& sPresetFile ) { QSettings::beginGroup(PresetsGroup); QSettings::setValue(sPreset, sPresetFile); QSettings::endGroup(); } void samplv1_config::removePreset ( const QString& sPreset ) { QSettings::beginGroup(PresetsGroup); const QString& sPresetFile = QSettings::value(sPreset).toString(); if (QFileInfo::exists(sPresetFile)) QFile(sPresetFile).remove(); QSettings::remove(sPreset); QSettings::endGroup(); } // Presets utility methods. void samplv1_config::importPresets ( const QString& sFilename, samplv1_presets *pPresets ) { QSettings settings(sFilename, QSettings::IniFormat); struct AbsPath : MapPath { AbsPath(const QString& sFilename) : dir(QFileInfo(sFilename).absolutePath()) {} QString operator()(const QString& sPath) const override { return QFileInfo(dir.filePath(sPath)).canonicalFilePath(); } QDir dir; }; loadPresets(&settings, pPresets, AbsPath(sFilename)); } void samplv1_config::loadPresets ( QSettings *pSettings, samplv1_presets *pPresets, const MapPath& mapPath ) { QStringList bank_list; pSettings->beginGroup(PresetsBankListKey); bank_list = pSettings->value(PresetsBankListKey).toStringList(); pSettings->endGroup(); pSettings->beginGroup(PresetsBanksGroup); QStringListIterator bank_iter(bank_list); while (bank_iter.hasNext()) { const QString& sBank = bank_iter.next(); samplv1_presets::Bank *pBank = pPresets->add_bank(sBank); const QStringList& preset_list = pSettings->value(sBank).toStringList(); QStringListIterator preset_iter(preset_list); while (preset_iter.hasNext()) { const QString& sPreset = preset_iter.next(); pBank->add_preset(sPreset); } } pSettings->endGroup(); QStringList preset_list; pSettings->beginGroup(PresetsListKey); preset_list = pSettings->value(PresetsListKey).toStringList(); pSettings->endGroup(); pSettings->beginGroup(PresetsGroup); const QStringList& preset_keys = pSettings->childKeys(); QStringListIterator preset_key(preset_keys); while (preset_key.hasNext()) { const QString& sPresetKey = preset_key.next(); if (!preset_list.contains(sPresetKey)) preset_list.append(sPresetKey); } QStringListIterator preset_iter(preset_list); while (preset_iter.hasNext()) { const QString& sPreset = preset_iter.next(); samplv1_presets::Preset *pPreset = pPresets->find_preset(sPreset); if (pPreset == nullptr) pPreset = pPresets->add_preset(sPreset); const QString& sPresetFile = mapPath(pSettings->value(sPreset).toString()); if (!sPresetFile.isEmpty() && QFileInfo::exists(sPresetFile)) { pPreset->set_file(sPresetFile); } else { pPresets->remove_preset(sPreset); } } pSettings->endGroup(); // cleanup database from dangling banks/presets... // bank_iter.toFront(); while (bank_iter.hasNext()) { const QString& sBank = bank_iter.next(); samplv1_presets::Bank *pBank = pPresets->find_bank(sBank); if (pBank == nullptr) { pPresets->remove_bank(sBank); } else { const QStringList& preset_list = pBank->preset_list(); QStringListIterator preset_iter(preset_list); while (preset_iter.hasNext()) { const QString& sPreset = preset_iter.next(); if (pPresets->find_preset(sPreset) == nullptr) pBank->remove_preset(sPreset); } } } } void samplv1_config::loadPresets (void) { presets.clear_banks(); presets.clear_presets(); loadPresets(this, &presets); if (loadPresetsConf(this, &presets) > 0) savePresets(); } void samplv1_config::exportPresets ( const QString& sFilename, samplv1_presets *pPresets ) { QSettings settings(sFilename, QSettings::IniFormat); struct RelPath : MapPath { RelPath(const QString& sFilename) : dir(QFileInfo(sFilename).absolutePath()) {} QString operator()(const QString& sPath) const override { return dir.relativeFilePath(sPath); } QDir dir; }; savePresets(&settings, pPresets, RelPath(sFilename)); } void samplv1_config::savePresets ( QSettings *pSettings, samplv1_presets *pPresets, const MapPath& mapPath ) { const QStringList& bank_list = pPresets->bank_list(); pSettings->beginGroup(PresetsBankListKey); if (bank_list.isEmpty()) pSettings->remove(PresetsBankListKey); else pSettings->setValue(PresetsBankListKey, bank_list); pSettings->endGroup(); pSettings->beginGroup(PresetsBanksGroup); const QStringList& bank_keys = pSettings->childKeys(); QStringListIterator bank_key(bank_keys); while (bank_key.hasNext()) pSettings->remove(bank_key.next()); QStringListIterator bank_iter(bank_list); while (bank_iter.hasNext()) { const QString& sBank = bank_iter.next(); samplv1_presets::Bank *pBank = pPresets->find_bank(sBank); if (pBank == nullptr) continue; QStringList preset_list; QStringListIterator bank_preset_iter(pBank->preset_list()); while (bank_preset_iter.hasNext()) { const QString& sPreset = bank_preset_iter.next(); preset_list.append(sPreset); } if (preset_list.isEmpty()) pSettings->remove(sBank); else pSettings->setValue(sBank, preset_list); } pSettings->endGroup(); const QStringList& preset_list = pPresets->preset_list(); pSettings->beginGroup(PresetsListKey); if (preset_list.isEmpty()) pSettings->remove(PresetsListKey); else pSettings->setValue(PresetsListKey, preset_list); pSettings->endGroup(); pSettings->beginGroup(PresetsGroup); const QStringList& preset_keys = pSettings->childKeys(); QStringListIterator preset_key(preset_keys); while (preset_key.hasNext()) pSettings->remove(preset_key.next()); const samplv1_presets::Presets& presets_map = pPresets->presets(); samplv1_presets::Presets::ConstIterator presets_iter = presets_map.constBegin(); const samplv1_presets::Presets::ConstIterator& presets_end = presets_map.constEnd(); for ( ; presets_iter != presets_end; ++presets_iter) { const QString& sPreset = presets_iter.key(); samplv1_presets::Preset *pPreset = presets_iter.value(); const QString& sPresetFile = mapPath(pPreset->file()); if (!sPresetFile.isEmpty()) { pSettings->setValue(sPreset, sPresetFile); } else { pPresets->remove_preset(sPreset); } } pSettings->endGroup(); pSettings->sync(); } void samplv1_config::savePresets (void) { savePresets(this, &presets); } // Factory presets(.conf) loading... // int samplv1_config::loadPresetsConf ( QSettings *pSettings, samplv1_presets *pPresets ) { int nconfs = 0; pSettings->beginGroup(PresetsConfGroup); QStringList confs = pSettings->value(PresetsConfListKey).toStringList(); if (confs.isEmpty() || pPresets->isEmpty()) { const QChar sep = QDir::separator(); QString sPresetsPath = QCoreApplication::applicationDirPath(); sPresetsPath.remove(CONFIG_BINDIR); sPresetsPath.append(CONFIG_DATADIR); sPresetsPath.append(sep); sPresetsPath.append(PROJECT_NAME); sPresetsPath.append(sep); sPresetsPath.append("preset"); QDir dir(sPresetsPath); if (dir.exists() && dir.isReadable()) { pSettings->remove(PresetsConfListKey); nconfs += loadPresetsConfDir(pPresets, dir, confs); if (nconfs > 0) pSettings->setValue(PresetsConfListKey, confs); } } pSettings->endGroup(); return nconfs; } int samplv1_config::loadPresetsConfDir ( samplv1_presets *pPresets, const QDir& dir, QStringList& confs ) { int nconfs = 0; const QDir::Filters filters = QDir::AllDirs | QDir::NoDotAndDotDot; QStringListIterator dir_iter(dir.entryList(filters)); while (dir_iter.hasNext()) { nconfs += loadPresetsConfDir(pPresets, QDir(QFileInfo(dir, dir_iter.next()).filePath()), confs); } const QStringList filter("*." PROJECT_NAME ".conf"); QStringListIterator iter(dir.entryList(filter, QDir::Files)); while (iter.hasNext()) { const QFileInfo fi(dir, iter.next()); const QString& sFilename = fi.absoluteFilePath(); if (!confs.contains(sFilename)) { samplv1_config::importPresets(sFilename, pPresets); confs.append(sFilename); ++nconfs; } } return nconfs; } // Programs utility methods. void samplv1_config::loadPrograms ( samplv1_programs *pPrograms ) { pPrograms->clear_banks(); QSettings::beginGroup(ProgramsGroup); const QStringList& bank_keys = QSettings::childKeys(); QStringListIterator bank_iter(bank_keys); while (bank_iter.hasNext()) { const QString& bank_key = bank_iter.next(); uint16_t bank_id = bank_key.toInt(); const QString& bank_name = QSettings::value(bank_key).toString(); samplv1_programs::Bank *pBank = pPrograms->add_bank(bank_id, bank_name); QSettings::beginGroup(BankPrefix + bank_key); const QStringList& prog_keys = QSettings::childKeys(); QStringListIterator prog_iter(prog_keys); while (prog_iter.hasNext()) { const QString& prog_key = prog_iter.next(); uint16_t prog_id = prog_key.toInt(); const QString& prog_name = QSettings::value(prog_key).toString(); pBank->add_prog(prog_id, prog_name); } QSettings::endGroup(); } QSettings::endGroup(); pPrograms->enabled(bProgramsEnabled); } void samplv1_config::savePrograms ( samplv1_programs *pPrograms ) { bProgramsEnabled = pPrograms->enabled(); clearPrograms(); QSettings::beginGroup(ProgramsGroup); const samplv1_programs::Banks& banks = pPrograms->banks(); samplv1_programs::Banks::ConstIterator bank_iter = banks.constBegin(); const samplv1_programs::Banks::ConstIterator& bank_end = banks.constEnd(); for ( ; bank_iter != bank_end; ++bank_iter) { samplv1_programs::Bank *pBank = bank_iter.value(); const QString& bank_key = QString::number(pBank->id()); const QString& bank_name = pBank->name(); QSettings::setValue(bank_key, bank_name); QSettings::beginGroup(BankPrefix + bank_key); const samplv1_programs::Progs& progs = pBank->progs(); samplv1_programs::Progs::ConstIterator prog_iter = progs.constBegin(); const samplv1_programs::Progs::ConstIterator& prog_end = progs.constEnd(); for ( ; prog_iter != prog_end; ++prog_iter) { samplv1_programs::Prog *pProg = prog_iter.value(); const QString& prog_key = QString::number(pProg->id()); const QString& prog_name = pProg->name(); QSettings::setValue(prog_key, prog_name); } QSettings::endGroup(); } QSettings::endGroup(); QSettings::sync(); } void samplv1_config::clearPrograms (void) { QSettings::beginGroup(ProgramsGroup); const QStringList& bank_keys = QSettings::childKeys(); QStringListIterator bank_iter(bank_keys); while (bank_iter.hasNext()) { const QString& bank_key = bank_iter.next(); QSettings::beginGroup(BankPrefix + bank_key); const QStringList& prog_keys = QSettings::childKeys(); QStringListIterator prog_iter(prog_keys); while (prog_iter.hasNext()) { const QString& prog_key = prog_iter.next(); QSettings::remove(prog_key); } QSettings::endGroup(); QSettings::remove(bank_key); } QSettings::endGroup(); } // Controllers utility methods. void samplv1_config::loadControls ( samplv1_controls *pControls ) { pControls->clear(); QSettings::beginGroup(ControlsGroup); const QStringList& keys = QSettings::childKeys(); QStringListIterator iter(keys); while (iter.hasNext()) { const QString& sKey = '/' + iter.next(); const QStringList& clist = sKey.split('_'); if (clist.at(0) == ControlPrefix) { const unsigned short channel = clist.at(1).toInt(); const samplv1_controls::Type ctype = samplv1_controls::typeFromText(clist.at(2)); samplv1_controls::Key key; key.status = ctype | (channel & 0x1f); key.param = clist.at(3).toInt(); const QStringList& vlist = QSettings::value(sKey).toStringList(); samplv1_controls::Data data; data.index = vlist.at(0).toInt(); if (vlist.count() > 1) data.flags = vlist.at(1).toInt(); pControls->add_control(key, data); } } QSettings::endGroup(); pControls->enabled(bControlsEnabled); } void samplv1_config::saveControls ( samplv1_controls *pControls ) { bControlsEnabled = pControls->enabled(); clearControls(); QSettings::beginGroup(ControlsGroup); const samplv1_controls::Map& map = pControls->map(); samplv1_controls::Map::ConstIterator iter = map.constBegin(); const samplv1_controls::Map::ConstIterator& iter_end = map.constEnd(); for ( ; iter != iter_end; ++iter) { const samplv1_controls::Key& key = iter.key(); QString sKey = ControlPrefix; sKey += '_' + QString::number(key.channel()); sKey += '_' + samplv1_controls::textFromType(key.type()); sKey += '_' + QString::number(key.param); const samplv1_controls::Data& data = iter.value(); QStringList vlist; vlist.append(QString::number(data.index)); vlist.append(QString::number(data.flags)); QSettings::setValue(sKey, vlist); } QSettings::endGroup(); QSettings::sync(); } void samplv1_config::clearControls (void) { QSettings::beginGroup(ControlsGroup); const QStringList& keys = QSettings::childKeys(); QStringListIterator iter(keys); while (iter.hasNext()) { const QString& key = iter.next(); QSettings::remove(key); } QSettings::endGroup(); } // Explicit I/O methods. void samplv1_config::load (void) { QSettings::beginGroup("/Default"); sPreset = QSettings::value("/Preset").toString(); sPresetDir = QSettings::value("/PresetDir").toString(); sSampleDir = QSettings::value("/SampleDir").toString(); iKnobDialMode = QSettings::value("/KnobDialMode", 0).toInt(); iKnobEditMode = QSettings::value("/KnobEditMode", 0).toInt(); iFrameTimeFormat = QSettings::value("/FrameTimeFormat", 0).toInt(); fRandomizePercent = QSettings::value("/RandomizePercent", 20.0f).toFloat(); iPitchShiftType = QSettings::value("/PitchShiftType", 0).toInt(); bControlsEnabled = QSettings::value("/ControlsEnabled", false).toBool(); bProgramsEnabled = QSettings::value("/ProgramsEnabled", false).toBool(); QSettings::endGroup(); QSettings::beginGroup("/Dialogs"); bPresetsPreview = QSettings::value("/PresetsPreview", false).toBool(); bProgramsPreview = QSettings::value("/ProgramsPreview", false).toBool(); bUseNativeDialogs = QSettings::value("/UseNativeDialogs", false).toBool(); // Run-time special non-persistent options. bDontUseNativeDialogs = !bUseNativeDialogs; QSettings::endGroup(); QSettings::beginGroup("/Custom"); sCustomColorTheme = QSettings::value("/ColorTheme").toString(); sCustomStyleTheme = QSettings::value("/StyleTheme").toString(); QSettings::endGroup(); // Micro-tuning options. QSettings::beginGroup("/Tuning"); bTuningEnabled = QSettings::value("/Enabled", false).toBool(); fTuningRefPitch = float(QSettings::value("/RefPitch", 440.0).toDouble()); iTuningRefNote = QSettings::value("/RefNote", 69).toInt(); sTuningScaleDir = QSettings::value("/ScaleDir").toString(); sTuningScaleFile = QSettings::value("/ScaleFile").toString(); sTuningKeyMapDir = QSettings::value("/KeyMapDir").toString(); sTuningKeyMapFile = QSettings::value("/KeyMapFile").toString(); QSettings::endGroup(); // Presets database. loadPresets(); } void samplv1_config::save (void) { QSettings::beginGroup("/Program"); QSettings::setValue("/Version", PROJECT_VERSION); QSettings::endGroup(); QSettings::beginGroup("/Default"); QSettings::setValue("/Preset", sPreset); QSettings::setValue("/PresetDir", sPresetDir); QSettings::setValue("/SampleDir", sSampleDir); QSettings::setValue("/KnobDialMode", iKnobDialMode); QSettings::setValue("/KnobEditMode", iKnobEditMode); QSettings::setValue("/FrameTimeFormat", iFrameTimeFormat); QSettings::setValue("/RandomizePercent", fRandomizePercent); QSettings::setValue("/PitchShiftType", iPitchShiftType); QSettings::setValue("/ControlsEnabled", bControlsEnabled); QSettings::setValue("/ProgramsEnabled", bProgramsEnabled); QSettings::endGroup(); QSettings::beginGroup("/Dialogs"); QSettings::setValue("/PresetsPreview", bPresetsPreview); QSettings::setValue("/ProgramsPreview", bProgramsPreview); QSettings::setValue("/UseNativeDialogs", bUseNativeDialogs); QSettings::endGroup(); QSettings::beginGroup("/Custom"); QSettings::setValue("/ColorTheme", sCustomColorTheme); QSettings::setValue("/StyleTheme", sCustomStyleTheme); QSettings::endGroup(); // Micro-tuning options. QSettings::beginGroup("/Tuning"); QSettings::setValue("/Enabled", bTuningEnabled); QSettings::setValue("/RefPitch", double(fTuningRefPitch)); QSettings::setValue("/RefNote", iTuningRefNote); QSettings::setValue("/ScaleDir", sTuningScaleDir); QSettings::setValue("/ScaleFile", sTuningScaleFile); QSettings::setValue("/KeyMapDir", sTuningKeyMapDir); QSettings::setValue("/KeyMapFile", sTuningKeyMapFile); QSettings::endGroup(); // Presets database. savePresets(); } // end of samplv1_config.cpp samplv1-1.4.3/src/PaxHeaders/samplv1_wave.h0000644000000000000000000000013215245503134015527 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_wave.h0000644000175000001440000001135715245503134015526 0ustar00rncbcusers// samplv1_wave.h // /**************************************************************************** Copyright (C) 2012-2023, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_wave_h #define __samplv1_wave_h #include //------------------------------------------------------------------------- // samplv1_wave - smoothed (integrating oversampled) wave table. // class samplv1_wave { public: // shape. enum Shape { Pulse = 0, Saw, Sine, Rand, Noise }; // ctor. samplv1_wave(uint32_t nsize = 4096, uint16_t nover = 24); // dtor. ~samplv1_wave(); // properties. Shape shape() const { return m_shape; } float width() const { return m_width; } // sample rate. void setSampleRate(float srate) { m_srate = srate; } float sampleRate() const { return m_srate; } // table size (in frames) uint32_t size() const { return m_nsize; } // phase-zero (for slave reset) float phase0() const { return m_phase0; } // init. void reset(Shape shape, float width); // init.test void reset_test(Shape shape, float width) { if (shape != m_shape || width != m_width) reset(shape, width); } // begin. float start(float& phase, float pshift = 0.0f, float freq = 0.0f) const { phase = m_phase0 + pshift; if (phase >= 1.0f) phase -= 1.0f; return sample(phase, freq); } // iterate. float sample(float& phase, float freq) const { const float index = phase * float(m_nsize); const uint32_t i = uint32_t(index); const float alpha = index - float(i); phase += freq / m_srate; if (phase >= 1.0f) phase -= 1.0f; // cubic interpolation... const float x0 = m_table[i]; const float x1 = m_table[i + 1]; #if 0 // cubic interp. const float x2 = m_table[i + 2]; const float x3 = m_table[i + 3]; const float c1 = (x2 - x0) * 0.5f; const float b1 = (x1 - x2); const float b2 = (c1 + b1); const float c3 = (x3 - x1) * 0.5f + b2 + b1; const float c2 = (c3 + b2); return (((c3 * alpha) - c2) * alpha + c1) * alpha + x1; #else // linear interp. return x0 + alpha * (x1 - x0); #endif } // absolute value. float value(float phase) const { phase += m_phase0; if (phase >= 1.0f) phase -= 1.0f; return m_table[uint32_t(phase * float(m_nsize))]; } protected: // init pulse table. void reset_pulse(); // init saw table. void reset_saw(); // init sine table. void reset_sine(); // init random table. void reset_rand(); // init noise table. void reset_noise(); // post-processors void reset_filter(); void reset_normalize(); void reset_interp(); // Hal Chamberlain's pseudo-random linear congruential method. float pseudo_randf () { m_srand = (m_srand * 196314165) + 907633515; return m_srand / float(INT32_MAX) - 1.0f; } private: uint32_t m_nsize; uint16_t m_nover; Shape m_shape; float m_width; float m_srate; float *m_table; float m_phase0; uint32_t m_srand; }; //------------------------------------------------------------------------- // samplv1_wave_lf - hard/non-smoothed wave table (eg. LFO). // class samplv1_wave_lf : public samplv1_wave { public: // ctor. samplv1_wave_lf(uint32_t nsize = 1024) : samplv1_wave(nsize, 0) {} }; //------------------------------------------------------------------------- // samplv1_oscillator - wave table oscillator // class samplv1_oscillator { public: // ctor. samplv1_oscillator(samplv1_wave *wave = 0) { reset(wave); } // wave and phase accessors. void reset(samplv1_wave *wave) { m_wave = wave; m_phase = 0.0f; } samplv1_wave *wave() const { return m_wave; } // begin. float start(float pshift = 0.0f, float freq = 0.0f) { return m_wave->start(m_phase, pshift, freq); } // iterate. float sample(float freq) { return m_wave->sample(m_phase, freq); } // phase-shift accessor. float pshift() const { const float pshift = m_wave->phase0() + m_phase; return (pshift >= 1.0f ? pshift - 1.0f : pshift); } private: samplv1_wave *m_wave; float m_phase; }; #endif // __samplv1_wave_h // end of samplv1_wave.h samplv1-1.4.3/src/PaxHeaders/CMakeLists.txt0000644000000000000000000000013215245503134015511 xustar0030 mtime=1788249692.166570553 30 atime=1788249692.166570553 30 ctime=1788249692.166570553 samplv1-1.4.3/src/CMakeLists.txt0000644000175000001440000002021515245503134015501 0ustar00rncbcusers# project (samplv1) set (CMAKE_INCLUDE_CURRENT_DIR ON) set (CMAKE_AUTOUIC ON) set (CMAKE_AUTOMOC ON) set (CMAKE_AUTORCC ON) if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/config.h) file (REMOVE ${CMAKE_CURRENT_SOURCE_DIR}/config.h) endif () configure_file (config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h) set (HEADERS samplv1.h samplv1_config.h samplv1_filter.h samplv1_formant.h samplv1_pshifter.h samplv1_resampler.h samplv1_sample.h samplv1_wave.h samplv1_ramp.h samplv1_list.h samplv1_fx.h samplv1_reverb.h samplv1_param.h samplv1_sched.h samplv1_tuning.h samplv1_programs.h samplv1_controls.h samplv1_presets.h ) set (SOURCES samplv1.cpp samplv1_config.cpp samplv1_formant.cpp samplv1_pshifter.cpp samplv1_resampler.cpp samplv1_sample.cpp samplv1_wave.cpp samplv1_param.cpp samplv1_sched.cpp samplv1_tuning.cpp samplv1_programs.cpp samplv1_controls.cpp samplv1_presets.cpp ) set (HEADERS_UI samplv1_ui.h samplv1widget.h samplv1widget_env.h samplv1widget_filt.h samplv1widget_sample.h samplv1widget_wave.h samplv1widget_param.h samplv1widget_keybd.h samplv1widget_status.h samplv1widget_preset.h samplv1widget_presets.h samplv1widget_spinbox.h samplv1widget_programs.h samplv1widget_controls.h samplv1widget_control.h samplv1widget_palette.h samplv1widget_config.h ) set (SOURCES_UI samplv1_ui.cpp samplv1widget.cpp samplv1widget_env.cpp samplv1widget_filt.cpp samplv1widget_sample.cpp samplv1widget_wave.cpp samplv1widget_param.cpp samplv1widget_keybd.cpp samplv1widget_status.cpp samplv1widget_preset.cpp samplv1widget_presets.cpp samplv1widget_spinbox.cpp samplv1widget_programs.cpp samplv1widget_controls.cpp samplv1widget_control.cpp samplv1widget_palette.cpp samplv1widget_config.cpp ) set (FORMS_UI samplv1widget.ui samplv1widget_control.ui samplv1widget_palette.ui samplv1widget_config.ui ) set (RESOURCES_UI samplv1.qrc ) set (HEADERS_LV2 samplv1_lv2.h samplv1_lv2ui.h samplv1widget_lv2.h ) set (SOURCES_LV2 samplv1_lv2.cpp samplv1_lv2ui.cpp samplv1widget_lv2.cpp ) set (HEADERS_JACK samplv1_nsm.h samplv1_jack.h samplv1widget_jack.h ) set (SOURCES_JACK samplv1_nsm.cpp samplv1_jack.cpp samplv1widget_jack.cpp ) add_library (${PROJECT_NAME} STATIC ${HEADERS} ${SOURCES} ) add_library (${PROJECT_NAME}_ui STATIC ${HEADERS_UI} ${SOURCES_UI} ${FORMS_UI} ${RESOURCES_UI} ) if (CONFIG_LV2) add_library (${PROJECT_NAME}_lv2 MODULE ${HEADERS_LV2} ${SOURCES_LV2} ) endif () if (CONFIG_JACK) add_executable (${PROJECT_NAME}_jack ${HEADERS_JACK} ${SOURCES_JACK} ) endif () set_target_properties (${PROJECT_NAME} PROPERTIES CXX_STANDARD 17) set_target_properties (${PROJECT_NAME}_ui PROPERTIES CXX_STANDARD 17) if (QT_VERSION VERSION_GREATER_EQUAL 6.0.0) target_compile_options (${PROJECT_NAME} PRIVATE -fPIC) target_compile_options (${PROJECT_NAME}_ui PRIVATE -fPIC) endif () # Add some debugger flags. if (CONFIG_DEBUG AND UNIX AND NOT APPLE) set (CONFIG_DEBUG_OPTIONS -g -fsanitize=address -fno-omit-frame-pointer) # target_compile_options (${PROJECT_NAME} PRIVATE ${CONFIG_DEBUG_OPTIONS}) # target_compile_options (${PROJECT_NAME}_ui PRIVATE ${CONFIG_DEBUG_OPTIONS}) # if (CONFIG_LV2) # target_compile_options (${PROJECT_NAME}_lv2 PRIVATE ${CONFIG_DEBUG_OPTIONS}) # target_link_options (${PROJECT_NAME}_lv2 PRIVATE ${CONFIG_DEBUG_OPTIONS}) # endif () if (CONFIG_JACK) target_compile_options (${PROJECT_NAME}_jack PRIVATE ${CONFIG_DEBUG_OPTIONS}) target_link_options (${PROJECT_NAME}_jack PRIVATE ${CONFIG_DEBUG_OPTIONS}) endif () endif () target_link_libraries (${PROJECT_NAME} PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Xml) target_link_libraries (${PROJECT_NAME}_ui PUBLIC Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Svg ${PROJECT_NAME}) if (CONFIG_SNDFILE) target_link_libraries (${PROJECT_NAME} PRIVATE PkgConfig::SNDFILE) endif () if (CONFIG_LIBRUBBERBAND) target_link_libraries (${PROJECT_NAME} PRIVATE PkgConfig::RUBBERBAND) endif () if (CONFIG_FFTW3) target_link_libraries (${PROJECT_NAME} PRIVATE PkgConfig::FFTW3) endif () if (CONFIG_LV2) set_target_properties (${PROJECT_NAME}_lv2 PROPERTIES CXX_STANDARD 17) target_link_libraries (${PROJECT_NAME}_lv2 PRIVATE ${PROJECT_NAME}_ui) target_include_directories (${PROJECT_NAME}_lv2 PRIVATE ${LV2_INCLUDE_DIRS}) target_link_directories (${PROJECT_NAME}_lv2 PRIVATE ${LV2_LIBRARY_DIRS}) target_link_libraries (${PROJECT_NAME}_lv2 PRIVATE ${LV2_LIBRARIES}) if (UNIX AND NOT APPLE) if (NOT CONFIG_DEBUG) add_custom_command(TARGET ${PROJECT_NAME}_lv2 POST_BUILD COMMAND strip lib${PROJECT_NAME}_lv2.so) endif () if (CONFIG_PREFIX MATCHES $ENV{HOME}) set (CONFIG_LV2DIR ${CONFIG_PREFIX}/.lv2) else () set (CONFIG_LV2DIR ${CONFIG_LIBDIR}/lv2) endif () install (FILES ${CMAKE_CURRENT_BINARY_DIR}/lib${PROJECT_NAME}_lv2.so RENAME ${PROJECT_NAME}.so DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) install (FILES ${PROJECT_NAME}.lv2/manifest.ttl ${PROJECT_NAME}.lv2/${PROJECT_NAME}.ttl ${PROJECT_NAME}.lv2/${PROJECT_NAME}_ui.ttl DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) endif () if (WIN32) target_link_options (${PROJECT_NAME}_lv2 PRIVATE -static-libgcc -static-libstdc++) if (NOT CONFIG_DEBUG) add_custom_command(TARGET ${PROJECT_NAME}_lv2 POST_BUILD COMMAND strip lib${PROJECT_NAME}_lv2.dll) endif () set (CONFIG_LV2DIR ${CONFIG_WINDOWS_LV2_PATH}) install (FILES ${CMAKE_CURRENT_BINARY_DIR}/lib${PROJECT_NAME}_lv2.dll RENAME ${PROJECT_NAME}.dll DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) install (FILES ${PROJECT_NAME}.lv2/manifest-win32.ttl RENAME manifest.ttl DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) install (FILES ${PROJECT_NAME}.lv2/${PROJECT_NAME}.ttl DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) install (FILES ${PROJECT_NAME}.lv2/${PROJECT_NAME}_ui-win32.ttl RENAME ${PROJECT_NAME}_ui.ttl DESTINATION ${CONFIG_LV2DIR}/${PROJECT_NAME}.lv2) endif () endif () if (CONFIG_JACK) set_target_properties (${PROJECT_NAME}_jack PROPERTIES CXX_STANDARD 17) target_link_libraries (${PROJECT_NAME}_jack PRIVATE ${PROJECT_NAME}_ui) target_link_libraries (${PROJECT_NAME}_jack PRIVATE PkgConfig::JACK) if (CONFIG_ALSA_MIDI) target_link_libraries (${PROJECT_NAME}_jack PRIVATE PkgConfig::ALSA) endif () if (CONFIG_LIBLO) target_link_libraries (${PROJECT_NAME}_jack PRIVATE PkgConfig::LIBLO) endif () if (UNIX AND NOT APPLE) if (NOT CONFIG_DEBUG) add_custom_command(TARGET ${PROJECT_NAME}_jack POST_BUILD COMMAND strip ${PROJECT_NAME}_jack) endif () install (TARGETS ${PROJECT_NAME}_jack RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) install (FILES images/${PROJECT_NAME}.png RENAME org.rncbc.${PROJECT_NAME}.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/apps) install (FILES images/${PROJECT_NAME}.svg RENAME org.rncbc.${PROJECT_NAME}.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps) install (FILES appdata/org.rncbc.${PROJECT_NAME}.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) install (FILES appdata/org.rncbc.${PROJECT_NAME}.metainfo.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo) install (FILES mimetypes/org.rncbc.${PROJECT_NAME}.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages) install (FILES mimetypes/org.rncbc.${PROJECT_NAME}.application-x-${PROJECT_NAME}-preset.png DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/mimetypes) install (FILES mimetypes/org.rncbc.${PROJECT_NAME}.application-x-${PROJECT_NAME}-preset.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/mimetypes) install (FILES man1/${PROJECT_NAME}.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) install (FILES man1/${PROJECT_NAME}.fr.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/fr/man1 RENAME ${PROJECT_NAME}.1) install (FILES palette/KXStudio.conf palette/Wonton\ Soup.conf DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}/palette) endif () endif () samplv1-1.4.3/src/PaxHeaders/samplv1widget_lv2.h0000644000000000000000000000013215245503134016474 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_lv2.h0000644000175000001440000000432515245503134016470 0ustar00rncbcusers// samplv1widget_lv2.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_lv2_h #define __samplv1widget_lv2_h #include "samplv1widget.h" #include "samplv1_lv2ui.h" //------------------------------------------------------------------------- // samplv1widget_lv2 - decl. // class samplv1widget_lv2 : public samplv1widget { public: // Constructor. samplv1widget_lv2(samplv1_lv2 *pSampl, LV2UI_Controller controller, LV2UI_Write_Function write_function); // Destructor. ~samplv1widget_lv2(); // LV2 port event dispatcher. void port_event(uint32_t port_index, uint32_t buffer_size, uint32_t format, const void *buffer); #ifdef CONFIG_LV2_UI_EXTERNAL void setExternalHost(LV2_External_UI_Host *external_host); const LV2_External_UI_Host *externalHost() const; #endif #ifdef CONFIG_LV2_UI_IDLE bool isIdleClosed() const; #endif protected: // Synth engine accessor. samplv1_ui *ui_instance() const; // Param methods. void updateParam(samplv1::ParamIndex index, float fValue) const; // Close event handler. void closeEvent(QCloseEvent *pCloseEvent); private: // Instance variables. samplv1_lv2ui *m_pSamplUi; #ifdef CONFIG_LV2_UI_EXTERNAL LV2_External_UI_Host *m_external_host; #endif #ifdef CONFIG_LV2_UI_IDLE bool m_bIdleClosed; #endif }; #endif // __samplv1widget_lv2_h // end of samplv1widget_lv2.h samplv1-1.4.3/src/PaxHeaders/samplv1_pshifter.h0000644000000000000000000000013215245503134016411 xustar0030 mtime=1788249692.170675577 30 atime=1788249692.170675577 30 ctime=1788249692.170675577 samplv1-1.4.3/src/samplv1_pshifter.h0000644000175000001440000000677215245503134016415 0ustar00rncbcusers// samplv1_pshifter.h // /*************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_pshifter_h #define __samplv1_pshifter_h #include "config.h" #include //--------------------------------------------------------------------------- // samplv1_pshifter - Base pitch-shift processor. // class samplv1_pshifter { public: // Constructor. samplv1_pshifter(uint16_t nchannels, float srate); // Destructor. virtual ~samplv1_pshifter(); // Processor. virtual void process(float **pframes, uint32_t nframes, float pshift) = 0; // Available pitch-shifting algorithms. enum Type { Default = 0, SMBernsee = 1, RubberBand = 2 }; // Default pitch-shifting algorithm accessor. static void setDefaultType(Type type); static Type defaultType(); // Factory methods. static samplv1_pshifter *create( uint16_t nchannels, float srate, uint16_t nsize = 4096, uint16_t nover = 8); static void destroy(samplv1_pshifter *pshifter); protected: // member variables uint16_t m_nchannels; float m_srate; // default pitch-shifting algorithm. static Type g_type; }; #ifdef CONFIG_LIBRUBBERBAND //--------------------------------------------------------------------------- // samplv1_rubberband_pshifter - RubberBand pitch-shift processor. // class samplv1_rubberband_pshifter : public samplv1_pshifter { public: // Constructor. samplv1_rubberband_pshifter( uint16_t nchannels, float srate); // Destructor. ~samplv1_rubberband_pshifter(); // Processor. void process(float **pframes, uint32_t nframes, float pshift); }; #endif // CONFIG_LIBRUBBERBAND //--------------------------------------------------------------------------- // samplv1_smbernsee_pshifter - S.M.Bernsee pitch-shift processor. // #ifdef CONFIG_FFTW3 #include #endif class samplv1_smbernsee_pshifter : public samplv1_pshifter { public: // Constructor. samplv1_smbernsee_pshifter( uint16_t nchannels, float srate, uint16_t nsize = 4096, uint16_t nover = 8); // Destructor. ~samplv1_smbernsee_pshifter(); // Processor. void process(float **pframes, uint32_t nframes, float pshift); protected: // Channel processor. void process_k(float *pframes, uint32_t nframes, float pshift); private: // member variables uint32_t m_nsize; uint16_t m_nover; float *m_fwind; float *m_ififo; float *m_ofifo; #ifdef CONFIG_FFTW3 float *m_idata; float *m_odata; #else float *m_fdata; #endif float *m_plast; float *m_phase; float *m_accum; float *m_afreq; float *m_amagn; float *m_sfreq; float *m_smagn; #ifdef CONFIG_FFTW3 fftwf_plan m_aplan; fftwf_plan m_splan; #endif }; #endif // __samplv1_pshifter_h // end of samplv1_pshifter.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_palette.h0000644000000000000000000000013215245503134017427 xustar0030 mtime=1788249692.171675581 30 atime=1788249692.171675581 30 ctime=1788249692.171675581 samplv1-1.4.3/src/samplv1widget_palette.h0000644000175000001440000001710215245503134017420 0ustar00rncbcusers// samplv1widget_palette.h // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_palette_h #define __samplv1widget_palette_h #include #include #include #include #include #include // Forward decls. class QListView; class QLabel; class QToolButton; //------------------------------------------------------------------------- // samplv1widget_palette namespace Ui { class samplv1widget_palette; } class samplv1widget_palette: public QDialog { Q_OBJECT public: samplv1widget_palette(QWidget *parent = nullptr, const QPalette& pal = QPalette()); virtual ~samplv1widget_palette(); void setPalette(const QPalette& pal); const QPalette& palette() const; void setSettings(QSettings *settings, bool owner = false); QSettings *settings() const; void setPaletteName(const QString& name); QString paletteName() const; bool isDirty() const; static bool namedPalette(QSettings *settings, const QString& name, QPalette& pal, bool fixup = false); static QStringList namedPaletteList(QSettings *settings); static QString namedPaletteConf( QSettings *settings, const QString& name); static void addNamedPaletteConf( QSettings *settings, const QString& name, const QString& filename); static QPalette::ColorRole colorRole(const QString& name); class PaletteModel; class ColorDelegate; class ColorButton; class ColorEditor; class RoleEditor; protected slots: void nameComboChanged(const QString& name); void saveButtonClicked(); void deleteButtonClicked(); void generateButtonChanged(); void resetButtonClicked(); void detailsCheckClicked(); void importButtonClicked(); void exportButtonClicked(); void paletteChanged(const QPalette& pal); void accept(); void reject(); protected: void setPalette(const QPalette& pal, const QPalette& parentPal); bool namedPalette(const QString& name, QPalette& pal) const; QStringList namedPaletteList() const; QString namedPaletteConf(const QString& name) const; void addNamedPaletteConf(const QString& name, const QString& filename); void deleteNamedPaletteConf(const QString& name); static bool loadNamedPaletteConf( const QString& name, const QString& filename, QPalette& pal); static bool saveNamedPaletteConf( const QString& name, const QString& filename, const QPalette& pal); static bool loadNamedPalette( QSettings *settings, const QString& name, QPalette& pal); static bool saveNamedPalette( QSettings *settings, const QString& name, const QPalette& pal); void updateNamedPaletteList(); void updateGenerateButton(); void updateDialogButtons(); void setDefaultDir(const QString& dir); QString defaultDir() const; void setShowDetails(bool on); bool isShowDetails() const; void showEvent(QShowEvent *event); void resizeEvent(QResizeEvent *event); private: Ui::samplv1widget_palette *p_ui; Ui::samplv1widget_palette& m_ui; QSettings *m_settings; bool m_owner; QPalette m_palette; QPalette m_parentPalette; PaletteModel *m_paletteModel; bool m_modelUpdated; bool m_paletteUpdated; int m_dirtyCount; int m_dirtyTotal; }; //------------------------------------------------------------------------- // samplv1widget_palette::PaletteModel class samplv1widget_palette::PaletteModel : public QAbstractTableModel { Q_OBJECT Q_PROPERTY(QPalette::ColorRole colorRole READ colorRole) public: PaletteModel(QObject *parent = nullptr); int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index, int role) const; bool setData(const QModelIndex &index, const QVariant &value, int role); Qt::ItemFlags flags(const QModelIndex &index) const; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; void setPalette(const QPalette &palette, const QPalette &parentPalette); const QPalette& palette() const; void setGenerate(bool on) { m_generate = on; } QPalette::ColorRole colorRole() const { return QPalette::NoRole; } signals: void paletteChanged(const QPalette &palette); protected: QPalette::ColorGroup columnToGroup(int index) const; int groupToColumn(QPalette::ColorGroup group) const; private: QPalette m_palette; QPalette m_parentPalette; QMap m_roleNames; int m_nrows; bool m_generate; }; //------------------------------------------------------------------------- // samplv1widget_palette::ColorDelegate class samplv1widget_palette::ColorDelegate : public QItemDelegate { public: ColorDelegate(QObject *parent = nullptr) : QItemDelegate(parent) {} QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem& option, const QModelIndex& index) const; void setEditorData(QWidget *editor, const QModelIndex& index) const; void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex& index) const; void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem& option, const QModelIndex &index) const; virtual void paint(QPainter *painter, const QStyleOptionViewItem& option, const QModelIndex& index) const; virtual QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const; }; //------------------------------------------------------------------------- // samplv1widget_palette::ColorButton class samplv1widget_palette::ColorButton : public QPushButton { Q_OBJECT Q_PROPERTY(QBrush brush READ brush WRITE setBrush) public: ColorButton (QWidget *parent = nullptr); const QBrush& brush() const; void setBrush(const QBrush& b); signals: void changed(); protected slots: void chooseColor(); protected: void paintEvent(QPaintEvent *event); private: QBrush m_brush; }; //------------------------------------------------------------------------- // PaleteEditor::ColorEditor class samplv1widget_palette::ColorEditor : public QWidget { Q_OBJECT public: ColorEditor(QWidget *parent = nullptr); void setColor(const QColor &color); QColor color() const; bool changed() const; signals: void changed(QWidget *widget); protected slots: void colorChanged(); private: samplv1widget_palette::ColorButton *m_button; bool m_changed; }; //------------------------------------------------------------------------- // PaleteEditor::RoleEditor class samplv1widget_palette::RoleEditor : public QWidget { Q_OBJECT public: RoleEditor(QWidget *parent = nullptr); void setLabel(const QString &label); void setEdited(bool on); bool edited() const; signals: void changed(QWidget *widget); protected slots: void resetProperty(); private: QLabel *m_label; QToolButton *m_button; bool m_edited; }; #endif // __samplv1widget_palette_h // end of samplv1widget_palette.h samplv1-1.4.3/src/PaxHeaders/samplv1_formant.h0000644000000000000000000000013215245503134016233 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_formant.h0000644000175000001440000001225315245503134016226 0ustar00rncbcusers// samplv1_formant.h // /**************************************************************************** Copyright (C) 2012-2021, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1_formant_h #define __samplv1_formant_h #include #include //--------------------------------------------------------------------- // samplv1_formant - formant parallel filter after Dennis H. Klatt's // Software for a cascade/parallel formant synthesizer // 1979 MIT; 1980 Acoustical Society of America. // class samplv1_formant { public: // constants static const uint32_t NUM_VTABS = 5; static const uint32_t NUM_VOWELS = 5; static const uint32_t NUM_FORMANTS = 5; static const uint32_t NUM_STEPS = 320; // 2-pole filter coeffs. struct Coeffs { float a0, b1, b2; }; // vocal/vowel table struct Vtab { float freq[NUM_FORMANTS]; // frequency [Hz] float gain[NUM_FORMANTS]; // peak gain [dB] float band[NUM_FORMANTS]; // bandwidth [Hz] }; // main impl. class Impl { public: // ctor. Impl(float srate = 44100.0f) : m_srate(srate) { reset_coeffs(); } // sample-rate accessors void setSampleRate(float srate) { m_srate = srate; reset_coeffs(); } float sampleRate() const { return m_srate; } // formant coeffs. accessor const Coeffs& coeffs(uint32_t i) const { return m_ctabs[i]; } // reset coeffs. method void reset_coeffs(float cutoff = 0.5f, float reso = 0.0f); protected: // compute coeffs. for given vocal formant table void vtab_coeffs(Coeffs& coeffs, const Vtab *vtab, uint32_t i, float p); private: // instance members float m_srate; // filter coeffs. Coeffs m_ctabs[NUM_FORMANTS]; }; // ctor. samplv1_formant(Impl *pImpl = 0) : m_pImpl(pImpl), m_cutoff(0.5f), m_reso(0.0f), m_nstep(0) { reset_coeffs(); } // reset impl. void reset(Impl *pImpl) { m_pImpl = pImpl; reset_coeffs(); } void reset_filters(float cutoff, float reso) { for (uint32_t i = 0; i < NUM_FORMANTS; ++i) m_filters[i].reset(); update(cutoff, reso); } // output tick float output(float in, float cutoff, float reso) { update(cutoff, reso); float out = 0.0f; for (uint32_t i = 0; i < NUM_FORMANTS; ++i) out += m_filters[i].output(in); return out; } // process block void process(float *in, uint32_t nframes, float wet, float cutoff, float reso) { for (uint32_t i = 0; i < nframes; ++i) { const float out = output(in[i], cutoff, reso); in[i] *= (1.0f - wet); in[i] += (wet * out); } } protected: // step-wise smoothed coeff. class Coeff { public: Coeff() { reset(); } void reset() { m_value = m_vstep = 0.0f; m_nstep = 0; } void set_value(float value) { m_nstep = NUM_STEPS; m_vstep = (value - m_value) / float(m_nstep); } float value() const { return m_value + m_vstep * float(m_nstep); } float tick() { if (m_nstep > 0) { m_value += m_vstep; --m_nstep; } return m_value; } private: float m_value; float m_vstep; uint32_t m_nstep; }; // 2-pole resonator filter class Filter { public: Filter() { reset(); } void reset() { m_a0.reset(); m_b1.reset(); m_b2.reset(); m_out1 = m_out2 = 0.0f; } void reset_coeffs(const Coeffs& coeffs) { m_a0.set_value(coeffs.a0); m_b1.set_value(coeffs.b1); m_b2.set_value(coeffs.b2); } float output(float in) { const float out = m_a0.tick() * in + m_b1.tick() * m_out1 - m_b2.tick() * m_out2; m_out2 = m_out1; m_out1 = out; return out; } private: Coeff m_a0, m_b1, m_b2; float m_out1, m_out2; }; // update method void update(float cutoff, float reso) { if (m_nstep > 0) --m_nstep; else if (::fabsf(m_cutoff - cutoff) > 0.001f || ::fabsf(m_reso - reso) > 0.001f) { m_nstep = NUM_STEPS; m_cutoff = cutoff; m_reso = reso; reset_coeffs(); } } // reset coeffs. method void reset_coeffs(); private: // instance members Impl *m_pImpl; // parameters. float m_cutoff; float m_reso; // slew-rate control. uint32_t m_nstep; // formant filters Filter m_filters[NUM_FORMANTS]; // base vocal tables static Vtab g_bass_vtab[NUM_VOWELS]; static Vtab g_tenor_vtab[NUM_VOWELS]; static Vtab g_countertenor_vtab[NUM_VOWELS]; static Vtab g_soprano_vtab[NUM_VOWELS]; static Vtab g_alto_vtab[NUM_VOWELS]; static Vtab *g_vtabs[NUM_VTABS]; }; #endif // __samplv1_formant_h // end of samplv1_formant.h samplv1-1.4.3/src/PaxHeaders/samplv1widget_status.h0000644000000000000000000000013215245503134017314 xustar0030 mtime=1788249692.172675585 30 atime=1788249692.172675585 30 ctime=1788249692.172675585 samplv1-1.4.3/src/samplv1widget_status.h0000644000175000001440000000350615245503134017310 0ustar00rncbcusers// samplv1widget_status.h // /**************************************************************************** Copyright (C) 2012-2020, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #ifndef __samplv1widget_status_h #define __samplv1widget_status_h #include // Forward declarations. class samplv1widget_keybd; class QLabel; class QPixmap; //------------------------------------------------------------------------- // samplv1widget_status - Custom status-bar widget. class samplv1widget_status : public QStatusBar { Q_OBJECT public: // Constructor. samplv1widget_status(QWidget *pParent = 0); // Destructor. ~samplv1widget_status(); // Permanent widgets accessors. samplv1widget_keybd *keybd() const; void midiInLed(bool bMidiInLed); void midiInNote(int iNote, int iVelocity); void modified(bool bModified); private: // Permanent widgets. QPixmap *m_midiInLed[2]; QLabel *m_pMidiInLedLabel; QLabel *m_pModifiedLabel; samplv1widget_keybd *m_pKeybd; }; #endif // __samplv1widget_status_h // end of samplv1widget_status.h samplv1-1.4.3/src/PaxHeaders/samplv1_jack.cpp0000644000000000000000000000013215245503134016030 xustar0030 mtime=1788249692.170460835 30 atime=1788249692.170460835 30 ctime=1788249692.170460835 samplv1-1.4.3/src/samplv1_jack.cpp0000644000175000001440000007313315245503134016027 0ustar00rncbcusers// samplv1_jack.cpp // /**************************************************************************** Copyright (C) 2012-2026, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ #include "samplv1_jack.h" #include "samplv1_config.h" #include "samplv1_param.h" #include "samplv1_programs.h" #include "samplv1_controls.h" #include #include #include #include #include #include #ifdef CONFIG_ALSA_MIDI //------------------------------------------------------------------------- // alsa input thread. #include class samplv1_alsa_thread : public QThread { public: samplv1_alsa_thread(samplv1_jack *sampl) : QThread(), m_sampl(sampl), m_running(false) {} ~samplv1_alsa_thread() { // fake sync and wait if (m_running && isRunning()) do { m_running = false; } while (!wait(100)); } protected: void run() { snd_seq_t *seq = m_sampl->alsa_seq(); if (seq == nullptr) return; m_running = true; int nfds; struct pollfd *pfds; nfds = snd_seq_poll_descriptors_count(seq, POLLIN); pfds = (struct pollfd *) alloca(nfds * sizeof(struct pollfd)); snd_seq_poll_descriptors(seq, pfds, nfds, POLLIN); int poll_rc = 0; while (m_running && poll_rc >= 0) { poll_rc = ::poll(pfds, nfds, 200); while (poll_rc > 0) { snd_seq_event_t *ev = nullptr; snd_seq_event_input(seq, &ev); m_sampl->alsa_capture(ev); // snd_seq_free_event(ev); poll_rc = snd_seq_event_input_pending(seq, 0); } } m_running = false; } private: samplv1_jack *m_sampl; volatile bool m_running; }; #endif // CONFIG_ALSA_MIDI //------------------------------------------------------------------------- // JACK process callback. static int samplv1_jack_process ( jack_nframes_t nframes, void *arg ) { return static_cast (arg)->process(nframes); } //---------------------------------------------------------------------- // JACK buffer-size change callback. static int samplv1_jack_buffer_size ( jack_nframes_t nframes, void *arg ) { static_cast (arg)->setBufferSize(nframes); return 0; } //---------------------------------------------------------------------- // JACK on-shutdown callback. static void samplv1_jack_on_shutdown ( void *arg ) { static_cast (arg)->shutdown(); } #ifdef CONFIG_JACK_SESSION #include #include //---------------------------------------------------------------------- // samplv1_jack_session_event -- JACK session event callabck // static void samplv1_jack_session_event ( jack_session_event_t *pSessionEvent, void *pvArg ) { samplv1_jack *pSampl = static_cast (pvArg); if (pSampl) pSampl->sessionEvent(pSessionEvent); } #endif // CONFIG_JACK_SESSION //------------------------------------------------------------------------- // samplv1_jack - impl. // samplv1_jack::samplv1_jack (const char *client_name) : samplv1(2) { m_client = nullptr; m_activated = false; m_audio_ins = nullptr; m_audio_outs = nullptr; m_ins = m_outs = nullptr; ::memset(m_params, 0, samplv1::NUM_PARAMS * sizeof(float)); #ifdef CONFIG_JACK_MIDI m_midi_in = nullptr; #endif #ifdef CONFIG_ALSA_MIDI m_alsa_seq = nullptr; // m_alsa_client = -1; m_alsa_port = -1; m_alsa_decoder = nullptr; m_alsa_buffer = nullptr; m_alsa_thread = nullptr; #endif samplv1::programs()->enabled(true); samplv1::controls()->enabled(true); open(client_name); activate(); } samplv1_jack::~samplv1_jack (void) { deactivate(); close(); } jack_client_t *samplv1_jack::client (void) const { return m_client; } int samplv1_jack::process ( jack_nframes_t nframes ) { if (!m_activated) return 0; const uint16_t nchannels = samplv1::channels(); float **ins = m_ins, **outs = m_outs; for (uint16_t k = 0; k < nchannels; ++k) { ins[k] = static_cast ( ::jack_port_get_buffer(m_audio_ins[k], nframes)); outs[k] = static_cast ( ::jack_port_get_buffer(m_audio_outs[k], nframes)); } jack_position_t pos; jack_transport_query(m_client, &pos); if (pos.valid & JackPositionBBT) { const float host_bpm = float(pos.beats_per_minute); if (::fabsf(host_bpm - samplv1::tempo()) > 0.001f) samplv1::setTempo(host_bpm); } uint32_t ndelta = 0; #ifdef CONFIG_JACK_MIDI void *midi_in = ::jack_port_get_buffer(m_midi_in, nframes); if (midi_in) { const uint32_t nevents = ::jack_midi_get_event_count(midi_in); for (uint32_t n = 0; n < nevents; ++n) { jack_midi_event_t event; ::jack_midi_event_get(&event, midi_in, n); if (event.time > ndelta) { const uint32_t nread = event.time - ndelta; if (nread > 0) { samplv1::process(ins, outs, nread); for (uint16_t k = 0; k < nchannels; ++k) { ins[k] += nread; outs[k] += nread; } } ndelta = event.time; } samplv1::process_midi(event.buffer, event.size); } } #endif #ifdef CONFIG_ALSA_MIDI const jack_nframes_t buffer_size = ::jack_get_buffer_size(m_client); const jack_nframes_t frame_time = ::jack_last_frame_time(m_client); uint8_t event_buffer[1024]; jack_midi_event_t event; while (::jack_ringbuffer_peek(m_alsa_buffer, (char *) &event, sizeof(event)) == sizeof(event)) { if (event.time > frame_time) break; jack_nframes_t event_time = frame_time - event.time; if (event_time > buffer_size) event_time = 0; else event_time = buffer_size - event_time; if (event_time > ndelta) { const uint32_t nread = event_time - ndelta; if (nread > 0) { samplv1::process(ins, outs, nread); for (uint16_t k = 0; k < nchannels; ++k) { ins[k] += nread; outs[k] += nread; } } ndelta = event_time; } ::jack_ringbuffer_read_advance(m_alsa_buffer, sizeof(event)); ::jack_ringbuffer_read(m_alsa_buffer, (char *) event_buffer, event.size); samplv1::process_midi(event_buffer, event.size); } #endif // CONFIG_ALSA_MIDI if (nframes > ndelta) samplv1::process(ins, outs, nframes - ndelta); return 0; } #ifdef CONFIG_JACK_SESSION #if defined(Q_CC_GNU) || defined(Q_CC_MINGW) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif #endif void samplv1_jack::open ( const char *client_name ) { // init param ports for (uint32_t i = 0; i < samplv1::NUM_PARAMS; ++i) { const samplv1::ParamIndex index = samplv1::ParamIndex(i); m_params[i] = samplv1_param::paramDefaultValue(index); samplv1::setParamPort(index, &m_params[i]); } // open client m_client = ::jack_client_open(client_name, JackNullOption, nullptr); if (m_client == nullptr) return; // set sample rate samplv1::setSampleRate(float(jack_get_sample_rate(m_client))); // samplv1::reset(); // register audio ports & buffers uint16_t nchannels = samplv1::channels(); m_audio_ins = new jack_port_t * [nchannels]; m_audio_outs = new jack_port_t * [nchannels]; m_ins = new float * [nchannels]; m_outs = new float * [nchannels]; char port_name[32]; for (uint16_t k = 0; k < nchannels; ++k) { ::snprintf(port_name, sizeof(port_name), "in_%d", k + 1); m_audio_ins[k] = ::jack_port_register(m_client, port_name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0); m_ins[k] = nullptr; ::snprintf(port_name, sizeof(port_name), "out_%d", k + 1); m_audio_outs[k] = ::jack_port_register(m_client, port_name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0); m_outs[k] = nullptr; } // register midi port #ifdef CONFIG_JACK_MIDI m_midi_in = ::jack_port_register(m_client, "in", JACK_DEFAULT_MIDI_TYPE, JackPortIsInput, 0); #endif #ifdef CONFIG_ALSA_MIDI m_alsa_seq = nullptr; // m_alsa_client = -1; m_alsa_port = -1; m_alsa_decoder = nullptr; m_alsa_buffer = nullptr; m_alsa_thread = nullptr; // open alsa sequencer client... if (snd_seq_open(&m_alsa_seq, "hw", SND_SEQ_OPEN_INPUT, 0) >= 0) { snd_seq_set_client_name(m_alsa_seq, client_name); // m_alsa_client = snd_seq_client_id(m_alsa_seq); m_alsa_port = snd_seq_create_simple_port(m_alsa_seq, "in", SND_SEQ_PORT_CAP_WRITE | SND_SEQ_PORT_CAP_SUBS_WRITE, SND_SEQ_PORT_TYPE_MIDI_GENERIC | SND_SEQ_PORT_TYPE_APPLICATION); snd_midi_event_new(1024, &m_alsa_decoder); m_alsa_buffer = ::jack_ringbuffer_create( 1024 * (sizeof(jack_midi_event_t) + 4)); m_alsa_thread = new samplv1_alsa_thread(this); m_alsa_thread->start(QThread::TimeCriticalPriority); } #endif // CONFIG_ALSA_MIDI // setup any local, initial buffers... samplv1::setBufferSize(::jack_get_buffer_size(m_client) << 2); ::jack_set_buffer_size_callback(m_client, samplv1_jack_buffer_size, this); ::jack_on_shutdown(m_client, samplv1_jack_on_shutdown, this); // set process callbacks... ::jack_set_process_callback(m_client, samplv1_jack_process, this); #ifdef CONFIG_JACK_SESSION // JACK session event callback... ::jack_set_session_callback(m_client, samplv1_jack_session_event, this); #endif } #ifdef CONFIG_JACK_SESSION #if defined(Q_CC_GNU) || defined(Q_CC_MINGW) #pragma GCC diagnostic pop #endif #endif void samplv1_jack::activate (void) { if (!m_activated) { samplv1::reset(); if (m_client) { ::jack_activate(m_client); m_activated = true; } } } void samplv1_jack::deactivate (void) { if (m_activated) { if (m_client) { m_activated = false; ::jack_deactivate(m_client); } } } void samplv1_jack::close (void) { #ifdef CONFIG_ALSA_MIDI // close alsa sequencer client... if (m_alsa_seq) { if (m_alsa_thread) { delete m_alsa_thread; m_alsa_thread = nullptr; } if (m_alsa_buffer) { ::jack_ringbuffer_free(m_alsa_buffer); m_alsa_buffer = nullptr; } if (m_alsa_decoder) { snd_midi_event_free(m_alsa_decoder); m_alsa_decoder = nullptr; } if (m_alsa_port >= 0) { snd_seq_delete_simple_port(m_alsa_seq, m_alsa_port); m_alsa_port = -1; } snd_seq_close(m_alsa_seq); // m_alsa_client = -1; m_alsa_seq = nullptr; } #endif if (m_client == nullptr) return; #ifdef CONFIG_JACK_MIDI // unregister midi port if (m_midi_in) { ::jack_port_unregister(m_client, m_midi_in); m_midi_in = nullptr; } #endif // unregister audio ports const uint16_t nchannels = samplv1::channels(); for (uint16_t k = 0; k < nchannels; ++k) { if (m_audio_outs && m_audio_outs[k]) { ::jack_port_unregister(m_client, m_audio_outs[k]); m_audio_outs[k] = nullptr; } if (m_outs && m_outs[k]) m_outs[k] = nullptr; if (m_audio_ins && m_audio_ins[k]) { ::jack_port_unregister(m_client, m_audio_ins[k]); m_audio_ins[k] = nullptr; } if (m_ins && m_ins[k]) m_ins[k] = nullptr; } if (m_outs) { delete [] m_outs; m_outs = nullptr; } if (m_ins) { delete [] m_ins; m_ins = nullptr; } if (m_audio_outs) { delete [] m_audio_outs; m_audio_outs = nullptr; } if (m_audio_ins) { delete [] m_audio_ins; m_audio_ins = nullptr; } // close client ::jack_client_close(m_client); m_client = nullptr; } #ifdef CONFIG_ALSA_MIDI // alsa sequencer client. snd_seq_t *samplv1_jack::alsa_seq (void) const { return m_alsa_seq; } // alsa event capture. void samplv1_jack::alsa_capture ( snd_seq_event_t *ev ) { if (m_alsa_decoder == nullptr) return; if (ev == nullptr) return; // ignored events... switch(ev->type) { case SND_SEQ_EVENT_OSS: case SND_SEQ_EVENT_CLIENT_START: case SND_SEQ_EVENT_CLIENT_EXIT: case SND_SEQ_EVENT_CLIENT_CHANGE: case SND_SEQ_EVENT_PORT_START: case SND_SEQ_EVENT_PORT_EXIT: case SND_SEQ_EVENT_PORT_CHANGE: case SND_SEQ_EVENT_PORT_SUBSCRIBED: case SND_SEQ_EVENT_PORT_UNSUBSCRIBED: case SND_SEQ_EVENT_USR0: case SND_SEQ_EVENT_USR1: case SND_SEQ_EVENT_USR2: case SND_SEQ_EVENT_USR3: case SND_SEQ_EVENT_USR4: case SND_SEQ_EVENT_USR5: case SND_SEQ_EVENT_USR6: case SND_SEQ_EVENT_USR7: case SND_SEQ_EVENT_USR8: case SND_SEQ_EVENT_USR9: case SND_SEQ_EVENT_BOUNCE: case SND_SEQ_EVENT_USR_VAR0: case SND_SEQ_EVENT_USR_VAR1: case SND_SEQ_EVENT_USR_VAR2: case SND_SEQ_EVENT_USR_VAR3: case SND_SEQ_EVENT_USR_VAR4: case SND_SEQ_EVENT_NONE: return; } #ifdef CONFIG_DEBUG_0 // - show (input) event for debug purposes... fprintf(stderr, "ALSA MIDI In: 0x%02x", ev->type); if (ev->type == SND_SEQ_EVENT_SYSEX) { fprintf(stderr, " SysEx {"); unsigned char *data = (unsigned char *) ev->data.ext.ptr; for (unsigned int i = 0; i < ev->data.ext.len; ++i) fprintf(stderr, " %02x", data[i]); fprintf(stderr, " }\n"); } else { for (unsigned int i = 0; i < sizeof(ev->data.raw8.d); ++i) fprintf(stderr, " %3d", ev->data.raw8.d[i]); fprintf(stderr, "\n"); } #endif const unsigned int nlimit = ::jack_ringbuffer_write_space(m_alsa_buffer); if (nlimit > sizeof(jack_midi_event_t) + 4) { unsigned char ev_buff[nlimit]; unsigned char *ev_data = &ev_buff[0] + sizeof(jack_midi_event_t); const int ev_size = snd_midi_event_decode(m_alsa_decoder, ev_data, nlimit - sizeof(jack_midi_event_t), ev); if (ev_size > 0) { jack_midi_event_t *ev_head = (jack_midi_event_t *) &ev_buff[0]; ev_head->time = ::jack_frame_time(m_client); ev_head->size = ev_size; ev_head->buffer = (jack_midi_data_t *) ev_data; ::jack_ringbuffer_write(m_alsa_buffer, (const char *) ev_buff, sizeof(jack_midi_event_t) + ev_size); } snd_midi_event_reset_decode(m_alsa_decoder); } } #endif // CONFIG_ALSA_MIDI #ifdef CONFIG_JACK_SESSION #if defined(Q_CC_GNU) || defined(Q_CC_MINGW) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif // JACK session event handler. void samplv1_jack::sessionEvent ( void *pvSessionArg ) { jack_session_event_t *pJackSessionEvent = (jack_session_event_t *) pvSessionArg; #ifdef CONFIG_DEBUG qDebug("samplv1_jack::sessionEvent()" " type=%d client_uuid=\"%s\" session_dir=\"%s\"", int(pJackSessionEvent->type), pJackSessionEvent->client_uuid, pJackSessionEvent->session_dir); #endif const bool bQuit = (pJackSessionEvent->type == JackSessionSaveAndQuit); const QString sSessionDir = QString::fromUtf8(pJackSessionEvent->session_dir); const QString sSessionName = QFileInfo(QFileInfo(sSessionDir).canonicalPath()).completeBaseName(); const QString sSessionFile = sSessionName + '.' + PROJECT_NAME; QStringList args; args << QCoreApplication::applicationFilePath(); args << QString("${SESSION_DIR}%1").arg(sSessionFile); samplv1_param::savePreset(this, QFileInfo(sSessionDir, sSessionFile).absoluteFilePath(), true); const QByteArray aCmdLine = args.join(" ").toUtf8(); pJackSessionEvent->command_line = ::strdup(aCmdLine.constData()); ::jack_session_reply(m_client, pJackSessionEvent); ::jack_session_event_free(pJackSessionEvent); if (bQuit) #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) QCoreApplication::exit(0); #else QCoreApplication::quit(); #endif } #if defined(Q_CC_GNU) || defined(Q_CC_MINGW) #pragma GCC diagnostic pop #endif #endif // CONFIG_JACK_SESSION void samplv1_jack::updatePreset ( bool /*bDirty*/ ) { // nothing to do here... } void samplv1_jack::updateParam ( samplv1::ParamIndex /*index*/ ) { // nothing to do here... } void samplv1_jack::updateParams (void) { // nothing to do here... } void samplv1_jack::updateSample (void) { // nothing to do here... } void samplv1_jack::updateOffsetRange (void) { // nothing to do here... } void samplv1_jack::updateLoopRange (void) { // nothing to do here... } void samplv1_jack::updateLoopFade (void) { // nothing to do here... } void samplv1_jack::updateLoopZero (void) { // nothing to do here... } void samplv1_jack::updateLoopRelease (void) { // nothing to do here... } void samplv1_jack::updateTuning (void) { samplv1::resetTuning(); } void samplv1_jack::shutdown (void) { samplv1_jack_application *pApp = samplv1_jack_application::getInstance(); if (pApp) pApp->shutdown(); } void samplv1_jack::shutdown_close (void) { m_activated = false; if (m_client) { ::jack_client_close(m_client); m_client = nullptr; } close(); } //------------------------------------------------------------------------- // samplv1_jack_application -- Singleton application instance. // #include "samplv1widget_jack.h" #include #include #if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0) #include #include #if defined(Q_OS_WINDOWS) #include #endif #endif #include #ifdef CONFIG_NSM #include "samplv1_nsm.h" #endif #ifdef HAVE_SIGNAL_H #include #include #include #include #include // File descriptor for SIGTERM notifier. static int g_fdSigterm[2] = { -1, -1 }; // Unix SIGTERM signal handler. static void samplv1_sigterm_handler ( int /*signo*/ ) { char c = 1; (void) (::write(g_fdSigterm[0], &c, sizeof(c)) > 0); } #endif // HAVE_SIGNAL_H // Constructor. samplv1_jack_application::samplv1_jack_application ( int& argc, char **argv ) : QObject(nullptr), m_pApp(nullptr), m_bGui(true), m_sClientName(PROJECT_NAME), m_pSampl(nullptr), m_pWidget(nullptr) #ifdef CONFIG_NSM , m_pNsmClient(nullptr) #endif { #ifdef Q_WS_X11 m_bGui = (::getenv("DISPLAY") != 0); #endif for (int i = 1; i < argc; ++i) { const QString& sArg = QString::fromLocal8Bit(argv[i]); if (sArg == "-g" || sArg == "--no-gui") m_bGui = false; } if (m_bGui) { #if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #endif QApplication *pApp = new QApplication(argc, argv); #if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) pApp->setApplicationDisplayName(PROJECT_NAME); // PROJECT_NAME " - " + QObject::tr(PROJECT_DESCRIPTION)); #if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) pApp->setDesktopFileName( QString("org.rncbc.%1").arg(PROJECT_NAME)); #endif #endif m_pApp = pApp; } else { m_pApp = new QCoreApplication(argc, argv); } #if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) m_pApp->setApplicationName(PROJECT_NAME); m_pApp->setApplicationVersion(PROJECT_VERSION); #endif #ifdef HAVE_SIGNAL_H // Set to ignore any fatal "Broken pipe" signals. ::signal(SIGPIPE, SIG_IGN); // Initialize file descriptors for SIGTERM socket notifier. ::socketpair(AF_UNIX, SOCK_STREAM, 0, g_fdSigterm); m_pSigtermNotifier = new QSocketNotifier(g_fdSigterm[1], QSocketNotifier::Read, this); QObject::connect(m_pSigtermNotifier, SIGNAL(activated(int)), SLOT(handle_sigterm())); // Install SIGTERM signal handler. struct sigaction sigterm; sigterm.sa_handler = samplv1_sigterm_handler; sigemptyset(&sigterm.sa_mask); sigterm.sa_flags = 0; sigterm.sa_flags |= SA_RESTART; ::sigaction(SIGTERM, &sigterm, nullptr); ::sigaction(SIGQUIT, &sigterm, nullptr); // Ignore SIGHUP/SIGINT signals. ::signal(SIGHUP, SIG_IGN); ::signal(SIGINT, SIG_IGN); #else m_pSigtermNotifier = nullptr; #endif // !HAVE_SIGNAL_H // Pseudo-singleton instance. g_pInstance = this; } // Destructor. samplv1_jack_application::~samplv1_jack_application (void) { g_pInstance = nullptr; #ifdef HAVE_SIGNAL_H if (m_pSigtermNotifier) delete m_pSigtermNotifier; #endif #ifdef CONFIG_NSM if (m_pNsmClient) delete m_pNsmClient; #endif if (m_pWidget) delete m_pWidget; if (m_pSampl) delete m_pSampl; if (m_pApp) delete m_pApp; } #if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0) void samplv1_jack_application::show_error( const QString& msg ) { #if defined(Q_OS_WINDOWS) QMessageBox::information(nullptr, QApplication::applicationName(), msg); #else const QByteArray tmp = msg.toUtf8() + '\n'; ::fputs(tmp.constData(), stderr); #endif } #endif // Argument parser method. bool samplv1_jack_application::parse_args (void) { const QStringList& args = m_pApp->arguments(); #if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0) QCommandLineParser parser; parser.setApplicationDescription( PROJECT_NAME " - " + QObject::tr(PROJECT_DESCRIPTION)); const QString s_no_gui = "no-gui"; const QString s_client_name = "client-name"; const QString s_help = "help"; parser.addOption({{"g", s_no_gui}, QObject::tr("Disable the graphical user interface (GUI)")}); parser.addOption({{"n", s_client_name}, QObject::tr("Set the JACK client name (default: %1)") .arg(PROJECT_NAME), "label"}); parser.addOption({{"?", s_help}, QObject::tr("Displays help on command-line options.")}); const QCommandLineOption& versionOption = parser.addVersionOption(); parser.addPositionalArgument("preset-file", QObject::tr("Load preset file (.%1)").arg(PROJECT_NAME), QObject::tr("[preset-file]")); if (!parser.parse(args)) { show_error(parser.errorText()); return false; } if (parser.isSet(s_help)) { show_error(parser.helpText()); return false; } if (parser.isSet(versionOption)) { QString sVersion = QString("%1 %2\n") .arg(PROJECT_NAME) .arg(QCoreApplication::applicationVersion()); sVersion += QString("Qt: %1").arg(qVersion()); #if defined(QT_STATIC) sVersion += "-static"; #endif #if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0) sVersion += ' '; sVersion += '('; sVersion += QApplication::platformName(); sVersion += ')'; #endif sVersion += '\n'; show_error(sVersion); return false; } if (parser.isSet(s_no_gui)) { // Ignored: parsed on startup... } if (parser.isSet(s_client_name)) { const QString& sVal = parser.value(s_client_name); if (sVal.isEmpty()) { show_error(QObject::tr("Option -n requires an argument (label).")); return false; } m_sClientName = sVal; } foreach (const QString& sArg, parser.positionalArguments()) { m_presets.append(sArg); } #else QTextStream out(stderr); const int argc = args.count(); for (int i = 1; i < argc; ++i) { QString sArg = args.at(i); QString sVal; const int iEqual = sArg.indexOf('='); if (iEqual >= 0) { sVal = sArg.right(sArg.length() - iEqual - 1); sArg = sArg.left(iEqual); } else if (i < argc - 1) { sVal = args.at(i + 1); if (sVal.at(0) == '-') sVal.clear(); } if (sArg == "-n" || sArg == "--client-name") { if (sVal.isNull()) { out << QObject::tr("Option -n requires an argument (label).\n\n"); return false; } m_sClientName = sVal; if (iEqual < 0) ++i; } else if (sArg == "-?" || sArg == "--help") { const QString sEot = "\n\t"; const QString sEol = "\n\n"; out << QObject::tr("Usage: %1 [options]").arg(args.at(0)) + sEol; out << PROJECT_NAME " - " << QObject::tr(PROJECT_DESCRIPTION) + sEol; out << QObject::tr("Options:") + sEol; out << " -g, --no-gui" + sEot + QObject::tr("Disable the graphical user interface (GUI)") + sEol; out << " -n, --client-name