WwiseProjectSupport.h (2273B)
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/WaapiClient.h" 19 20 #include <juce_gui_basics/juce_gui_basics.h> 21 22 namespace AK::WwiseTransfer 23 { 24 class WwiseProjectSupport 25 : juce::ValueTree::Listener 26 { 27 public: 28 WwiseProjectSupport(juce::ValueTree appState, WaapiClient& waapiClient); 29 ~WwiseProjectSupport(); 30 31 private: 32 WaapiClient& waapiClient; 33 34 juce::ValueTree applicationState; 35 juce::ValueTree hierarchyMapping; 36 juce::ValueTree languages; 37 38 juce::CachedValue<bool> waapiConnected; 39 juce::CachedValue<juce::String> projectPath; 40 juce::CachedValue<juce::String> projectId; 41 juce::CachedValue<bool> additionalProjectInfoLookupEnabled; 42 juce::CachedValue<juce::String> originalsFolder; 43 juce::CachedValue<juce::String> languageSubfolder; 44 juce::CachedValue<juce::String> referenceLanguage; 45 46 void valueTreePropertyChanged(juce::ValueTree& treeWhosePropertyHasChanged, const juce::Identifier& property) override; 47 void valueTreeChildAdded(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenAdded) override; 48 void valueTreeChildRemoved(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenRemoved, int indexFromWhichChildWasRemoved) override; 49 void valueTreeChildOrderChanged(juce::ValueTree& parentTreeWhoseChildrenHaveMoved, int oldIndex, int newIndex) override; 50 51 void loadProjectInfo(); 52 53 void loadAdditionalProjectInfo(); 54 void resetAdditionalProjectInfo(); 55 56 void loadProjectLanguages(); 57 58 void updateLanguageSubpath(); 59 void updateLangugeForHierarchyMappingNodes(); 60 }; 61 } // namespace AK::WwiseTransfer