ReaWwise

REAPER extension
Log | Files | Refs | Submodules

PersistanceSupport.h (1558B)


      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 "Model/Import.h"
     20 
     21 #include <unordered_map>
     22 
     23 namespace AK::WwiseTransfer
     24 {
     25 	class PersistanceSupport
     26 		: juce::ValueTree::Listener
     27 	{
     28 	public:
     29 		PersistanceSupport(juce::ValueTree appState, DawContext& dawContext);
     30 		virtual ~PersistanceSupport();
     31 
     32 	private:
     33 		DawContext& dawContext;
     34 		juce::ValueTree applicationState;
     35 
     36 		std::unordered_map<juce::String, juce::ValueTree> stateCache;
     37 
     38 		void valueTreePropertyChanged(juce::ValueTree& treeWhosePropertyHasChanged, const juce::Identifier& property) override;
     39 		void valueTreeChildRemoved(juce::ValueTree& parent, juce::ValueTree& child, int indexOfChild) override;
     40 		void valueTreeChildOrderChanged(juce::ValueTree& parent, int oldIndex, int newIndex) override;
     41 
     42 		void saveState();
     43 	};
     44 } // namespace AK::WwiseTransfer