ApplicationStateValidator.h (2077B)
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 "Core/WaapiClient.h" 20 #include "Model/Wwise.h" 21 22 #include <juce_data_structures/juce_data_structures.h> 23 24 namespace AK::WwiseTransfer::ApplicationState 25 { 26 class Validator 27 : juce::ValueTree::Listener 28 { 29 public: 30 Validator(juce::ValueTree appState, WaapiClient& waapiClient); 31 ~Validator(); 32 33 private: 34 juce::ValueTree applicationState; 35 WaapiClient& waapiClient; 36 37 void valueTreePropertyChanged(juce::ValueTree& valueTree, const juce::Identifier& property) override; 38 void valueTreeChildAdded(juce::ValueTree& parent, juce::ValueTree& child) 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 bool validateImportDestination(const juce::String& importDestination); 43 bool validateOriginalsSubfolder(const juce::String& originalsFolder, const juce::String& languageSubfolder, const juce::String& originalsSubfolder); 44 void validatePropertyTemplatePath(juce::ValueTree hierarchyMappingNode); 45 void validateObjectName(juce::ValueTree hierarchyMappingNode); 46 void validateHierarchyMapping(Wwise::ObjectType importDestinationType, juce::ValueTree hierarchyMapping); 47 }; 48 } // namespace AK::WwiseTransfer::ApplicationState