AkWaapiUriList.inc 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*******************************************************************************
  2. The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
  3. Technology released in source code form as part of the game integration package.
  4. The content of this file may not be used without valid licenses to the
  5. AUDIOKINETIC Wwise Technology.
  6. Note that the use of the game engine is subject to the Unreal(R) Engine End User
  7. License Agreement at https://www.unrealengine.com/en-US/eula/unreal
  8. License Usage
  9. Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
  10. this file in accordance with the end user license agreement provided with the
  11. software or, alternatively, in accordance with the terms contained
  12. in a written agreement between you and Audiokinetic Inc.
  13. Copyright (c) 2023 Audiokinetic Inc.
  14. *******************************************************************************/
  15. static const FString FullUriList[] = {
  16. // Retrieve global Wwise information.
  17. TEXT("ak.wwise.core.getInfo"),
  18. // Bring Wwise main window to foreground. Refer to SetForegroundWindow and AllowSetForegroundWindow on MSDN for more information on the restrictions. Refer to ak.wwise.core.getInfo to obtain the Wwise process ID for AllowSetForegroundWindow.
  19. TEXT("ak.wwise.ui.bringToForeground"),
  20. // Asynchronously post an Event to the sound engine (by event ID). See <tt>AK::SoundEngine::PostEvent</tt>.
  21. TEXT("ak.soundengine.postEvent"),
  22. // Executes an action on all nodes that are referenced in the specified event in a Play action. See <tt>AK::SoundEngine::ExecuteActionOnEvent</tt>.
  23. TEXT("ak.soundengine.executeActionOnEvent"),
  24. // Register a game object. Registering a game object twice does nothing. Unregistering it once unregisters it no matter how many times it has been registered. See <tt>AK::SoundEngine::RegisterGameObj</tt>.
  25. TEXT("ak.soundengine.registerGameObj"),
  26. // Stops the current content, associated to the specified playing ID, from playing. See <tt>AK::SoundEngine::StopPlayingID</tt>.
  27. TEXT("ak.soundengine.stopPlayingID"),
  28. // Stop playing the current content associated to the specified game object ID. If no game object is specified, all sounds are stopped. See <tt>AK::SoundEngine::StopAll</tt>.
  29. TEXT("ak.soundengine.stopAll"),
  30. // Display a message in the Profiler's Capture Log view.
  31. TEXT("ak.soundengine.postMsgMonitor"),
  32. // Set a game object's obstruction and occlusion levels. This function is used to affect how an object should be heard by a specific listener. See <tt>AK::SoundEngine::SetObjectObstructionAndOcclusion</tt>.
  33. TEXT("ak.soundengine.setObjectObstructionAndOcclusion"),
  34. // Set the output bus volume (direct) to be used for the specified game object. See <tt>AK::SoundEngine::SetGameObjectOutputBusVolume</tt>.
  35. TEXT("ak.soundengine.setGameObjectOutputBusVolume"),
  36. // Sets the Auxiliary Busses to route the specified game object. See <tt>AK::SoundEngine::SetGameObjectAuxSendValues</tt>.
  37. TEXT("ak.soundengine.setGameObjectAuxSendValues"),
  38. // Posts the specified Trigger. See <tt>AK::SoundEngine::PostTrigger</tt>.
  39. TEXT("ak.soundengine.postTrigger"),
  40. // Sets the State of a Switch Group. See <tt>AK::SoundEngine::SetSwitch</tt>.
  41. TEXT("ak.soundengine.setSwitch"),
  42. // Sets the State of a State Group. See <tt>AK::SoundEngine::SetState</tt>.
  43. TEXT("ak.soundengine.setState"),
  44. // Resets the value of a real-time parameter control to its default value, as specified in the Wwise project. See <tt>AK::SoundEngine::ResetRTPCValue</tt>.
  45. TEXT("ak.soundengine.resetRTPCValue"),
  46. // Sets the value of a real-time parameter control. See <tt>AK::SoundEngine::SetRTPCValue</tt>.
  47. TEXT("ak.soundengine.setRTPCValue"),
  48. // Sets a listener's spatialization parameters. This lets you define listener-specific volume offsets for each audio channel. See <tt>AK::SoundEngine::SetListenerSpatialization</tt>.
  49. TEXT("ak.soundengine.setListenerSpatialization"),
  50. // Sets multiple positions for a single game object. Setting multiple positions for a single game object is a way to simulate multiple emission sources while using the resources of only one voice. This can be used to simulate wall openings, area sounds, or multiple objects emitting the same sound in the same area. See <tt>AK::SoundEngine::SetMultiplePositions</tt>.
  51. TEXT("ak.soundengine.setMultiplePositions"),
  52. // Sets the position of a game object. See <tt>AK::SoundEngine::SetPosition</tt>.
  53. TEXT("ak.soundengine.setPosition"),
  54. // Sets the scaling factor of a game object. You can modify the attenuation computations on this game object to simulate sounds with a larger or smaller affected areas. See <tt>AK::SoundEngine::SetScalingFactor</tt>.
  55. TEXT("ak.soundengine.setScalingFactor"),
  56. // Sets the default active listeners for all subsequent game objects that are registered. See <tt>AK::SoundEngine::SetDefaultListeners</tt>.
  57. TEXT("ak.soundengine.setDefaultListeners"),
  58. // Sets a single game object's active listeners. By default, all new game objects have no listeners active, but this behavior can be overridden with <tt>SetDefaultListeners()</tt>. Inactive listeners are not computed. See <tt>AK::SoundEngine::SetListeners</tt>.
  59. TEXT("ak.soundengine.setListeners"),
  60. // Seeks inside all playing objects that are referenced in Play Actions of the specified Event. See <tt>AK::SoundEngine::SeekOnEvent</tt>.
  61. TEXT("ak.soundengine.seekOnEvent"),
  62. // Unregisters a game object. Registering a game object twice does nothing. Unregistering it once unregisters it no matter how many times it has been registered. Unregistering a game object while it is in use is allowed, but the control over the parameters of this game object is lost. For example, say a sound associated with this game object is a 3D moving sound. It stops moving when the game object is unregistered, and there is no way to regain control over the game object. See <tt>AK::SoundEngine::UnregisterGameObj</tt>.
  63. TEXT("ak.soundengine.unregisterGameObj"),
  64. // Retrieves the list of topics to which a client can subscribe.
  65. TEXT("ak.wwise.waapi.getTopics"),
  66. // Retrieves the list of functions.
  67. TEXT("ak.wwise.waapi.getFunctions"),
  68. // Retrieves the JSON schema of a Waapi URI.
  69. TEXT("ak.wwise.waapi.getSchema"),
  70. // Opens a project, specified by path. Please refer to \ref ak_wwise_core_project_loaded for further explanations on how to be notified when the operation has completed.
  71. TEXT("ak.wwise.ui.project.open"),
  72. // Closes the current project.
  73. TEXT("ak.wwise.ui.project.close"),
  74. // Saves the current project.
  75. TEXT("ak.wwise.core.project.save"),
  76. // Renames an object.
  77. TEXT("ak.wwise.core.object.setName"),
  78. // Sets an object's reference value. Refer to \ref wobjects_index for more information on the references available on each object type.
  79. TEXT("ak.wwise.core.object.setReference"),
  80. // Sets a property value of an object for a specific platform. Refer to \ref wobjects_index for more information on the properties available on each object type. Refer to \ref ak_wwise_core_object_setreference to set a reference to an object.
  81. TEXT("ak.wwise.core.object.setProperty"),
  82. // Sets the randomizer values of a property of an object for a specific platform. Refer to \ref wobjects_index for more information on the properties available on each object type.
  83. TEXT("ak.wwise.core.object.setRandomizer"),
  84. // Sets the object's notes.
  85. TEXT("ak.wwise.core.object.setNotes"),
  86. // Executes a command. Some commands can take a list of objects as parameters. Refer to \ref globalcommandsids for the available commands.
  87. TEXT("ak.wwise.ui.commands.execute"),
  88. // Gets the list of commands.
  89. TEXT("ak.wwise.ui.commands.getCommands"),
  90. // Retrieves the list of objects currently selected by the user in the active view.
  91. TEXT("ak.wwise.ui.getSelectedObjects"),
  92. // Gets the specified attenuation curve for a given attenuation object.
  93. TEXT("ak.wwise.core.object.getAttenuationCurve"),
  94. // Sets the specified attenuation curve for a given attenuation object.
  95. TEXT("ak.wwise.core.object.setAttenuationCurve"),
  96. // Assigns a Switch Container's child to a Switch. This is the equivalent of doing a drag&drop of the child to a state in the Assigned Objects view. The child is always added at the end for each state.
  97. TEXT("ak.wwise.core.switchContainer.addAssignment"),
  98. // Removes an assignment between a Switch Container's child and a State.
  99. TEXT("ak.wwise.core.switchContainer.removeAssignment"),
  100. // Returns the list of assignments between a Switch Container's children and states.
  101. TEXT("ak.wwise.core.switchContainer.getAssignments"),
  102. // Creates an object of type 'type', as a child of 'parent'. Refer to \ref waapi_import for more information about creating objects. Also refer to \ref ak_wwise_core_audio_import to import audio files to Wwise.
  103. TEXT("ak.wwise.core.object.create"),
  104. // Moves an object to the given parent. Returns the moved object.
  105. TEXT("ak.wwise.core.object.move"),
  106. // Copies an object to the given parent.
  107. TEXT("ak.wwise.core.object.copy"),
  108. // Deletes the specified object.
  109. TEXT("ak.wwise.core.object.delete"),
  110. // Performs a query and returns specified data for each object in query result. Refer to \ref waapi_query for more information.
  111. TEXT("ak.wwise.core.object.get"),
  112. // Creates Wwise objects and imports audio files. This function uses the same importation processor available through the Tab Delimited import in the Audio File Importer. The function returns an array of all objects created, replaced or re-used. Use the options to specify how the objects are returned. For more information, refer to \ref waapi_import.
  113. TEXT("ak.wwise.core.audio.import"),
  114. // Scripted object creation and audio file import from a tab-delimited file.
  115. TEXT("ak.wwise.core.audio.importTabDelimited"),
  116. // Connects the Wwise Authoring application to a Wwise Sound Engine running executable. The host must be running code with communication enabled. If only "host" is provided, Wwise connects to the first Sound Engine instance found. To distinguish between different instances, you can also provide the name of the application to connect to.
  117. TEXT("ak.wwise.core.remote.connect"),
  118. // Disconnects the Wwise Authoring application from a connected Wwise Sound Engine running executable.
  119. TEXT("ak.wwise.core.remote.disconnect"),
  120. // Retrieves all consoles available for connecting Wwise Authoring to a Sound Engine instance.
  121. TEXT("ak.wwise.core.remote.getAvailableConsoles"),
  122. // Retrieves the connection status.
  123. TEXT("ak.wwise.core.remote.getConnectionStatus"),
  124. // Begins an undo group. Make sure to call \ref ak_wwise_core_undo_endgroup exactly once for every ak.wwise.core.beginUndoGroup call you make. Calls to ak.wwise.core.undo.beginGroup can be nested.
  125. TEXT("ak.wwise.core.undo.beginGroup"),
  126. // Cancels the last undo group. Please note that this does not revert the operations made since the last \ref ak_wwise_core_undo_begingroup call.
  127. TEXT("ak.wwise.core.undo.cancelGroup"),
  128. // Ends the last undo group.
  129. TEXT("ak.wwise.core.undo.endGroup"),
  130. // Retrieves the list of all object types registered in Wwise's object model. This function returns the equivalent of \ref wobjects_index .
  131. // \deprecated in favor of ak.wwise.core.object.getTypes
  132. TEXT("ak.wwise.core.plugin.getList"),
  133. // Retrieves the list of all object types registered in Wwise's object model. This function returns the equivalent of \ref wobjects_index .
  134. TEXT("ak.wwise.core.object.getTypes"),
  135. // Retrieves information about an object property.
  136. // \deprecated in favor of ak.wwise.core.object.getPropertyInfo
  137. TEXT("ak.wwise.core.plugin.getProperty"),
  138. // Retrieves information about an object property.
  139. TEXT("ak.wwise.core.object.getPropertyInfo"),
  140. // Retrieves the list of property and reference names for an object.
  141. // \deprecated in favor of ak.wwise.core.object.getPropertyAndReferenceNames
  142. TEXT("ak.wwise.core.plugin.getProperties"),
  143. // Retrieves the list of property and reference names for an object.
  144. // \deprecated in favor of ak.wwise.core.object.getPropertyAndReferenceNames
  145. TEXT("ak.wwise.core.object.getPropertyNames"),
  146. // Retrieves the list of property and reference names for an object.
  147. TEXT("ak.wwise.core.object.getPropertyAndReferenceNames"),
  148. // Returns true if a property is enabled based on the values of the properties it depends on.
  149. TEXT("ak.wwise.core.object.isPropertyEnabled"),
  150. // Enables debug assertions. Every call to enableAsserts with 'false' increments the ref count. Calling with true decrements the ref count. This is only available with Debug builds.
  151. TEXT("ak.wwise.debug.enableAsserts"),
  152. // Private use only.
  153. TEXT("ak.wwise.debug.testAssert"),
  154. // Private use only.
  155. TEXT("ak.wwise.debug.testCrash"),
  156. // Enables or disables the automation mode for Wwise. This reduces the potential interruptions caused by message boxes and dialogs. For instance, enabling the automation mode silently accepts: project migration, project load log, EULA acceptance, project licence display and generic message boxes.
  157. TEXT("ak.wwise.debug.enableAutomationMode"),
  158. // Captures a part of the Wwise UI relative to a view.
  159. TEXT("ak.wwise.ui.captureScreen"),
  160. // Retrieves a SoundBank's inclusion list.
  161. TEXT("ak.wwise.core.soundbank.getInclusions"),
  162. // Modifies a SoundBank's inclusion list. The 'operation' argument determines how the 'inclusions' argument modifies the SoundBank's inclusion list; 'inclusions' may be added to / removed from / replace the SoundBank's inclusion list.
  163. TEXT("ak.wwise.core.soundbank.setInclusions"),
  164. // Generate a list of SoundBank in memory without writing them to disk, subscribe to ak.wwise.core.soundbank.generated to get SoundBank structure info and the bank data as base64.
  165. TEXT("ak.wwise.core.soundbank.generate"),
  166. // Migrate and save the project.
  167. TEXT("ak.wwise.cli.migrate"),
  168. // Imports a tab-delimited file to create and modify different object hierarchies. The project is automatically migrated (if required). It is also automatically saved following the import.
  169. TEXT("ak.wwise.cli.tabDelimitedImport"),
  170. // Starts a command-line Wwise Authoring API server, to which client applications, using the Wwise Authoring API, can connect.
  171. TEXT("ak.wwise.cli.waapiServer"),
  172. // Creates a blank new project. The project must not already exist. If the folder does not exist, it is created.
  173. TEXT("ak.wwise.cli.createNewProject"),
  174. // Dump the objects model of a project as a JSON file.
  175. TEXT("ak.wwise.cli.dumpObjects"),
  176. // Adds a new platform to a project. The platform must not already exist.
  177. TEXT("ak.wwise.cli.addNewPlatform"),
  178. // External Source conversion. While External Source conversion is also triggered by SoundBank generation, this operation can be used to process sources not contained in the Wwise Project.
  179. TEXT("ak.wwise.cli.convertExternalSource"),
  180. // SoundBank generation. SoundBank generation is performed according to the settings stored in the project. Custom user settings are ignored when SoundBank generation is launched from the command line. However, some of these settings can be overridden from the command line.
  181. TEXT("ak.wwise.cli.generateSoundbank"),
  182. // Moves the project's media IDs from its work units (.wwu) to a single file, <project-name>.mediaid. This command will force a save of all the project's work units.
  183. TEXT("ak.wwise.cli.moveMediaIdsToSingleFile"),
  184. // Moves the project's media IDs from a single xml file <project-name>.mediaid to its work units (.wwu). This command will force a save of all the project's work units.
  185. TEXT("ak.wwise.cli.moveMediaIdsToWorkUnits"),
  186. // Loads the project and updates the contents of <project-name>.mediaid, if it exists.
  187. TEXT("ak.wwise.cli.updateMediaIdsInSingleFile"),
  188. // Retrieves the latest log for a specific channel. Refer to \ref ak_wwise_core_log_itemadded to be notified when a item is added to the log.
  189. TEXT("ak.wwise.core.log.get"),
  190. // Creates a transport object for the given Wwise object. The return transport object can be used to play, stop, pause and resume the Wwise object via the other transport functions.
  191. TEXT("ak.wwise.core.transport.create"),
  192. // Destroys the given transport object.
  193. TEXT("ak.wwise.core.transport.destroy"),
  194. // Gets the state of the given transport object.
  195. TEXT("ak.wwise.core.transport.getState"),
  196. // Returns the list of transport objects.
  197. TEXT("ak.wwise.core.transport.getList"),
  198. // Executes an action on the given transport object, or all transport objects if none is specified.
  199. TEXT("ak.wwise.core.transport.executeAction"),
  200. // Gets the min/max peak pairs, in the given region of an audio source, as a collection of binary strings (one per channel). The strings are base-64 encoded, 16-bit signed int arrays, with min and max values being interleaved. If getCrossChannelPeaks is true, only one binary string represents the peaks across all channels globally.
  201. TEXT("ak.wwise.core.audioSourcePeaks.getMinMaxPeaksInRegion"),
  202. // Gets the min/max peak pairs in the entire trimmed region of an audio source, for each channel, as an array of binary strings (one per channel). The strings are base-64 encoded, 16-bit signed int arrays, with min and max values being interleaved. If getCrossChannelPeaks is true, there is only one binary string representing peaks across all channels globally.
  203. TEXT("ak.wwise.core.audioSourcePeaks.getMinMaxPeaksInTrimmedRegion"),
  204. // Registers an array of add-on commands. Registered commands remain until the Wwise process is terminated. Refer to \ref defining_custom_commands for more information about registering commands. Also refer to \ref ak_wwise_ui_commands_executed.
  205. TEXT("ak.wwise.ui.commands.register"),
  206. // Unregisters an array of add-on UI commands.
  207. TEXT("ak.wwise.ui.commands.unregister"),
  208. // Retrieves the voices at a specific profiler capture time.
  209. TEXT("ak.wwise.core.profiler.getVoices"),
  210. // Retrieves active RTPCs at a specific profiler capture time.
  211. TEXT("ak.wwise.core.profiler.getRTPCs"),
  212. // Retrieves the busses at a specific profiler capture time.
  213. TEXT("ak.wwise.core.profiler.getBusses"),
  214. // Retrieves all parameters affecting voice volume, highpass and lowpass for a voice path, resolved from pipeline IDs.
  215. TEXT("ak.wwise.core.profiler.getVoiceContributions"),
  216. // Returns the current time of the specified profiler cursor, in milliseconds.
  217. TEXT("ak.wwise.core.profiler.getCursorTime"),
  218. // Starts the profiler capture and returns the time at the beginning of the capture, in milliseconds.
  219. TEXT("ak.wwise.core.profiler.startCapture"),
  220. // Stops the profiler capture and returns the time at the end of the capture, in milliseconds.
  221. TEXT("ak.wwise.core.profiler.stopCapture"),
  222. // Sent at the end of an import operation.
  223. TEXT("ak.wwise.core.audio.imported"),
  224. // Sent when an object reference is changed.
  225. TEXT("ak.wwise.core.object.referenceChanged"),
  226. // Sent when an assignment is added to a Switch Container.
  227. TEXT("ak.wwise.core.switchContainer.assignmentAdded"),
  228. // Sent when an assignment is removed from a Switch Container.
  229. TEXT("ak.wwise.core.switchContainer.assignmentRemoved"),
  230. // Sent when an object is renamed. Publishes the renamed object.
  231. TEXT("ak.wwise.core.object.nameChanged"),
  232. // Sent when the object's notes are changed.
  233. TEXT("ak.wwise.core.object.notesChanged"),
  234. // Sent when an object is created.
  235. TEXT("ak.wwise.core.object.created"),
  236. // Sent prior to an object's deletion.
  237. TEXT("ak.wwise.core.object.preDeleted"),
  238. // Sent following an object's deletion.
  239. TEXT("ak.wwise.core.object.postDeleted"),
  240. // Sent when an object is added as a child to another object.
  241. TEXT("ak.wwise.core.object.childAdded"),
  242. // Sent when an object is removed from the children of another object.
  243. TEXT("ak.wwise.core.object.childRemoved"),
  244. // Sent when one or many curves are changed.
  245. TEXT("ak.wwise.core.object.curveChanged"),
  246. // Sent when an attenuation curve is changed.
  247. TEXT("ak.wwise.core.object.attenuationCurveChanged"),
  248. // Sent when an attenuation curve's link/unlink is changed.
  249. TEXT("ak.wwise.core.object.attenuationCurveLinkChanged"),
  250. // Sent when the watched property of an object changes.
  251. TEXT("ak.wwise.core.object.propertyChanged"),
  252. // Sent when a single SoundBank is generated. This could be sent multiple times during SoundBank generation, for every SoundBank generated and for every platform. To generate SoundBanks, refer to \ref ak_wwise_ui_commands_execute with one of the SoundBank generation commands. Refer to \ref globalcommandsids for the list of commands.
  253. TEXT("ak.wwise.core.soundbank.generated"),
  254. // Sent when all soundbanks are generated.
  255. TEXT("ak.wwise.core.soundbank.generationDone"),
  256. // Sent when an item is added to the log. This could be used to retrieve items added to the SoundBank generation log. To retrieve the complete log, refer to \ref ak_wwise_core_log_get.
  257. TEXT("ak.wwise.core.log.itemAdded"),
  258. // Sent when the selection changes in the project.
  259. TEXT("ak.wwise.ui.selectionChanged"),
  260. // Sent when the project has been successfully loaded.
  261. TEXT("ak.wwise.core.project.loaded"),
  262. // Sent when the project begins closing.
  263. TEXT("ak.wwise.core.project.preClosed"),
  264. // Sent when the after the project is completely closed.
  265. TEXT("ak.wwise.core.project.postClosed"),
  266. // Sent when the project has been saved.
  267. TEXT("ak.wwise.core.project.saved"),
  268. // Sent when the transport's state has changed.
  269. TEXT("ak.wwise.core.transport.stateChanged"),
  270. // Sent when an assert has failed. This is only available in Debug builds.
  271. TEXT("ak.wwise.debug.assertFailed"),
  272. // Sent when a command is executed. The objects for which the command is executed are sent in the publication.
  273. TEXT("ak.wwise.ui.commands.executed"),
  274. };
  275. enum { FullUriListSize = sizeof(FullUriList) / sizeof(*FullUriList) };