ReaperPlugin.h (2957B)
1 /*---------------------------------------------------------------------------------------- 2 3 Copyright (c) 2023 AUDIOKINETIC Inc. 4 5 This file is licensed to use under the license available at: 6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License"). 7 You may not use this file except in compliance with the License. 8 9 Unless required by applicable law or agreed to in writing, software distributed 10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 specific language governing permissions and limitations under the License. 13 14 ----------------------------------------------------------------------------------------*/ 15 16 #pragma once 17 18 #include "IReaperPlugin.h" 19 20 #include <reaper_plugin_functions.h> 21 22 namespace AK::ReaWwise 23 { 24 class ReaperPlugin : public IReaperPlugin 25 { 26 public: 27 ReaperPlugin(reaper_plugin_info_t* pluginInfo); 28 ~ReaperPlugin() override = default; 29 30 int getCallerVersion() const override; 31 int registerFunction(const char* name, void* infoStruct) const override; 32 bool isValid() const override; 33 void* getMainHwnd() override; 34 bool addExtensionsMainMenu() override; 35 ReaProject* enumProjects(int idx, char* projfnOutOptional, int projfnOutOptional_sz) override; 36 int resolveRenderPattern(ReaProject* project, const char* path, const char* pattern, char* targets, int targets_sz) override; 37 void main_OnCommand(int command, int flag) override; 38 int getProjExtState(ReaProject* proj, const char* extname, const char* key, char* valOutNeedBig, int valOutNeedBig_sz) override; 39 int setProjExtState(ReaProject* proj, const char* extname, const char* key, const char* value) override; 40 void markProjectDirty(ReaProject* proj) override; 41 int getProjectStateChangeCount(ReaProject* proj) override; 42 double getSetProjectInfo(ReaProject* proj, const char* desc, double value, bool is_set) override; 43 bool getSetProjectInfo_String(ReaProject* project, const char* desc, char* valuestrNeedBig, bool is_set) override; 44 int reallocCmdRegisterBuf(char** ptr, int* ptr_size) override; 45 void reallocCmdClear(int tok) override; 46 bool supportsReallocCommands() override; 47 48 private: 49 reaper_plugin_info_t* pluginInfo; 50 decltype(GetMainHwnd) _getMainHwnd; 51 decltype(AddExtensionsMainMenu) _addExtensionsMainMenu; 52 decltype(EnumProjects) _enumProjects; 53 decltype(GetSetProjectInfo_String) _getSetProjectInfo_String; 54 decltype(ResolveRenderPattern) _resolveRenderPattern; 55 decltype(Main_OnCommand) _main_OnCommand; 56 decltype(GetProjExtState) _getProjExtState; 57 decltype(SetProjExtState) _setProjExtState; 58 decltype(MarkProjectDirty) _markProjectDirty; 59 decltype(GetProjectStateChangeCount) _getProjectStateChangeCount; 60 decltype(GetSetProjectInfo) _getSetProjectInfo; 61 decltype(realloc_cmd_register_buf) _realloc_cmd_register_buf; 62 decltype(realloc_cmd_clear) _realloc_cmd_clear; 63 }; 64 } // namespace AK::ReaWwise