2024-05-15 21:32:01 +00:00
|
|
|
from types import SimpleNamespace
|
2024-05-12 09:05:11 +00:00
|
|
|
import bpy
|
2024-05-15 21:32:01 +00:00
|
|
|
from .assets_scan import get_main_scene_assets_tree
|
2024-05-15 11:25:30 +00:00
|
|
|
from .asset_helpers import get_assets
|
2024-05-12 09:05:11 +00:00
|
|
|
|
2024-05-13 21:36:13 +00:00
|
|
|
|
2024-05-15 11:25:30 +00:00
|
|
|
def draw_assets(layout, name, title, asset_registry, assets, target_type, target_name, editable=True):
|
2024-05-13 21:36:13 +00:00
|
|
|
header, panel = layout.box().panel(f"assets{name}", default_closed=False)
|
|
|
|
header.label(text=title)
|
|
|
|
if panel:
|
2024-05-15 11:25:30 +00:00
|
|
|
if editable:
|
|
|
|
row = panel.row()
|
|
|
|
row.prop(asset_registry, "asset_name_selector", text="")
|
|
|
|
row.prop(asset_registry, "asset_type_selector", text="")
|
|
|
|
asset_selector = row.operator(operator="asset.open_filebrowser", text="", icon="FILE_FOLDER")
|
|
|
|
|
|
|
|
if asset_registry.asset_type_selector == 'IMAGE':
|
|
|
|
asset_selector.filter_glob = '*.jpg;*.jpeg;*.png;*.bmp'
|
|
|
|
if asset_registry.asset_type_selector == 'MODEL':
|
|
|
|
asset_selector.filter_glob="*.glb;*.gltf"
|
|
|
|
if asset_registry.asset_type_selector == 'TEXT':
|
|
|
|
asset_selector.filter_glob="*.txt;*.md;*.ron;*.json"
|
|
|
|
if asset_registry.asset_type_selector == 'AUDIO':
|
|
|
|
asset_selector.filter_glob="*.mp3;*.wav;*.flac"
|
2024-05-13 21:36:13 +00:00
|
|
|
|
2024-05-15 11:25:30 +00:00
|
|
|
add_asset = row.operator(operator="bevyassets.add", text="", icon="ADD")
|
|
|
|
add_asset.target_type = target_type
|
|
|
|
add_asset.target_name = target_name
|
|
|
|
add_asset.asset_name = asset_registry.asset_name_selector
|
|
|
|
add_asset.asset_type = asset_registry.asset_type_selector
|
|
|
|
add_asset.asset_path = asset_registry.asset_path_selector
|
2024-05-13 21:36:13 +00:00
|
|
|
|
|
|
|
#assets = json.loads(blueprint.collection["assets"]) if "assets" in blueprint.collection else []
|
|
|
|
for asset in assets:
|
|
|
|
row = panel.row()
|
|
|
|
row.label(text=asset["name"])
|
|
|
|
row.label(text=asset["type"])
|
|
|
|
row.label(text=asset["path"])
|
2024-05-15 11:25:30 +00:00
|
|
|
if not asset["internal"] and editable:
|
2024-05-13 21:36:13 +00:00
|
|
|
remove_asset = row.operator(operator="bevyassets.remove", text="", icon="TRASH")
|
|
|
|
remove_asset.target_type = target_type
|
|
|
|
remove_asset.target_name = target_name
|
|
|
|
remove_asset.asset_path = asset["path"]
|
|
|
|
else:
|
|
|
|
row.label(text="")
|
|
|
|
|
2024-05-15 21:32:01 +00:00
|
|
|
return panel
|
|
|
|
|
2024-05-15 11:25:30 +00:00
|
|
|
class Blenvy_assets(bpy.types.Panel):
|
2024-05-12 09:05:11 +00:00
|
|
|
bl_space_type = 'VIEW_3D'
|
|
|
|
bl_region_type = 'UI'
|
2024-05-13 08:28:44 +00:00
|
|
|
bl_label = ""
|
2024-05-12 10:09:11 +00:00
|
|
|
bl_parent_id = "BLENVY_PT_SidePanel"
|
2024-05-13 21:36:13 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED','HIDE_HEADER'}
|
2024-05-12 10:09:11 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
return context.window_manager.blenvy.mode == 'ASSETS'
|
|
|
|
|
2024-05-12 09:05:11 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
layout.use_property_split = True
|
|
|
|
layout.use_property_decorate = False # No animation.
|
|
|
|
|
2024-05-15 21:32:01 +00:00
|
|
|
layout.operator(operator="bevyassets.test")
|
|
|
|
|
2024-05-12 09:05:11 +00:00
|
|
|
asset_registry = context.window_manager.assets_registry
|
2024-05-15 21:32:01 +00:00
|
|
|
blueprints_registry = context.window_manager.blueprints_registry
|
|
|
|
blueprints_registry.add_blueprints_data()
|
|
|
|
blueprints_data = blueprints_registry.blueprints_data
|
|
|
|
|
2024-05-13 21:36:13 +00:00
|
|
|
name = "world"
|
|
|
|
header, panel = layout.box().panel(f"assets{name}", default_closed=False)
|
|
|
|
header.label(text="World/Level Assets")
|
2024-05-12 09:05:11 +00:00
|
|
|
|
2024-05-15 21:32:01 +00:00
|
|
|
settings = {"export_blueprints_path": "blueprints", "export_gltf_extension": ".glb"}
|
|
|
|
settings = SimpleNamespace(**settings)
|
|
|
|
|
2024-05-13 21:36:13 +00:00
|
|
|
if panel:
|
|
|
|
for scene in bpy.data.scenes:
|
|
|
|
if scene.name != "Library": # FIXME: hack for testing
|
2024-05-15 21:32:01 +00:00
|
|
|
get_main_scene_assets_tree(scene, blueprints_data, settings)
|
|
|
|
|
2024-05-15 11:25:30 +00:00
|
|
|
direct_assets = get_assets(scene)
|
2024-05-13 21:36:13 +00:00
|
|
|
row = panel.row()
|
2024-05-15 21:32:01 +00:00
|
|
|
scene_assets_panel = draw_assets(layout=row, name=scene.name, title=f"{scene.name} Assets", asset_registry=asset_registry, assets=direct_assets, target_type="SCENE", target_name=scene.name)
|
|
|
|
if scene.name in blueprints_data.blueprint_instances_per_main_scene:
|
|
|
|
for blueprint_name in blueprints_data.blueprint_instances_per_main_scene[scene.name].keys():
|
|
|
|
blueprint = blueprints_data.blueprints_per_name[blueprint_name]
|
|
|
|
blueprint_assets = get_assets(blueprint.collection)
|
|
|
|
if scene_assets_panel:
|
|
|
|
row = scene_assets_panel.row()
|
|
|
|
draw_assets(layout=row, name=blueprint.name, title=f"{blueprint.name} Assets", asset_registry=asset_registry, assets=blueprint_assets, target_type="BLUEPRINT", target_name=blueprint.name)
|