Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fusion: Implement Alembic and FBX mesh loader #3927

Merged
merged 1 commit into from
Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openpype/hosts/fusion/api/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def ls():
"""

comp = get_current_comp()
tools = comp.GetToolList(False, "Loader").values()
tools = comp.GetToolList(False).values()

for tool in tools:
container = parse_container(tool)
Expand Down
70 changes: 70 additions & 0 deletions openpype/hosts/fusion/plugins/load/load_alembic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
from openpype.pipeline import (
load,
get_representation_path,
)
from openpype.hosts.fusion.api import (
imprint_container,
get_current_comp,
comp_lock_and_undo_chunk
)


class FusionLoadAlembicMesh(load.LoaderPlugin):
"""Load Alembic mesh into Fusion"""

families = ["pointcache", "model"]
representations = ["abc"]

label = "Load alembic mesh"
order = -10
icon = "code-fork"
color = "orange"

tool_type = "SurfaceAlembicMesh"

def load(self, context, name, namespace, data):
# Fallback to asset name when namespace is None
if namespace is None:
namespace = context['asset']['name']

# Create the Loader with the filename path set
comp = get_current_comp()
with comp_lock_and_undo_chunk(comp, "Create tool"):

path = self.fname

args = (-32768, -32768)
tool = comp.AddTool(self.tool_type, *args)
tool["Filename"] = path

imprint_container(tool,
name=name,
namespace=namespace,
context=context,
loader=self.__class__.__name__)

def switch(self, container, representation):
self.update(container, representation)

def update(self, container, representation):
"""Update Alembic path"""

tool = container["_tool"]
assert tool.ID == self.tool_type, f"Must be {self.tool_type}"
comp = tool.Comp()

path = get_representation_path(representation)

with comp_lock_and_undo_chunk(comp, "Update tool"):
tool["Filename"] = path

# Update the imprinted representation
tool.SetData("avalon.representation", str(representation["_id"]))

def remove(self, container):
tool = container["_tool"]
assert tool.ID == self.tool_type, f"Must be {self.tool_type}"
comp = tool.Comp()

with comp_lock_and_undo_chunk(comp, "Remove tool"):
tool.Delete()
71 changes: 71 additions & 0 deletions openpype/hosts/fusion/plugins/load/load_fbx.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

from openpype.pipeline import (
load,
get_representation_path,
)
from openpype.hosts.fusion.api import (
imprint_container,
get_current_comp,
comp_lock_and_undo_chunk
)


class FusionLoadFBXMesh(load.LoaderPlugin):
"""Load FBX mesh into Fusion"""

families = ["*"]
representations = ["fbx"]

label = "Load FBX mesh"
order = -10
icon = "code-fork"
color = "orange"

tool_type = "SurfaceFBXMesh"

def load(self, context, name, namespace, data):
# Fallback to asset name when namespace is None
if namespace is None:
namespace = context['asset']['name']

# Create the Loader with the filename path set
comp = get_current_comp()
with comp_lock_and_undo_chunk(comp, "Create tool"):

path = self.fname

args = (-32768, -32768)
tool = comp.AddTool(self.tool_type, *args)
tool["ImportFile"] = path

imprint_container(tool,
name=name,
namespace=namespace,
context=context,
loader=self.__class__.__name__)

def switch(self, container, representation):
self.update(container, representation)

def update(self, container, representation):
"""Update path"""

tool = container["_tool"]
assert tool.ID == self.tool_type, f"Must be {self.tool_type}"
comp = tool.Comp()

path = get_representation_path(representation)

with comp_lock_and_undo_chunk(comp, "Update tool"):
tool["ImportFile"] = path

# Update the imprinted representation
tool.SetData("avalon.representation", str(representation["_id"]))

def remove(self, container):
tool = container["_tool"]
assert tool.ID == self.tool_type, f"Must be {self.tool_type}"
comp = tool.Comp()

with comp_lock_and_undo_chunk(comp, "Remove tool"):
tool.Delete()