Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchro, a simple phase modulation synth #5147

Closed
wants to merge 54 commits into from
Closed
Show file tree
Hide file tree
Changes from 49 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
1b7ded0
Created Synchro, a simple phase modulation synth
rubiefawn Aug 24, 2019
ee9bed4
Implemented a read-only mode for the Graph widget
rubiefawn Aug 24, 2019
16e74b9
fixed an error in the waveform graphs with inputs > 2*PI
rubiefawn Aug 24, 2019
26ad46d
Convention fixes + graph m_isReadOnly is now private
rubiefawn Aug 24, 2019
dd32854
Removed redundant read-only feature, (use inherited QWidget enabled)
rubiefawn Aug 24, 2019
63e126f
Removed a parameter I forgot to remove in the last commit
rubiefawn Aug 24, 2019
215521f
Revert formatting in Graph.h
rubiefawn Aug 27, 2019
0a5302c
Revert formatting in Graph.cpp
rubiefawn Aug 27, 2019
c4304cc
Minor code convention fixes
rubiefawn Aug 27, 2019
3c1726a
Minor coding convention fixes
rubiefawn Aug 27, 2019
c005793
Fix the deleted macro that was breaking the plugin
rubiefawn Aug 27, 2019
30947d2
Performance optimizations round 1 (.cpp only)
rubiefawn Aug 29, 2019
fe45708
Performance optimizations round 1 (.h)
rubiefawn Aug 29, 2019
92ad0a0
Various fixes to performance optimizations round 1
rubiefawn Aug 29, 2019
fe57e52
Typo fix
rubiefawn Aug 29, 2019
afd98db
Typo fix
rubiefawn Aug 29, 2019
f01aff9
Typo fix
rubiefawn Aug 29, 2019
7cbc15c
:art: Enforce max 80 character line length
rubiefawn Sep 12, 2019
80e6aca
:lightning: tanh over atan
rubiefawn Sep 18, 2019
33fb791
:art: `Graph` over `View`
rubiefawn Sep 18, 2019
1271930
:bug: Fix result graph error when modulation is applied
rubiefawn Sep 18, 2019
30c3ebe
Implemented a read-only mode for the Graph widget
rubiefawn Aug 24, 2019
be1717c
Convention fixes + graph m_isReadOnly is now private
rubiefawn Aug 24, 2019
e8587b2
Removed redundant read-only feature, (use inherited QWidget enabled)
rubiefawn Aug 24, 2019
de628f1
Removed a parameter I forgot to remove in the last commit
rubiefawn Aug 24, 2019
5b478ee
Revert formatting in Graph.h
rubiefawn Aug 27, 2019
67d3f75
Revert formatting in Graph.cpp
rubiefawn Aug 27, 2019
b8bb3cc
:lightning: tanh over atan
rubiefawn Sep 18, 2019
5a8a7c1
:bug: Fix result graph error when modulation is applied
rubiefawn Sep 18, 2019
9557d15
Fix merge conflict
PhysSong Apr 22, 2020
e94a824
:art: Add full-size UI with dummy envelope knobs
rubiefawn Apr 22, 2020
642a4bf
🐛 Bugfixes & review compliance
rubiefawn Apr 22, 2020
8068eb2
:bug: More review compliance, naming improvements
rubiefawn Apr 22, 2020
db9f4b7
:sparkles: Add sample-exactness to modulation controls
rubiefawn Apr 22, 2020
e965d8d
✨ Add envelopes
rubiefawn Apr 23, 2020
487562a
:art: Rewrite for cleanliness and performance
rubiefawn Apr 23, 2020
9d317c6
:bug: Fix compiler warnings
rubiefawn Apr 24, 2020
09dc2e6
:bug: Enable instrument track processing, fix envelopes
rubiefawn Apr 25, 2020
8b13101
:zap: Fast hyperbolic tangent function
rubiefawn Apr 25, 2020
5e4710c
:bug: Fix breaking typo
rubiefawn Apr 25, 2020
df30195
:bug: Remove breaking )
rubiefawn Apr 25, 2020
5076f3a
:art: Comply with code reviews
rubiefawn Aug 30, 2020
1780d2d
:bug: Fix improper overrides
rubiefawn Aug 30, 2020
7e295c0
:art: Comply with code review
rubiefawn Aug 30, 2020
4150360
:bug: Add missing open parentheses
rubiefawn Aug 30, 2020
25f6c4e
:bug: Fix misunderstood code
rubiefawn Sep 7, 2020
02b8055
:bug: Remove typo and reorder function declaration
rubiefawn Sep 7, 2020
e4282e4
:bug: Remove pointless passing of sample rate into function
rubiefawn Sep 7, 2020
8ffd2a5
Rename things to match after reorg
rubiefawn Jan 24, 2023
6846bce
:construction: attempt to fix oversampling
rubiefawn Jul 9, 2023
e94b3c1
Merge remote-tracking branch 'origin/master' into master
michaelgregorius Oct 7, 2024
d67a3ed
Fix SynchroSynth compilation
michaelgregorius Oct 7, 2024
7492469
spaghetti code time
rubiefawn Oct 16, 2024
3ec63f1
appease CI checks
rubiefawn Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/modules/PluginList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ SET(LMMS_PLUGIN_LIST
StereoEnhancer
StereoMatrix
Stk
Synchro
VstBase
Vestige
VstEffect
Expand Down Expand Up @@ -104,4 +105,3 @@ IF(MSVC)
message(WARNING "Compiling with MSVC. The following plugins are not available: ${MSVC_INCOMPATIBLE_PLUGINS}")
LIST(REMOVE_ITEM PLUGIN_LIST ${MSVC_INCOMPATIBLE_PLUGINS})
ENDIF()

4 changes: 4 additions & 0 deletions plugins/Synchro/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
INCLUDE(BuildPlugin)

BUILD_PLUGIN(synchro SynchroSynth.cpp SynchroSynth.h MOCFILES SynchroSynth.h
EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png")
Loading