プロジェクトの初期化
|
注釈: Python 2.7を使う場合は、Microsoft Visual C++ Compiler for Python 2.7をインストールする必要があります。 |
依存関係をインストールするには、任意のディレクトリから次のコマンドを実行します。
Python 2.7を使う場合は、追加パッケージをインストールするために以下のコマンドを実行します:
pip install trollius futures
プロジェクトコード
|
注釈: from waapi_uri import WAAPI_URI 行は、APIパスの宣言をインポートします。
それは <Wwise installation path>/SDK/include/AK/WwiseAuthoringAPI/py にあります。ファイルの場所は、このサンプルでは sys.path を拡張してPythonのパスにダイナミックに追加しましたが、サンプルファイルの横にwaapi.py ファイルをコピー&ペーストすることも可能です。
追加のファイルak_authobahn.py は、WAAPIに送信されるカスタムオプションをサポートする特別なタイプのコンポーネントを提供しています。このファイルはサンプルのディレクトリにあります。
|
Python 2.7
サンプルファイル<Wwise installation path>/SDK/samples/WwiseAuthoringAPI/python/low-level/wwise-pubsub-wamp/get_ancestors_py2.py
を見つけます。
このファイルには、Wwise Authoring APIに接続できる次のコードが含まれています。
import sys
import os
import trollius as asyncio
from trollius import From
from autobahn.asyncio.wamp import ApplicationRunner
from ak_autobahn import AkComponent
sys.path.append(os.path.join(os.path.dirname(__file__), '../../../../../include/AK/WwiseAuthoringAPI/py'))
from waapi_uri import WAAPI_URI
done = False
class MyComponent(AkComponent):
def onJoin(self, details):
subscription = None
def on_object_created(**kwargs):
yield From(subscription.unsubscribe())
result = kwargs[u"object"]
print("The object was created in the category: {}".format(result.get(u"category", "unknown")))
arguments = {
u"from": {u"id": [result.get(u"id")]},
u"transform": [{u"select": [u"ancestors"]}],
u"options": {
u"return": [u"name"]
}
}
res = yield From(self.call(WAAPI_URI.ak_wwise_core_object_get, **arguments))
ancestors = res.kwresults[u"return"]
print(u"Ancestor of {}:".format(result[u"id"]))
for ancestor in ancestors:
print("\t{}".format(ancestor[u"name"]))
global done
if not done:
self.leave()
done = True
subscribe_args = {
u"options": {
u"return": [u"id", u"name", u"category"]
}
}
subscription = yield From(self.subscribe(on_object_created,
WAAPI_URI.ak_wwise_core_object_created,
**subscribe_args))
print("Create an object in the Project Explorer")
def onDisconnect(self):
print("The client was disconnected.")
asyncio.get_event_loop().stop()
if __name__ == '__main__':
runner = ApplicationRunner(url=u"ws://127.0.0.1:8080/waapi", realm=u"get_ancestors_demo")
try:
runner.run(MyComponent)
except Exception as e:
print(type(e).__name__ + ": Is Wwise running and Wwise Authoring API enabled?")
Python 3.6
サンプルファイル<Wwise installation path>/SDK/samples/WwiseAuthoringAPI/python/low-level/wwise-pubsub-wamp/get_ancestors_py3.py
を見つけます。
このファイルには、Wwise Authoring APIに接続できる次のコードが含まれています。
import asyncio
import sys
import os
from autobahn.asyncio.wamp import ApplicationRunner
from ak_autobahn import AkComponent
sys.path.append(os.path.join(os.path.dirname(__file__), '../../../../../include/AK/WwiseAuthoringAPI/py'))
from waapi_uri import WAAPI_URI
done = False
class MyComponent(AkComponent):
def onJoin(self, details):
subscription = None
def on_object_created(**kwargs):
yield from subscription.unsubscribe()
result = kwargs[u"object"]
print("The object was created in the category: {}".format(result.get(u"category", "unknown")))
arguments = {
"from": {"id": [result.get(u"id")]},
"transform": [{"select": ["ancestors"]}],
"options": {
"return": ["name"]
}
}
res = yield from self.call(WAAPI_URI.ak_wwise_core_object_get, **arguments)
ancestors = res.kwresults[u"return"]
print(u"Ancestor of {}:".format(result[u"id"]))
for ancestor in ancestors:
print("\t{}".format(ancestor[u"name"]))
global done
if not done:
self.leave()
done = True
subscribe_args = {
"options": {
"return": ["id", "name", "category"]
}
}
subscription = yield from self.subscribe(on_object_created,
WAAPI_URI.ak_wwise_core_object_created,
**subscribe_args)
print("Create an object in the Project Explorer")
def onDisconnect(self):
print("The client was disconnected.")
asyncio.get_event_loop().stop()
if __name__ == '__main__':
runner = ApplicationRunner(url=u"ws://127.0.0.1:8080/waapi", realm=u"get_ancestors_demo")
try:
runner.run(MyComponent)
except Exception as e:
print(type(e).__name__ + ": Is Wwise running and Wwise Authoring API enabled?")
プロジェクトの実行
次のコマンドを使用して、ディレクトリからサンプルファイルを実行します:
Python 2.7:
python get_ancestors_py2.py
Python 3.6:
python get_ancestors_py3.py
Project Explorerでオブジェクトを作成すると、その先祖のリストが表示されます。 先祖が取得された後に、サンプルが接続を切断します。