From 772da41d740f8d7b9483d04aa66c5d418d4b337b Mon Sep 17 00:00:00 2001 From: esca111 Date: Sun, 29 Mar 2026 16:44:13 +1300 Subject: [PATCH] init --- CMakeLists.txt | 48 ++ LICENSE.md | 675 +++++++++++++++++++++++ README.md | 14 + cloudPedal.ttl | 5 + manifest.ttl | 128 +++++ src/CloudSeedCore/.gitattributes | 2 + src/CloudSeedCore/.gitignore | 42 ++ src/CloudSeedCore/DSP/AllpassDiffuser.h | 163 ++++++ src/CloudSeedCore/DSP/Biquad.cpp | 247 +++++++++ src/CloudSeedCore/DSP/Biquad.h | 105 ++++ src/CloudSeedCore/DSP/DelayLine.h | 284 ++++++++++ src/CloudSeedCore/DSP/Hp1.h | 112 ++++ src/CloudSeedCore/DSP/LcgRandom.h | 97 ++++ src/CloudSeedCore/DSP/Lp1.h | 107 ++++ src/CloudSeedCore/DSP/ModulatedAllpass.h | 187 +++++++ src/CloudSeedCore/DSP/ModulatedDelay.h | 125 +++++ src/CloudSeedCore/DSP/MultitapDelay.h | 150 +++++ src/CloudSeedCore/DSP/RandomBuffer.cpp | 57 ++ src/CloudSeedCore/DSP/RandomBuffer.h | 36 ++ src/CloudSeedCore/DSP/ReverbChannel.h | 428 ++++++++++++++ src/CloudSeedCore/DSP/ReverbController.h | 126 +++++ src/CloudSeedCore/DSP/Utils.h | 112 ++++ src/CloudSeedCore/LICENSE | 21 + src/CloudSeedCore/Parameters.cpp | 80 +++ src/CloudSeedCore/Parameters.h | 286 ++++++++++ src/CloudSeedCore/Programs.h | 79 +++ src/CloudSeedCore/Readme.md | 40 ++ src/cloudPedal.cpp | 314 +++++++++++ 28 files changed, 4070 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 cloudPedal.ttl create mode 100644 manifest.ttl create mode 100644 src/CloudSeedCore/.gitattributes create mode 100644 src/CloudSeedCore/.gitignore create mode 100644 src/CloudSeedCore/DSP/AllpassDiffuser.h create mode 100644 src/CloudSeedCore/DSP/Biquad.cpp create mode 100644 src/CloudSeedCore/DSP/Biquad.h create mode 100644 src/CloudSeedCore/DSP/DelayLine.h create mode 100644 src/CloudSeedCore/DSP/Hp1.h create mode 100644 src/CloudSeedCore/DSP/LcgRandom.h create mode 100644 src/CloudSeedCore/DSP/Lp1.h create mode 100644 src/CloudSeedCore/DSP/ModulatedAllpass.h create mode 100644 src/CloudSeedCore/DSP/ModulatedDelay.h create mode 100644 src/CloudSeedCore/DSP/MultitapDelay.h create mode 100644 src/CloudSeedCore/DSP/RandomBuffer.cpp create mode 100644 src/CloudSeedCore/DSP/RandomBuffer.h create mode 100644 src/CloudSeedCore/DSP/ReverbChannel.h create mode 100644 src/CloudSeedCore/DSP/ReverbController.h create mode 100644 src/CloudSeedCore/DSP/Utils.h create mode 100644 src/CloudSeedCore/LICENSE create mode 100644 src/CloudSeedCore/Parameters.cpp create mode 100644 src/CloudSeedCore/Parameters.h create mode 100644 src/CloudSeedCore/Programs.h create mode 100644 src/CloudSeedCore/Readme.md create mode 100644 src/cloudPedal.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..30f2ba6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,48 @@ +cmake_minimum_required(VERSION 4.2.3) +project(cloudPedal) + +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +set(CMAKE_C_COMPILER "/usr/bin/clang") +set(CMAKE_CXX_COMPILER "/usr/bin/clang++") + +set(CMAKE_CXX_VISIBILITY_PRESET "hidden") +set(CMAKE_VISIBILITY_INLINES_HIDDEN "YES") + +set(PROJECT_BINARY_DIR "${PROJECT_BINARY_DIR}/${PROJECT_NAME}.lv2") + +set(SOURCE_FILES + ${PROJECT_NAME}.ttl + manifest.ttl + src/cloudPedal.cpp + + src/CloudSeedCore/DSP/Biquad.cpp + src/CloudSeedCore/DSP/RandomBuffer.cpp + src/CloudSeedCore/Parameters.cpp +) + +set(MY_HEADERS + src/CloudSeedCore/DSP/MultitapDelay.h + src/CloudSeedCore/DSP/Biquad.h + src/CloudSeedCore/DSP/Utils.h + src/CloudSeedCore/DSP/ReverbController.h + src/CloudSeedCore/DSP/ReverbChannel.h + src/CloudSeedCore/DSP/DelayLine.h + src/CloudSeedCore/DSP/RandomBuffer.h + src/CloudSeedCore/DSP/ModulatedDelay.h + src/CloudSeedCore/DSP/AllpassDiffuser.h + src/CloudSeedCore/DSP/Lp1.h + src/CloudSeedCore/DSP/Hp1.h + src/CloudSeedCore/DSP/ModulatedAllpass.h + src/CloudSeedCore/DSP/LcgRandom.h + src/CloudSeedCore/Parameters.h + src/CloudSeedCore/Programs.h +) + +add_library(${PROJECT_NAME} MODULE ${SOURCE_FILES}) +add_compile_definitions(MAX_STR_SIZE=32) +add_compile_definitions(BUFFER_SIZE=1024) + +set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "") +set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "${PROJECT_NAME}") +set_target_properties(${PROJECT_NAME} PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}") +file(COPY ${PROJECT_NAME}.ttl manifest.ttl DESTINATION ${PROJECT_BINARY_DIR}) diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..496acdb --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,675 @@ +# GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +## Preamble + +The GNU General Public License is a free, copyleft license for +software and other kinds of works. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom +to share and change all versions of a program--to make sure it remains +free software for all its users. We, the Free Software Foundation, use +the GNU General Public License for most of our software; it applies +also to any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you +have certain responsibilities if you distribute copies of the +software, or if you modify it: responsibilities to respect the freedom +of others. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + +Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + +Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the +manufacturer can do so. This is fundamentally incompatible with the +aim of protecting users' freedom to change the software. The +systematic pattern of such abuse occurs in the area of products for +individuals to use, which is precisely where it is most unacceptable. +Therefore, we have designed this version of the GPL to prohibit the +practice for those products. If such problems arise substantially in +other domains, we stand ready to extend this provision to those +domains in future versions of the GPL, as needed to protect the +freedom of users. + +Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish +to avoid the special danger that patents applied to a free program +could make it effectively proprietary. To prevent this, the GPL +assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and +modification follow. + +## TERMS AND CONDITIONS + +### 0. Definitions. + +"This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds +of works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of +an exact copy. The resulting work is called a "modified version" of +the earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user +through a computer network, with no transfer of a copy, is not +conveying. + +An interactive user interface displays "Appropriate Legal Notices" to +the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +### 1. Source Code. + +The "source code" for a work means the preferred form of the work for +making modifications to it. "Object code" means any non-source form of +a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can +regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same +work. + +### 2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, +without conditions so long as your license otherwise remains in force. +You may convey covered works to others for the sole purpose of having +them make modifications exclusively for you, or provide you with +facilities for running those works, provided that you comply with the +terms of this License in conveying all material for which you do not +control copyright. Those thus making or running the covered works for +you must do so exclusively on your behalf, under your direction and +control, on terms that prohibit them from making any copies of your +copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the +conditions stated below. Sublicensing is not allowed; section 10 makes +it unnecessary. + +### 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such +circumvention is effected by exercising rights under this License with +respect to the covered work, and you disclaim any intention to limit +operation or modification of the work as a means of enforcing, against +the work's users, your or third parties' legal rights to forbid +circumvention of technological measures. + +### 4. Conveying Verbatim Copies. + +You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +### 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these +conditions: + +- a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. +- b) The work must carry prominent notices stating that it is + released under this License and any conditions added under + section 7. This requirement modifies the requirement in section 4 + to "keep intact all notices". +- c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. +- d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +### 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of +sections 4 and 5, provided that you also convey the machine-readable +Corresponding Source under the terms of this License, in one of these +ways: + +- a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. +- b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding + Source from a network server at no charge. +- c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. +- d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. +- e) Convey the object code using peer-to-peer transmission, + provided you inform other peers where the object code and + Corresponding Source of the work are being offered to the general + public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, +family, or household purposes, or (2) anything designed or sold for +incorporation into a dwelling. In determining whether a product is a +consumer product, doubtful cases shall be resolved in favor of +coverage. For a particular product received by a particular user, +"normally used" refers to a typical or common use of that class of +product, regardless of the status of the particular user or of the way +in which the particular user actually uses, or expects or is expected +to use, the product. A product is a consumer product regardless of +whether the product has substantial commercial, industrial or +non-consumer uses, unless such uses represent the only significant +mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to +install and execute modified versions of a covered work in that User +Product from a modified version of its Corresponding Source. The +information must suffice to ensure that the continued functioning of +the modified object code is in no case prevented or interfered with +solely because modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or +updates for a work that has been modified or installed by the +recipient, or for the User Product in which it has been modified or +installed. Access to a network may be denied when the modification +itself materially and adversely affects the operation of the network +or violates the rules and protocols for communication across the +network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +### 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders +of that material) supplement the terms of this License with terms: + +- a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or +- b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or +- c) Prohibiting misrepresentation of the origin of that material, + or requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or +- d) Limiting the use for publicity purposes of names of licensors + or authors of the material; or +- e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or +- f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; the +above requirements apply either way. + +### 8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +### 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run +a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +### 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +### 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned +or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within the +scope of its coverage, prohibits the exercise of, or is conditioned on +the non-exercise of one or more of the rights that are specifically +granted under this License. You may not convey a covered work if you +are a party to an arrangement with a third party that is in the +business of distributing software, under which you make payment to the +third party based on the extent of your activity of conveying the +work, and under which the third party grants, to any of the parties +who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by +you (or copies made from those copies), or (b) primarily for and in +connection with specific products or compilations that contain the +covered work, unless you entered into that arrangement, or that patent +license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +### 12. No Surrender of Others' Freedom. + +If 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 convey a +covered work so as to satisfy simultaneously your obligations under +this License and any other pertinent obligations, then as a +consequence you may not convey it at all. For example, if you agree to +terms that obligate you to collect a royalty for further conveying +from those to whom you convey the Program, the only way you could +satisfy both those terms and this License would be to refrain entirely +from conveying the Program. + +### 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + +### 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions +of the GNU 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 that a certain numbered version of the GNU General Public +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that numbered version or +of any later version published by the Free Software Foundation. If the +Program does not specify a version number of the GNU General Public +License, you may choose any version ever published by the Free +Software Foundation. + +If the Program specifies that a proxy can decide which future versions +of the GNU General Public License can be used, that proxy's public +statement of acceptance of a version permanently authorizes you to +choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +### 15. Disclaimer of Warranty. + +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. + +### 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR +CONVEYS 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. + +### 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +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 state +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 3 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, see . + +Also add information on how to contact you by electronic and paper +mail. + +If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your +program's commands might be different; for a GUI interface, you would +use an "about box". + +You should also get your employer (if you work as a programmer) or +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. For more information on this, and how to apply and follow +the GNU GPL, see . + +The GNU 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. But first, +please read . diff --git a/README.md b/README.md new file mode 100644 index 0000000..da82aef --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Cloudpedal - A realtime LV2 reverb plugin + +This plugin uses the CloudseedCore reverb algorithm made by Ghost Note Audio. Check them out at https://ghostnoteaudio.uk! + +This was made to be able to run a cloudseed powered reverb inside of guitarix. + +to build, run +``` +git clone https://git.esca111.xyz/ESCA111/cloudPedal.git && cd cloudPedal +mkdir build && cd build +cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=/usr/local -G Ninja ../ +ninja +``` +the LV2 can then be copied to your LV2 folder (usually in `/usr/lib/lv2` or `~./.lv2`) diff --git a/cloudPedal.ttl b/cloudPedal.ttl new file mode 100644 index 0000000..c8ce284 --- /dev/null +++ b/cloudPedal.ttl @@ -0,0 +1,5 @@ +@prefix lv2: +@prefix rdf: + + a lv2:Plugin, lv2:ReverbPlugin ; + lv2:binary ; diff --git a/manifest.ttl b/manifest.ttl new file mode 100644 index 0000000..42be54f --- /dev/null +++ b/manifest.ttl @@ -0,0 +1,128 @@ +@prefix rdf: . +@prefix rdfs: . + +# Documents +@prefix doap: . + +# Persons +@prefix foaf: . + +# LV2 +@prefix lv2: . +@prefix atom: . +@prefix urid: . +@prefix time: . +@prefix midi: . +@prefix state: . +@prefix work: . +@prefix rsz: . +@prefix ui: . +@prefix pg: . +@prefix cloudPedal: . + +cloudPedal:in a pg:mainInput , pg:StereoGroup . +cloudPedal:out a pg:mainOutput , pg:StereoGroup ; + pg:source cloudPedal:in . + + +cloudPedal: a lv2:Plugin , lv2:ReverbPlugin , doap:Project ; + lv2:binary ; + rdf:seeAlso ; + doap:name "cloudPedal" ; + doap:license ; + doap:maintainer [ foaf:name "ESCA111" ; ] ; + + lv2:optionalFeature lv2:hardRTCapable ; + lv2:requiredFeature urid:map ; + + lv2:minorVersion 1 ; + lv2:microVersion 2 ; + + lv2:port + [ + a lv2:AudioPort , lv2:InputPort ; + lv2:index 0 ; + lv2:symbol "audio_in_l" ; + lv2:name "Audio input left" ; + pg:group cloudPedal:in; + lv2:designation pg:left ; + ] , + + [ + a lv2:AudioPort , lv2:InputPort ; + lv2:index 1 ; + lv2:symbol "audio_in_r" ; + lv2:name "Audio input right" ; + pg:group cloudPedal:in; + lv2:designation pg:right ; + ] , + + [ + a lv2:AudioPort , lv2:OutputPort ; + lv2:index 2 ; + lv2:symbol "audio_out_l" ; + lv2:name "Audio output left" ; + pg:group cloudPedal:out ; + lv2:designation pg:left ; + ] , + + [ + a lv2:AudioPort , lv2:OutputPort ; + lv2:index 3 ; + lv2:symbol "audio_out_r" ; + lv2:name "Audio output right" ; + pg:group cloudPedal:out; + lv2:designation pg:right ; + ] , + + [ + a lv2:ControlPort , lv2:InputPort ; + lv2:index 4 ; + lv2:symbol "size" ; + lv2:name "Size" ; + lv2:default 1.0 ; + lv2:minimum 0.0 ; + lv2:maximum 2.0 ; + ] , + + [ + a lv2:ControlPort , lv2:InputPort ; + lv2:index 5 ; + lv2:symbol "brightness" ; + lv2:name "Brightness" ; + lv2:default 1.0 ; + lv2:minimum 0.0 ; + lv2:maximum 2.0 ; + ] , + + [ + a lv2:ControlPort , lv2:InputPort ; + lv2:index 6 ; + lv2:symbol "decay" ; + lv2:name "Decay" ; + lv2:default 1.0 ; + lv2:minimum 0.0 ; + lv2:maximum 2.0 ; + ] , + + [ + a lv2:ControlPort , lv2:InputPort ; + lv2:index 7 ; + lv2:symbol "diffusion" ; + lv2:name "Diffusion" ; + lv2:default 1.0 ; + lv2:minimum 0.05 ; + lv2:maximum 2.0 ; + ] , + + [ + a lv2:ControlPort , lv2:InputPort ; + lv2:index 8 ; + lv2:symbol "mix" ; + lv2:name "Mix" ; + lv2:default 1.0 ; + lv2:minimum 0.0 ; + lv2:maximum 2.0 ; + ] . + + diff --git a/src/CloudSeedCore/.gitattributes b/src/CloudSeedCore/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/src/CloudSeedCore/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/src/CloudSeedCore/.gitignore b/src/CloudSeedCore/.gitignore new file mode 100644 index 0000000..f932f6d --- /dev/null +++ b/src/CloudSeedCore/.gitignore @@ -0,0 +1,42 @@ +Thumbs.db +*.obj +*.exe +*.pdb +*.user +*.aps +*.pch +*.vspscc +*_i.c +*_p.c +*.ncb +*.suo +*.sln.docstates +*.tlb +*.tlh +*.bak +*.cache +*.ilk +*.log +*.sdf +*.vsp +*.opensdf +*.o +[Bb]in +[Dd]ebug*/ +test-results/ +*.lib +*.sbr +obj/ +intermediate*/ +[Rr]elease*/ +_ReSharper*/ +packages*/ +[Tt]est[Rr]esult* +Build/* +Releases/* +.vs/* +**/.vs/* +**/.DS_Store +!VC_redist.x64.exe +outputLeft.bin +outputRight.bin \ No newline at end of file diff --git a/src/CloudSeedCore/DSP/AllpassDiffuser.h b/src/CloudSeedCore/DSP/AllpassDiffuser.h new file mode 100644 index 0000000..7702b3e --- /dev/null +++ b/src/CloudSeedCore/DSP/AllpassDiffuser.h @@ -0,0 +1,163 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include "ModulatedAllpass.h" +#include "RandomBuffer.h" + +namespace Cloudseed +{ + class AllpassDiffuser + { + public: + static const int MaxStageCount = 12; + + private: + int samplerate; + + ModulatedAllpass filters[MaxStageCount]; + int delay; + float modRate; + std::vector seedValues; + int seed; + float crossSeed; + + public: + int Stages; + + AllpassDiffuser() + { + crossSeed = 0.0; + seed = 23456; + UpdateSeeds(); + Stages = 1; + + SetSamplerate(48000); + } + + int GetSamplerate() + { + return samplerate; + } + + void SetSamplerate(int samplerate) + { + this->samplerate = samplerate; + SetModRate(modRate); + } + + void SetSeed(int seed) + { + this->seed = seed; + UpdateSeeds(); + } + + void SetCrossSeed(float crossSeed) + { + this->crossSeed = crossSeed; + UpdateSeeds(); + } + + + bool GetModulationEnabled() + { + return filters[0].ModulationEnabled; + } + + void SetModulationEnabled(bool value) + { + for (int i = 0; i < MaxStageCount; i++) + filters[i].ModulationEnabled = value; + + } + + void SetInterpolationEnabled(bool enabled) + { + for (int i = 0; i < MaxStageCount; i++) + filters[i].InterpolationEnabled = enabled; + } + + void SetDelay(int delaySamples) + { + delay = delaySamples; + Update(); + } + + void SetFeedback(float feedback) + { + for (int i = 0; i < MaxStageCount; i++) + filters[i].Feedback = feedback; + } + + void SetModAmount(float amount) + { + for (int i = 0; i < MaxStageCount; i++) + filters[i].ModAmount = amount * (0.85 + 0.3 * seedValues[MaxStageCount + i]); + } + + void SetModRate(float rate) + { + modRate = rate; + + for (int i = 0; i < MaxStageCount; i++) + filters[i].ModRate = rate * (0.85 + 0.3 * seedValues[MaxStageCount * 2 + i]) / samplerate; + } + + void Process(float* input, float* output, int bufSize) + { + float tempBuffer[BUFFER_SIZE]; + + filters[0].Process(input, tempBuffer, bufSize); + + for (int i = 1; i < Stages; i++) + filters[i].Process(tempBuffer, tempBuffer, bufSize); + + Utils::Copy(output, tempBuffer, bufSize); + } + + void ClearBuffers() + { + for (int i = 0; i < MaxStageCount; i++) + filters[i].ClearBuffers(); + } + + private: + void Update() + { + for (int i = 0; i < MaxStageCount; i++) + { + auto r = seedValues[i]; + auto d = std::pow(10, r) * 0.1; // 0.1 ... 1.0 + filters[i].SampleDelay = (int)(delay * d); + } + } + + void UpdateSeeds() + { + this->seedValues = RandomBuffer::Generate(seed, MaxStageCount * 3, crossSeed); + Update(); + } + + }; +} diff --git a/src/CloudSeedCore/DSP/Biquad.cpp b/src/CloudSeedCore/DSP/Biquad.cpp new file mode 100644 index 0000000..8b05ac5 --- /dev/null +++ b/src/CloudSeedCore/DSP/Biquad.cpp @@ -0,0 +1,247 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#include "Biquad.h" +#define _USE_MATH_DEFINES +#include "math.h" + +namespace Cloudseed +{ + Biquad::Biquad() + { + ClearBuffers(); + } + + Biquad::Biquad(FilterType filterType, float fs) + { + Type = filterType; + SetSamplerate(fs); + + SetGainDb(0.0f); + Frequency = (float)(fs * 0.25f); + SetQ(0.5f); + ClearBuffers(); + } + + Biquad::~Biquad() + { + + } + + + float Biquad::GetSamplerate() + { + return fs; + } + + void Biquad::SetSamplerate(float fs) + { + this->fs = fs; + fsInv = 1.0f / fs; + Update(); + } + + float Biquad::GetGainDb() + { + return gainDB; + } + + float Biquad::GetGain() + { + return gain; + } + + void Biquad::SetGainDb (float value) + { + // Clamp value between -60 and 60 + if (value < -60) + value = -60; + else if (value > 60) + value = 60; + + gainDB = value; + gain = powf (10.0f, value / 20.0f); + } + + void Biquad::SetGain (float value) + { + if (value < 0.001f) + value = 0.001f; // -60dB + else if (value > 1000.0f) + value = 1000.0f; // 60dB + + gain = value; + gainDB = log10f (gain) * 20; + } + + float Biquad::GetQ() + { + return q; + } + + void Biquad::SetQ(float value) + { + if (value < 0.001f) + value = 0.001f; + q = value; + } + + // this is the newer set of formulas from http://www.earlevel.com/main/2011/01/02/biquad-formulas/ + // Note that for shelf and peak filters, I had to invert the if/else statements for boost and cut, as + // I was getting the inverse desired effect, very odd... + void Biquad::Update() + { + auto Fc = Frequency; + //auto Fs = fs; + + auto V = powf(10, fabsf(gainDB) / 20.0f); + //auto K = tanf(M_PI * Fc / Fs); + auto K = tanf(M_PI * Fc * fsInv); + auto Q = q; + double norm = 1.0; + + switch (Type) + { + case FilterType::LowPass6db: + a1 = -expf(-2.0 * M_PI * (Fc * fsInv)); + b0 = 1.0 + a1; + b1 = b2 = a2 = 0; + break; + case FilterType::HighPass6db: + a1 = -expf(-2.0 * M_PI * (Fc * fsInv)); + b0 = a1; + b1 = -a1; + b2 = a2 = 0; + break; + case FilterType::LowPass: + norm = 1 / (1 + K / Q + K * K); + b0 = K * K * norm; + b1 = 2 * b0; + b2 = b0; + a1 = 2 * (K * K - 1) * norm; + a2 = (1 - K / Q + K * K) * norm; + break; + case FilterType::HighPass: + norm = 1 / (1 + K / Q + K * K); + b0 = 1 * norm; + b1 = -2 * b0; + b2 = b0; + a1 = 2 * (K * K - 1) * norm; + a2 = (1 - K / Q + K * K) * norm; + break; + case FilterType::BandPass: + norm = 1 / (1 + K / Q + K * K); + b0 = K / Q * norm; + b1 = 0; + b2 = -b0; + a1 = 2 * (K * K - 1) * norm; + a2 = (1 - K / Q + K * K) * norm; + break; + case FilterType::Notch: + norm = 1 / (1 + K / Q + K * K); + b0 = (1 + K * K) * norm; + b1 = 2 * (K * K - 1) * norm; + b2 = b0; + a1 = b1; + a2 = (1 - K / Q + K * K) * norm; + break; + case FilterType::Peak: + if (gainDB >= 0) + { + norm = 1 / (1 + 1 / Q * K + K * K); + b0 = (1 + V / Q * K + K * K) * norm; + b1 = 2 * (K * K - 1) * norm; + b2 = (1 - V / Q * K + K * K) * norm; + a1 = b1; + a2 = (1 - 1 / Q * K + K * K) * norm; + } + else + { + norm = 1 / (1 + V / Q * K + K * K); + b0 = (1 + 1 / Q * K + K * K) * norm; + b1 = 2 * (K * K - 1) * norm; + b2 = (1 - 1 / Q * K + K * K) * norm; + a1 = b1; + a2 = (1 - V / Q * K + K * K) * norm; + } + break; + case FilterType::LowShelf: + if (gainDB >= 0) + { + norm = 1 / (1 + sqrtf(2) * K + K * K); + b0 = (1 + sqrtf(2 * V) * K + V * K * K) * norm; + b1 = 2 * (V * K * K - 1) * norm; + b2 = (1 - sqrtf(2 * V) * K + V * K * K) * norm; + a1 = 2 * (K * K - 1) * norm; + a2 = (1 - sqrtf(2) * K + K * K) * norm; + } + else + { + norm = 1 / (1 + sqrtf(2 * V) * K + V * K * K); + b0 = (1 + sqrtf(2) * K + K * K) * norm; + b1 = 2 * (K * K - 1) * norm; + b2 = (1 - sqrtf(2) * K + K * K) * norm; + a1 = 2 * (V * K * K - 1) * norm; + a2 = (1 - sqrtf(2 * V) * K + V * K * K) * norm; + } + break; + case FilterType::HighShelf: + if (gainDB >= 0) + { + norm = 1 / (1 + sqrtf(2) * K + K * K); + b0 = (V + sqrtf(2 * V) * K + K * K) * norm; + b1 = 2 * (K * K - V) * norm; + b2 = (V - sqrtf(2 * V) * K + K * K) * norm; + a1 = 2 * (K * K - 1) * norm; + a2 = (1 - sqrtf(2) * K + K * K) * norm; + } + else + { + norm = 1 / (V + sqrtf(2 * V) * K + K * K); + b0 = (1 + sqrtf(2) * K + K * K) * norm; + b1 = 2 * (K * K - 1) * norm; + b2 = (1 - sqrtf(2) * K + K * K) * norm; + a1 = 2 * (K * K - V) * norm; + a2 = (V - sqrtf(2 * V) * K + K * K) * norm; + } + break; + } + } + + double Biquad::GetResponse(float freq) const + { + double phi = powf((sinf(2 * M_PI * freq / (2.0 * fs))), 2); + double y = ((powf(b0 + b1 + b2, 2.0) - 4.0 * (b0 * b1 + 4.0 * b0 * b2 + b1 * b2) * phi + 16.0 * b0 * b2 * phi * phi) / (powf(1.0 + a1 + a2, 2.0) - 4.0 * (a1 + 4.0 * a2 + a1 * a2) * phi + 16.0 * a2 * phi * phi)); + // y gives you power gain, not voltage gain, and this a 10 * log_10(g) formula instead of 20 * log_10(g) + // by taking the sqrt we get a value that's more suitable for signal processing, i.e. the voltage gain + return sqrtf(y); + } + + void Biquad::ClearBuffers() + { + y = 0; + x2 = 0; + y2 = 0; + x1 = 0; + y1 = 0; + } +} diff --git a/src/CloudSeedCore/DSP/Biquad.h b/src/CloudSeedCore/DSP/Biquad.h new file mode 100644 index 0000000..c9e272b --- /dev/null +++ b/src/CloudSeedCore/DSP/Biquad.h @@ -0,0 +1,105 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +namespace Cloudseed +{ + class Biquad + { + public: + enum class FilterType + { + LowPass6db = 0, + HighPass6db, + LowPass, + HighPass, + BandPass, + Notch, + Peak, + LowShelf, + HighShelf + }; + + private: + float fs; + float fsInv; + float gainDB; + float q; + float a0, a1, a2, b0, b1, b2; + float x1, x2, y, y1, y2; + float gain; + + public: + FilterType Type; + float Output; + float Frequency; + + Biquad(); + Biquad(FilterType filterType, float fs); + ~Biquad(); + + float GetSamplerate(); + void SetSamplerate(float fs); + float GetGainDb(); + void SetGainDb(float value); + float GetGain(); + void SetGain(float value); + float GetQ(); + void SetQ(float value); + + void Update(); + + double GetResponse(float freq) const; + + float inline Process(float x) + { + y = b0 * x + b1 * x1 + b2 * x2 - a1 * y1 - a2 * y2; + x2 = x1; + y2 = y1; + x1 = x; + y1 = y; + + Output = y; + return Output; + } + + void inline Process(float* input, float* output, int len) + { + for (int i = 0; i < len; i++) + { + float x = input[i]; + y = ((b0 * x) + (b1 * x1) + (b2 * x2)) - (a1 * y1) - (a2 * y2); + x2 = x1; + y2 = y1; + x1 = x; + y1 = y; + + output[i] = y; + } + + Output = y; + } + + void ClearBuffers(); + }; +} diff --git a/src/CloudSeedCore/DSP/DelayLine.h b/src/CloudSeedCore/DSP/DelayLine.h new file mode 100644 index 0000000..e6b3ba5 --- /dev/null +++ b/src/CloudSeedCore/DSP/DelayLine.h @@ -0,0 +1,284 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include "Lp1.h" +#include "ModulatedDelay.h" +#include "AllpassDiffuser.h" +#include "Biquad.h" + +namespace Cloudseed +{ + template + class CircularBuffer + { + float buffer[N]; + int idxRead; + int idxWrite; + int count; + public: + CircularBuffer() + { + Reset(); + } + + void Reset() + { + for (int i = 0; i < N; i++) + buffer[i] = 0.0f; + idxRead = 0; + idxWrite = 0; + count = 0; + } + + int GetCount() + { + return count; + } + + int PushZeros(float* data, int bufSize) + { + int countBefore = count; + for (int i = 0; i < bufSize; i++) + { + buffer[idxWrite] = 0.0f; + idxWrite = (idxWrite + 1) % N; + count++; + if (count >= N) + break; // overflow + } + + return count - countBefore; + } + + int Push(float* data, int bufSize) + { + int countBefore = count; + for (int i = 0; i < bufSize; i++) + { + buffer[idxWrite] = data[i]; + idxWrite = (idxWrite + 1) % N; + count++; + if (count >= N) + break; // overflow + } + + return count - countBefore; + } + + int Pop(float* destination, int bufSize) + { + int countBefore = count; + for (int i = 0; i < bufSize; i++) + { + if (count > 0) + { + destination[i] = buffer[idxRead]; + idxRead = (idxRead + 1) % N; + count--; + } + else + { + destination[i] = 0.0f; + } + } + + return countBefore - count; + } + + }; + + class DelayLine + { + private: + ModulatedDelay delay; + AllpassDiffuser diffuser; + Biquad lowShelf; + Biquad highShelf; + Lp1 lowPass; + CircularBuffer<2*BUFFER_SIZE> feedbackBuffer; + float feedback; + + public: + bool DiffuserEnabled; + bool LowShelfEnabled; + bool HighShelfEnabled; + bool CutoffEnabled; + bool TapPostDiffuser; + + DelayLine() : + lowShelf(Biquad::FilterType::LowShelf, 48000), + highShelf(Biquad::FilterType::HighShelf, 48000) + { + feedback = 0; + + lowShelf.SetGainDb(-20); + lowShelf.Frequency = 20; + + highShelf.SetGainDb(-20); + highShelf.Frequency = 19000; + + lowPass.SetCutoffHz(1000); + lowShelf.Update(); + highShelf.Update(); + SetSamplerate(48000); + SetDiffuserSeed(1, 0.0); + } + + void SetSamplerate(int samplerate) + { + diffuser.SetSamplerate(samplerate); + lowPass.SetSamplerate(samplerate); + lowShelf.SetSamplerate(samplerate); + highShelf.SetSamplerate(samplerate); + } + + void SetDiffuserSeed(int seed, float crossSeed) + { + diffuser.SetSeed(seed); + diffuser.SetCrossSeed(crossSeed); + } + + void SetDelay(int delaySamples) + { + delay.SampleDelay = delaySamples; + } + + void SetFeedback(float feedb) + { + feedback = feedb; + } + + void SetDiffuserDelay(int delaySamples) + { + diffuser.SetDelay(delaySamples); + } + + void SetDiffuserFeedback(float feedb) + { + diffuser.SetFeedback(feedb); + } + + void SetDiffuserStages(int stages) + { + diffuser.Stages = stages; + } + + void SetLowShelfGain(float gainDb) + { + lowShelf.SetGainDb(gainDb); + lowShelf.Update(); + } + + void SetLowShelfFrequency(float frequency) + { + lowShelf.Frequency = frequency; + lowShelf.Update(); + } + + void SetHighShelfGain(float gainDb) + { + highShelf.SetGainDb(gainDb); + highShelf.Update(); + } + + void SetHighShelfFrequency(float frequency) + { + highShelf.Frequency = frequency; + highShelf.Update(); + } + + void SetCutoffFrequency(float frequency) + { + lowPass.SetCutoffHz(frequency); + } + + void SetLineModAmount(float amount) + { + delay.ModAmount = amount; + } + + void SetLineModRate(float rate) + { + delay.ModRate = rate; + } + + void SetDiffuserModAmount(float amount) + { + diffuser.SetModulationEnabled(amount > 0.0); + diffuser.SetModAmount(amount); + } + + void SetDiffuserModRate(float rate) + { + diffuser.SetModRate(rate); + } + + void SetInterpolationEnabled(bool value) + { + diffuser.SetInterpolationEnabled(value); + } + + void Process(float* input, float* output, int bufSize) + { + float tempBuffer[BUFFER_SIZE]; + feedbackBuffer.Pop(tempBuffer, bufSize); + + for (int i = 0; i < bufSize; i++) + tempBuffer[i] = input[i] + tempBuffer[i] * feedback; + + delay.Process(tempBuffer, tempBuffer, bufSize); + + if (!TapPostDiffuser) + Utils::Copy(output, tempBuffer, bufSize); + if (DiffuserEnabled) + diffuser.Process(tempBuffer, tempBuffer, bufSize); + if (LowShelfEnabled) + lowShelf.Process(tempBuffer, tempBuffer, bufSize); + if (HighShelfEnabled) + highShelf.Process(tempBuffer, tempBuffer, bufSize); + if (CutoffEnabled) + lowPass.Process(tempBuffer, tempBuffer, bufSize); + + feedbackBuffer.Push(tempBuffer, bufSize); + + if (TapPostDiffuser) + Utils::Copy(output, tempBuffer, bufSize); + } + + void ClearDiffuserBuffer() + { + diffuser.ClearBuffers(); + } + + void ClearBuffers() + { + delay.ClearBuffers(); + diffuser.ClearBuffers(); + lowShelf.ClearBuffers(); + highShelf.ClearBuffers(); + lowPass.Output = 0; + feedbackBuffer.Reset(); + } + }; +} diff --git a/src/CloudSeedCore/DSP/Hp1.h b/src/CloudSeedCore/DSP/Hp1.h new file mode 100644 index 0000000..3fe8544 --- /dev/null +++ b/src/CloudSeedCore/DSP/Hp1.h @@ -0,0 +1,112 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#define _USE_MATH_DEFINES +#include + +namespace Cloudseed +{ + class Hp1 + { + private: + float fs; + float b0, a1; + float lpOut; + float cutoffHz; + + public: + float Output; + + Hp1() + { + fs = 48000; + b0 = 1; + a1 = 0; + lpOut = 0.0; + cutoffHz = 100; + } + + float GetSamplerate() + { + return fs; + } + + void SetSamplerate(float samplerate) + { + fs = samplerate; + } + + float GetCutoffHz() + { + return cutoffHz; + } + + void SetCutoffHz(float hz) + { + cutoffHz = hz; + Update(); + } + + void ClearBuffers() + { + lpOut = 0; + Output = 0; + } + + void Update() + { + // Prevent going over the Nyquist frequency + if (cutoffHz >= fs * 0.5f) + cutoffHz = fs * 0.499f; + + auto x = 2.0f * M_PI * cutoffHz / fs; + auto nn = (2.0f - cosf(x)); + auto alpha = nn - sqrtf(nn * nn - 1); + + a1 = alpha; + b0 = 1 - alpha; + } + + float Process(float input) + { + if (input == 0 && lpOut < 0.000001f) + { + Output = 0; + } + else + { + lpOut = b0 * input + a1 * lpOut; + Output = input - lpOut; + } + + return Output; + } + + void Process(float* input, float* output, int len) + { + for (int i = 0; i < len; i++) + output[i] = Process(input[i]); + } + }; +} diff --git a/src/CloudSeedCore/DSP/LcgRandom.h b/src/CloudSeedCore/DSP/LcgRandom.h new file mode 100644 index 0000000..f19d68a --- /dev/null +++ b/src/CloudSeedCore/DSP/LcgRandom.h @@ -0,0 +1,97 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include + +namespace Cloudseed +{ + class LcgRandom + { + private: + uint64_t x; + uint64_t a; + uint64_t c; + + double doubleInv; + float floatUintInv; + float floatIntInv; + + public: + inline LcgRandom(uint64_t seed = 0) + { + x = seed; + a = 22695477; + c = 1; + + doubleInv = 1.0 / (double)UINT32_MAX; + floatUintInv = 1.0 / (float)UINT32_MAX; + floatIntInv = 1.0 / (float)INT32_MAX; + } + + inline void SetSeed(uint64_t seed) + { + x = seed; + } + + inline uint32_t NextUInt() + { + uint64_t axc = a * x + c; + //x = axc % m; + x = axc & 0xFFFFFFFF; + return (uint32_t)x; + } + + inline int32_t NextInt() + { + int64_t axc = a * x + c; + //x = axc % m; + x = axc & 0x7FFFFFFF; + return (int32_t)x; + } + + inline double NextDouble() + { + auto n = NextUInt(); + return n * doubleInv; + } + + inline float NextFloat() + { + auto n = NextInt(); + return n * floatIntInv; + } + + inline void GetFloats(float* buffer, int len) + { + for (int i = 0; i < len; i++) + buffer[i] = NextFloat(); + } + + inline void GetFloatsBipolar(float* buffer, int len) + { + for (int i = 0; i < len; i++) + buffer[i] = NextFloat() * 2 - 1; + } + }; +} diff --git a/src/CloudSeedCore/DSP/Lp1.h b/src/CloudSeedCore/DSP/Lp1.h new file mode 100644 index 0000000..61b4199 --- /dev/null +++ b/src/CloudSeedCore/DSP/Lp1.h @@ -0,0 +1,107 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#define _USE_MATH_DEFINES +#include + +namespace Cloudseed +{ + class Lp1 + { + private: + float fs; + float b0, a1; + float cutoffHz; + + public: + float Output; + + Lp1() + { + fs = 48000; + b0 = 1; + a1 = 0; + cutoffHz = 1000; + } + + float GetSamplerate() + { + return fs; + } + + void SetSamplerate(float samplerate) + { + fs = samplerate; + } + + float GetCutoffHz() + { + return cutoffHz; + } + + void SetCutoffHz(float hz) + { + cutoffHz = hz; + Update(); + } + + void ClearBuffers() + { + Output = 0; + } + + void Update() + { + // Prevent going over the Nyquist frequency + if (cutoffHz >= fs * 0.5f) + cutoffHz = fs * 0.499f; + + auto x = 2.0f * M_PI * cutoffHz / fs; + auto nn = (2.0f - cosf(x)); + auto alpha = nn - sqrtf(nn * nn - 1); + + a1 = alpha; + b0 = 1 - alpha; + } + + float Process(float input) + { + if (input == 0 && Output < 0.0000001f) + { + Output = 0; + } + else + { + Output = b0 * input + a1 * Output; + } + return Output; + } + + void Process(float* input, float* output, int len) + { + for (int i = 0; i < len; i++) + output[i] = Process(input[i]); + } + }; +} diff --git a/src/CloudSeedCore/DSP/ModulatedAllpass.h b/src/CloudSeedCore/DSP/ModulatedAllpass.h new file mode 100644 index 0000000..48e3d5f --- /dev/null +++ b/src/CloudSeedCore/DSP/ModulatedAllpass.h @@ -0,0 +1,187 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include "ModulatedAllpass.h" +#include "Utils.h" +#include + +namespace Cloudseed +{ + class ModulatedAllpass + { + public: + static const int DelayBufferSize = 19200; // 100ms at 192Khz + static const int ModulationUpdateRate = 8; + + private: + float delayBuffer[DelayBufferSize] = { 0 }; + int index; + uint64_t samplesProcessed; + + float modPhase; + int delayA; + int delayB; + float gainA; + float gainB; + + public: + + int SampleDelay; + float Feedback; + float ModAmount; + float ModRate; + + bool InterpolationEnabled; + bool ModulationEnabled; + + ModulatedAllpass() + { + index = DelayBufferSize - 1; + samplesProcessed = 0; + + modPhase = 0.01 + 0.98 * rand() / (float)RAND_MAX; + delayA = 0; + delayB = 0; + gainA = 0; + gainB = 0; + + SampleDelay = 100; + Feedback = 0.5; + ModAmount = 0.0; + ModRate = 0.0; + + InterpolationEnabled = true; + ModulationEnabled = true; + Update(); + } + + void ClearBuffers() + { + Utils::ZeroBuffer(delayBuffer, DelayBufferSize); + } + + void Process(float* input, float* output, int sampleCount) + { + if (ModulationEnabled) + ProcessWithMod(input, output, sampleCount); + else + ProcessNoMod(input, output, sampleCount); + } + + private: + void ProcessNoMod(float* input, float* output, int sampleCount) + { + auto delayedIndex = index - SampleDelay; + if (delayedIndex < 0) delayedIndex += DelayBufferSize; + + for (int i = 0; i < sampleCount; i++) + { + auto bufOut = delayBuffer[delayedIndex]; + auto inVal = input[i] + bufOut * Feedback; + + delayBuffer[index] = inVal; + output[i] = bufOut - inVal * Feedback; + + index++; + delayedIndex++; + if (index >= DelayBufferSize) index -= DelayBufferSize; + if (delayedIndex >= DelayBufferSize) delayedIndex -= DelayBufferSize; + samplesProcessed++; + } + } + + void ProcessWithMod(float* input, float* output, int sampleCount) + { + for (int i = 0; i < sampleCount; i++) + { + if (samplesProcessed >= ModulationUpdateRate) + { + Update(); + samplesProcessed = 0; + } + + float bufOut; + + if (InterpolationEnabled) + { + int idxA = index - delayA; + int idxB = index - delayB; + idxA += DelayBufferSize * (idxA < 0); // modulo + idxB += DelayBufferSize * (idxB < 0); // modulo + + bufOut = delayBuffer[idxA] * gainA + delayBuffer[idxB] * gainB; + } + else + { + int idxA = index - delayA; + idxA += DelayBufferSize * (idxA < 0); // modulo + bufOut = delayBuffer[idxA]; + } + + auto inVal = input[i] + bufOut * Feedback; + delayBuffer[index] = inVal; + output[i] = bufOut - inVal * Feedback; + + index++; + if (index >= DelayBufferSize) index -= DelayBufferSize; + samplesProcessed++; + } + } + + inline float Get(int delay) + { + int idx = index - delay; + if (idx < 0) + idx += DelayBufferSize; + + return delayBuffer[idx]; + } + + void Update() + { + modPhase += ModRate * ModulationUpdateRate; + if (modPhase > 1) + modPhase = std::fmod(modPhase, 1.0); + + auto mod = std::sinf(modPhase * 2 * M_PI); + + if (ModAmount >= SampleDelay) // don't modulate to negative value + ModAmount = SampleDelay - 1; + + + auto totalDelay = SampleDelay + ModAmount * mod; + + if (totalDelay <= 0) // should no longer be required + totalDelay = 1; + + delayA = (int)totalDelay; + delayB = (int)totalDelay + 1; + + auto partial = totalDelay - delayA; + + gainA = 1 - partial; + gainB = partial; + } + }; +} diff --git a/src/CloudSeedCore/DSP/ModulatedDelay.h b/src/CloudSeedCore/DSP/ModulatedDelay.h new file mode 100644 index 0000000..e1bca98 --- /dev/null +++ b/src/CloudSeedCore/DSP/ModulatedDelay.h @@ -0,0 +1,125 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include "ModulatedDelay.h" +#include "Utils.h" +#include + +namespace Cloudseed +{ + class ModulatedDelay + { + private: + + static const int ModulationUpdateRate = 8; + static const int DelayBufferSize = 192000 * 2; + + float delayBuffer[DelayBufferSize] = { 0 }; + int writeIndex; + int readIndexA; + int readIndexB; + uint64_t samplesProcessed; + + float modPhase; + float gainA; + float gainB; + + public: + int SampleDelay; + + float ModAmount; + float ModRate; + + ModulatedDelay() + { + writeIndex = 0; + readIndexA = 0; + readIndexB = 0; + samplesProcessed = 0; + + modPhase = 0.01 + 0.98 * (rand() / (float)RAND_MAX); + gainA = 0; + gainB = 0; + + SampleDelay = 100; + ModAmount = 0.0; + ModRate = 0.0; + + Update(); + } + + void Process(float* input, float* output, int bufSize) + { + for (int i = 0; i < bufSize; i++) + { + if (samplesProcessed >= ModulationUpdateRate) + { + Update(); + samplesProcessed = 0; + } + + delayBuffer[writeIndex] = input[i]; + output[i] = delayBuffer[readIndexA] * gainA + delayBuffer[readIndexB] * gainB; + + writeIndex++; + readIndexA++; + readIndexB++; + if (writeIndex >= DelayBufferSize) writeIndex -= DelayBufferSize; + if (readIndexA >= DelayBufferSize) readIndexA -= DelayBufferSize; + if (readIndexB >= DelayBufferSize) readIndexB -= DelayBufferSize; + samplesProcessed++; + } + } + + void ClearBuffers() + { + Utils::ZeroBuffer(delayBuffer, DelayBufferSize); + } + + + private: + void Update() + { + modPhase += ModRate * ModulationUpdateRate; + if (modPhase > 1) + modPhase = std::fmod(modPhase, 1.0); + + auto mod = std::sinf(modPhase * 2 * M_PI); + auto totalDelay = SampleDelay + ModAmount * mod; + + auto delayA = (int)totalDelay; + auto delayB = (int)totalDelay + 1; + + auto partial = totalDelay - delayA; + + gainA = 1 - partial; + gainB = partial; + + readIndexA = writeIndex - delayA; + readIndexB = writeIndex - delayB; + if (readIndexA < 0) readIndexA += DelayBufferSize; + if (readIndexB < 0) readIndexB += DelayBufferSize; + } + }; +} diff --git a/src/CloudSeedCore/DSP/MultitapDelay.h b/src/CloudSeedCore/DSP/MultitapDelay.h new file mode 100644 index 0000000..982bc6b --- /dev/null +++ b/src/CloudSeedCore/DSP/MultitapDelay.h @@ -0,0 +1,150 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include +#include +#include +#include "Utils.h" +#include "RandomBuffer.h" + +namespace Cloudseed +{ + class MultitapDelay + { + public: + static const int MaxTaps = 256; + static const int DelayBufferSize = 192000 * 2; + + private: + float delayBuffer[DelayBufferSize] = { 0 }; + + float tapGains[MaxTaps] = { 0 }; + float tapPosition[MaxTaps] = { 0 }; + + std::vector seedValues; + + int writeIdx; + int seed; + float crossSeed; + int count; + float lengthSamples; + float decay; + + public: + MultitapDelay() + { + writeIdx = 0; + seed = 0; + crossSeed = 0.0; + count = 1; + lengthSamples = 1000; + decay = 1.0; + + UpdateSeeds(); + } + + void SetSeed(int seed) + { + this->seed = seed; + UpdateSeeds(); + } + + void SetCrossSeed(float crossSeed) + { + this->crossSeed = crossSeed; + UpdateSeeds(); + } + + void SetTapCount(int tapCount) + { + if (tapCount < 1) tapCount = 1; + count = tapCount; + Update(); + } + + void SetTapLength(int tapLengthSamples) + { + if (tapLengthSamples < 10) tapLengthSamples = 10; + lengthSamples = tapLengthSamples; + Update(); + } + + void SetTapDecay(float tapDecay) + { + decay = tapDecay; + } + + void Process(float* input, float* output, int bufSize) + { + float lengthScaler = lengthSamples / (float)count; + float totalGain = 3.0 / std::sqrtf(1 + count); + totalGain *= (1 + decay * 2); + + for (int i = 0; i < bufSize; i++) + { + delayBuffer[writeIdx] = input[i]; + output[i] = 0; + + for (int j = 0; j < count; j++) + { + float offset = tapPosition[j] * lengthScaler; + float decayEffective = std::expf(-offset / lengthSamples * 3.3) * decay + (1-decay); + int readIdx = writeIdx - (int)offset; + if (readIdx < 0) readIdx += DelayBufferSize; + + output[i] += delayBuffer[readIdx] * tapGains[j] * decayEffective * totalGain; + } + + writeIdx = (writeIdx + 1) % DelayBufferSize; + } + } + + void ClearBuffers() + { + Utils::ZeroBuffer(delayBuffer, DelayBufferSize); + } + + + private: + void Update() + { + int s = 0; + auto rand = [&]() {return seedValues[s++]; }; + + for (int i = 0; i < MaxTaps; i++) + { + float phase = rand() < 0.5 ? 1 : -1; + tapGains[i] = Utils::DB2Gainf(-20 + rand() * 20) * phase; + tapPosition[i] = i + rand(); + } + } + + void UpdateSeeds() + { + this->seedValues = RandomBuffer::Generate(seed, MaxTaps * 3, crossSeed); + Update(); + } + }; +} diff --git a/src/CloudSeedCore/DSP/RandomBuffer.cpp b/src/CloudSeedCore/DSP/RandomBuffer.cpp new file mode 100644 index 0000000..d43bdef --- /dev/null +++ b/src/CloudSeedCore/DSP/RandomBuffer.cpp @@ -0,0 +1,57 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#include +#include "RandomBuffer.h" +#include "LcgRandom.h" + +namespace Cloudseed +{ + std::vector RandomBuffer::Generate(uint64_t seed, int count) + { + LcgRandom rand(seed); + std::vector output; + + for (int i = 0; i < count; i++) + { + unsigned int val = rand.NextUInt(); + float fVal = val / (float)UINT_MAX; + output.push_back(fVal); + } + + return output; + } + + std::vector RandomBuffer::Generate(uint64_t seed, int count, float crossSeed) + { + auto seedA = seed; + auto seedB = ~seed; + auto seriesA = Generate(seedA, count); + auto seriesB = Generate(seedB, count); + + std::vector output; + for (int i = 0; i < count; i++) + output.push_back(seriesA[i] * (1 - crossSeed) + seriesB[i] * crossSeed); + + return output; + } +} diff --git a/src/CloudSeedCore/DSP/RandomBuffer.h b/src/CloudSeedCore/DSP/RandomBuffer.h new file mode 100644 index 0000000..b792773 --- /dev/null +++ b/src/CloudSeedCore/DSP/RandomBuffer.h @@ -0,0 +1,36 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include + +namespace Cloudseed +{ + class RandomBuffer + { + public: + static std::vector Generate(uint64_t seed, int count); + static std::vector Generate(uint64_t seed, int count, float crossSeed); + }; +} diff --git a/src/CloudSeedCore/DSP/ReverbChannel.h b/src/CloudSeedCore/DSP/ReverbChannel.h new file mode 100644 index 0000000..570d78b --- /dev/null +++ b/src/CloudSeedCore/DSP/ReverbChannel.h @@ -0,0 +1,428 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include +#include "../Parameters.h" +#include "ModulatedDelay.h" +#include "MultitapDelay.h" +#include "RandomBuffer.h" +#include "Lp1.h" +#include "Hp1.h" +#include "DelayLine.h" +#include "AllpassDiffuser.h" +#include +#include "ReverbChannel.h" +#include "Utils.h" + +namespace Cloudseed +{ + enum class ChannelLR + { + Left, + Right + }; + + class ReverbChannel + { + private: + static const int TotalLineCount = 12; + + double paramsScaled[Parameter::COUNT] = { 0.0 }; + int samplerate; + + ModulatedDelay preDelay; + MultitapDelay multitap; + AllpassDiffuser diffuser; + DelayLine lines[TotalLineCount]; + RandomBuffer rand; + Hp1 highPass; + Lp1 lowPass; + + int delayLineSeed; + int postDiffusionSeed; + + // Used the the main process loop + int lineCount; + + bool lowCutEnabled; + bool highCutEnabled; + bool multitapEnabled; + bool diffuserEnabled; + float inputMix; + float dryOut; + float earlyOut; + float lineOut; + float crossSeed; + ChannelLR channelLr; + + public: + + ReverbChannel(int samplerate, ChannelLR leftOrRight) + { + this->channelLr = leftOrRight; + crossSeed = 0.0; + lineCount = 8; + diffuser.SetInterpolationEnabled(true); + highPass.SetCutoffHz(20); + lowPass.SetCutoffHz(20000); + SetSamplerate(samplerate); + } + + int GetSamplerate() + { + return samplerate; + } + + void SetSamplerate(int samplerate) + { + this->samplerate = samplerate; + highPass.SetSamplerate(samplerate); + lowPass.SetSamplerate(samplerate); + diffuser.SetSamplerate(samplerate); + + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetSamplerate(samplerate); + + ReapplyAllParams(); + ClearBuffers(); + UpdateLines(); + } + + void ReapplyAllParams() + { + for (int i = 0; i < Parameter::COUNT; i++) + SetParameter(i, paramsScaled[i]); + } + + void SetParameter(int para, double scaledValue) + { + paramsScaled[para] = scaledValue; + + switch (para) + { + case Parameter::Interpolation: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetInterpolationEnabled(scaledValue >= 0.5); + break; + case Parameter::LowCutEnabled: + lowCutEnabled = scaledValue >= 0.5; + if (lowCutEnabled) + highPass.ClearBuffers(); + break; + case Parameter::HighCutEnabled: + highCutEnabled = scaledValue >= 0.5; + if (highCutEnabled) + lowPass.ClearBuffers(); + break; + case Parameter::InputMix: + inputMix = scaledValue; + break; + case Parameter::LowCut: + highPass.SetCutoffHz(scaledValue); + break; + case Parameter::HighCut: + lowPass.SetCutoffHz(scaledValue); + break; + case Parameter::DryOut: + dryOut = scaledValue <= -30 ? 0.0 : Utils::DB2Gainf(scaledValue); + break; + case Parameter::EarlyOut: + earlyOut = scaledValue <= -30 ? 0.0 : Utils::DB2Gainf(scaledValue); + break; + case Parameter::LateOut: + lineOut = scaledValue <= -30 ? 0.0 : Utils::DB2Gainf(scaledValue); + break; + + + case Parameter::TapEnabled: + { + auto newVal = scaledValue >= 0.5; + if (newVal != multitapEnabled) + multitap.ClearBuffers(); + multitapEnabled = newVal; + break; + } + case Parameter::TapCount: + multitap.SetTapCount((int)scaledValue); + break; + case Parameter::TapDecay: + multitap.SetTapDecay(scaledValue); + break; + case Parameter::TapPredelay: + preDelay.SampleDelay = (int)Ms2Samples(scaledValue); + break; + case Parameter::TapLength: + multitap.SetTapLength((int)Ms2Samples(scaledValue)); + break; + + + case Parameter::EarlyDiffuseEnabled: + { + auto newVal = scaledValue >= 0.5; + if (newVal != diffuserEnabled) + diffuser.ClearBuffers(); + diffuserEnabled = newVal; + break; + } + case Parameter::EarlyDiffuseCount: + diffuser.Stages = (int)scaledValue; + break; + case Parameter::EarlyDiffuseDelay: + diffuser.SetDelay((int)Ms2Samples(scaledValue)); + break; + case Parameter::EarlyDiffuseModAmount: + diffuser.SetModulationEnabled(scaledValue > 0.5); + diffuser.SetModAmount(Ms2Samples(scaledValue)); + break; + case Parameter::EarlyDiffuseFeedback: + diffuser.SetFeedback(scaledValue); + break; + case Parameter::EarlyDiffuseModRate: + diffuser.SetModRate(scaledValue); + break; + + + case Parameter::LateMode: + for (int i = 0; i < TotalLineCount; i++) + lines[i].TapPostDiffuser = scaledValue >= 0.5; + break; + case Parameter::LateLineCount: + lineCount = (int)scaledValue; + break; + case Parameter::LateDiffuseEnabled: + for (int i = 0; i < TotalLineCount; i++) + { + auto newVal = scaledValue >= 0.5; + if (newVal != lines[i].DiffuserEnabled) + lines[i].ClearDiffuserBuffer(); + lines[i].DiffuserEnabled = newVal; + } + break; + case Parameter::LateDiffuseCount: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetDiffuserStages((int)scaledValue); + break; + case Parameter::LateLineSize: + UpdateLines(); + break; + case Parameter::LateLineModAmount: + UpdateLines(); + break; + case Parameter::LateDiffuseDelay: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetDiffuserDelay((int)Ms2Samples(scaledValue)); + break; + case Parameter::LateDiffuseModAmount: + UpdateLines(); + break; + case Parameter::LateLineDecay: + UpdateLines(); + break; + case Parameter::LateLineModRate: + UpdateLines(); + break; + case Parameter::LateDiffuseFeedback: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetDiffuserFeedback(scaledValue); + break; + case Parameter::LateDiffuseModRate: + UpdateLines(); + break; + + + case Parameter::EqLowShelfEnabled: + for (int i = 0; i < TotalLineCount; i++) + lines[i].LowShelfEnabled = scaledValue >= 0.5; + break; + case Parameter::EqHighShelfEnabled: + for (int i = 0; i < TotalLineCount; i++) + lines[i].HighShelfEnabled = scaledValue >= 0.5; + break; + case Parameter::EqLowpassEnabled: + for (int i = 0; i < TotalLineCount; i++) + lines[i].CutoffEnabled = scaledValue >= 0.5; + break; + case Parameter::EqLowFreq: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetLowShelfFrequency(scaledValue); + break; + case Parameter::EqHighFreq: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetHighShelfFrequency(scaledValue); + break; + case Parameter::EqCutoff: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetCutoffFrequency(scaledValue); + break; + case Parameter::EqLowGain: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetLowShelfGain(scaledValue); + break; + case Parameter::EqHighGain: + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetHighShelfGain(scaledValue); + break; + + + case Parameter::EqCrossSeed: + crossSeed = channelLr == ChannelLR::Right ? 0.5 * scaledValue : 1 - 0.5 * scaledValue; + multitap.SetCrossSeed(crossSeed); + diffuser.SetCrossSeed(crossSeed); + UpdateLines(); + UpdatePostDiffusion(); + break; + + + case Parameter::SeedTap: + multitap.SetSeed((int)scaledValue); + break; + case Parameter::SeedDiffusion: + diffuser.SetSeed((int)scaledValue); + break; + case Parameter::SeedDelay: + delayLineSeed = (int)scaledValue; + UpdateLines(); + break; + case Parameter::SeedPostDiffusion: + postDiffusionSeed = (int)scaledValue; + UpdatePostDiffusion(); + break; + } + } + + void Process(float* input, float* output, int bufSize) + { + float tempBuffer[BUFFER_SIZE]; + float earlyOutBuffer[BUFFER_SIZE]; + float lineOutBuffer[BUFFER_SIZE]; + float lineSumBuffer[BUFFER_SIZE]; + + Utils::Copy(tempBuffer, input, bufSize); + + if (lowCutEnabled) + highPass.Process(tempBuffer, tempBuffer, bufSize); + if (highCutEnabled) + lowPass.Process(tempBuffer, tempBuffer, bufSize); + + // completely zero if no input present + // Previously, the very small values were causing some really strange CPU spikes + for (int i = 0; i < bufSize; i++) + { + auto n = tempBuffer[i]; + if (n * n < 0.000000001) + tempBuffer[i] = 0; + } + + preDelay.Process(tempBuffer, tempBuffer, bufSize); + if (multitapEnabled) + multitap.Process(tempBuffer, tempBuffer, bufSize); + if (diffuserEnabled) + diffuser.Process(tempBuffer, tempBuffer, bufSize); + + Utils::Copy(earlyOutBuffer, tempBuffer, bufSize); + Utils::ZeroBuffer(lineSumBuffer, bufSize); + for (int i = 0; i < lineCount; i++) + { + lines[i].Process(tempBuffer, lineOutBuffer, bufSize); + Utils::Mix(lineSumBuffer, lineOutBuffer, 1.0f, bufSize); + } + + auto perLineGain = GetPerLineGain(); + Utils::Gain(lineSumBuffer, perLineGain, bufSize); + + for (int i = 0; i < bufSize; i++) + { + output[i] = dryOut * input[i] + + earlyOut * earlyOutBuffer[i] + + lineOut * lineSumBuffer[i]; + } + } + + void ClearBuffers() + { + lowPass.ClearBuffers(); + highPass.ClearBuffers(); + preDelay.ClearBuffers(); + multitap.ClearBuffers(); + diffuser.ClearBuffers(); + for (int i = 0; i < TotalLineCount; i++) + lines[i].ClearBuffers(); + } + + + private: + float GetPerLineGain() + { + return 1.0 / std::sqrt(lineCount); + } + + void UpdateLines() + { + auto lineDelaySamples = (int)Ms2Samples(paramsScaled[Parameter::LateLineSize]); + auto lineDecayMillis = paramsScaled[Parameter::LateLineDecay] * 1000; + auto lineDecaySamples = Ms2Samples(lineDecayMillis); + + auto lineModAmount = Ms2Samples(paramsScaled[Parameter::LateLineModAmount]); + auto lineModRate = paramsScaled[Parameter::LateLineModRate]; + + auto lateDiffusionModAmount = Ms2Samples(paramsScaled[Parameter::LateDiffuseModAmount]); + auto lateDiffusionModRate = paramsScaled[Parameter::LateDiffuseModRate]; + + auto delayLineSeeds = RandomBuffer::Generate(delayLineSeed, TotalLineCount * 3, crossSeed); + + for (int i = 0; i < TotalLineCount; i++) + { + auto modAmount = lineModAmount * (0.7 + 0.3 * delayLineSeeds[i]); + auto modRate = lineModRate * (0.7 + 0.3 * delayLineSeeds[TotalLineCount + i]) / samplerate; + + auto delaySamples = (0.5 + 1.0 * delayLineSeeds[TotalLineCount * 2 + i]) * lineDelaySamples; + if (delaySamples < modAmount + 2) // when the delay is set really short, and the modulation is very high + delaySamples = modAmount + 2; // the mod could actually take the delay time negative, prevent that! -- provide 2 extra sample as margin of safety + + auto dbAfter1Iteration = delaySamples / lineDecaySamples * (-60); // lineDecay is the time it takes to reach T60 + auto gainAfter1Iteration = Utils::DB2Gainf(dbAfter1Iteration); + + lines[i].SetDelay((int)delaySamples); + lines[i].SetFeedback(gainAfter1Iteration); + lines[i].SetLineModAmount(modAmount); + lines[i].SetLineModRate(modRate); + lines[i].SetDiffuserModAmount(lateDiffusionModAmount); + lines[i].SetDiffuserModRate(lateDiffusionModRate); + } + } + + void UpdatePostDiffusion() + { + for (int i = 0; i < TotalLineCount; i++) + lines[i].SetDiffuserSeed((postDiffusionSeed) * (i + 1), crossSeed); + } + + float Ms2Samples(float value) + { + return value / 1000.0f * samplerate; + } + + }; +} diff --git a/src/CloudSeedCore/DSP/ReverbController.h b/src/CloudSeedCore/DSP/ReverbController.h new file mode 100644 index 0000000..3601e09 --- /dev/null +++ b/src/CloudSeedCore/DSP/ReverbController.h @@ -0,0 +1,126 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include "../Parameters.h" +#include "ReverbChannel.h" +#include "AllpassDiffuser.h" +#include "MultitapDelay.h" +#include "Utils.h" + +namespace Cloudseed +{ + class ReverbController + { + private: + int samplerate; + + ReverbChannel channelL; + ReverbChannel channelR; + double parameters[(int)Parameter::COUNT] = {0}; + + public: + ReverbController(int samplerate) : + channelL(samplerate, ChannelLR::Left), + channelR(samplerate, ChannelLR::Right) + { + this->samplerate = samplerate; + } + + int GetSamplerate() + { + return samplerate; + } + + void SetSamplerate(int samplerate) + { + this->samplerate = samplerate; + channelL.SetSamplerate(samplerate); + channelR.SetSamplerate(samplerate); + } + + int GetParameterCount() + { + return Parameter::COUNT; + } + + double* GetAllParameters() + { + return parameters; + } + + void SetParameter(int paramId, double value) + { + parameters[paramId] = value; + auto scaled = ScaleParam(value, paramId); + channelL.SetParameter(paramId, scaled); + channelR.SetParameter(paramId, scaled); + } + + void ClearBuffers() + { + channelL.ClearBuffers(); + channelR.ClearBuffers(); + } + + void Process(float* inL, float* inR, float* outL, float* outR, int bufSize) + { + float outLTemp[BUFFER_SIZE]; + float outRTemp[BUFFER_SIZE]; + + while (bufSize > 0) + { + int subBufSize = bufSize > BUFFER_SIZE ? BUFFER_SIZE : bufSize; + ProcessChunk(inL, inR, outLTemp, outRTemp, subBufSize); + Utils::Copy(outL, outLTemp, subBufSize); + Utils::Copy(outR, outRTemp, subBufSize); + inL = &inL[subBufSize]; + inR = &inR[subBufSize]; + outL = &outL[subBufSize]; + outR = &outR[subBufSize]; + bufSize -= subBufSize; + } + } + + private: + void ProcessChunk(float* inL, float* inR, float* outL, float* outR, int bufSize) + { + float leftChannelIn[BUFFER_SIZE]; + float rightChannelIn[BUFFER_SIZE]; + + float inputMix = ScaleParam(parameters[Parameter::InputMix], Parameter::InputMix); + float cm = inputMix * 0.5; + float cmi = (1 - cm); + + for (int i = 0; i < bufSize; i++) + { + leftChannelIn[i] = inL[i] * cmi + inR[i] * cm; + rightChannelIn[i] = inR[i] * cmi + inL[i] * cm; + } + + channelL.Process(leftChannelIn, outL, bufSize); + channelR.Process(rightChannelIn, outR, bufSize); + } + }; +} diff --git a/src/CloudSeedCore/DSP/Utils.h b/src/CloudSeedCore/DSP/Utils.h new file mode 100644 index 0000000..97ad74e --- /dev/null +++ b/src/CloudSeedCore/DSP/Utils.h @@ -0,0 +1,112 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#define _USE_MATH_DEFINES 1 +#include +#include + +namespace Cloudseed +{ + namespace Utils + { + template + inline void ZeroBuffer(T* buffer, int len) + { + for (int i = 0; i < len; i++) + buffer[i] = 0; + } + + template + inline void Copy(T* dest, T* source, int len) + { + memcpy(dest, source, len * sizeof(T)); + } + + template + inline void Gain(T* buffer, T gain, int len) + { + for (int i = 0; i < len; i++) + { + buffer[i] *= gain; + } + } + + template + inline void Mix(T* target, T* source, T gain, int len) + { + for (int i = 0; i < len; i++) + target[i] += source[i] * gain; + } + + inline float DB2Gainf(float input) + { + //return std::pow(10.0f, input / 20.0f); + return powf(10, input * 0.05f); + } + + template + inline double DB2Gain(T input) + { + return pow10f(input / 20.0); + } + + template + inline double Gain2DB(T input) + { + //if (input < 0.0000001) + // return -100000; + + return 20.0f * log10f(input); + } + + const float dec1Mult = (10 / 9.0) * 0.1; + const float dec2Mult = (100 / 99.0) * 0.01; + const float dec3Mult = (1000 / 999.0) * 0.001; + const float dec4Mult = (10000 / 9999.0) * 0.0001; + + const float oct1Mult = (2 / 1.0) * 0.5; + const float oct2Mult = (4 / 3.0) * 0.25; + const float oct3Mult = (8 / 7.0) * 0.125; + const float oct4Mult = (16 / 15.0) * 0.0625; + const float oct5Mult = (32 / 31.0) * 0.03125; + const float oct6Mult = (64 / 63.0) * 0.015625; + const float oct7Mult = (128 / 127.0) * 0.0078125; + const float oct8Mult = (256 / 255.0) * 0.00390625; + + inline float Resp1dec(float x) { return (powf(10, x) - 1) * dec1Mult; } + inline float Resp2dec(float x) { return (powf(10, 2 * x) - 1) * dec2Mult; } + inline float Resp3dec(float x) { return (powf(10, 3 * x) - 1) * dec3Mult; } + inline float Resp4dec(float x) { return (powf(10, 4 * x) - 1) * dec4Mult; } + + inline float Resp1oct(float x) { return (powf(2, x) - 1) * oct1Mult; } + inline float Resp2oct(float x) { return (powf(2, 2 * x) - 1) * oct2Mult; } + inline float Resp3oct(float x) { return (powf(2, 3 * x) - 1) * oct3Mult; } + inline float Resp4oct(float x) { return (powf(2, 4 * x) - 1) * oct4Mult; } + inline float Resp5oct(float x) { return (powf(2, 5 * x) - 1) * oct5Mult; } + inline float Resp6oct(float x) { return (powf(2, 6 * x) - 1) * oct6Mult; } + inline float Resp7oct(float x) { return (powf(2, 7 * x) - 1) * oct7Mult; } + inline float Resp8oct(float x) { return (powf(2, 8 * x) - 1) * oct8Mult; } + + } +} diff --git a/src/CloudSeedCore/LICENSE b/src/CloudSeedCore/LICENSE new file mode 100644 index 0000000..0c1e1d4 --- /dev/null +++ b/src/CloudSeedCore/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Ghost Note Audio + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/CloudSeedCore/Parameters.cpp b/src/CloudSeedCore/Parameters.cpp new file mode 100644 index 0000000..b5544ce --- /dev/null +++ b/src/CloudSeedCore/Parameters.cpp @@ -0,0 +1,80 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#include "Parameters.h" + +namespace Cloudseed +{ + const char* ParameterLabel[Parameter::COUNT] = { + "Interpolation", + "High Cut", + "Low Cut", + "Input Mix", + "High Cut", + "Low Cut", + "Dry", + "Early", + "Late", + + "Multitap Delay", + "Count", + "Decay", + "Pre-delay", + "Length", + + "Diffusion", + "Diffusion Stages", + "Delay", + "Mod Amt", + "Feedback", + "Mod Rate", + + "Mode", + "Line Count", + "Diffusion", + "Diffusion Stages", + "Size", + "Mod Amt", + "Delay", + "Mod Amt", + "Decay", + "Mod Rate", + "Feedback", + "Mod Rate", + + "Low Shelf", + "High Shelf", + "Lowpass", + "Low Freq", + "High Freq", + "Cutoff", + "Low Gain", + "High Gain", + "Cross Seed", + + "Tap Seed", + "Diffusion Seed", + "Delay Seed", + "Late Diffusion Seed", + }; + +} diff --git a/src/CloudSeedCore/Parameters.h b/src/CloudSeedCore/Parameters.h new file mode 100644 index 0000000..f505f68 --- /dev/null +++ b/src/CloudSeedCore/Parameters.h @@ -0,0 +1,286 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include +#include +#include +#include "DSP/Utils.h" +#include "limits.h" +#include + +namespace Cloudseed +{ + namespace Parameter + { + const int Interpolation = 0; + const int LowCutEnabled = 1; + const int HighCutEnabled = 2; + const int InputMix = 3; + const int LowCut = 4; + const int HighCut = 5; + const int DryOut = 6; + const int EarlyOut = 7; + const int LateOut = 8; + + const int TapEnabled = 9; + const int TapCount = 10; + const int TapDecay = 11; + const int TapPredelay = 12; + const int TapLength = 13; + + const int EarlyDiffuseEnabled = 14; + const int EarlyDiffuseCount = 15; + const int EarlyDiffuseDelay = 16; + const int EarlyDiffuseModAmount = 17; + const int EarlyDiffuseFeedback = 18; + const int EarlyDiffuseModRate = 19; + + const int LateMode = 20; + const int LateLineCount = 21; + const int LateDiffuseEnabled = 22; + const int LateDiffuseCount = 23; + const int LateLineSize = 24; + const int LateLineModAmount = 25; + const int LateDiffuseDelay = 26; + const int LateDiffuseModAmount = 27; + const int LateLineDecay = 28; + const int LateLineModRate = 29; + const int LateDiffuseFeedback = 30; + const int LateDiffuseModRate = 31; + + const int EqLowShelfEnabled = 32; + const int EqHighShelfEnabled = 33; + const int EqLowpassEnabled = 34; + const int EqLowFreq = 35; + const int EqHighFreq = 36; + const int EqCutoff = 37; + const int EqLowGain = 38; + const int EqHighGain = 39; + const int EqCrossSeed = 40; + + const int SeedTap = 41; + const int SeedDiffusion = 42; + const int SeedDelay = 43; + const int SeedPostDiffusion = 44; + + const int COUNT = 45; + }; + + extern const char* ParameterLabel[Parameter::COUNT]; + + inline double ScaleParam(double val, int index) + { + switch (index) + { + case Parameter::Interpolation: + case Parameter::LowCutEnabled: + case Parameter::HighCutEnabled: + case Parameter::TapEnabled: + case Parameter::LateDiffuseEnabled: + case Parameter::EqLowShelfEnabled: + case Parameter::EqHighShelfEnabled: + case Parameter::EqLowpassEnabled: + case Parameter::EarlyDiffuseEnabled: + return val < 0.5 ? 0.0 : 1.0; + + case Parameter::InputMix: + case Parameter::EarlyDiffuseFeedback: + case Parameter::TapDecay: + case Parameter::LateDiffuseFeedback: + case Parameter::EqCrossSeed: + return val; + + case Parameter::SeedTap: + case Parameter::SeedDiffusion: + case Parameter::SeedDelay: + case Parameter::SeedPostDiffusion: + return (int)floor(val * 999.999); + + case Parameter::LowCut: + return 20 + Utils::Resp4oct(val) * 980; + case Parameter::HighCut: + return 400 + Utils::Resp4oct(val) * 19600; + + case Parameter::DryOut: + case Parameter::EarlyOut: + case Parameter::LateOut: + return -30 + val * 30; + + case Parameter::TapCount: + return (int)(1 + val * 255); + case Parameter::TapPredelay: + return Utils::Resp1dec(val) * 500; + case Parameter::TapLength: + return 10 + val * 990; + + case Parameter::EarlyDiffuseCount: + return (int)(1 + val * 11.999); + case Parameter::EarlyDiffuseDelay: + return 10 + val * 90; + case Parameter::EarlyDiffuseModAmount: + return val * 2.5; + case Parameter::EarlyDiffuseModRate: + return Utils::Resp2dec(val) * 5; + + case Parameter::LateMode: + return val < 0.5 ? 0.0 : 1.0; + case Parameter::LateLineCount: + return (int)(1 + val * 11.999); + case Parameter::LateDiffuseCount: + return (int)(1 + val * 7.999); + case Parameter::LateLineSize: + return 20 + Utils::Resp2dec(val) * 980; + case Parameter::LateLineModAmount: + return val * 2.5; + case Parameter::LateDiffuseDelay: + return 10 + val * 90; + case Parameter::LateDiffuseModAmount: + return val * 2.5; + case Parameter::LateLineDecay: + return 0.05 + Utils::Resp3dec(val) * 59.95; + case Parameter::LateLineModRate: + return Utils::Resp2dec(val) * 5; + case Parameter::LateDiffuseModRate: + return Utils::Resp2dec(val) * 5; + + case Parameter::EqLowFreq: + return 20 + Utils::Resp3oct(val) * 980; + case Parameter::EqHighFreq: + return 400 + Utils::Resp4oct(val) * 19600; + case Parameter::EqCutoff: + return 400 + Utils::Resp4oct(val) * 19600; + case Parameter::EqLowGain: + return -20 + val * 20; + case Parameter::EqHighGain: + return -20 + val * 20; + } + return 0; + } + + inline void FormatParameter(float val, int maxLen, int paramId, char* buffer) + { + double s = ScaleParam(val, paramId); + + switch (paramId) + { + case Parameter::Interpolation: + case Parameter::HighCutEnabled: + case Parameter::LowCutEnabled: + case Parameter::TapEnabled: + case Parameter::LateDiffuseEnabled: + case Parameter::EqLowShelfEnabled: + case Parameter::EqHighShelfEnabled: + case Parameter::EqLowpassEnabled: + case Parameter::EarlyDiffuseEnabled: + if (ScaleParam(val, paramId) == 1) + strcpy(buffer, "ENABLED"); + else + strcpy(buffer, "DISABLED"); + break; + + case Parameter::InputMix: + case Parameter::EarlyDiffuseFeedback: + case Parameter::TapDecay: + case Parameter::LateDiffuseFeedback: + case Parameter::EqCrossSeed: + snprintf(buffer, MAX_STR_SIZE, "%d%%", (int)(s * 100)); + break; + + case Parameter::SeedTap: + case Parameter::SeedDiffusion: + case Parameter::SeedDelay: + case Parameter::SeedPostDiffusion: + snprintf(buffer, MAX_STR_SIZE, "%03d", (int)s); + break; + + case Parameter::LowCut: + case Parameter::HighCut: + case Parameter::EqLowFreq: + case Parameter::EqHighFreq: + case Parameter::EqCutoff: + snprintf(buffer, MAX_STR_SIZE, "%d Hz", (int)s); + break; + + case Parameter::DryOut: + case Parameter::EarlyOut: + case Parameter::LateOut: + if (s <= -30) + strcpy(buffer, "MUTED"); + else + snprintf(buffer, MAX_STR_SIZE, "%.1f dB", s); + break; + + case Parameter::TapCount: + case Parameter::EarlyDiffuseCount: + case Parameter::LateLineCount: + case Parameter::LateDiffuseCount: + snprintf(buffer, MAX_STR_SIZE, "%d", (int)s); + break; + + case Parameter::TapPredelay: + case Parameter::TapLength: + case Parameter::EarlyDiffuseDelay: + case Parameter::LateLineSize: + case Parameter::LateDiffuseDelay: + snprintf(buffer, MAX_STR_SIZE, "%d ms", (int)s); + break; + + case Parameter::LateLineDecay: + if (s < 1) + snprintf(buffer, MAX_STR_SIZE, "%d ms", (int)(s * 1000)); + else if (s < 10) + snprintf(buffer, MAX_STR_SIZE, "%.2f sec", s); + else + snprintf(buffer, MAX_STR_SIZE, "%.1f sec", s); + break; + + case Parameter::LateMode: + if (s == 1) + strcpy(buffer, "POST"); + else + strcpy(buffer, "PRE"); + break; + + case Parameter::EarlyDiffuseModAmount: + case Parameter::LateLineModAmount: + case Parameter::LateDiffuseModAmount: + snprintf(buffer, MAX_STR_SIZE, "%d%%", (int)(s * 100)); + break; + + case Parameter::EarlyDiffuseModRate: + case Parameter::LateLineModRate: + case Parameter::LateDiffuseModRate: + snprintf(buffer, MAX_STR_SIZE, "%.2f Hz", s); + break; + + case Parameter::EqLowGain: + case Parameter::EqHighGain: + snprintf(buffer, MAX_STR_SIZE, "%.1f dB", s); + break; + + default: + snprintf(buffer, MAX_STR_SIZE, "%.2f", s); + } + } +} diff --git a/src/CloudSeedCore/Programs.h b/src/CloudSeedCore/Programs.h new file mode 100644 index 0000000..3796017 --- /dev/null +++ b/src/CloudSeedCore/Programs.h @@ -0,0 +1,79 @@ +/* +Copyright (c) 2024 Ghost Note Engineering Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +#pragma once + +#include "Parameters.h" + +namespace Cloudseed +{ + float ProgramDarkPlate[Parameter::COUNT]; + + void initPrograms() + { + ProgramDarkPlate[Parameter::DryOut] = 0.8705999851226807; + ProgramDarkPlate[Parameter::EarlyDiffuseCount] = 0.2960000038146973; + ProgramDarkPlate[Parameter::EarlyDiffuseDelay] = 0.3066999912261963; + ProgramDarkPlate[Parameter::EarlyDiffuseEnabled] = 0.0; + ProgramDarkPlate[Parameter::EarlyDiffuseFeedback] = 0.7706999778747559; + ProgramDarkPlate[Parameter::EarlyDiffuseModAmount] = 0.143899992108345; + ProgramDarkPlate[Parameter::EarlyDiffuseModRate] = 0.2466999888420105; + ProgramDarkPlate[Parameter::EarlyOut] = 0.0; + ProgramDarkPlate[Parameter::EqCrossSeed] = 0.0; + ProgramDarkPlate[Parameter::EqCutoff] = 0.9759999513626099; + ProgramDarkPlate[Parameter::EqHighFreq] = 0.5133999586105347; + ProgramDarkPlate[Parameter::EqHighGain] = 0.7680000066757202; + ProgramDarkPlate[Parameter::EqHighShelfEnabled] = 1.0; + ProgramDarkPlate[Parameter::EqLowFreq] = 0.3879999816417694; + ProgramDarkPlate[Parameter::EqLowGain] = 0.5559999942779541; + ProgramDarkPlate[Parameter::EqLowShelfEnabled] = 0.0; + ProgramDarkPlate[Parameter::EqLowpassEnabled] = 0.0; + ProgramDarkPlate[Parameter::HighCut] = 0.2933000028133392; + ProgramDarkPlate[Parameter::HighCutEnabled] = 0.0; + ProgramDarkPlate[Parameter::InputMix] = 0.2346999943256378; + ProgramDarkPlate[Parameter::Interpolation] = 1.0; + ProgramDarkPlate[Parameter::LateDiffuseCount] = 0.4879999756813049; + ProgramDarkPlate[Parameter::LateDiffuseDelay] = 0.239999994635582; + ProgramDarkPlate[Parameter::LateDiffuseEnabled] = 1.0; + ProgramDarkPlate[Parameter::LateDiffuseFeedback] = 0.8506999611854553; + ProgramDarkPlate[Parameter::LateDiffuseModAmount] = 0.1467999964952469; + ProgramDarkPlate[Parameter::LateDiffuseModRate] = 0.1666999906301498; + ProgramDarkPlate[Parameter::LateLineCount] = 1.0; + ProgramDarkPlate[Parameter::LateLineDecay] = 0.6345999836921692; + ProgramDarkPlate[Parameter::LateLineModAmount] = 0.2719999849796295; + ProgramDarkPlate[Parameter::LateLineModRate] = 0.2292999923229218; + ProgramDarkPlate[Parameter::LateLineSize] = 0.4693999886512756; + ProgramDarkPlate[Parameter::LateMode] = 1.0; + ProgramDarkPlate[Parameter::LateOut] = 0.6613999605178833; + ProgramDarkPlate[Parameter::LowCut] = 0.6399999856948853; + ProgramDarkPlate[Parameter::LowCutEnabled] = 1.0; + ProgramDarkPlate[Parameter::SeedDelay] = 0.2180999964475632; + ProgramDarkPlate[Parameter::SeedDiffusion] = 0.1850000023841858; + ProgramDarkPlate[Parameter::SeedPostDiffusion] = 0.3652999997138977; + ProgramDarkPlate[Parameter::SeedTap] = 0.3339999914169312; + ProgramDarkPlate[Parameter::TapDecay] = 1.0; + ProgramDarkPlate[Parameter::TapLength] = 0.9866999983787537; + ProgramDarkPlate[Parameter::TapPredelay] = 0.0; + ProgramDarkPlate[Parameter::TapCount] = 0.1959999948740005; + ProgramDarkPlate[Parameter::TapEnabled] = 0.0; + } +} diff --git a/src/CloudSeedCore/Readme.md b/src/CloudSeedCore/Readme.md new file mode 100644 index 0000000..c6b9b0f --- /dev/null +++ b/src/CloudSeedCore/Readme.md @@ -0,0 +1,40 @@ +# Cloud Seed Core + +This is the core DSP code of Cloud Seed 2.0 + +**You can download and purchase the plugin here:** + +**https://ghostnoteaudio.uk/products/cloudseed** + +The plugin itself is not open source, but the core reverb algorithm is. + +This repository contains all the necessary code to integrate the Cloud Seed algorithm into your application. + +# License + +This code it MIT Licensed. In short: + +* You can use this plugin for both free and commercial purposes. +* Please credit Ghost Note Audio as the original author of this code. +* You *can* use the name "Cloud Seed" in your marketing material, but please do so respectfully, and in a way that would not confuse potential customers. It should be clear that your product is NOT created by Ghost Note Audio, even if it does use our algorithm. + * I do reserve the right to ask you to please stop using the Cloud Seed name, should you not adhere to this. +* If you can, please drop us a line at support@ghostnoteaudio.uk - we love seeing what people are using our algorithms for, and we're usually happy to offer suggestions and advice! + +# Build Instructions + +This is a bare-bones console C++ program. It requires C++14 to compile. + +The demo program creates an impulse and feeds it through the reverb. It's only meant to show how the API works, and how to call the necessary functions and pass in the right argument to get it working. + +The output is written to a raw binary file, which you can open using Audacity: + +* File -> Import -> Raw Data +* Encoding: 32-bit float +* Byte order: default endianness +* Channels: 1 Channel (mono) +* Sample Rate: 48000 Hz + +## Preprocessor Definitions + + BUFFER_SIZE=1024 (or whatever you want the maximum supported buffer size to be) + MAX_STR_SIZE=32 (maximum length of strings being formatted and returned) diff --git a/src/cloudPedal.cpp b/src/cloudPedal.cpp new file mode 100644 index 0000000..fc47b2e --- /dev/null +++ b/src/cloudPedal.cpp @@ -0,0 +1,314 @@ +#include + +#include "CloudSeedCore/DSP/ReverbController.h" +#include "CloudSeedCore/Parameters.h" +#include + +using namespace Cloudseed; + +enum parameters{ + SIZE, + BRIGHT, + DECAY, + DIFFUSION, + MIX +}; + +class cloudPedal +{ +private: + + // PORTS + float* audio_in_l_ptr; + float* audio_in_r_ptr; + float* audio_out_l_ptr; + float* audio_out_r_ptr; + float* size_ptr; + float* bright_ptr; + float* decay_ptr; + float* diffusion_ptr; + float* mix_ptr; + + float params[5]; + + //REVERBSHIT + Cloudseed::ReverbController reverb; + float reverbProgram[Parameter::COUNT]; + + double samplerate; + + void start(); + void setParams(); + +public: + explicit cloudPedal(double samplerate); + ~cloudPedal(); + + void connectPort(const uint32_t port, void* data_location); + void activate(); + void run(const uint32_t sample_count); + void deactivate(); +}; + +void cloudPedal::setParams(){ + params[SIZE] = *size_ptr; + params[BRIGHT] = *bright_ptr; + params[DECAY] = *decay_ptr; + params[DIFFUSION] = *diffusion_ptr; + params[MIX] = *mix_ptr; + + + //constants + reverbProgram[Parameter::EarlyDiffuseEnabled] = 1.0; + reverbProgram[Parameter::LateDiffuseEnabled] = 1.0; + reverbProgram[Parameter::LateMode] = 1.0; + reverbProgram[Parameter::LateLineCount] = 1.0; + reverbProgram[Parameter::Interpolation] = 1.0; + reverbProgram[Parameter::TapEnabled] = 1.0; + + reverbProgram[Parameter::LowCutEnabled] = 1.0; + + reverbProgram[Parameter::HighCutEnabled] = 1; + reverbProgram[Parameter::HighCut] = 0.3; + + reverbProgram[Parameter::EqLowShelfEnabled] = 0.0; + reverbProgram[Parameter::EqLowFreq] = 0.4; + reverbProgram[Parameter::EqLowGain] = 0.5; + reverbProgram[Parameter::EqCrossSeed] = 1.0; + + reverbProgram[Parameter::SeedTap] = 0.33; + reverbProgram[Parameter::TapDecay] = 1.0; + reverbProgram[Parameter::TapLength] = 0.98; + reverbProgram[Parameter::TapPredelay] = 0.0; + + // SIZE------------------------------------------- + + float reverbSize = params[SIZE]/2; + float earlyScale = 0.5+(2-params[SIZE])/4; + float lateScale = 0.5+params[SIZE]/4; + + //early + + reverbProgram[Parameter::EarlyDiffuseDelay] = 0.1*(1-reverbSize); + reverbProgram[Parameter::EarlyDiffuseModAmount] = reverbSize/2; + reverbProgram[Parameter::EarlyDiffuseModRate] = 1*(1-reverbSize); + + //late + + reverbProgram[Parameter::LateDiffuseDelay] = 0.1*(1-reverbSize); + reverbProgram[Parameter::LateDiffuseModAmount] = reverbSize/2; + reverbProgram[Parameter::LateDiffuseModRate] = (1-reverbSize); + + reverbProgram[Parameter::LateLineModAmount] = reverbSize/2; + reverbProgram[Parameter::LateLineModRate] = (1-reverbSize); + reverbProgram[Parameter::LateLineSize] = reverbSize; + + //seed? + reverbProgram[Parameter::SeedDelay] = 0.5*(1-reverbSize); + + + //BRIGHT-------------------------------------- + + float low = params[BRIGHT]-1 < 0 ? 0 : params[BRIGHT]-1; + float high = params[BRIGHT] - 1 < 0 ? 1-params[BRIGHT] : 0; + + reverbProgram[Parameter::EqHighShelfEnabled] = high==0 ? 0 : 1; + reverbProgram[Parameter::EqHighFreq] = high/2; + reverbProgram[Parameter::EqHighGain] = 3*high/8; + reverbProgram[Parameter::LowCut] = 0.3+high/4; + + reverbProgram[Parameter::EqLowpassEnabled] = low==0 ? 1: 0; + reverbProgram[Parameter::EqCutoff] = low==0 ? 1 : 1-low; + + //DIFFUSION--------------------------------- + + reverbProgram[Parameter::EarlyDiffuseCount] = params[DIFFUSION]/2; + reverbProgram[Parameter::LateDiffuseCount] = params[DIFFUSION]/2; + reverbProgram[Parameter::SeedDiffusion] = params[DIFFUSION]/4; + reverbProgram[Parameter::SeedPostDiffusion] = params[DIFFUSION]/3; + reverbProgram[Parameter::TapCount] = params[DIFFUSION]/5; + + + //DECAY---------------------------------------- + + reverbProgram[Parameter::EarlyDiffuseFeedback] = params[DECAY]/2; + reverbProgram[Parameter::LateDiffuseFeedback] = params[DECAY]/2; + reverbProgram[Parameter::LateLineDecay] = 3*params[DECAY]/8; + + //MIX-------------------------------------------- + + float mix = 1-params[MIX]/2; + reverbProgram[Parameter::DryOut] = sqrt(mix); + reverbProgram[Parameter::EarlyOut] = sqrt(1-mix)*earlyScale/2; + reverbProgram[Parameter::LateOut] = sqrt(1-mix)*lateScale/2; + + // ------------------------------------------------- + + for (int i = 0; i < Parameter::COUNT; i++) + { + reverb.SetParameter(i, reverbProgram[i]); + } + +} + +void cloudPedal::start() +{ + + int sr = (int) samplerate; + reverb.SetSamplerate(sr); + setParams(); + reverb.ClearBuffers(); +} + + +cloudPedal::cloudPedal(double samplerate_): +audio_in_l_ptr(nullptr), +audio_in_r_ptr(nullptr), +audio_out_l_ptr(nullptr), +audio_out_r_ptr(nullptr), +size_ptr(nullptr), +bright_ptr(nullptr), +diffusion_ptr(nullptr), +decay_ptr(nullptr), +mix_ptr(nullptr), +reverb(Cloudseed::ReverbController((int)samplerate_)), +samplerate(samplerate_) +{ +} + +cloudPedal::~cloudPedal() +{ + +} + +void cloudPedal::connectPort(const uint32_t port, void* data_location) +{ + switch(port) + { + case 0: + audio_in_l_ptr = (float*) data_location; + break; + + case 1: + audio_in_r_ptr = (float*) data_location; + break; + + case 2: + audio_out_l_ptr = (float*) data_location; + break; + + case 3: + audio_out_r_ptr = (float*) data_location; + break; + + case 4: + size_ptr = (float*) data_location; + break; + + case 5: + bright_ptr = (float*) data_location; + break; + + case 6: + decay_ptr = (float*) data_location; + break; + + case 7: + diffusion_ptr = (float*) data_location; + break; + + case 8: + mix_ptr = (float*) data_location; + break; + + default: + break; + } +} + +void cloudPedal::activate() +{ + start(); +} + +void cloudPedal::deactivate() +{ +} + +void cloudPedal::run(const uint32_t sample_count) +{ + if( + (params[0]!=*size_ptr)|| + (params[1]!=*bright_ptr) || + (params[2]!=*decay_ptr)|| + (params[3]!=*diffusion_ptr)|| + (params[4]!=*mix_ptr) + ){ + setParams(); + } + + reverb.Process(audio_in_l_ptr, audio_in_r_ptr, audio_out_l_ptr, audio_out_r_ptr, sample_count); + +} + +/* internal core methods */ +static LV2_Handle instantiate (const struct LV2_Descriptor *descriptor, double sample_rate, const char *bundle_path, const LV2_Feature *const *features) +{ + cloudPedal* m = new cloudPedal(sample_rate); + return m; +} + +static void connect_port (LV2_Handle instance, uint32_t port, void *data_location) +{ + cloudPedal* m = (cloudPedal*) instance; + if (m) m->connectPort(port, data_location); +} + +static void activate (LV2_Handle instance) +{ + cloudPedal* m = (cloudPedal*) instance; + if (m) m->activate(); +} + +static void run (LV2_Handle instance, uint32_t sample_count) +{ + cloudPedal* m = (cloudPedal*) instance; + if (m) m->run(sample_count); +} + +static void deactivate (LV2_Handle instance) +{ + cloudPedal* m = (cloudPedal*) instance; + if (m) m->deactivate(); +} + +static void cleanup (LV2_Handle instance) +{ + cloudPedal* m = (cloudPedal*) instance; + if (m) delete m; +} + +static const void* extension_data (const char *uri) +{ + return NULL; +} + +/* descriptor */ +static LV2_Descriptor const descriptor = +{ + "https://git.esca111.xyz/ESCA111/cloudPedal", + instantiate, + connect_port, + activate /* or NULL */, + run, + deactivate /* or NULL */, + cleanup, + extension_data /* or NULL */ +}; + +/* interface */ +LV2_SYMBOL_EXPORT const LV2_Descriptor* lv2_descriptor (uint32_t index) +{ + if (index == 0) return &descriptor; + else return NULL; +}