186 lines
6.5 KiB
Python
186 lines
6.5 KiB
Python
bl_info = {
|
|
"name": "blenvy",
|
|
"author": "kaosigh",
|
|
"version": (0, 1, 0),
|
|
"blender": (3, 4, 0),
|
|
"location": "File > Import-Export",
|
|
"description": "tooling for the Bevy engine",
|
|
"warning": "",
|
|
"wiki_url": "https://github.com/kaosat-dev/Blender_bevy_components_workflow",
|
|
"tracker_url": "https://github.com/kaosat-dev/Blender_bevy_components_workflow/issues/new",
|
|
"category": "Import-Export"
|
|
}
|
|
|
|
import bpy
|
|
from bpy.app.handlers import persistent
|
|
from bpy.props import (StringProperty)
|
|
|
|
# components management
|
|
from .bevy_components.components.operators import CopyComponentOperator, Fix_Component_Operator, OT_rename_component, RemoveComponentFromAllObjectsOperator, RemoveComponentOperator, GenerateComponent_From_custom_property_Operator, PasteComponentOperator, AddComponentOperator, RenameHelper, Toggle_ComponentVisibility
|
|
|
|
from .bevy_components.registry.registry import ComponentsRegistry,MissingBevyType
|
|
from .bevy_components.registry.operators import (COMPONENTS_OT_REFRESH_CUSTOM_PROPERTIES_ALL, COMPONENTS_OT_REFRESH_CUSTOM_PROPERTIES_CURRENT, COMPONENTS_OT_REFRESH_PROPGROUPS_FROM_CUSTOM_PROPERTIES_ALL, COMPONENTS_OT_REFRESH_PROPGROUPS_FROM_CUSTOM_PROPERTIES_CURRENT, OT_select_component_name_to_replace, OT_select_object, ReloadRegistryOperator, OT_OpenFilebrowser)
|
|
from .bevy_components.registry.ui import (BEVY_COMPONENTS_PT_Configuration, BEVY_COMPONENTS_PT_AdvancedToolsPanel, BEVY_COMPONENTS_PT_MissingTypesPanel, MISSING_TYPES_UL_List)
|
|
|
|
from .bevy_components.components.metadata import (ComponentMetadata, ComponentsMeta)
|
|
from .bevy_components.components.lists import GENERIC_LIST_OT_actions, Generic_LIST_OT_AddItem, Generic_LIST_OT_RemoveItem, Generic_LIST_OT_SelectItem
|
|
from .bevy_components.components.maps import GENERIC_MAP_OT_actions
|
|
from .bevy_components.components.definitions_list import (ComponentDefinitionsList, ClearComponentDefinitionsList)
|
|
from .bevy_components.components.ui import (BEVY_COMPONENTS_PT_ComponentsPanel)
|
|
|
|
# auto export
|
|
from .gltf_auto_export.auto_export.operators import AutoExportGLTF
|
|
from .gltf_auto_export.auto_export.tracker import AutoExportTracker
|
|
from .gltf_auto_export.auto_export.preferences import (AutoExportGltfAddonPreferences)
|
|
|
|
from .gltf_auto_export.auto_export.internals import (SceneLink,
|
|
SceneLinks,
|
|
CollectionToExport,
|
|
BlueprintsToExport,
|
|
CUSTOM_PG_sceneName
|
|
)
|
|
from .gltf_auto_export.ui.main import (GLTF_PT_auto_export_change_detection, GLTF_PT_auto_export_changes_list, GLTF_PT_auto_export_main,
|
|
GLTF_PT_auto_export_root,
|
|
GLTF_PT_auto_export_general,
|
|
GLTF_PT_auto_export_scenes,
|
|
GLTF_PT_auto_export_blueprints,
|
|
SCENE_UL_GLTF_auto_export,
|
|
|
|
GLTF_PT_auto_export_SidePanel
|
|
)
|
|
from .gltf_auto_export.ui.operators import (OT_OpenFolderbrowser, SCENES_LIST_OT_actions)
|
|
|
|
# asset management
|
|
from .assets.ui import GLTF_PT_auto_export_assets
|
|
from .assets.assets_registry import AssetsRegistry
|
|
from .assets.operators import OT_Add_asset_filebrowser, OT_add_bevy_asset, OT_remove_bevy_asset
|
|
|
|
# blueprints management
|
|
from .blueprints.ui import GLTF_PT_auto_export_blueprints_list
|
|
from .blueprints.blueprints_registry import BlueprintsRegistry
|
|
from .blueprints.operators import OT_select_blueprint
|
|
|
|
# blenvy core
|
|
from .core.ui import BLENVY_PT_SidePanel
|
|
from .core.blenvy_manager import BlenvyManager
|
|
from .core.operators import OT_switch_bevy_tooling
|
|
|
|
classes = [
|
|
# blenvy
|
|
BLENVY_PT_SidePanel,
|
|
|
|
|
|
# bevy components
|
|
AddComponentOperator,
|
|
CopyComponentOperator,
|
|
PasteComponentOperator,
|
|
RemoveComponentOperator,
|
|
RemoveComponentFromAllObjectsOperator,
|
|
Fix_Component_Operator,
|
|
OT_rename_component,
|
|
RenameHelper,
|
|
GenerateComponent_From_custom_property_Operator,
|
|
Toggle_ComponentVisibility,
|
|
|
|
ComponentDefinitionsList,
|
|
ClearComponentDefinitionsList,
|
|
|
|
ComponentMetadata,
|
|
ComponentsMeta,
|
|
MissingBevyType,
|
|
ComponentsRegistry,
|
|
|
|
OT_OpenFilebrowser,
|
|
ReloadRegistryOperator,
|
|
COMPONENTS_OT_REFRESH_CUSTOM_PROPERTIES_ALL,
|
|
COMPONENTS_OT_REFRESH_CUSTOM_PROPERTIES_CURRENT,
|
|
|
|
COMPONENTS_OT_REFRESH_PROPGROUPS_FROM_CUSTOM_PROPERTIES_ALL,
|
|
COMPONENTS_OT_REFRESH_PROPGROUPS_FROM_CUSTOM_PROPERTIES_CURRENT,
|
|
|
|
OT_select_object,
|
|
OT_select_component_name_to_replace,
|
|
|
|
BEVY_COMPONENTS_PT_ComponentsPanel,
|
|
BEVY_COMPONENTS_PT_AdvancedToolsPanel,
|
|
BEVY_COMPONENTS_PT_Configuration,
|
|
MISSING_TYPES_UL_List,
|
|
BEVY_COMPONENTS_PT_MissingTypesPanel,
|
|
|
|
Generic_LIST_OT_SelectItem,
|
|
Generic_LIST_OT_AddItem,
|
|
Generic_LIST_OT_RemoveItem,
|
|
GENERIC_LIST_OT_actions,
|
|
|
|
GENERIC_MAP_OT_actions,
|
|
|
|
# gltf auto export
|
|
SceneLink,
|
|
SceneLinks,
|
|
CUSTOM_PG_sceneName,
|
|
SCENE_UL_GLTF_auto_export,
|
|
SCENES_LIST_OT_actions,
|
|
|
|
OT_OpenFolderbrowser,
|
|
AutoExportGLTF,
|
|
|
|
CollectionToExport,
|
|
BlueprintsToExport,
|
|
|
|
GLTF_PT_auto_export_main,
|
|
GLTF_PT_auto_export_root,
|
|
GLTF_PT_auto_export_general,
|
|
GLTF_PT_auto_export_change_detection,
|
|
GLTF_PT_auto_export_scenes,
|
|
GLTF_PT_auto_export_blueprints,
|
|
GLTF_PT_auto_export_SidePanel,
|
|
AutoExportTracker,
|
|
|
|
# blenvy
|
|
BlenvyManager,
|
|
OT_switch_bevy_tooling,
|
|
|
|
AssetsRegistry,
|
|
OT_add_bevy_asset,
|
|
OT_remove_bevy_asset,
|
|
OT_Add_asset_filebrowser,
|
|
GLTF_PT_auto_export_assets,
|
|
|
|
BlueprintsRegistry,
|
|
OT_select_blueprint,
|
|
GLTF_PT_auto_export_blueprints_list,
|
|
]
|
|
|
|
|
|
@persistent
|
|
def post_update(scene, depsgraph):
|
|
bpy.context.window_manager.auto_export_tracker.deps_post_update_handler( scene, depsgraph)
|
|
|
|
@persistent
|
|
def post_save(scene, depsgraph):
|
|
bpy.context.window_manager.auto_export_tracker.save_handler( scene, depsgraph)
|
|
|
|
@persistent
|
|
def post_load(file_name):
|
|
registry = bpy.context.window_manager.components_registry
|
|
if registry != None:
|
|
registry.load_settings()
|
|
|
|
def register():
|
|
for cls in classes:
|
|
bpy.utils.register_class(cls)
|
|
|
|
bpy.app.handlers.load_post.append(post_load)
|
|
# for some reason, adding these directly to the tracker class in register() do not work reliably
|
|
bpy.app.handlers.depsgraph_update_post.append(post_update)
|
|
bpy.app.handlers.save_post.append(post_save)
|
|
|
|
def unregister():
|
|
for cls in classes:
|
|
bpy.utils.unregister_class(cls)
|
|
bpy.app.handlers.load_post.remove(post_load)
|
|
bpy.app.handlers.depsgraph_update_post.remove(post_update)
|
|
bpy.app.handlers.save_post.remove(post_save)
|
|
|
|
|
|
print("TOTO") |