You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

2.1 KiB

graph TB
    %% 1. 项目层级
    subgraph Project_Hierarchy [项目层级设计]
        RootProj[父项目: 龙珠系列] -- 拥有 --> Assets[资产库: 角色/场景/道具]
        RootProj -- 派生 --> SubProj1[子项目: 第一集]
        RootProj -- 派生 --> SubProj2[子项目: 第二集]
    end

    %% 2. 资产定义 (Root Project Level)
    subgraph Asset_Definition [资产定义层 - 关联 Root ID]
        Assets --> Char[角色: 悟空]
        Assets --> Loc[场景: 武道会]
        Char --> Tag1[标签: 常服形态]
        Char --> Tag2[标签: 超级赛亚人]
        Loc --> Tag3[标签: 白天]
        Loc --> Tag4[标签: 战损]
    end

    %% 3. 剧本解析 (Sub Project Level)
    subgraph Screenplay_Process [剧本处理层 - 关联 Sub ID]
        SubProj1 --> Upload[上传剧本]
        Upload --> Parse[AI 解析]
        Parse --> SCR_Ref[screenplay_element_refs: 建立引用]
        SCR_Ref -.->|建立链接| Char
        SCR_Ref -.->|建立链接| Loc
        SCR_Ref --> Override[剧本特定覆盖: 悟空此刻受轻伤]
    end

    %% 4. 分镜创作 (Storyboard Level)
    subgraph Storyboard_Logic [分镜制作层 - 关联 Sub ID]
        SubProj1 --> SB[storyboards: 分镜 01]
        SB --> SB_Item[storyboard_items: 画面元素]
        SB_Item -->|指定变体| Tag2
        SB_Item -->|指定环境| Tag3
        SB_Item -->|关联素材| Res[project_resources: 气氛图]
    end

    %% 5. AI 执行 (Execution Level)
    subgraph AI_Generation [AI 执行层 - 多版本管理]
        SB --> Dialogue[storyboard_dialogues: 对白文本]
        Dialogue --> Voice[storyboard_voiceovers: 配音音频]
        SB_Item --> Image[storyboard_images: AI 生成图]
        Image --> Video[storyboard_videos: AI 动态视频]
    end

    %% 样式美化
    style RootProj fill:#f9f,stroke:#333,stroke-width:2px
    style SubProj1 fill:#bbf,stroke:#333
    style Assets fill:#dfd,stroke:#333
    style Tag2 fill:#fff4e1,stroke:#d4a017
    style Image fill:#fff4e1,stroke:#d4a017
    style SCR_Ref fill:#e1f0ff,stroke:#0078d4