Welcome to mirror list, hosted at ThFree Co, Russian Federation.

meta_trim_content_to_bounds.py « operators « power_sequencer - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11b483697fb97be4ee158d150f79f58299e87585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright 2016-2020 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors

# This file is part of Power Sequencer.

import bpy
from .utils.global_settings import SequenceTypes

from .utils.doc import doc_name, doc_idname, doc_brief, doc_description


class POWER_SEQUENCER_OT_meta_trim_content_to_bounds(bpy.types.Operator):
    """
    Deletes and trims the strips inside selected meta-strips to the meta strip's bounds
    """

    doc = {
        "name": doc_name(__qualname__),
        "demo": "",
        "description": doc_description(__doc__),
        "shortcuts": [],
        "keymap": "Sequencer",
    }
    bl_idname = doc_idname(__qualname__)
    bl_label = doc["name"]
    bl_description = doc_brief(doc["description"])
    bl_options = {"REGISTER", "UNDO"}

    @classmethod
    def poll(cls, context):
        return context.selected_sequences

    def execute(self, context):
        to_delete = []
        meta_strips = [s for s in context.selected_sequences if s.type == "META"]
        for m in meta_strips:
            start, end = m.frame_final_start, m.frame_final_end
            sequences_to_process = (s for s in m.sequences if s.type not in SequenceTypes.EFFECT)
            for s in sequences_to_process:
                if s.frame_final_end < start or s.frame_final_start > m.frame_final_end:
                    to_delete.append(s)
                    continue
                # trim strips on the meta's edges or longer than the meta's extents
                if s.frame_final_start < start:
                    s.frame_final_start = start
                if s.frame_final_end > end:
                    s.frame_final_end = end
        bpy.ops.sequencer.select_all(action="DESELECT")
        for s in to_delete:
            s.select = True
        bpy.ops.sequencer.delete()
        return {"FINISHED"}