-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
274 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
bl_info = { | ||
"name": "VAT Exporter for TouchDesigner", | ||
"author": "YumaTaesu", | ||
"version": (1, 1), | ||
"blender": (2, 93, 0), | ||
"location": "", | ||
"description": "Vertex Animation Texture Exporter for TouchDesigner", | ||
"warning": "", | ||
"support": "TESTING", | ||
"wiki_url": "", | ||
"tracker_url": "", | ||
"category": "Object" | ||
} | ||
|
||
from . import auto_load | ||
|
||
auto_load.init() | ||
|
||
def register(): | ||
auto_load.register() | ||
|
||
def unregister(): | ||
auto_load.unregister() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
import os | ||
import bpy | ||
import sys | ||
import typing | ||
import inspect | ||
import pkgutil | ||
import importlib | ||
from pathlib import Path | ||
|
||
__all__ = ( | ||
"init", | ||
"register", | ||
"unregister", | ||
) | ||
|
||
blender_version = bpy.app.version | ||
|
||
modules = None | ||
ordered_classes = None | ||
|
||
def init(): | ||
global modules | ||
global ordered_classes | ||
|
||
modules = get_all_submodules(Path(__file__).parent) | ||
ordered_classes = get_ordered_classes_to_register(modules) | ||
|
||
def register(): | ||
for cls in ordered_classes: | ||
bpy.utils.register_class(cls) | ||
|
||
for module in modules: | ||
if module.__name__ == __name__: | ||
continue | ||
if hasattr(module, "register"): | ||
module.register() | ||
|
||
def unregister(): | ||
for cls in reversed(ordered_classes): | ||
bpy.utils.unregister_class(cls) | ||
|
||
for module in modules: | ||
if module.__name__ == __name__: | ||
continue | ||
if hasattr(module, "unregister"): | ||
module.unregister() | ||
|
||
|
||
# Import modules | ||
################################################# | ||
|
||
def get_all_submodules(directory): | ||
return list(iter_submodules(directory, directory.name)) | ||
|
||
def iter_submodules(path, package_name): | ||
for name in sorted(iter_submodule_names(path)): | ||
yield importlib.import_module("." + name, package_name) | ||
|
||
def iter_submodule_names(path, root=""): | ||
for _, module_name, is_package in pkgutil.iter_modules([str(path)]): | ||
if is_package: | ||
sub_path = path / module_name | ||
sub_root = root + module_name + "." | ||
yield from iter_submodule_names(sub_path, sub_root) | ||
else: | ||
yield root + module_name | ||
|
||
|
||
# Find classes to register | ||
################################################# | ||
|
||
def get_ordered_classes_to_register(modules): | ||
return toposort(get_register_deps_dict(modules)) | ||
|
||
def get_register_deps_dict(modules): | ||
my_classes = set(iter_my_classes(modules)) | ||
my_classes_by_idname = {cls.bl_idname : cls for cls in my_classes if hasattr(cls, "bl_idname")} | ||
|
||
deps_dict = {} | ||
for cls in my_classes: | ||
deps_dict[cls] = set(iter_my_register_deps(cls, my_classes, my_classes_by_idname)) | ||
return deps_dict | ||
|
||
def iter_my_register_deps(cls, my_classes, my_classes_by_idname): | ||
yield from iter_my_deps_from_annotations(cls, my_classes) | ||
yield from iter_my_deps_from_parent_id(cls, my_classes_by_idname) | ||
|
||
def iter_my_deps_from_annotations(cls, my_classes): | ||
for value in typing.get_type_hints(cls, {}, {}).values(): | ||
dependency = get_dependency_from_annotation(value) | ||
if dependency is not None: | ||
if dependency in my_classes: | ||
yield dependency | ||
|
||
def get_dependency_from_annotation(value): | ||
if blender_version >= (2, 93): | ||
if isinstance(value, bpy.props._PropertyDeferred): | ||
return value.keywords.get("type") | ||
else: | ||
if isinstance(value, tuple) and len(value) == 2: | ||
if value[0] in (bpy.props.PointerProperty, bpy.props.CollectionProperty): | ||
return value[1]["type"] | ||
return None | ||
|
||
def iter_my_deps_from_parent_id(cls, my_classes_by_idname): | ||
if bpy.types.Panel in cls.__bases__: | ||
parent_idname = getattr(cls, "bl_parent_id", None) | ||
if parent_idname is not None: | ||
parent_cls = my_classes_by_idname.get(parent_idname) | ||
if parent_cls is not None: | ||
yield parent_cls | ||
|
||
def iter_my_classes(modules): | ||
base_types = get_register_base_types() | ||
for cls in get_classes_in_modules(modules): | ||
if any(base in base_types for base in cls.__bases__): | ||
if not getattr(cls, "is_registered", False): | ||
yield cls | ||
|
||
def get_classes_in_modules(modules): | ||
classes = set() | ||
for module in modules: | ||
for cls in iter_classes_in_module(module): | ||
classes.add(cls) | ||
return classes | ||
|
||
def iter_classes_in_module(module): | ||
for value in module.__dict__.values(): | ||
if inspect.isclass(value): | ||
yield value | ||
|
||
def get_register_base_types(): | ||
return set(getattr(bpy.types, name) for name in [ | ||
"Panel", "Operator", "PropertyGroup", | ||
"AddonPreferences", "Header", "Menu", | ||
"Node", "NodeSocket", "NodeTree", | ||
"UIList", "RenderEngine", | ||
"Gizmo", "GizmoGroup", | ||
]) | ||
|
||
|
||
# Find order to register to solve dependencies | ||
################################################# | ||
|
||
def toposort(deps_dict): | ||
sorted_list = [] | ||
sorted_values = set() | ||
while len(deps_dict) > 0: | ||
unsorted = [] | ||
for value, deps in deps_dict.items(): | ||
if len(deps) == 0: | ||
sorted_list.append(value) | ||
sorted_values.add(value) | ||
else: | ||
unsorted.append(value) | ||
deps_dict = {value : deps_dict[value] - sorted_values for value in unsorted} | ||
return sorted_list |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.