Waapi.h (3006B)
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 "AK/WwiseAuthoringAPI/AkAutobahn/AkJson.h" 19 #include "Helpers/WwiseHelper.h" 20 #include "Model/Wwise.h" 21 22 #include <juce_gui_basics/juce_gui_basics.h> 23 #include <set> 24 25 namespace AK::WwiseTransfer::Waapi 26 { 27 struct ImportItemRequest 28 { 29 juce::String path; 30 juce::String originalsSubFolder; 31 juce::String renderFilePath; 32 juce::String renderFileWavBase64; 33 juce::String renderFileName; 34 }; 35 36 struct ProjectInfo 37 { 38 juce::String projectPath; 39 juce::String projectId; 40 }; 41 42 struct AdditionalProjectInfo 43 { 44 juce::String originalsFolder; 45 juce::String referenceLanguage; 46 }; 47 48 struct ObjectResponse 49 { 50 ObjectResponse(AK::WwiseAuthoringAPI::AkJson json) 51 : id(json.HasKey("id") ? juce::String(json["id"].GetVariant().GetString()) : "") 52 , name(json.HasKey("name") ? json["name"].GetVariant().GetString() : "") 53 , type(WwiseHelper::stringToObjectType(json.HasKey("type") ? json["type"].GetVariant().GetString() : "")) 54 , path(json.HasKey("path") ? json["path"].GetVariant().GetString() : "") 55 , originalWavFilePath(json.HasKey("sound:originalWavFilePath") ? json["sound:originalWavFilePath"].GetVariant().GetString() : "") 56 { 57 if(json.HasKey("workunitType")) 58 { 59 auto workUnitType = json["workunitType"].GetVariant().GetString(); 60 61 if(path == "\\Actor-Mixer Hierarchy") 62 type = Wwise::ObjectType::ActorMixer; 63 else if(workUnitType == "folder") 64 type = Wwise::ObjectType::PhysicalFolder; 65 } 66 } 67 68 ObjectResponse() = default; 69 70 bool operator==(const ObjectResponse& other) const 71 { 72 return path == other.path && id == other.id; 73 } 74 75 bool operator<(const ObjectResponse& other) const 76 { 77 return path + id < other.path + other.id; 78 } 79 80 juce::String id; 81 juce::String name; 82 Wwise::ObjectType type{Wwise::ObjectType::Unknown}; 83 juce::String path; 84 juce::String originalWavFilePath; 85 }; 86 87 using ObjectResponseSet = std::set<ObjectResponse>; 88 89 struct PastePropertiesRequest 90 { 91 juce::String source; 92 std::vector<juce::String> targets; 93 }; 94 95 struct Error 96 { 97 juce::String uri; 98 juce::String procedureUri; 99 juce::String message; 100 juce::String raw; 101 }; 102 103 template <typename Result> 104 struct Response 105 { 106 bool status = false; 107 Result result; 108 Error error; 109 }; 110 111 } // namespace AK::WwiseTransfer::Waapi