ReaWwise

REAPER extension
Log | Files | Refs | Submodules

StubContext.h (1680B)


      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 
     20 #include <vector>
     21 
     22 namespace AK::WwiseTransfer
     23 {
     24 	class StubContext
     25 		: public DawContext
     26 	{
     27 	public:
     28 		bool sessionChanged() override
     29 		{
     30 			return false;
     31 		}
     32 
     33 		std::vector<Import::PreviewItem> getItemsForPreview(const Import::Options& options) override
     34 		{
     35 			return std::vector<Import::PreviewItem>{{"\\A\\B\\C", juce::String(), juce::String()}};
     36 		}
     37 
     38 		std::vector<Import::Item> getItemsForImport(const Import::Options& options) override
     39 		{
     40 			return std::vector<Import::Item>{{"\\A\\B\\C", juce::String(), juce::String(), juce::String()}};
     41 		}
     42 
     43 		void renderItems() override
     44 		{
     45 		}
     46 
     47 		// Inherited via DawContext
     48 		juce::String getSessionName() override
     49 		{
     50 			return juce::String();
     51 		}
     52 
     53 		bool saveState(juce::ValueTree applicationState) override
     54 		{
     55 			return true;
     56 		}
     57 
     58 		juce::ValueTree retrieveState() override
     59 		{
     60 			return juce::ValueTree();
     61 		}
     62 	};
     63 } // namespace AK::WwiseTransfer