-
Notifications
You must be signed in to change notification settings - Fork 21
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
0 parents
commit 00a69e1
Showing
15 changed files
with
1,382 additions
and
0 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 @@ | ||
*.blend filter=lfs diff=lfs merge=lfs -text |
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,132 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
pip-wheel-metadata/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
pythonlib* | ||
|
||
*.blend1 | ||
|
||
blendcache_* | ||
|
||
*.ipynb |
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,33 @@ | ||
from .nodes import custom_nodes | ||
from . import auto_load | ||
from .dicom import MEDNODES_add_topbar_menu | ||
import bpy | ||
|
||
|
||
bl_info = { | ||
"name": "MedNodes", | ||
"author": "Ma Nan", | ||
"description": "", | ||
"blender": (4, 0, 0), | ||
"version": (0, 1, 0), | ||
"location": "File -> Import", | ||
"warning": "", | ||
"category": "Import-Export" | ||
} | ||
|
||
auto_load.init() | ||
|
||
|
||
def register(): | ||
auto_load.register() | ||
custom_nodes.register() | ||
bpy.types.TOPBAR_MT_file_import.prepend(MEDNODES_add_topbar_menu) | ||
|
||
|
||
def unregister(): | ||
try: | ||
bpy.types.TOPBAR_MT_file_import.remove(MEDNODES_add_topbar_menu) | ||
custom_nodes.unregister() | ||
auto_load.unregister() | ||
except RuntimeError: | ||
pass |
Git LFS 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
import bpy | ||
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 |
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 @@ | ||
from .node_menu import CustomNodes |
Oops, something went wrong.