Proteus

Guitar amp and pedal capture plugin using neural networks
Log | Files | Refs | Submodules | README

commit 435f088f15bbc10a4ae610d8170d89b9d80b51b7
Author: Keith <[email protected]>
Date:   Thu,  6 Oct 2022 15:57:46 -0500

first commit

Diffstat:
ACMakeLists.txt | 58++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ALICENSE.txt | 674+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
AREADME.md | 65+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aaax_builds.sh | 115+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainstallers/linux/build_deb.sh | 39+++++++++++++++++++++++++++++++++++++++
Ainstallers/mac/Intro.txt | 1+
Ainstallers/mac/Proteus.pkgproj | 2065+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainstallers/mac/build_mac_installer.sh | 38++++++++++++++++++++++++++++++++++++++
Ainstallers/windows/Proteus_Install_Script.iss | 133+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainstallers/windows/build_win_installer.sh | 20++++++++++++++++++++
Amac_builds.sh | 65+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Amodules/CMakeLists.txt | 67+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Amodules/cmake/SubprojectVersion.cmake | 20++++++++++++++++++++
Amodules/cmake/WarningFlags.cmake | 49+++++++++++++++++++++++++++++++++++++++++++++++++
Aresources/CMakeLists.txt | 13+++++++++++++
Aresources/SmartPedal.ico | 0
Aresources/app_pic.png | 0
Aresources/background_off.jpg | 0
Aresources/background_on.jpg | 0
Aresources/background_on_blue.jpg | 0
Aresources/footswitch_down.png | 0
Aresources/footswitch_up.png | 0
Aresources/guitarml.ico | 0
Aresources/logo.png | 0
Asrc/CMakeLists.txt | 14++++++++++++++
Asrc/PluginEditor.cpp | 265+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/PluginEditor.h | 82+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/PluginProcessor.cpp | 304+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/PluginProcessor.h | 99+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/RTNeuralLSTM.cpp | 108+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/RTNeuralLSTM.h | 38++++++++++++++++++++++++++++++++++++++
Asrc/myLookAndFeel.cpp | 53+++++++++++++++++++++++++++++++++++++++++++++++++++++
Asrc/myLookAndFeel.h | 29+++++++++++++++++++++++++++++
Avalidate.sh | 51+++++++++++++++++++++++++++++++++++++++++++++++++++
Awin_builds.sh | 48++++++++++++++++++++++++++++++++++++++++++++++++
35 files changed, 4513 insertions(+), 0 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -0,0 +1,58 @@ +cmake_minimum_required(VERSION 3.15) +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment target") +project(Proteus VERSION 1.0.0) + +set(CMAKE_CXX_STANDARD 17) + +add_subdirectory(modules) +include_directories(modules) + +#juce_set_aax_sdk_path(C:/SDKs/AAX_SDK/) + +set(JUCE_FORMATS AU VST3) + +# Build LV2 only on Linux +if(UNIX AND NOT APPLE) + message(STATUS "Building LV2 plugin format") + list(APPEND JUCE_FORMATS LV2) +endif() + +# Build AAX if SDK target exists +if(TARGET juce_aax_sdk) + message(STATUS "Building AAX plugin format") + list(APPEND JUCE_FORMATS AAX) +endif() + +juce_add_plugin(Proteus + COMPANY_NAME GuitarML + PLUGIN_MANUFACTURER_CODE GtML + PLUGIN_CODE Prt3 + FORMATS ${JUCE_FORMATS} + ProductName "Proteus" + LV2_URI https://github.com/GuitarML/Proteus + ICON_BIG resources/logo.png + MICROPHONE_PERMISSION_ENABLED TRUE +) + +# create JUCE header +juce_generate_juce_header(Proteus) + +# add sources +add_subdirectory(src) +include_directories(src) +add_subdirectory(resources) + +target_compile_definitions(Proteus + PUBLIC + JUCE_DISPLAY_SPLASH_SCREEN=0 + JUCE_REPORT_APP_USAGE=0 + JUCE_WEB_BROWSER=0 + JUCE_USE_CURL=0 + JUCE_VST3_CAN_REPLACE_VST2=0 + JUCE_MODAL_LOOPS_PERMITTED=1 +) + +target_link_libraries(Proteus PUBLIC + juce_plugin_modules +) + diff --git a/LICENSE.txt b/LICENSE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> + 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. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + 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 <https://www.gnu.org/licenses/>. + +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: + + <program> Copyright (C) <year> <name of author> + 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 +<https://www.gnu.org/licenses/>. + + 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 +<https://www.gnu.org/licenses/why-not-lgpl.html>. diff --git a/README.md b/README.md @@ -0,0 +1,65 @@ +# Proteus + +[![Downloads](https://img.shields.io/github/downloads/GuitarML/SmartGuitarPedal/total)](https://somsubhra.github.io/github-release-stats/?username=GuitarML&repository=SmartGuitarPedal&page=1&per_page=30) [![CI](https://github.com/GuitarML/SmartGuitarPedal/actions/workflows/cmake.yml/badge.svg)](https://github.com/GuitarML/SmartGuitarPedal/actions/workflows/cmake.yml) + +Guitar plugin made with JUCE that uses neural network models to emulate real world hardware. + +- Checkout the tutorial on [YouTube](https://youtu.be/HrNf6DNRUdU) for creating your own models for the SmartPedal. +- Visit the GuitarML [ToneLibrary Website](https://guitarml.com/tonelibrary/tonelib-sa.html) to download SmartPedal compatible models. + +![app](https://github.com/GuitarML/SmartGuitarPedal/blob/master/resources/app_pic.png) + +This plugin uses a WaveNet model to recreate the sound of real world hardware, such as +a TS9 Tubescreamer or Blues Jr amp. Drive and Level adjust the signal gain before and after the +WaveNet model processing. As of version 1.5, the SmartPedal can run models conditioned on a single parameter, +such as a gain control. When conditioned models are loaded, the LED graphic will change colors +from red to blue, and the Drive knob will control the conditioned parameter. + +The WaveNet model is effective at emulating distortion style effects or tube amplifiers, but cannot capture +time based effects such as reverb or delay. You can capture the sound of an amplifier either by recording with +a microphone, or direct out from a load box. When running "Direct Out" models, you will need to use an +Impulse Response plugin to accurately model the amp speaker/cabinet. + +You can create your own models and load them in SmartGuitarPedal using the [PedalNetRT](https://github.com/GuitarML/PedalNetRT) repository directly, or +by using the Capture Utility files (available for download at [GuitarML.com](https://guitarml.com/)) with Google Colab and following the [Video Tutorial](https://youtu.be/HrNf6DNRUdU). + +Model training is done using PyTorch on pre recorded .wav samples. More info in the above repository. +To share your best models, email the json files to [email protected] and they may be included +in the latest [ToneLibrary](https://guitarml.com/tonelibrary/tonelib-sa.html) release. + +Also see companion plugin, the [SmartGuitarAmp](https://github.com/GuitarML/SmartGuitarAmp) + +## Installing the plugin + +1. Download the appropriate plugin installer (Windows, Mac, Linux) from the [Releases](https://github.com/GuitarML/SmartGuitarPedal/releases) page. +2. Run the installer and follow the instructions. May need to reboot to allow your DAW to recognize the new plugin. + +## Build Instructions + +### Build with Cmake + +```bash +# Clone the repository +$ git clone https://github.com/GuitarML/SmartGuitarPedal.git +$ cd SmartGuitarPedal + +# initialize and set up submodules +$ git submodule update --init --recursive + +# build with CMake +$ cmake -Bbuild +$ cmake --build build --config Release +``` +The binaries will be located in `SmartPedal/build/SmartPedal_artefacts/` + +### Loading hardware models +Use the Load Model button to select a folder containing SmartPedal json models. Note that models for NeuralPi and SmartAmpPro use +a different model architecture and will not be compatible. Only WaveNet models trained using PedalNetRT are compatible with SmartPedal and SmartAmp. + +## License +This project is licensed under the Apache License, Version 2.0 - see the [LICENSE](LICENSE) file for details. + +This project builds off the work done in the [WaveNetVA](https://github.com/damskaggep/WaveNetVA) repository. + +### Special Thanks +Special thanks to Stefan Schmidt for the graphics in SmartPedal version 1.5. These were created from a Blender model and rendered using the Cycles render engine. diff --git a/aax_builds.sh b/aax_builds.sh @@ -0,0 +1,115 @@ +#!/bin/bash + +# exit on failure +set -e + +# need to run in sudo mode on Mac +if [[ "$OSTYPE" == "darwin"* ]]; then + if [ "$EUID" -ne 0 ]; then + echo "This script must be run in sudo mode! Exiting..." + exit 1 + fi +fi + +if [[ "$*" = *debug* ]]; then + echo "Making DEBUG build" + build_config="Debug" +else + echo "Making RELEASE build" + build_config="Release" +fi + +# clean up old builds +if [[ $* = *clean* ]]; then + echo "Cleaning previous build..." + rm -rf build-aax/ +fi + +sed_cmakelist() +{ + sed_args="$1" + + if [[ "$OSTYPE" == "darwin"* ]]; then + sed -i '' "$sed_args" CMakeLists.txt + else + sed -i -e "$sed_args" CMakeLists.txt + fi +} + +# set up OS-dependent variables +if [[ "$OSTYPE" == "darwin"* ]]; then + echo "Building for MAC" + AAX_PATH=~/Developer/AAX_SDK/ + ilok_pass=$(more ~/Developer/ilok_pass) + aax_target_dir="/Library/Application Support/Avid/Audio/Plug-Ins" + TEAM_ID=$(more ~/Developer/mac_id) + TARGET_DIR="Mac" + +else # Windows + echo "Building for WINDOWS" + AAX_PATH=C:/SDKs/AAX_SDK/ + ilok_pass=$(cat /c/SDKs/ilok_pass) + aax_target_dir="/c/Program Files/Common Files/Avid/Audio/Plug-Ins" + TARGET_DIR="Win64" +fi + +# set up build AAX +#sed_cmakelist "s~# juce_set_aax_sdk_path.*~juce_set_aax_sdk_path(${AAX_PATH})~" + +# cmake new builds +if [[ "$OSTYPE" == "darwin"* ]]; then + cmake -Bbuild-aax -GXcode -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY="Developer ID Application" \ + -DCMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM="$TEAM_ID" \ + -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_STYLE="Manual" \ + -D"CMAKE_OSX_ARCHITECTURES=x86_64" \ + -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_INJECT_BASE_ENTITLEMENTS=NO \ + -DCMAKE_XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS="--timestamp" \ + -DMACOS_RELEASE=ON + + cmake --build build-aax --config $build_config --target Proteus_AAX | xcpretty + +else # Windows + cmake -Bbuild-aax -G"Visual Studio 16 2019" -A x64 + cmake --build build-aax --config $build_config --parallel $(nproc) --target Proteus_AAX +fi + +# sign with PACE +aax_location=build-aax/Proteus_artefacts/$build_config/AAX/Proteus.aaxplugin +wcguid="" # Update +if [[ "$OSTYPE" == "darwin"* ]]; then + /Applications/PACEAntiPiracy/Eden/Fusion/Current/bin/wraptool sign --verbose \ + --account keyth72 \ + --password "$ilok_pass" \ + --wcguid $wcguid \ + --dsig1-compat off \ + --signid "Developer ID Application: Keith Bloemer" \ + --in $aax_location \ + --out $aax_location + + /Applications/PACEAntiPiracy/Eden/Fusion/Current/bin/wraptool verify --verbose --in $aax_location + +else # Windows + wraptool sign --verbose \ + --account keyth72 \ + --password "$ilok_pass" \ + --wcguid $wcguid \ + --keyfile /c/SDKs/keith_aax_cert.p12 \ + --keypassword "$ilok_pass" \ + --in $aax_location \ + --out $aax_location + + wraptool verify --verbose --in $aax_location/Contents/x64/Proteus.aaxplugin +fi + +# reset AAX SDK field... +#sed_cmakelist "s~juce_set_aax_sdk_path.*~# juce_set_aax_sdk_path(NONE)~" + +rm -rf "$aax_target_dir/Proteus.aaxplugin" +cp -R "$aax_location" "$aax_target_dir/Proteus.aaxplugin" + +if [[ "$*" = *deploy* ]]; then + set +e + + ssh "[email protected]" "rm -r ~/aax_builds/${TARGET_DIR}/Proteus.aaxplugin" + scp -r "$aax_location" "[email protected]:~/aax_builds/${TARGET_DIR}/" +fi diff --git a/installers/linux/build_deb.sh b/installers/linux/build_deb.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# This script builds a .deb package for installing the VST3, and LV2 plugins on Linux + +# Set the app name and version here +app_name=Proteus +version=1.0 + + +# 1. Create the package directory structure and control file + +mkdir -p $app_name"/DEBIAN" + +printf "Package: $app_name\n\ +Version: $version\n\ +Section: custom\n\ +Priority: optional\n\ +Architecture: all\n\ +Essential: no\n\ +Installed-Size: 16480128\n\ +Maintainer: GuitarML\n\ +Description: GuitarML Plugin Debian Package (VST3, LV2)\n" > $app_name"/DEBIAN/control" + + +# 2. Copy Standalone, VST3, and LV2 plugins to the package directory (assumes project is already built) + +mkdir -p $app_name/usr/local/lib/vst3/ +echo "Copying ../../build/"$app_name"_artefacts/Release/VST3/"$app_name".vst3" +cp -r "../../build/"$app_name"_artefacts/Release/VST3/"$app_name".vst3" $app_name"/usr/local/lib/vst3/" + +mkdir -p $app_name/usr/local/lib/lv2/ +echo "Copying ../../build/"$app_name"_artefacts/Release/LV2/"$app_name".lv2" +cp -r "../../build/"$app_name"_artefacts/Release/LV2/"$app_name".lv2" $app_name"/usr/local/lib/lv2/" + + +# 3. Build the .deb package and rename + +dpkg-deb --build $app_name + +mv $app_name.deb $app_name-Linux-x64-$version.deb diff --git a/installers/mac/Intro.txt b/installers/mac/Intro.txt @@ -0,0 +1 @@ +This application will install the Proteus audio plugin version ##APPVERSION## to your computer. diff --git a/installers/mac/Proteus.pkgproj b/installers/mac/Proteus.pkgproj @@ -0,0 +1,2065 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>PACKAGES</key> + <array> + <dict> + <key>MUST-CLOSE-APPLICATION-ITEMS</key> + <array/> + <key>MUST-CLOSE-APPLICATIONS</key> + <false/> + <key>PACKAGE_FILES</key> + <dict> + <key>DEFAULT_INSTALL_LOCATION</key> + <string>/</string> + <key>HIERARCHY</key> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Applications</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Application Support</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>BUNDLE_CAN_DOWNGRADE</key> + <false/> + <key>BUNDLE_POSTINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>BUNDLE_PREINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>../../bin/Mac/Proteus.component</string> + <key>PATH_TYPE</key> + <integer>1</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>3</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Components</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Audio</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Automator</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Documentation</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Extensions</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Filesystems</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Frameworks</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Input Methods</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Internet Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchAgents</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchDaemons</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PreferencePanes</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Preferences</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Printers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PrivilegedHelperTools</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1005</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickLook</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickTime</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Screen Savers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Scripts</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Services</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Widgets</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Library</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Shared</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1023</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Users</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>/</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <key>PAYLOAD_TYPE</key> + <integer>0</integer> + <key>PRESERVE_EXTENDED_ATTRIBUTES</key> + <false/> + <key>SHOW_INVISIBLE</key> + <false/> + <key>SPLIT_FORKS</key> + <true/> + <key>TREAT_MISSING_FILES_AS_WARNING</key> + <false/> + <key>VERSION</key> + <integer>5</integer> + </dict> + <key>PACKAGE_SCRIPTS</key> + <dict> + <key>POSTINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>PREINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>RESOURCES</key> + <array/> + </dict> + <key>PACKAGE_SETTINGS</key> + <dict> + <key>AUTHENTICATION</key> + <integer>1</integer> + <key>CONCLUSION_ACTION</key> + <integer>0</integer> + <key>FOLLOW_SYMBOLIC_LINKS</key> + <false/> + <key>IDENTIFIER</key> + <string>com.GuitarML.Proteus.ProteusAU</string> + <key>LOCATION</key> + <integer>0</integer> + <key>NAME</key> + <string>AU</string> + <key>OVERWRITE_PERMISSIONS</key> + <false/> + <key>PAYLOAD_SIZE</key> + <integer>-1</integer> + <key>REFERENCE_PATH</key> + <string></string> + <key>RELOCATABLE</key> + <false/> + <key>USE_HFS+_COMPRESSION</key> + <false/> + <key>VERSION</key> + <string>##APPVERSION##</string> + </dict> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>69EED16E-B119-4D35-B464-12717823DE0E</string> + </dict> + <dict> + <key>MUST-CLOSE-APPLICATION-ITEMS</key> + <array/> + <key>MUST-CLOSE-APPLICATIONS</key> + <false/> + <key>PACKAGE_FILES</key> + <dict> + <key>DEFAULT_INSTALL_LOCATION</key> + <string>/</string> + <key>HIERARCHY</key> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Applications</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Application Support</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>BUNDLE_CAN_DOWNGRADE</key> + <false/> + <key>BUNDLE_POSTINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>BUNDLE_PREINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>../../bin/Mac/Proteus.vst3</string> + <key>PATH_TYPE</key> + <integer>1</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>3</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>VST3</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Audio</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Automator</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Documentation</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Extensions</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Filesystems</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Frameworks</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Input Methods</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Internet Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchAgents</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchDaemons</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PreferencePanes</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Preferences</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Printers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PrivilegedHelperTools</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1005</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickLook</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickTime</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Screen Savers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Scripts</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Services</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Widgets</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Library</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Shared</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1023</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Users</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>/</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <key>PAYLOAD_TYPE</key> + <integer>0</integer> + <key>PRESERVE_EXTENDED_ATTRIBUTES</key> + <false/> + <key>SHOW_INVISIBLE</key> + <false/> + <key>SPLIT_FORKS</key> + <true/> + <key>TREAT_MISSING_FILES_AS_WARNING</key> + <false/> + <key>VERSION</key> + <integer>5</integer> + </dict> + <key>PACKAGE_SETTINGS</key> + <dict> + <key>AUTHENTICATION</key> + <integer>1</integer> + <key>CONCLUSION_ACTION</key> + <integer>0</integer> + <key>FOLLOW_SYMBOLIC_LINKS</key> + <false/> + <key>IDENTIFIER</key> + <string>com.GuitarML.Proteus.ProteusVST3</string> + <key>LOCATION</key> + <integer>0</integer> + <key>NAME</key> + <string>VST3</string> + <key>OVERWRITE_PERMISSIONS</key> + <false/> + <key>PAYLOAD_SIZE</key> + <integer>-1</integer> + <key>REFERENCE_PATH</key> + <string></string> + <key>RELOCATABLE</key> + <false/> + <key>USE_HFS+_COMPRESSION</key> + <false/> + <key>VERSION</key> + <string>##APPVERSION##</string> + </dict> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>17D06D06-18AD-4175-AA45-047F4984BE1A</string> + </dict> + <dict> + <key>MUST-CLOSE-APPLICATION-ITEMS</key> + <array/> + <key>MUST-CLOSE-APPLICATIONS</key> + <false/> + <key>PACKAGE_FILES</key> + <dict> + <key>DEFAULT_INSTALL_LOCATION</key> + <string>/Library/Application Support/Avid/Audio/Plug-Ins</string> + <key>HIERARCHY</key> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Applications</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>BUNDLE_CAN_DOWNGRADE</key> + <false/> + <key>BUNDLE_POSTINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>BUNDLE_PREINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>../../build-aax/Proteus_artefacts/Release/AAX/Proteus.aaxplugin</string> + <key>PATH_TYPE</key> + <integer>1</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>3</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Audio</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Avid</string> + <key>PATH_TYPE</key> + <integer>2</integer> + <key>PERMISSIONS</key> + <integer>509</integer> + <key>TYPE</key> + <integer>2</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Application Support</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Automator</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Documentation</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Extensions</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Filesystems</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Frameworks</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Input Methods</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Internet Plug-Ins</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchAgents</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>LaunchDaemons</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PreferencePanes</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Preferences</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Printers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>PrivilegedHelperTools</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1005</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickLook</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>QuickTime</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Screen Savers</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Scripts</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Services</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Widgets</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Library</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <dict> + <key>CHILDREN</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>Shared</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>1023</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>80</integer> + <key>PATH</key> + <string>Users</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + </array> + <key>GID</key> + <integer>0</integer> + <key>PATH</key> + <string>/</string> + <key>PATH_TYPE</key> + <integer>0</integer> + <key>PERMISSIONS</key> + <integer>493</integer> + <key>TYPE</key> + <integer>1</integer> + <key>UID</key> + <integer>0</integer> + </dict> + <key>PAYLOAD_TYPE</key> + <integer>0</integer> + <key>PRESERVE_EXTENDED_ATTRIBUTES</key> + <false/> + <key>SHOW_INVISIBLE</key> + <false/> + <key>SPLIT_FORKS</key> + <true/> + <key>TREAT_MISSING_FILES_AS_WARNING</key> + <false/> + <key>VERSION</key> + <integer>5</integer> + </dict> + <key>PACKAGE_SCRIPTS</key> + <dict> + <key>POSTINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>PREINSTALL_PATH</key> + <dict> + <key>PATH_TYPE</key> + <integer>0</integer> + </dict> + <key>RESOURCES</key> + <array/> + </dict> + <key>PACKAGE_SETTINGS</key> + <dict> + <key>AUTHENTICATION</key> + <integer>1</integer> + <key>CONCLUSION_ACTION</key> + <integer>0</integer> + <key>FOLLOW_SYMBOLIC_LINKS</key> + <false/> + <key>IDENTIFIER</key> + <string>com.GuitarML.Proteus.ProteusAAX</string> + <key>LOCATION</key> + <integer>0</integer> + <key>NAME</key> + <string>AAX</string> + <key>OVERWRITE_PERMISSIONS</key> + <false/> + <key>PAYLOAD_SIZE</key> + <integer>-1</integer> + <key>REFERENCE_PATH</key> + <string></string> + <key>RELOCATABLE</key> + <false/> + <key>USE_HFS+_COMPRESSION</key> + <false/> + <key>VERSION</key> + <string>##APPVERSION##</string> + </dict> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>67DBD464-3B62-45EF-964B-549829FB1466</string> + </dict> + </array> + <key>PROJECT</key> + <dict> + <key>PROJECT_COMMENTS</key> + <dict> + <key>NOTES</key> + <data> + </data> + </dict> + <key>PROJECT_PRESENTATION</key> + <dict> + <key>BACKGROUND</key> + <dict> + <key>APPAREANCES</key> + <dict> + <key>DARK_AQUA</key> + <dict/> + <key>LIGHT_AQUA</key> + <dict/> + </dict> + <key>SHARED_SETTINGS_FOR_ALL_APPAREANCES</key> + <true/> + </dict> + <key>INSTALLATION TYPE</key> + <dict> + <key>HIERARCHIES</key> + <dict> + <key>INSTALLER</key> + <dict> + <key>LIST</key> + <array> + <dict> + <key>CHILDREN</key> + <array/> + <key>DESCRIPTION</key> + <array/> + <key>OPTIONS</key> + <dict> + <key>HIDDEN</key> + <false/> + <key>STATE</key> + <integer>1</integer> + </dict> + <key>PACKAGE_UUID</key> + <string>69EED16E-B119-4D35-B464-12717823DE0E</string> + <key>TITLE</key> + <array/> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>32A671B5-085A-4D25-9B73-CA9157DA33C8</string> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>DESCRIPTION</key> + <array/> + <key>OPTIONS</key> + <dict> + <key>HIDDEN</key> + <false/> + <key>STATE</key> + <integer>1</integer> + </dict> + <key>PACKAGE_UUID</key> + <string>17D06D06-18AD-4175-AA45-047F4984BE1A</string> + <key>TITLE</key> + <array/> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>6B0DDE9A-47F8-4615-BC79-4C475F3E41F7</string> + </dict> + <dict> + <key>CHILDREN</key> + <array/> + <key>DESCRIPTION</key> + <array/> + <key>OPTIONS</key> + <dict> + <key>HIDDEN</key> + <false/> + <key>STATE</key> + <integer>1</integer> + </dict> + <key>PACKAGE_UUID</key> + <string>67DBD464-3B62-45EF-964B-549829FB1466</string> + <key>TITLE</key> + <array/> + <key>TYPE</key> + <integer>0</integer> + <key>UUID</key> + <string>2BBC047A-58AB-4D9C-AFC1-F8BF00186CE3</string> + </dict> + </array> + <key>REMOVED</key> + <dict/> + </dict> + </dict> + <key>MODE</key> + <integer>2</integer> + </dict> + <key>INSTALLATION_STEPS</key> + <array> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewIntroductionController</string> + <key>INSTALLER_PLUGIN</key> + <string>Introduction</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewReadMeController</string> + <key>INSTALLER_PLUGIN</key> + <string>ReadMe</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewLicenseController</string> + <key>INSTALLER_PLUGIN</key> + <string>License</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewDestinationSelectController</string> + <key>INSTALLER_PLUGIN</key> + <string>TargetSelect</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewInstallationTypeController</string> + <key>INSTALLER_PLUGIN</key> + <string>PackageSelection</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewInstallationController</string> + <key>INSTALLER_PLUGIN</key> + <string>Install</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + <dict> + <key>ICPRESENTATION_CHAPTER_VIEW_CONTROLLER_CLASS</key> + <string>ICPresentationViewSummaryController</string> + <key>INSTALLER_PLUGIN</key> + <string>Summary</string> + <key>LIST_TITLE_KEY</key> + <string>InstallerSectionTitle</string> + </dict> + </array> + <key>INTRODUCTION</key> + <dict> + <key>LOCALIZATIONS</key> + <array> + <dict> + <key>LANGUAGE</key> + <string>English</string> + <key>VALUE</key> + <dict> + <key>PATH</key> + <string>Intro.txt</string> + <key>PATH_TYPE</key> + <integer>3</integer> + </dict> + </dict> + </array> + </dict> + <key>LICENSE</key> + <dict> + <key>LOCALIZATIONS</key> + <array> + <dict> + <key>LANGUAGE</key> + <string>English</string> + <key>VALUE</key> + <dict> + <key>PATH</key> + <string>LICENSE.txt</string> + <key>PATH_TYPE</key> + <integer>3</integer> + </dict> + </dict> + </array> + <key>MODE</key> + <integer>0</integer> + </dict> + <key>README</key> + <dict> + <key>LOCALIZATIONS</key> + <array/> + </dict> + <key>TITLE</key> + <dict> + <key>LOCALIZATIONS</key> + <array> + <dict> + <key>LANGUAGE</key> + <string>English</string> + <key>VALUE</key> + <string>Proteus</string> + </dict> + </array> + </dict> + </dict> + <key>PROJECT_REQUIREMENTS</key> + <dict> + <key>LIST</key> + <array/> + <key>RESOURCES</key> + <array/> + <key>ROOT_VOLUME_ONLY</key> + <true/> + </dict> + <key>PROJECT_SETTINGS</key> + <dict> + <key>BUILD_FORMAT</key> + <integer>0</integer> + <key>BUILD_PATH</key> + <dict> + <key>PATH</key> + <string>../../build</string> + <key>PATH_TYPE</key> + <integer>1</integer> + </dict> + <key>EXCLUDED_FILES</key> + <array> + <dict> + <key>PATTERNS_ARRAY</key> + <array> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.DS_Store</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + </array> + <key>PROTECTED</key> + <true/> + <key>PROXY_NAME</key> + <string>Remove .DS_Store files</string> + <key>PROXY_TOOLTIP</key> + <string>Remove ".DS_Store" files created by the Finder.</string> + <key>STATE</key> + <true/> + </dict> + <dict> + <key>PATTERNS_ARRAY</key> + <array> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.pbdevelopment</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + </array> + <key>PROTECTED</key> + <true/> + <key>PROXY_NAME</key> + <string>Remove .pbdevelopment files</string> + <key>PROXY_TOOLTIP</key> + <string>Remove ".pbdevelopment" files created by ProjectBuilder or Xcode.</string> + <key>STATE</key> + <true/> + </dict> + <dict> + <key>PATTERNS_ARRAY</key> + <array> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>CVS</string> + <key>TYPE</key> + <integer>1</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.cvsignore</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.cvspass</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.svn</string> + <key>TYPE</key> + <integer>1</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.git</string> + <key>TYPE</key> + <integer>1</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>.gitignore</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + </array> + <key>PROTECTED</key> + <true/> + <key>PROXY_NAME</key> + <string>Remove SCM metadata</string> + <key>PROXY_TOOLTIP</key> + <string>Remove helper files and folders used by the CVS, SVN or Git Source Code Management systems.</string> + <key>STATE</key> + <true/> + </dict> + <dict> + <key>PATTERNS_ARRAY</key> + <array> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>classes.nib</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>designable.db</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>info.nib</string> + <key>TYPE</key> + <integer>0</integer> + </dict> + </array> + <key>PROTECTED</key> + <true/> + <key>PROXY_NAME</key> + <string>Optimize nib files</string> + <key>PROXY_TOOLTIP</key> + <string>Remove "classes.nib", "info.nib" and "designable.nib" files within .nib bundles.</string> + <key>STATE</key> + <true/> + </dict> + <dict> + <key>PATTERNS_ARRAY</key> + <array> + <dict> + <key>REGULAR_EXPRESSION</key> + <false/> + <key>STRING</key> + <string>Resources Disabled</string> + <key>TYPE</key> + <integer>1</integer> + </dict> + </array> + <key>PROTECTED</key> + <true/> + <key>PROXY_NAME</key> + <string>Remove Resources Disabled folders</string> + <key>PROXY_TOOLTIP</key> + <string>Remove "Resources Disabled" folders.</string> + <key>STATE</key> + <true/> + </dict> + <dict> + <key>SEPARATOR</key> + <true/> + </dict> + </array> + <key>NAME</key> + <string>Proteus</string> + <key>PAYLOAD_ONLY</key> + <false/> + <key>TREAT_MISSING_PRESENTATION_DOCUMENTS_AS_WARNING</key> + <false/> + </dict> + </dict> + <key>TYPE</key> + <integer>0</integer> + <key>VERSION</key> + <integer>2</integer> +</dict> +</plist> diff --git a/installers/mac/build_mac_installer.sh b/installers/mac/build_mac_installer.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +script_file=Proteus.pkgproj + +app_version=$(cut -f 2 -d '=' <<< "$(grep 'CMAKE_PROJECT_VERSION:STATIC' ../../build/CMakeCache.txt)") +echo "Setting app version: $app_version..." +sed -i '' "s/##APPVERSION##/${app_version}/g" $script_file +sed -i '' "s/##APPVERSION##/${app_version}/g" Intro.txt + +echo "Copying License..." +cp ../../LICENSE.txt LICENSE.txt + +# build installer +echo Building... +/usr/local/bin/packagesbuild $script_file + +# reset version number +sed -i '' "s/${app_version}/##APPVERSION##/g" $script_file +sed -i '' "s/${app_version}/##APPVERSION##/g" Intro.txt + +# clean up license file +rm LICENSE.txt + +# sign the installer package +echo "Signing installer package..." +TEAM_ID=$(more ~/Developer/mac_id) +pkg_dir=Proteus_Installer_Packaged +rm -Rf $pkg_dir +mkdir $pkg_dir +productsign -s "$TEAM_ID" ../../build/Proteus.pkg $pkg_dir/Proteus-signed.pkg + +echo "Notarizing installer package..." +INSTALLER_PASS=$(more ~/Developer/mac_installer_pass) +npx notarize-cli --file $pkg_dir/Proteus-signed.pkg --bundle-id com.GuitarML.Proteus --asc-provider "$TEAM_ID" --username [email protected] --password "$INSTALLER_PASS" + +echo "Building disk image..." +vol_name=Install_Proteus-$app_version +hdiutil create "$vol_name.dmg" -fs HFS+ -srcfolder $pkg_dir -format UDZO -volname "$vol_name" diff --git a/installers/windows/Proteus_Install_Script.iss b/installers/windows/Proteus_Install_Script.iss @@ -0,0 +1,133 @@ +#define MyAppPublisher "GuitarML" +#define MyAppURL "https://guitarml.com" +#define MyAppName "Proteus" + +[Setup] +AppName=Proteus +AppVersion=##APPVERSION## +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DisableProgramGroupPage=yes +DisableWelcomePage=no +DisableDirPage=yes +DefaultDirName={commoncf64} +DefaultGroupName=Proteus +OutputBaseFilename="Proteus-Win-##APPVERSION##" +OutputDir=. +LicenseFile=../../LICENSE.txt +SetupIconFile=../../resources/guitarml.ico +UninstallDisplayIcon=../../resources/Proteus.ico +UninstallFilesDir={commoncf64}\GuitarML\{#MyAppName} +Compression=lzma +SolidCompression=yes + +[Types] +Name: "full"; Description: "Full installation" +Name: "custom"; Description: "Custom installation"; Flags: iscustom + +[Components] +Name: "VST3_64"; Description: "VST3 Plugin 64-bit"; Types: full +Name: "AAX"; Description: "AAX Plugin"; Types: full + +[Files] +Source: "../../bin/Win64/Proteus.vst3"; DestDir: "{code:GetDir|VST3_64}"; Components: VST3_64; Flags: ignoreversion recursesubdirs createallsubdirs +Source: "../../build-aax/Proteus_artefacts/Release/AAX/Proteus.aaxplugin"; DestDir: "{code:GetDir|AAX}"; Components: AAX; Flags: ignoreversion recursesubdirs createallsubdirs + +[Code] +var + AAXDirPage: TInputDirWizardPage; + Vst3_64DirPage: TinputDirWizardPage; + +procedure InitializeWizard; +begin + Log('Initializing extra pages') + //AAX Dir Page + AAXDirPage := CreateInputDirPage(wpSelectComponents, + 'Select AAX Install Location', 'Where would you like to install the AAX plugin?', + 'AAX plugin will be installed in the following folder.'#13#10#13#10 + + 'To continue, click Next. If you would like to select a different folder, click Browse.', + False, 'New Folder'); + + AAXDirPage.add(''); + AAXDirPage.values[0] := ExpandConstant('{commoncf64}\Avid\Audio\Plug-Ins'); + + //VST3 64-bit Dir Page + Vst3_64DirPage := CreateInputDirPage(AAXDirPage.ID, + 'Select Install Location for VST3 64-bit', 'Where would you like to install the plugin?', + 'VST3 64-bit plugin will be installed in the following folder.'#13#10#13#10 + + 'To continue, click Next. If you would like to select a different folder, click Browse.', + False, 'New Folder'); + + Vst3_64DirPage.add(''); + Vst3_64DirPage.values[0] := ExpandConstant('{commoncf64}\VST3'); + + +end; + +function IsSelected(Param: String) : Boolean; +begin + if not (Pos(Param, WizardSelectedComponents(False)) = 0) then // WizardSelectedComponents(False)) then + Result := True +end; + +function ShouldSkipPage(PageID: Integer): Boolean; +begin + { Skip pages that shouldn't be shown } + Result := False; + + if (PageID = AAXDirPage.ID) then + begin + Result := True; + Log('Selected 1: ' + WizardSelectedComponents(False)); + + if IsSelected ('aax') then + begin + Log('Not Skipping page'); + Result := False; + end + end + + else if (PageID = Vst3_64DirPage.ID) then + begin + Result := True; + Log('Selected 2: ' + WizardSelectedComponents(False)); + + if IsSelected ('vst3_64') then + begin + Log('Not Skipping'); + Result := False; + end + end + + +end; + +function GetDir(Param: String) : String; +begin + if (Param = 'AAX') then + Result := AAXDirPage.values[0] + else if (Param = 'VST3_64') then + Result := Vst3_64DirPage.values[0] +end; + +function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, + MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String): String; +var + S: String; +begin + { Fill the 'Ready Memo' with the normal settings and the custom settings } + S := ''; + S := S + MemoTypeInfo + NewLine + NewLine; + S := S + MemoComponentsInfo + NewLine + NewLine; + S := S + 'Destination Location:' + NewLine; + + if IsSelected('aax') then + S := S + Space + GetDir('AAX') + ' (AAX)' + NewLine; + + if IsSelected('vst3_64') then + S := S + Space + GetDir('VST3_64') + ' (VST3 64-bit)' + NewLine; + + Result := S; +end; diff --git a/installers/windows/build_win_installer.sh b/installers/windows/build_win_installer.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +script_file=Proteus_Install_Script.iss + +app_version=$(cut -f 2 -d '=' <<< "$(grep 'CMAKE_PROJECT_VERSION:STATIC' ../../build/CMakeCache.txt)") +echo "Setting app version: $app_version..." +sed -i "s/##APPVERSION##/${app_version}/g" $script_file + +# build installer +echo Building... +$"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" $script_file + +# reset version number +sed -i "s/${app_version}/##APPVERSION##/g" $script_file + +exec="Proteus-Win-$app_version.exe" +direc=$PWD + + +echo SUCCESS diff --git a/mac_builds.sh b/mac_builds.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +# exit on failure +set -e + +# clean up old builds +rm -Rf build/ +rm -Rf bin/*Mac* + + +# cmake new builds +TEAM_ID=$(more ~/Developer/mac_id) +cmake -Bbuild -DMACOS_RELEASE=ON -GXcode -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY="Developer ID Application" \ + -DCMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM="$TEAM_ID" \ + -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_STYLE="Manual" \ + -D"CMAKE_OSX_ARCHITECTURES=arm64;x86_64" \ + -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_INJECT_BASE_ENTITLEMENTS=NO \ + -DCMAKE_XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS="--timestamp" \ + -DMACOS_RELEASE=ON +cmake --build build --config Release -j8 | xcpretty + +# copy builds to bin +mkdir -p bin/Mac +declare -a plugins=("Proteus") +for plugin in "${plugins[@]}"; do + cp -R build/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Mac/${plugin}.vst3 + cp -R build/${plugin}_artefacts/Release/AU/${plugin}.component bin/Mac/${plugin}.component +done + + +# run auval +echo "Running AU validation..." +rm -Rf ~/Library/Audio/Plug-Ins/Components/${plugin}.component +cp -R build/${plugin}_artefacts/Release/AU/${plugin}.component ~/Library/Audio/Plug-Ins/Components +manu=$(cut -f 6 -d ' ' <<< "$(grep 'PLUGIN_MANUFACTURER_CODE' CMakeLists.txt)") +code=$(cut -f 6 -d ' ' <<< "$(grep 'PLUGIN_CODE' CMakeLists.txt)") + +set +e +auval_result=$(auval -v aufx "$code" "$manu") +auval_code="$?" +echo "AUVAL code: $auval_code" + +if [ "$auval_code" != 0 ]; then + echo "$auval_result" + echo "auval FAIL!!!" + #exit 1 +else + echo "auval PASSED" +fi + +# zip builds +echo "Zipping builds..." +VERSION=$(cut -f 2 -d '=' <<< "$(grep 'CMAKE_PROJECT_VERSION:STATIC' build/CMakeCache.txt)") +( + cd bin + rm -f "Proteus-Mac-${VERSION}.zip" + zip -r "Proteus-Mac-${VERSION}.zip" Mac +) + +# create installer +echo "Creating installer..." +( + cd installers/mac + bash build_mac_installer.sh +) diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt @@ -0,0 +1,67 @@ +add_subdirectory(JUCE) + +include(cmake/SubprojectVersion.cmake) +subproject_version(JUCE juce_version) +message(STATUS "VERSION for JUCE: ${juce_version}") + +# Link to libsamplerate +set(BUILD_TESTING OFF CACHE BOOL "Don't build libsamplerate tests!") +add_subdirectory(libsamplerate) +subproject_version(libsamplerate libsamplerate_version) +message(STATUS "VERSION for libsamplerate: ${libsamplerate_version}") + +# link to RTNeural +set(RTNEURAL_XSIMD ON CACHE BOOL "Use RTNeural with this backend" FORCE) +add_subdirectory(RTNeural) + +include(cmake/WarningFlags.cmake) +add_library(juce_plugin_modules STATIC) +add_subdirectory(json) +add_subdirectory(chowdsp_utils) + +target_link_libraries(juce_plugin_modules + PRIVATE + BinaryData + juce::juce_audio_utils + juce::juce_audio_plugin_client + juce::juce_dsp + nlohmann_json::nlohmann_json + RTNeural + samplerate + chowdsp_dsp + PUBLIC + juce::juce_recommended_config_flags + juce::juce_recommended_lto_flags + warning_flags +) + +target_compile_definitions(juce_plugin_modules + PUBLIC + JUCE_DISPLAY_SPLASH_SCREEN=0 + JUCE_REPORT_APP_USAGE=0 + JUCE_WEB_BROWSER=0 + JUCE_USE_CURL=0 + JUCE_VST3_CAN_REPLACE_VST2=0 + JucePlugin_Manufacturer="GuitarML" + JucePlugin_VersionString="${CMAKE_PROJECT_VERSION}" + JucePlugin_Name="${CMAKE_PROJECT_NAME}" + CHOWDSP_USE_LIBSAMPLERATE=1 + INTERFACE + $<TARGET_PROPERTY:juce_plugin_modules,COMPILE_DEFINITIONS> +) + +target_include_directories(juce_plugin_modules + PUBLIC + RTNeural + RTNeural/modules/xsimd/include + libsamplerate/include + INTERFACE + $<TARGET_PROPERTY:juce_plugin_modules,INCLUDE_DIRECTORIES> +) + +set_target_properties(juce_plugin_modules PROPERTIES + POSITION_INDEPENDENT_CODE TRUE + VISIBILITY_INLINES_HIDDEN TRUE + C_VISBILITY_PRESET hidden + CXX_VISIBILITY_PRESET hidden +) diff --git a/modules/cmake/SubprojectVersion.cmake b/modules/cmake/SubprojectVersion.cmake @@ -0,0 +1,20 @@ +# subproject_version(<subproject-name> <result-variable>) +# +# Extract version of a sub-project, which was previously included with add_subdirectory(). +function(subproject_version subproject_name VERSION_VAR) + # Read CMakeLists.txt for subproject and extract project() call(s) from it. + file(STRINGS "${${subproject_name}_SOURCE_DIR}/CMakeLists.txt" project_calls REGEX "[ \t]*project\\(") + # For every project() call try to extract its VERSION option + foreach(project_call ${project_calls}) + string(REGEX MATCH "VERSION[ ]+([^ )]+)" version_param "${project_call}") + if(version_param) + set(version_value "${CMAKE_MATCH_1}") + endif() + endforeach() + if(version_value) + set(${VERSION_VAR} "${version_value}" PARENT_SCOPE) + else() + message("WARNING: Cannot extract version for subproject '${subproject_name}'") + endif() + +endfunction(subproject_version) diff --git a/modules/cmake/WarningFlags.cmake b/modules/cmake/WarningFlags.cmake @@ -0,0 +1,49 @@ +add_library(warning_flags INTERFACE) + +if((CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") OR (CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")) + target_compile_options(warning_flags INTERFACE + /W4 # base warning level + #/wd4458 # declaration hides class member (from Foley's GUI Magic) + /wd4505 # since VS2019 doesn't handle [[ maybe_unused ]] for static functions (RTNeural::debug_print) + /wd4244 # for XSIMD + ) +elseif((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")) + target_compile_options(warning_flags INTERFACE + -Wall -Wshadow-all -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized + -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion + -Wconditional-uninitialized -Woverloaded-virtual -Wreorder + -Wconstant-conversion -Wsign-conversion -Wunused-private-field + -Wbool-conversion -Wno-extra-semi -Wunreachable-code + -Wzero-as-null-pointer-constant -Wcast-align + -Wno-inconsistent-missing-destructor-override -Wshift-sign-overflow + -Wnullable-to-nonnull-conversion -Wno-missing-field-initializers + -Wno-ignored-qualifiers -Wpedantic -Wno-pessimizing-move + # These lines suppress some custom warnings. + # Comment them out to be more strict. + -Wno-shadow-field-in-constructor + # Supress warnings from xsimd + -Wno-cast-align -Wno-shadow -Wno-implicit-int-conversion + -Wno-zero-as-null-pointer-constant -Wno-sign-conversion + # Needed for ARM processor, OSX versions below 10.14 + -fno-aligned-allocation + ) +elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + target_compile_options(warning_flags INTERFACE + -Wall -Wextra -Wstrict-aliasing -Wuninitialized -Wunused-parameter + -Wsign-compare -Woverloaded-virtual -Wreorder -Wunreachable-code + -Wzero-as-null-pointer-constant -Wcast-align -Wno-implicit-fallthrough + -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pedantic + -Wno-ignored-qualifiers -Wno-unused-function -Wno-pessimizing-move + # From LV2 Wrapper + -Wno-parentheses -Wno-deprecated-declarations -Wno-redundant-decls + # For XSIMD + -Wno-zero-as-null-pointer-constant + # These lines suppress some custom warnings. + # Comment them out to be more strict. + -Wno-redundant-move + ) + + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "7.0.0") + target_compile_options(warning_flags INTERFACE "-Wno-strict-overflow") + endif() +endif() diff --git a/resources/CMakeLists.txt b/resources/CMakeLists.txt @@ -0,0 +1,13 @@ +juce_add_binary_data(BinaryData SOURCES + footswitch_down.png + footswitch_up.png + knob_hex.png + background_on.jpg + background_on_blue.jpg + background_off.jpg + +) + +# Need to build BinaryData with -fPIC flag on Linux +set_target_properties(BinaryData PROPERTIES + POSITION_INDEPENDENT_CODE TRUE) diff --git a/resources/SmartPedal.ico b/resources/SmartPedal.ico Binary files differ. diff --git a/resources/app_pic.png b/resources/app_pic.png Binary files differ. diff --git a/resources/background_off.jpg b/resources/background_off.jpg Binary files differ. diff --git a/resources/background_on.jpg b/resources/background_on.jpg Binary files differ. diff --git a/resources/background_on_blue.jpg b/resources/background_on_blue.jpg Binary files differ. diff --git a/resources/footswitch_down.png b/resources/footswitch_down.png Binary files differ. diff --git a/resources/footswitch_up.png b/resources/footswitch_up.png Binary files differ. diff --git a/resources/guitarml.ico b/resources/guitarml.ico Binary files differ. diff --git a/resources/logo.png b/resources/logo.png Binary files differ. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt @@ -0,0 +1,14 @@ +#add_subdirectory(headless) + +target_sources(Proteus PRIVATE + myLookAndFeel.cpp + myLookAndFeel.h + PluginEditor.cpp + PluginEditor.h + PluginProcessor.cpp + PluginProcessor.h + RTNeuralLSTM.cpp + RTNeuralLSTM.h +) + +#target_precompile_headers(Proteus PRIVATE pch.h) diff --git a/src/PluginEditor.cpp b/src/PluginEditor.cpp @@ -0,0 +1,264 @@ +/* + ============================================================================== + + This file was auto-generated! + + It contains the basic framework code for a JUCE plugin editor. + + ============================================================================== +*/ + +#include "PluginProcessor.h" +#include "PluginEditor.h" + +//============================================================================== +SmartPedalAudioProcessorEditor::SmartPedalAudioProcessorEditor (SmartPedalAudioProcessor& p) + : AudioProcessorEditor (&p), processor (p) +{ + // Make sure that before the constructor has finished, you've set the + // editor's size to whatever you need it to + + // Overall Widgets + addAndMakeVisible(loadButton); + loadButton.setButtonText("LOAD MODEL"); + loadButton.addListener(this); + + addAndMakeVisible(modelLabel); + modelLabel.setText("Model", juce::NotificationType::dontSendNotification); + modelLabel.setJustificationType(juce::Justification::centred); + modelLabel.setColour(juce::Label::textColourId, juce::Colours::black); + + addAndMakeVisible(modelSelect); + modelSelect.setColour(juce::Label::textColourId, juce::Colours::black); + modelSelect.setScrollWheelEnabled(true); + int c = 1; + for (const auto& jsonFile : processor.jsonFiles) { + modelSelect.addItem(jsonFile.getFileName(), c); + c += 1; + } + modelSelect.onChange = [this] {modelSelectChanged();}; + + auto font = modelLabel.getFont(); + float height = font.getHeight(); + font.setHeight(height); + modelLabel.setFont(font); + + // Set Widget Graphics + blackHexKnobLAF.setLookAndFeel(ImageCache::getFromMemory(BinaryData::knob_hex_png, BinaryData::knob_hex_pngSize)); + + // Pre Amp Pedal Widgets + + // Overdrive + odFootSw.setImages(true, true, true, + ImageCache::getFromMemory(BinaryData::footswitch_up_png, BinaryData::footswitch_up_pngSize), 1.0, Colours::transparentWhite, + Image(), 1.0, Colours::transparentWhite, + ImageCache::getFromMemory(BinaryData::footswitch_down_png, BinaryData::footswitch_down_pngSize), 1.0, Colours::transparentWhite, + 0.0); + addAndMakeVisible(odFootSw); + odFootSw.addListener(this); + + //odLED.setImages(true, true, true, + // ImageCache::getFromMemory(BinaryData::led_red_on_png, BinaryData::led_red_on_pngSize), 1.0, Colours::transparentWhite, + // Image(), 1.0, Colours::transparentWhite, + // ImageCache::getFromMemory(BinaryData::led_red_on_png, BinaryData::led_red_on_pngSize), 1.0, Colours::transparentWhite, + // 0.0); + //addAndMakeVisible(odLED); + + driveSliderAttach = std::make_unique<AudioProcessorValueTreeState::SliderAttachment>(processor.treeState, GAIN_ID, odDriveKnob); + addAndMakeVisible(odDriveKnob); + odDriveKnob.setLookAndFeel(&blackHexKnobLAF); + odDriveKnob.addListener(this); + odDriveKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); + odDriveKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); + odDriveKnob.setDoubleClickReturnValue(true, 0.5); + + masterSliderAttach = std::make_unique<AudioProcessorValueTreeState::SliderAttachment>(processor.treeState, MASTER_ID, odLevelKnob); + addAndMakeVisible(odLevelKnob); + odLevelKnob.setLookAndFeel(&blackHexKnobLAF); + odLevelKnob.addListener(this); + odLevelKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); + odLevelKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); + odLevelKnob.setDoubleClickReturnValue(true, 0.5); + + addAndMakeVisible(versionLabel); + versionLabel.setText("v1.5", juce::NotificationType::dontSendNotification); + versionLabel.setJustificationType(juce::Justification::left); + versionLabel.setColour(juce::Label::textColourId, juce::Colours::black); + //auto font = versionLabel.getFont(); + //float height = font.getHeight(); + //font.setHeight(height); // 0.75 + versionLabel.setFont(font); + + // Size of plugin GUI + setSize (500, 650); + + resetImages(); + + loadFromFolder(); +} + +SmartPedalAudioProcessorEditor::~SmartPedalAudioProcessorEditor() +{ +} + +//============================================================================== +void SmartPedalAudioProcessorEditor::paint (Graphics& g) +{ + // Workaround for graphics on Windows builds (clipping code doesn't work correctly on Windows) +#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) + if (processor.fw_state == 0) { + g.drawImageAt(background_off, 0, 0); // Debug Line: Redraw entire background image + } else if (processor.fw_state == 1 && processor.conditioned == true) { + g.drawImageAt(background_on_blue, 0, 0); // Debug Line: Redraw entire background image + } else if (processor.fw_state == 1 && processor.conditioned == false) { + g.drawImageAt(background_on, 0, 0); // Debug Line: Redraw entire background image + } +#else +// Redraw only the clipped part of the background image + + juce::Rectangle<int> ClipRect = g.getClipBounds(); + if (processor.fw_state == 0) { + g.drawImage(background_off, ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight(), ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight()); + } else if (processor.fw_state == 1 && processor.conditioned == true) { + g.drawImage(background_on_blue, ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight(), ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight()); + } else if (processor.fw_state == 1 && processor.conditioned == false) + g.drawImage(background_on, ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight(), ClipRect.getX(), ClipRect.getY(), ClipRect.getWidth(), ClipRect.getHeight()); +#endif +} + +void SmartPedalAudioProcessorEditor::resized() +{ + // This is generally where you'll want to lay out the positions of any + // subcomponents in your editor.. + + //Overall Widgets + loadButton.setBounds(186, 56, 120, 20); + modelSelect.setBounds(52, 26, 400, 25); + modelLabel.setBounds(197, 2, 90, 25); + versionLabel.setBounds(462, 632, 60, 10); + + // Overdrive Widgets + odDriveKnob.setBounds(103, 97, 176, 176); + odLevelKnob.setBounds(268, 97, 176, 176); + odFootSw.setBounds(185, 416, 175, 160); +} + + +void SmartPedalAudioProcessorEditor::loadButtonClicked() +{ + myChooser = std::make_unique<FileChooser> ("Select a folder to load models from", + processor.folder, + "*.json"); + + auto folderChooserFlags = FileBrowserComponent::openMode | FileBrowserComponent::canSelectDirectories | FileBrowserComponent::canSelectFiles; + + myChooser->launchAsync (folderChooserFlags, [this] (const FileChooser& chooser) + { + if (!chooser.getResult().exists()) { + return; + } + Array<File> files; + if (chooser.getResult().existsAsFile()) { // If a file is selected + processor.saved_model = chooser.getResult(); + files = chooser.getResult().getParentDirectory().findChildFiles(2, false, "*.json"); + processor.folder = chooser.getResult().getParentDirectory(); + } else if (chooser.getResult().isDirectory()){ // Else folder is selected + files = chooser.getResult().findChildFiles(2, false, "*.json"); + processor.folder = chooser.getResult(); + } + + processor.jsonFiles.clear(); + + modelSelect.clear(); + + if (files.size() > 0) { + for (auto file : files) { + modelSelect.addItem(file.getFileNameWithoutExtension(), processor.jsonFiles.size() + 1); + processor.jsonFiles.push_back(file); + processor.num_models += 1; + } + if (chooser.getResult().existsAsFile()) { + modelSelect.setText(processor.saved_model.getFileNameWithoutExtension()); + processor.loadConfig(processor.saved_model); + } + else { + modelSelect.setSelectedItemIndex(0, juce::NotificationType::dontSendNotification); + modelSelectChanged(); + } + } + }); + +} + +void SmartPedalAudioProcessorEditor::loadFromFolder() +{ + + Array<File> files; + files = processor.folder.findChildFiles(2, false, "*.json"); + + processor.jsonFiles.clear(); + modelSelect.clear(); + + if (files.size() > 0) { + for (auto file : files) { + modelSelect.addItem(file.getFileNameWithoutExtension(), processor.jsonFiles.size() + 1); + processor.jsonFiles.push_back(file); + processor.num_models += 1; + } + processor.loadConfig(processor.jsonFiles[processor.current_model_index]); + modelSelect.setText(processor.jsonFiles[processor.current_model_index].getFileNameWithoutExtension(), juce::NotificationType::dontSendNotification); + } +} + + +void SmartPedalAudioProcessorEditor::buttonClicked(juce::Button* button) +{ + if (button == &odFootSw) { + odFootSwClicked(); + } else if (button == &loadButton) { + loadButtonClicked(); + } +} + +void SmartPedalAudioProcessorEditor::odFootSwClicked() { + if (processor.fw_state == 0) + processor.fw_state = 1; + else + processor.fw_state = 0; + resetImages(); +} + +void SmartPedalAudioProcessorEditor::sliderValueChanged(Slider* slider) +{ + +} + +void SmartPedalAudioProcessorEditor::modelSelectChanged() +{ + const int selectedFileIndex = modelSelect.getSelectedItemIndex(); + if (selectedFileIndex >= 0 && selectedFileIndex < processor.jsonFiles.size()) { + processor.loadConfig(processor.jsonFiles[selectedFileIndex]); + processor.current_model_index = selectedFileIndex; + } + repaint(); +} + + +void SmartPedalAudioProcessorEditor::resetImages() +{ + repaint(); + if (processor.fw_state == 0) { + odFootSw.setImages(true, true, true, + ImageCache::getFromMemory(BinaryData::footswitch_up_png, BinaryData::footswitch_up_pngSize), 1.0, Colours::transparentWhite, + Image(), 1.0, Colours::transparentWhite, + ImageCache::getFromMemory(BinaryData::footswitch_up_png, BinaryData::footswitch_up_pngSize), 1.0, Colours::transparentWhite, + 0.0); + } + else { + odFootSw.setImages(true, true, true, + ImageCache::getFromMemory(BinaryData::footswitch_down_png, BinaryData::footswitch_down_pngSize), 1.0, Colours::transparentWhite, + Image(), 1.0, Colours::transparentWhite, + ImageCache::getFromMemory(BinaryData::footswitch_down_png, BinaryData::footswitch_down_pngSize), 1.0, Colours::transparentWhite, + 0.0); + } +} +\ No newline at end of file diff --git a/src/PluginEditor.h b/src/PluginEditor.h @@ -0,0 +1,82 @@ +/* + ============================================================================== + + This file was auto-generated! + + It contains the basic framework code for a JUCE plugin editor. + + ============================================================================== +*/ + +#pragma once + +#include "../JuceLibraryCode/JuceHeader.h" +#include "PluginProcessor.h" +#include "myLookAndFeel.h" + +//============================================================================== +/** +*/ +class SmartPedalAudioProcessorEditor : public AudioProcessorEditor, + private Button::Listener, + private Slider::Listener +{ +public: + SmartPedalAudioProcessorEditor (SmartPedalAudioProcessor&); + ~SmartPedalAudioProcessorEditor(); + + //============================================================================== + void paint (Graphics&) override; + void resized() override; + std::unique_ptr<FileChooser> myChooser; + + void loadFromFolder(); + void resetImages(); + +private: + // This reference is provided as a quick way for your editor to + // access the processor object that created it. + SmartPedalAudioProcessor& processor; + + + TextButton loadButton; + virtual void buttonClicked(Button* button) override; + void loadButtonClicked(); + + //Image background = ImageCache::getFromMemory(BinaryData::smart_pedal_jpg, BinaryData::smart_pedal_jpgSize); + // LookandFeels and Graphics + Image background_on = ImageCache::getFromMemory(BinaryData::background_on_jpg, BinaryData::background_on_jpgSize); + Image background_on_blue = ImageCache::getFromMemory(BinaryData::background_on_blue_jpg, BinaryData::background_on_blue_jpgSize); + Image background_off = ImageCache::getFromMemory(BinaryData::background_off_jpg, BinaryData::background_off_jpgSize); + + // Global Widgets + Label modelLabel; + Label versionLabel; + + ComboBox modelSelect; + + // Overdrive Widgets + Slider odDriveKnob; + Slider odLevelKnob; + ImageButton odFootSw; + //ImageButton odLED; + + + // LookandFeels + myLookAndFeel blackHexKnobLAF; + + virtual void sliderValueChanged(Slider* slider) override; + + AudioProcessorParameter* getParameter(const String& paramId); + + void odFootSwClicked(); + void modelSelectChanged(); + + + +public: + std::unique_ptr <AudioProcessorValueTreeState::SliderAttachment> driveSliderAttach; + std::unique_ptr <AudioProcessorValueTreeState::SliderAttachment> masterSliderAttach; + + JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SmartPedalAudioProcessorEditor) +}; diff --git a/src/PluginProcessor.cpp b/src/PluginProcessor.cpp @@ -0,0 +1,304 @@ +/* + ============================================================================== + + This file was auto-generated! + + It contains the basic framework code for a JUCE plugin processor. + + ============================================================================== +*/ + +#include "PluginProcessor.h" +#include "PluginEditor.h" + +//============================================================================== +SmartPedalAudioProcessor::SmartPedalAudioProcessor() +#ifndef JucePlugin_PreferredChannelConfigurations + : AudioProcessor(BusesProperties() +#if ! JucePlugin_IsMidiEffect +#if ! JucePlugin_IsSynth + .withInput("Input", AudioChannelSet::stereo(), true) +#endif + .withOutput("Output", AudioChannelSet::stereo(), true) +#endif + ), + waveNet(1, 1, 1, 1, "linear", { 1 }), + treeState(*this, nullptr, "PARAMETER", { std::make_unique<AudioParameterFloat>(GAIN_ID, GAIN_NAME, NormalisableRange<float>(0.0f, 1.0f, 0.01f), 0.5f), + std::make_unique<AudioParameterFloat>(MASTER_ID, MASTER_NAME, NormalisableRange<float>(0.0f, 1.0f, 0.01f), 0.5) }) + + +#endif +{ + driveParam = treeState.getRawParameterValue (GAIN_ID); + masterParam = treeState.getRawParameterValue (MASTER_ID); +} + +SmartPedalAudioProcessor::~SmartPedalAudioProcessor() +{ +} + +//============================================================================== +const String SmartPedalAudioProcessor::getName() const +{ + return JucePlugin_Name; +} + +bool SmartPedalAudioProcessor::acceptsMidi() const +{ + #if JucePlugin_WantsMidiInput + return true; + #else + return false; + #endif +} + +bool SmartPedalAudioProcessor::producesMidi() const +{ + #if JucePlugin_ProducesMidiOutput + return true; + #else + return false; + #endif +} + +bool SmartPedalAudioProcessor::isMidiEffect() const +{ + #if JucePlugin_IsMidiEffect + return true; + #else + return false; + #endif +} + +double SmartPedalAudioProcessor::getTailLengthSeconds() const +{ + return 0.0; +} + +int SmartPedalAudioProcessor::getNumPrograms() +{ + return 1; // NB: some hosts don't cope very well if you tell them there are 0 programs, + // so this should be at least 1, even if you're not really implementing programs. +} + +int SmartPedalAudioProcessor::getCurrentProgram() +{ + return 0; +} + +void SmartPedalAudioProcessor::setCurrentProgram (int index) +{ +} + +const String SmartPedalAudioProcessor::getProgramName (int index) +{ + return {}; +} + +void SmartPedalAudioProcessor::changeProgramName (int index, const String& newName) +{ +} + +//============================================================================== +void SmartPedalAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock) +{ + // Use this method as the place to do any pre-playback + // initialisation that you need.. + + // prepare resampler for target sample rate: 44.1 kHz + constexpr double targetSampleRate = 44100.0; + //resampler.prepareWithTargetSampleRate ({ sampleRate, (uint32) samplesPerBlock, 1 }, targetSampleRate); + resampler.prepareWithTargetSampleRate({ sampleRate, (uint32)samplesPerBlock, 2 }, targetSampleRate); + + + dsp::ProcessSpec specMono { sampleRate, static_cast<uint32> (samplesPerBlock), 1 }; + dsp::ProcessSpec spec{ sampleRate, static_cast<uint32> (samplesPerBlock), 2 }; + + LSTM.reset(); + LSTM2.reset(); + +} + +void SmartPedalAudioProcessor::releaseResources() +{ + // When playback stops, you can use this as an opportunity to free up any + // spare memory, etc. +} + +#ifndef JucePlugin_PreferredChannelConfigurations +bool SmartPedalAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) const +{ + #if JucePlugin_IsMidiEffect + ignoreUnused (layouts); + return true; + #else + // This is the place where you check if the layout is supported. + // In this template code we only support mono or stereo. + if (layouts.getMainOutputChannelSet() != AudioChannelSet::mono() + && layouts.getMainOutputChannelSet() != AudioChannelSet::stereo()) + return false; + + // This checks if the input layout matches the output layout + #if ! JucePlugin_IsSynth + if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet()) + return false; + #endif + + return true; + #endif +} +#endif + + +void SmartPedalAudioProcessor::processBlock (AudioBuffer<float>& buffer, MidiBuffer& midiMessages) +{ + ScopedNoDenormals noDenormals; + + auto driveValue = static_cast<float> (driveParam->load()); + auto masterValue = static_cast<float> (masterParam->load()); + + // Setup Audio Data + const int numSamples = buffer.getNumSamples(); + const int numInputChannels = getTotalNumInputChannels(); + + dsp::AudioBlock<float> block(buffer); + + // Overdrive Pedal ================================================================== + if (fw_state == 1) { + auto block44k = resampler.processIn(block); + + if (conditioned == false) { + // Apply ramped changes for gain smoothing + if (driveValue == previousDriveValue) + { + buffer.applyGain(driveValue*20.0); + } + else { + buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousDriveValue * 20.0, driveValue * 20.0); + previousDriveValue = driveValue; + } + + for (int ch = 0; ch < buffer.getNumChannels(); ++ch) + { + // Apply LSTM model + if (ch == 0) { + LSTM.process(block44k.getChannelPointer(0), block44k.getChannelPointer(0), (int)block44k.getNumSamples()); + } + else if (ch == 1) { + LSTM2.process(block44k.getChannelPointer(1), block44k.getChannelPointer(1), (int)block44k.getNumSamples()); + } + } + } else { + buffer.applyGain(10.0); // Apply default boost to help sound + // resample to target sample rate + + + for (int ch = 0; ch < buffer.getNumChannels(); ++ch) + { + // Apply LSTM model + if (ch == 0) { + LSTM.process(block44k.getChannelPointer(0), paramValue, block44k.getChannelPointer(0), (int)block44k.getNumSamples()); + } + else if (ch == 1) { + LSTM2.process(block44k.getChannelPointer(1), paramValue, block44k.getChannelPointer(1), (int)block44k.getNumSamples()); + } + } + } + + + // Master Volume + // Apply ramped changes for gain smoothing + if (masterValue == previousMasterValue) + { + buffer.applyGain(masterValue); + } + else { + buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousMasterValue, masterValue); + previousMasterValue = masterValue; + } + } +} + +//============================================================================== +bool SmartPedalAudioProcessor::hasEditor() const +{ + return true; // (change this to false if you choose to not supply an editor) +} + +AudioProcessorEditor* SmartPedalAudioProcessor::createEditor() +{ + return new SmartPedalAudioProcessorEditor (*this); +} + +//============================================================================== +void SmartPedalAudioProcessor::getStateInformation (MemoryBlock& destData) +{ + // You should use this method to store your parameters in the memory block. + // You could do that either as raw data, or use the XML or ValueTree classes + // as intermediaries to make it easy to save and load complex data. + + auto state = treeState.copyState(); + std::unique_ptr<XmlElement> xml (state.createXml()); + xml->setAttribute ("fw_state", fw_state); + xml->setAttribute("folder", folder.getFullPathName().toStdString()); + xml->setAttribute("saved_model", saved_model.getFullPathName().toStdString()); + xml->setAttribute("current_model_index", current_model_index); + copyXmlToBinary (*xml, destData); + +} + +void SmartPedalAudioProcessor::setStateInformation (const void* data, int sizeInBytes) +{ + // You should use this method to restore your parameters from this memory block, + // whose contents will have been created by the getStateInformation() call. + + std::unique_ptr<juce::XmlElement> xmlState (getXmlFromBinary (data, sizeInBytes)); + + if (xmlState.get() != nullptr) + { + if (xmlState->hasTagName (treeState.state.getType())) + { + treeState.replaceState (juce::ValueTree::fromXml (*xmlState)); + fw_state = xmlState->getBoolAttribute ("fw_state"); + saved_model = xmlState->getStringAttribute("saved_model"); + current_model_index = xmlState->getIntAttribute("current_model_index"); + File temp = xmlState->getStringAttribute("folder"); + folder = temp; + if (auto* editor = dynamic_cast<SmartPedalAudioProcessorEditor*> (getActiveEditor())) + editor->resetImages(); + if (auto* editor = dynamic_cast<SmartPedalAudioProcessorEditor*> (getActiveEditor())) + editor->loadFromFolder(); + + } + } +} + + +void SmartPedalAudioProcessor::loadConfig(File configFile) +{ + this->suspendProcessing(true); + String path = configFile.getFullPathName(); + char_filename = path.toUTF8(); + + LSTM.reset(); + LSTM2.reset(); + LSTM.load_json(char_filename); + LSTM2.load_json(char_filename); + + if (LSTM.input_size == 1) { + conditioned = false; + } else { + conditioned = true; + } + + this->suspendProcessing(false); +} + + + +//============================================================================== +// This creates new instances of the plugin.. +AudioProcessor* JUCE_CALLTYPE createPluginFilter() +{ + return new SmartPedalAudioProcessor(); +} diff --git a/src/PluginProcessor.h b/src/PluginProcessor.h @@ -0,0 +1,99 @@ +/* + ============================================================================== + + This file was auto-generated! + + It contains the basic framework code for a JUCE plugin processor. + + ============================================================================== +*/ + +#pragma once + +#include "../JuceLibraryCode/JuceHeader.h" +#include "WaveNet.h" +#include "WaveNetLoader.h" + +#define GAIN_ID "drive" +#define GAIN_NAME "Drive" +#define MASTER_ID "level" +#define MASTER_NAME "Level" + +//============================================================================== +/** +*/ +class SmartPedalAudioProcessor : public AudioProcessor +{ +public: + //============================================================================== + SmartPedalAudioProcessor(); + ~SmartPedalAudioProcessor(); + + //============================================================================== + void prepareToPlay (double sampleRate, int samplesPerBlock) override; + void releaseResources() override; + + #ifndef JucePlugin_PreferredChannelConfigurations + bool isBusesLayoutSupported (const BusesLayout& layouts) const override; + #endif + + void processBlock (AudioBuffer<float>&, MidiBuffer&) override; + + //============================================================================== + AudioProcessorEditor* createEditor() override; + bool hasEditor() const override; + + //============================================================================== + const String getName() const override; + + bool acceptsMidi() const override; + bool producesMidi() const override; + bool isMidiEffect() const override; + double getTailLengthSeconds() const override; + + //============================================================================== + int getNumPrograms() override; + int getCurrentProgram() override; + void setCurrentProgram (int index) override; + const String getProgramName (int index) override; + void changeProgramName (int index, const String& newName) override; + + //============================================================================== + void getStateInformation (MemoryBlock& destData) override; + void setStateInformation (const void* data, int sizeInBytes) override; + + // Files and configuration + void loadConfig(File configFile); + + // Pedal/amp states + int fw_state = 1; // 0 = off, 1 = on + + File currentDirectory = File::getCurrentWorkingDirectory().getFullPathName(); + int current_model_index = 0; + + Array<File> fileArray; + std::vector<File> jsonFiles; + int num_models = 0; + File folder = File::getSpecialLocation(File::userDesktopDirectory); + File saved_model; + + AudioProcessorValueTreeState treeState; + + bool conditioned = false; + + +private: + + std::atomic<float>* driveParam = nullptr; + std::atomic<float>* masterParam = nullptr; + + float previousDriveValue = 0.5; + float previousMasterValue = 0.5; + //float steppedValue1 = 0.0; + + RT_LSTM LSTM; + RT_LSTM LSTM2; + + //============================================================================== + JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SmartPedalAudioProcessor) +}; diff --git a/src/RTNeuralLSTM.cpp b/src/RTNeuralLSTM.cpp @@ -0,0 +1,108 @@ +#include "RTNeuralLSTM.h" + +using Vec2d = std::vector<std::vector<float>>; + +Vec2d transpose(const Vec2d& x) +{ + auto outer_size = x.size(); + auto inner_size = x[0].size(); + Vec2d y(inner_size, std::vector<float>(outer_size, 0.0f)); + + for (size_t i = 0; i < outer_size; ++i) + { + for (size_t j = 0; j < inner_size; ++j) + y[j][i] = x[i][j]; + } + + return y; +} + +template <typename T1> +void RT_LSTM::set_weights(T1 model, const char* filename) +{ + // Initialize the correct model + auto& lstm = (*model).template get<0>(); + auto& dense = (*model).template get<1>(); + + // read a JSON file + std::ifstream i2(filename); + nlohmann::json weights_json; + i2 >> weights_json; + + Vec2d lstm_weights_ih = weights_json["/state_dict/rec.weight_ih_l0"_json_pointer]; + lstm.setWVals(transpose(lstm_weights_ih)); + + Vec2d lstm_weights_hh = weights_json["/state_dict/rec.weight_hh_l0"_json_pointer]; + lstm.setUVals(transpose(lstm_weights_hh)); + + std::vector<float> lstm_bias_ih = weights_json["/state_dict/rec.bias_ih_l0"_json_pointer]; + std::vector<float> lstm_bias_hh = weights_json["/state_dict/rec.bias_hh_l0"_json_pointer]; + for (int i = 0; i < 80; ++i) + lstm_bias_hh[i] += lstm_bias_ih[i]; + lstm.setBVals(lstm_bias_hh); + + Vec2d dense_weights = weights_json["/state_dict/lin.weight"_json_pointer]; + dense.setWeights(dense_weights); + + std::vector<float> dense_bias = weights_json["/state_dict/lin.bias"_json_pointer]; + dense.setBias(dense_bias.data()); + +} +void RT_LSTM::load_json(const char* filename) +{ + // Read in the JSON file + std::ifstream i2(filename); + nlohmann::json weights_json; + i2 >> weights_json; + + // Get the input size of the JSON file + int input_size_json = weights_json["/model_data/input_size"_json_pointer]; + input_size = input_size_json; + + // Load the appropriate model + if (input_size == 1) { + set_weights(&model, filename); + } + else if (input_size == 2) { + set_weights(&model_cond1, filename); + } + else if (input_size == 3) { + set_weights(&model_cond2, filename); + } +} + + +void RT_LSTM::reset() +{ + if (input_size == 1) { + model.reset(); + } else { + model_cond1.reset(); + } +} + +void RT_LSTM::process(const float* inData, float* outData, int numSamples) +{ + for (int i = 0; i < numSamples; ++i) + outData[i] = model.forward(inData + i) + inData[i]; +} + +void RT_LSTM::process(const float* inData, float param, float* outData, int numSamples) +{ + for (int i = 0; i < numSamples; ++i) { + inArray1[0] = inData[i]; + inArray1[1] = param; + outData[i] = model_cond1.forward(inArray1) + inData[i]; + } +} + +void RT_LSTM::process(const float* inData, float param1, float param2, float* outData, int numSamples) +{ + for (int i = 0; i < numSamples; ++i) { + inArray2[0] = inData[i]; + inArray2[1] = param1; + inArray2[2] = param2; + outData[i] = model_cond2.forward(inArray2) + inData[i]; + } +} + diff --git a/src/RTNeuralLSTM.h b/src/RTNeuralLSTM.h @@ -0,0 +1,38 @@ +#pragma once + +#include <RTNeural/RTNeural.h> + +class RT_LSTM +{ +public: + RT_LSTM() = default; + + void reset(); + void load_json(const char* filename); + template <typename T1> + + void set_weights(T1 model, const char* filename); + + void process(const float* inData, float* outData, int numSamples); + void process(const float* inData, float param, float* outData, int numSamples); + void process(const float* inData, float param1, float param2, float* outData, int numSamples); + + int input_size = 1; + +private: + RTNeural::ModelT<float, 1, 1, + RTNeural::LSTMLayerT<float, 1, 20>, + RTNeural::DenseT<float, 20, 1>> model; + + RTNeural::ModelT<float, 2, 1, + RTNeural::LSTMLayerT<float, 2, 20>, + RTNeural::DenseT<float, 20, 1>> model_cond1; + + RTNeural::ModelT<float, 3, 1, + RTNeural::LSTMLayerT<float, 3, 20>, + RTNeural::DenseT<float, 20, 1>> model_cond2; + + // Pre-Allowcate arrays for feeding the models + float inArray1[2] = { 0.0, 0.0 }; + float inArray2[3] = { 0.0, 0.0, 0.0 }; +}; diff --git a/src/myLookAndFeel.cpp b/src/myLookAndFeel.cpp @@ -0,0 +1,53 @@ +/* + ============================================================================== + + Created: 14 Dec 2017 10:16:04am + Author: Stefan Remberg + + Modified by keyth72 + + ============================================================================== +*/ + +#include "myLookAndFeel.h" + +//============================================================================== +myLookAndFeel::myLookAndFeel() +{ +} + +//============================================================================== +void myLookAndFeel::setLookAndFeel(Image inputImage) +{ + img = inputImage; +} + + +//============================================================================== +void myLookAndFeel::drawRotarySlider(Graphics& g, + int x, int y, int width, int height, float sliderPos, + float rotaryStartAngle, float rotaryEndAngle, Slider& slider) +{ + const double rotation = (slider.getValue() + - slider.getMinimum()) + / (slider.getMaximum() + - slider.getMinimum()); + + const int frames = img.getHeight() / img.getWidth(); + const int frameId = (int)ceil(rotation * ((double)frames - 1.0)); + const float radius = jmin(width / 2.0f, height / 2.0f); + const float centerX = x + width * 0.5f; + const float centerY = y + height * 0.5f; + const float rx = centerX - radius - 1.0f; + const float ry = centerY - radius; + + g.drawImage(img, + (int)rx, + (int)ry, + 2 * (int)radius, + 2 * (int)radius, + 0, + frameId*img.getWidth(), + img.getWidth(), + img.getWidth()); +} diff --git a/src/myLookAndFeel.h b/src/myLookAndFeel.h @@ -0,0 +1,29 @@ +/* + ============================================================================== + + Created: 14 Dec 2017 10:16:04am + Author: Stefan Remberg + + Modified by keyth72 + + ============================================================================== +*/ + +#pragma once +#include "../JuceLibraryCode/JuceHeader.h" + + +//============================================================================== +class myLookAndFeel : public LookAndFeel_V4 +{ + +public: + myLookAndFeel(); + void setLookAndFeel(Image inputImage); + void drawRotarySlider(Graphics& g, int x, int y, int width, int height, float sliderPos, + float rotaryStartAngle, float rotaryEndAngle, Slider& slider) override; + +private: + Image img; + +}; diff --git a/validate.sh b/validate.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +# install functions +install_pluginval_linux() +{ + curl -L "https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_Linux.zip" -o pluginval.zip + unzip pluginval > /dev/null + echo "./pluginval" +} + +install_pluginval_mac() +{ + curl -L "https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_macOS.zip" -o pluginval.zip + unzip pluginval > /dev/null + echo "pluginval.app/Contents/MacOS/pluginval" +} + +install_pluginval_win() +{ + powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_Windows.zip -OutFile pluginval.zip" + powershell -Command "Expand-Archive pluginval.zip -DestinationPath ." + echo "./pluginval.exe" +} + +# install +if [[ "$OSTYPE" == "linux-gnu"* ]]; then + pluginval=$(install_pluginval_linux) + plugin="Plugin/build/Proteus_artefacts/Release/VST3/TS-M1N3.vst3" +elif [[ "$OSTYPE" == "darwin"* ]]; then + pluginval=$(install_pluginval_mac) + plugin="Plugin/build/Proteus_artefacts/VST3/TS-M1N3.vst3" +else + pluginval=$(install_pluginval_win) + plugin="Plugin/build/Proteus_artefacts/Release/VST3/TS-M1N3.vst3" +fi + +echo "Pluginval installed at ${pluginval}" +echo "Validating ${plugin}" + +n_tries=0 +result=1 +until [ "$n_tries" -ge 4 ] || [ "$result" -eq 0 ] +do + $pluginval --strictness-level 8 --timeout-ms 90000 --validate-in-process --skip-gui-tests --validate $plugin + result=$? + n_tries=$((n_tries+1)) +done + +# clean up +rm -Rf pluginval* +exit $result diff --git a/win_builds.sh b/win_builds.sh @@ -0,0 +1,48 @@ +#!/bin/bash + +build64(){ + #cmake -Bbuild -G"Visual Studio 15 2017 Win64" + cmake -Bbuild -G "Visual Studio 16 2019" -A x64 + cmake --build build --config Release -j4 +} + +# exit on failure +set -e + +# clean up old builds +rm -Rf build/ +rm -Rf bin/*Win64* + +# set up VST and ASIO paths +sed -i -e "9s/#//" CMakeLists.txt +sed -i -e "10s/#//" CMakeLists.txt +sed -i -e '16s/#//' CMakeLists.txt + +# cmake new builds +build64 & +wait + +# copy builds to bin +mkdir -p bin/Win64 +declare -a plugins=("Proteus") +for plugin in "${plugins[@]}"; do + cp -R build/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Win64/${plugin}.vst3 +done + +# reset CMakeLists.txt +#git restore CMakeLists.txt + +# zip builds +VERSION=$(cut -f 2 -d '=' <<< "$(grep 'CMAKE_PROJECT_VERSION:STATIC' build/CMakeCache.txt)") +( + cd bin + rm -f "Proteus-Win64-${VERSION}.zip" + tar -a -c -f "Proteus-Win64-${VERSION}.zip" Win64 +) + +# create installer +echo "Creating installer..." +( + cd installers/windows + bash build_win_installer.sh +)