Wwise SDK 2022.1.17
|
This page will guide you through the different elements of a Windows graphical user interface (GUI) implementation.
참고: The Wwise Authoring application on macOS runs through Crossover, a bridge layer based on the open source project Wine. By creating a GUI implementation for Windows, this same implementation will run on macOS using this solution. |
The base class AK::Wwise::Plugin::GUIWindows
provides methods to implement that offer a way for Wwise to instantiate specific types of dialogs with controls bound to the plug-in's properties. A standard Win32 window procedure (a "WindowProc") is provided to allow your plug-in to act upon Windows events targeted at your plug-in view instance.
The Wwise Authoring application instantiates your plug-in GUI in the following way:
AK::Wwise::Plugin::GUIWindows::GetDialog()
(See Dialog Acquisition).The following sections describe how to implement each method.
The Wwise Authoring GUI on Windows is built with the Microsoft Foundation Classes (MFC). While using MFC is optional for your plug-in, if you wish to do so you will need to initialize the library. This is provided through the service AK::Wwise::Plugin::PluginMFCWindows
. Make sure to make it the first base class so that it is initialized before anything else.
참고: Do not derive from this base class in the backend part of your plug-in, as it should not require MFC or any other GUI-related library. |
The resource handle is of type HINSTANCE and corresponds to your dynamic library holding the resource data compiled from a .rc
file. It can be created using Microsoft Visual Studio and holds your custom dialogs and their content. For more information on resource files, consult the Microsoft documentation about how to create resource files.
The default implementation provides the module instance from a builtin injected by the MSVC linker.
You don't need to implement this function unless a different module owns your dialog resources.
To create a resource file (.rc
), refer to 플러그인의 리소스 파일 생성하기.
There exists two types of dialogs currently defined by Wwise in AK::Wwise::Plugin::eDialog
:
SettingsDialog
: Main plug-in dialog used for the Source or Effect EditorContentsEditorDialog
: Small dialog used by Source plug-ins only in the Contents EditorThe dialog that is provided back to Wwise is then instantiated using the provided Resource Handle. To bind properties to the controls of your dialogs, a table that maps control IDs to the property names as found in the XML definition of your plug-in is used. This table is created using macros as follows:
In this example, the table maps the control IDC_MYPROPERTY_EDIT
(from the resource.h file accompanying the .rc file) to the property MyProperty
, which must correspond to a property defined in the plug-in's XML definition.
This instantiates a variable PropertyTable
that can then be forwarded to the Wwise Authoring application on GetDialog():
Returning false in this function will simply not instantiate a dialog and a default one will be instantiated in its place.
Refer to Wwise 플러그인 대화 상자 참고 자료 for a complete description of the controls you can use in your dialog, how to bind them to properties, and so on.
If UI changes require specific actions, such as enabling or disabling controls, you can carry these out by interpreting the window messages received in the AK::Wwise::Plugin::GUIWindows::WindowProc()
function:
When a Wwise user clicks on the '?' icon in a plug-in's dialog title bar, AK::Wwise::Plugin::GUIWindows::Help()
is called on that plug-in's frontend. You can implement Help with various tools, including HTMLHelp, WinHelp, or a third-party Help browser. The function receives a window handle that can be used as the parent for any window you want to display. The AK::Wwise::Plugin::eDialog
parameter allows you to choose a specific Help topic to match the dialog the Wwise user currently has open. This function must return true
if you handled the Help request, or false
otherwise, in which case Wwise will display a Help topic related to the Plug-in Manager.
참고: As previously mentioned, source plug-ins have two dialogs. The AK::Wwise::Plugin::eDialog parameter should be used if your source plug-in has separate Help topics for its two dialogs. |
Here is an example of a source plug-in that uses HTML help, with MFC providing the path to the file:
경고: The AK::Wwise::Plugin::GUIWindows::Help() method should NOT call AfxGetApp()->HtmlHelp(). It will launch the Help window from the wrong parent window which will make floating views behave unexpectedly. Instead, use HtmlHelp() with a NULL window handle, as shown the example above. |
프로젝트를 등록하세요. 아무런 조건이나 의무 사항 없이 빠른 시작을 도와드리겠습니다.
Wwise를 시작해 보세요