mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
import os
|
|
|
|
from pype.lib import PreLaunchHook
|
|
|
|
|
|
class HarmonyPrelaunchHook(PreLaunchHook):
|
|
"""Launch arguments preparation.
|
|
|
|
Hook add python executable and execute python script of harmony
|
|
implementation before harmony executable.
|
|
"""
|
|
app_groups = ["harmony"]
|
|
|
|
def execute(self):
|
|
# Pop tvpaint executable
|
|
harmony_executable = self.launch_context.launch_args.pop(0)
|
|
|
|
# Pop rest of launch arguments - There should not be other arguments!
|
|
remainders = []
|
|
while self.launch_context.launch_args:
|
|
remainders.append(self.launch_context.launch_args.pop(0))
|
|
|
|
new_launch_args = [
|
|
self.python_executable(),
|
|
"-c",
|
|
(
|
|
"import avalon.harmony;"
|
|
"avalon.harmony.launch(\"{}\")"
|
|
).format(harmony_executable)
|
|
]
|
|
|
|
# Append as whole list as these areguments should not be separated
|
|
self.launch_context.launch_args.append(new_launch_args)
|
|
|
|
if remainders:
|
|
self.log.warning((
|
|
"There are unexpected launch arguments in Harmony launch. {}"
|
|
).format(str(remainders)))
|
|
self.launch_context.launch_args.extend(remainders)
|
|
|
|
def python_executable(self):
|
|
"""Should lead to python executable."""
|
|
# TODO change in Pype 3
|
|
return os.environ["PYPE_PYTHON_EXE"]
|