395 lines
10 KiB
C++
395 lines
10 KiB
C++
/* SPDX-FileCopyrightText: 2012 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup spseq
|
|
*/
|
|
|
|
#include "BLI_blenlib.h"
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
#include "DEG_depsgraph.h"
|
|
|
|
#include "BKE_context.h"
|
|
|
|
#include "WM_api.hh"
|
|
#include "WM_types.hh"
|
|
|
|
#include "RNA_define.hh"
|
|
#include "RNA_enum_types.hh"
|
|
|
|
#include "SEQ_iterator.h"
|
|
#include "SEQ_modifier.h"
|
|
#include "SEQ_relations.h"
|
|
#include "SEQ_select.h"
|
|
#include "SEQ_sequencer.h"
|
|
#include "SEQ_sound.h"
|
|
|
|
/* Own include. */
|
|
#include "sequencer_intern.hh"
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Add modifier operator
|
|
* \{ */
|
|
|
|
static int strip_modifier_add_exec(bContext *C, wmOperator *op)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
int type = RNA_enum_get(op->ptr, "type");
|
|
|
|
SEQ_modifier_new(seq, nullptr, type);
|
|
|
|
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
|
|
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
|
|
|
|
return OPERATOR_FINISHED;
|
|
}
|
|
|
|
static const EnumPropertyItem *filter_modifiers_by_sequence_type(bContext *C,
|
|
PointerRNA * /* ptr */,
|
|
PropertyRNA * /* prop */,
|
|
bool * /* r_free */)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
if (ELEM(seq->type, SEQ_TYPE_SOUND_RAM)) {
|
|
return rna_enum_sequence_sound_modifier_type_items;
|
|
}
|
|
else {
|
|
return rna_enum_sequence_video_modifier_type_items;
|
|
}
|
|
}
|
|
|
|
void SEQUENCER_OT_strip_modifier_add(wmOperatorType *ot)
|
|
{
|
|
PropertyRNA *prop;
|
|
|
|
/* identifiers */
|
|
ot->name = "Add Strip Modifier";
|
|
ot->idname = "SEQUENCER_OT_strip_modifier_add";
|
|
ot->description = "Add a modifier to the strip";
|
|
|
|
/* api callbacks */
|
|
ot->exec = strip_modifier_add_exec;
|
|
|
|
/*
|
|
* No poll because a modifier can be applied to any kind of strip
|
|
*/
|
|
|
|
/* flags */
|
|
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
|
|
|
|
/* properties */
|
|
prop = RNA_def_enum(ot->srna, "type", rna_enum_dummy_NULL_items, 0, "Type", "");
|
|
RNA_def_enum_funcs(prop, filter_modifiers_by_sequence_type);
|
|
ot->prop = prop;
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Remove Modifier Operator
|
|
* \{ */
|
|
|
|
static int strip_modifier_remove_exec(bContext *C, wmOperator *op)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
char name[MAX_NAME];
|
|
SequenceModifierData *smd;
|
|
|
|
RNA_string_get(op->ptr, "name", name);
|
|
|
|
smd = SEQ_modifier_find_by_name(seq, name);
|
|
if (!smd) {
|
|
return OPERATOR_CANCELLED;
|
|
}
|
|
|
|
BLI_remlink(&seq->modifiers, smd);
|
|
SEQ_modifier_free(smd);
|
|
|
|
if (ELEM(seq->type, SEQ_TYPE_SOUND_RAM)) {
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS | ID_RECALC_AUDIO);
|
|
}
|
|
else {
|
|
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
|
|
}
|
|
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
|
|
|
|
return OPERATOR_FINISHED;
|
|
}
|
|
|
|
void SEQUENCER_OT_strip_modifier_remove(wmOperatorType *ot)
|
|
{
|
|
PropertyRNA *prop;
|
|
|
|
/* identifiers */
|
|
ot->name = "Remove Strip Modifier";
|
|
ot->idname = "SEQUENCER_OT_strip_modifier_remove";
|
|
ot->description = "Remove a modifier from the strip";
|
|
|
|
/* api callbacks */
|
|
ot->exec = strip_modifier_remove_exec;
|
|
/*
|
|
* No poll is needed because all kind of strips can have their modifiers erased
|
|
*/
|
|
|
|
/* flags */
|
|
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
|
|
|
|
/* properties */
|
|
prop = RNA_def_string(ot->srna, "name", "Name", MAX_NAME, "Name", "Name of modifier to remove");
|
|
RNA_def_property_flag(prop, PROP_HIDDEN);
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Move Operator
|
|
* \{ */
|
|
|
|
enum {
|
|
SEQ_MODIFIER_MOVE_UP = 0,
|
|
SEQ_MODIFIER_MOVE_DOWN,
|
|
};
|
|
|
|
static int strip_modifier_move_exec(bContext *C, wmOperator *op)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
char name[MAX_NAME];
|
|
int direction;
|
|
SequenceModifierData *smd;
|
|
|
|
RNA_string_get(op->ptr, "name", name);
|
|
direction = RNA_enum_get(op->ptr, "direction");
|
|
|
|
smd = SEQ_modifier_find_by_name(seq, name);
|
|
if (!smd) {
|
|
return OPERATOR_CANCELLED;
|
|
}
|
|
|
|
if (direction == SEQ_MODIFIER_MOVE_UP) {
|
|
if (smd->prev) {
|
|
BLI_remlink(&seq->modifiers, smd);
|
|
BLI_insertlinkbefore(&seq->modifiers, smd->prev, smd);
|
|
}
|
|
}
|
|
else if (direction == SEQ_MODIFIER_MOVE_DOWN) {
|
|
if (smd->next) {
|
|
BLI_remlink(&seq->modifiers, smd);
|
|
BLI_insertlinkafter(&seq->modifiers, smd->next, smd);
|
|
}
|
|
}
|
|
|
|
if (ELEM(seq->type, SEQ_TYPE_SOUND_RAM)) {
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS | ID_RECALC_AUDIO);
|
|
}
|
|
else {
|
|
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
|
|
}
|
|
|
|
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
|
|
|
|
return OPERATOR_FINISHED;
|
|
}
|
|
|
|
void SEQUENCER_OT_strip_modifier_move(wmOperatorType *ot)
|
|
{
|
|
PropertyRNA *prop;
|
|
|
|
static const EnumPropertyItem direction_items[] = {
|
|
{SEQ_MODIFIER_MOVE_UP, "UP", 0, "Up", "Move modifier up in the stack"},
|
|
{SEQ_MODIFIER_MOVE_DOWN, "DOWN", 0, "Down", "Move modifier down in the stack"},
|
|
{0, nullptr, 0, nullptr, nullptr},
|
|
};
|
|
|
|
/* identifiers */
|
|
ot->name = "Move Strip Modifier";
|
|
ot->idname = "SEQUENCER_OT_strip_modifier_move";
|
|
ot->description = "Move modifier up and down in the stack";
|
|
|
|
/* api callbacks */
|
|
ot->exec = strip_modifier_move_exec;
|
|
|
|
/*
|
|
* No poll is needed because all strips can have modifiers
|
|
*/
|
|
|
|
/* flags */
|
|
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
|
|
|
|
/* properties */
|
|
prop = RNA_def_string(ot->srna, "name", "Name", MAX_NAME, "Name", "Name of modifier to remove");
|
|
RNA_def_property_flag(prop, PROP_HIDDEN);
|
|
prop = RNA_def_enum(ot->srna, "direction", direction_items, SEQ_MODIFIER_MOVE_UP, "Type", "");
|
|
RNA_def_property_flag(prop, PROP_HIDDEN);
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Copy to Selected Operator
|
|
* \{ */
|
|
|
|
enum {
|
|
SEQ_MODIFIER_COPY_REPLACE = 0,
|
|
SEQ_MODIFIER_COPY_APPEND = 1,
|
|
};
|
|
|
|
static int strip_modifier_copy_exec(bContext *C, wmOperator *op)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Editing *ed = scene->ed;
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
const int type = RNA_enum_get(op->ptr, "type");
|
|
|
|
if (!seq || !seq->modifiers.first) {
|
|
return OPERATOR_CANCELLED;
|
|
}
|
|
|
|
int isSound = ELEM(seq->type, SEQ_TYPE_SOUND_RAM);
|
|
|
|
LISTBASE_FOREACH (Sequence *, seq_iter, SEQ_active_seqbase_get(ed)) {
|
|
if (seq_iter->flag & SELECT) {
|
|
if (seq_iter == seq) {
|
|
continue;
|
|
}
|
|
int seq_iter_is_sound = ELEM(seq_iter->type, SEQ_TYPE_SOUND_RAM);
|
|
/* If original is sound, only copy to "sound" strips
|
|
* If original is not sound, only copy to "not sound" strips
|
|
*/
|
|
if (isSound != seq_iter_is_sound) {
|
|
continue;
|
|
}
|
|
|
|
if (type == SEQ_MODIFIER_COPY_REPLACE) {
|
|
if (seq_iter->modifiers.first) {
|
|
SequenceModifierData *smd_tmp,
|
|
*smd = static_cast<SequenceModifierData *>(seq_iter->modifiers.first);
|
|
while (smd) {
|
|
smd_tmp = smd->next;
|
|
BLI_remlink(&seq_iter->modifiers, smd);
|
|
SEQ_modifier_free(smd);
|
|
smd = smd_tmp;
|
|
}
|
|
BLI_listbase_clear(&seq_iter->modifiers);
|
|
}
|
|
}
|
|
|
|
SEQ_modifier_list_copy(seq_iter, seq);
|
|
}
|
|
}
|
|
|
|
if (ELEM(seq->type, SEQ_TYPE_SOUND_RAM)) {
|
|
DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS | ID_RECALC_AUDIO);
|
|
}
|
|
else {
|
|
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
|
|
}
|
|
|
|
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
|
|
|
|
return OPERATOR_FINISHED;
|
|
}
|
|
|
|
void SEQUENCER_OT_strip_modifier_copy(wmOperatorType *ot)
|
|
{
|
|
static const EnumPropertyItem type_items[] = {
|
|
{SEQ_MODIFIER_COPY_REPLACE, "REPLACE", 0, "Replace", "Replace modifiers in destination"},
|
|
{SEQ_MODIFIER_COPY_APPEND,
|
|
"APPEND",
|
|
0,
|
|
"Append",
|
|
"Append active modifiers to selected strips"},
|
|
{0, nullptr, 0, nullptr, nullptr},
|
|
};
|
|
|
|
/* identifiers */
|
|
ot->name = "Copy to Selected Strips";
|
|
ot->idname = "SEQUENCER_OT_strip_modifier_copy";
|
|
ot->description = "Copy modifiers of the active strip to all selected strips";
|
|
|
|
/* api callbacks */
|
|
ot->invoke = WM_menu_invoke;
|
|
ot->exec = strip_modifier_copy_exec;
|
|
/*
|
|
* No poll is needed because all kind of strips can have modifier
|
|
*/
|
|
|
|
/* flags */
|
|
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
|
|
|
|
/* properties */
|
|
ot->prop = RNA_def_enum(ot->srna, "type", type_items, SEQ_MODIFIER_COPY_REPLACE, "Type", "");
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Redefine Equalizer Graphs Operator
|
|
* \{ */
|
|
|
|
static int strip_modifier_equalizer_redefine_exec(bContext *C, wmOperator *op)
|
|
{
|
|
Scene *scene = CTX_data_scene(C);
|
|
Sequence *seq = SEQ_select_active_get(scene);
|
|
SequenceModifierData *smd;
|
|
char name[MAX_NAME];
|
|
RNA_string_get(op->ptr, "name", name);
|
|
int number = RNA_enum_get(op->ptr, "graphs");
|
|
|
|
smd = SEQ_modifier_find_by_name(seq, name);
|
|
if (!smd) {
|
|
return OPERATOR_CANCELLED;
|
|
}
|
|
|
|
SEQ_sound_equalizermodifier_set_graphs((SoundEqualizerModifierData *)smd, number);
|
|
|
|
SEQ_relations_invalidate_cache_preprocessed(scene, seq);
|
|
WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
|
|
|
|
return OPERATOR_FINISHED;
|
|
}
|
|
|
|
void SEQUENCER_OT_strip_modifier_equalizer_redefine(wmOperatorType *ot)
|
|
{
|
|
|
|
static const EnumPropertyItem enum_modifier_equalizer_presets_items[] = {
|
|
{1, "SIMPLE", 0, "Unique", "One unique graphical definition"},
|
|
{2, "DOUBLE", 0, "Double", "Graphical definition in 2 sections"},
|
|
{3, "TRIPLE", 0, "Triplet", "Graphical definition in 3 sections"},
|
|
{0, nullptr, 0, nullptr, nullptr},
|
|
};
|
|
PropertyRNA *prop;
|
|
|
|
/* identifiers */
|
|
ot->name = "Redefine equalizer graphs";
|
|
ot->idname = "SEQUENCER_OT_strip_modifier_equalizer_redefine";
|
|
ot->description = "Redefine equalizer graphs";
|
|
|
|
/* api callbacks */
|
|
ot->exec = strip_modifier_equalizer_redefine_exec;
|
|
|
|
/*
|
|
* No poll because a modifier can be applied to any kind of strip
|
|
*/
|
|
|
|
/* flags */
|
|
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
|
|
|
|
/* properties */
|
|
prop = RNA_def_enum(
|
|
ot->srna, "graphs", enum_modifier_equalizer_presets_items, 1, "Graphs", "Number of graphs");
|
|
ot->prop = prop;
|
|
prop = RNA_def_string(
|
|
ot->srna, "name", "Name", MAX_NAME, "Name", "Name of modifier to redefine");
|
|
RNA_def_property_flag(prop, PROP_HIDDEN);
|
|
}
|
|
|
|
/** \} */
|