ReaWwise

REAPER extension
Log | Files | Refs | Submodules

ReaperContext.h (2577B)


      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 "Core/DawContext.h"
     19 #include "IReaperPlugin.h"
     20 #include "Model/Import.h"
     21 
     22 namespace AK::ReaWwise
     23 {
     24 	class ReaperContext
     25 		: public WwiseTransfer::DawContext
     26 	{
     27 	public:
     28 		ReaperContext(IReaperPlugin& pluginInfo);
     29 		~ReaperContext() override;
     30 
     31 		bool sessionChanged() override;
     32 		juce::String getSessionName() override;
     33 		bool saveState(juce::ValueTree applicationState) override;
     34 		juce::ValueTree retrieveState() override;
     35 		void renderItems() override;
     36 		std::vector<WwiseTransfer::Import::PreviewItem> getItemsForPreview(const WwiseTransfer::Import::Options& options) override;
     37 		std::vector<WwiseTransfer::Import::Item> getItemsForImport(const WwiseTransfer::Import::Options& options) override;
     38 
     39 	private:
     40 		struct ProjectInfo
     41 		{
     42 			ReaProject* projectReference{};
     43 			juce::String projectName;
     44 			juce::String projectPath;
     45 		};
     46 
     47 		struct StateInfo
     48 		{
     49 			int projectStateCount{0};
     50 			double renderSource{0.0};
     51 			double renderBounds{0.0};
     52 			juce::String renderFile;
     53 			juce::String renderPattern;
     54 		};
     55 
     56 		struct ProjectStringBufferResult
     57 		{
     58 			bool status{false};
     59 			std::vector<char> buffer;
     60 		};
     61 
     62 		std::vector<juce::String> getItemListFromRenderPattern(ReaProject* project, const juce::String& pattern, bool suppressIllegalPaths = true);
     63 		ProjectInfo getProjectInfo() const;
     64 		juce::String getRenderPattern(const ProjectInfo& projectInfo) const;
     65 		std::vector<juce::String> getOriginalSubfolders(const ProjectInfo& projectInfo, const juce::String& originalsSubfolder);
     66 		std::vector<juce::String> getRenderTargets();
     67 		juce::String getProjectString(ReaProject* proj, const char* key) const;
     68 		ProjectStringBufferResult getProjectStringBuffer(ReaProject* proj, const char* key) const;
     69 
     70 		juce::CriticalSection apiAccess;
     71 		IReaperPlugin& reaperPlugin;
     72 		StateInfo stateInfo;
     73 	};
     74 } // namespace AK::ReaWwise