2008-12-15 10:48:04 +00:00
|
|
|
/**
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): Blender Foundation (2008)
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
|
|
#include "RNA_define.h"
|
|
|
|
|
#include "RNA_types.h"
|
|
|
|
|
|
|
|
|
|
#include "rna_internal.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
#include "DNA_sequence_types.h"
|
|
|
|
|
|
2009-06-10 06:02:08 +00:00
|
|
|
#include "BKE_sequence.h"
|
|
|
|
|
|
2009-06-13 01:30:47 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
2009-07-08 17:41:45 +00:00
|
|
|
#include "WM_types.h"
|
2008-12-15 10:48:04 +00:00
|
|
|
|
2009-07-08 17:41:45 +00:00
|
|
|
#ifdef RNA_RUNTIME
|
2009-06-16 00:52:21 +00:00
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
static int rna_SequenceEditor_name_length(PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
return strlen("Sequence Editor");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_SequenceEditor_name_get(PointerRNA *ptr, char *str)
|
|
|
|
|
{
|
|
|
|
|
strcpy(str, "Sequence Editor");
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-10 19:57:06 +00:00
|
|
|
static void rna_SequenceEditor_start_frame_set(PointerRNA *ptr, int value)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
Scene *sce= (Scene*)ptr->id.data;
|
|
|
|
|
Editing *ed= seq_give_editing(sce, FALSE);
|
|
|
|
|
|
|
|
|
|
seq->start= value;
|
|
|
|
|
calc_sequence_disp(seq);
|
|
|
|
|
|
|
|
|
|
if( seq_test_overlap(ed->seqbasep, seq) ) {
|
|
|
|
|
shuffle_seq(ed->seqbasep, seq);
|
|
|
|
|
}
|
|
|
|
|
sort_seq(sce);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_SequenceEditor_length_set(PointerRNA *ptr, int value)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
Scene *sce= (Scene*)ptr->id.data;
|
|
|
|
|
Editing *ed= seq_give_editing(sce, FALSE);
|
|
|
|
|
|
|
|
|
|
seq_tx_set_final_right(seq, seq->start+value);
|
|
|
|
|
calc_sequence_disp(seq);
|
|
|
|
|
|
|
|
|
|
if( seq_test_overlap(ed->seqbasep, seq) ) {
|
|
|
|
|
shuffle_seq(ed->seqbasep, seq);
|
|
|
|
|
}
|
|
|
|
|
sort_seq(sce);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int rna_SequenceEditor_length_get(PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
return seq_tx_get_final_right(seq, 1)-seq_tx_get_final_left(seq, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_SequenceEditor_channel_set(PointerRNA *ptr, int value)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
Scene *sce= (Scene*)ptr->id.data;
|
|
|
|
|
Editing *ed= seq_give_editing(sce, FALSE);
|
|
|
|
|
|
|
|
|
|
seq->machine= value;
|
|
|
|
|
|
|
|
|
|
if( seq_test_overlap(ed->seqbasep, seq) ) {
|
|
|
|
|
shuffle_seq(ed->seqbasep, seq);
|
|
|
|
|
}
|
|
|
|
|
sort_seq(sce);
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-11 11:54:56 +00:00
|
|
|
/* properties that need to allocate structs */
|
2009-06-13 01:30:47 +00:00
|
|
|
static void rna_SequenceEditor_use_color_balance_set(PointerRNA *ptr, int value)
|
2009-06-10 22:03:50 +00:00
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
if(value) {
|
|
|
|
|
seq->flag |= SEQ_USE_COLOR_BALANCE;
|
|
|
|
|
if(seq->strip->color_balance == NULL) {
|
|
|
|
|
seq->strip->color_balance = MEM_callocN(sizeof(struct StripColorBalance), "StripColorBalance");
|
|
|
|
|
for (c=0; c<3; c++) {
|
|
|
|
|
seq->strip->color_balance->lift[c] = 1.0f;
|
|
|
|
|
seq->strip->color_balance->gamma[c] = 1.0f;
|
|
|
|
|
seq->strip->color_balance->gain[c] = 1.0f;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
seq->flag ^= SEQ_USE_COLOR_BALANCE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 01:30:47 +00:00
|
|
|
static void rna_SequenceEditor_use_proxy_set(PointerRNA *ptr, int value)
|
2009-06-10 22:03:50 +00:00
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
if(value) {
|
|
|
|
|
seq->flag |= SEQ_USE_PROXY;
|
|
|
|
|
if(seq->strip->proxy == NULL) {
|
|
|
|
|
seq->strip->proxy = MEM_callocN(sizeof(struct StripProxy), "StripProxy");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
seq->flag ^= SEQ_USE_PROXY;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 01:30:47 +00:00
|
|
|
static void rna_SequenceEditor_use_translation_set(PointerRNA *ptr, int value)
|
2009-06-11 11:54:56 +00:00
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
if(value) {
|
|
|
|
|
seq->flag |= SEQ_USE_TRANSFORM;
|
|
|
|
|
if(seq->strip->transform == NULL) {
|
|
|
|
|
seq->strip->transform = MEM_callocN(sizeof(struct StripTransform), "StripTransform");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
seq->flag ^= SEQ_USE_TRANSFORM;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 01:30:47 +00:00
|
|
|
static void rna_SequenceEditor_use_crop_set(PointerRNA *ptr, int value)
|
2009-06-11 11:54:56 +00:00
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
if(value) {
|
|
|
|
|
seq->flag |= SEQ_USE_CROP;
|
|
|
|
|
if(seq->strip->crop == NULL) {
|
|
|
|
|
seq->strip->crop = MEM_callocN(sizeof(struct StripCrop), "StripCrop");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
seq->flag ^= SEQ_USE_CROP;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-15 10:48:04 +00:00
|
|
|
/* name functions that ignore the first two characters */
|
|
|
|
|
static void rna_Sequence_name_get(PointerRNA *ptr, char *value)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
BLI_strncpy(value, seq->name+2, sizeof(seq->name)-2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int rna_Sequence_name_length(PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
return strlen(seq->name+2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_Sequence_name_set(PointerRNA *ptr, const char *value)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
BLI_strncpy(seq->name+2, value, sizeof(seq->name)-2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static StructRNA* rna_Sequence_refine(struct PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
Sequence *seq= (Sequence*)ptr->data;
|
|
|
|
|
|
|
|
|
|
switch(seq->type) {
|
|
|
|
|
case SEQ_IMAGE:
|
|
|
|
|
return &RNA_ImageSequence;
|
|
|
|
|
case SEQ_META:
|
|
|
|
|
return &RNA_MetaSequence;
|
|
|
|
|
case SEQ_SCENE:
|
|
|
|
|
return &RNA_SceneSequence;
|
|
|
|
|
case SEQ_MOVIE:
|
|
|
|
|
return &RNA_MovieSequence;
|
2009-08-09 21:16:39 +00:00
|
|
|
case SEQ_SOUND:
|
2008-12-15 10:48:04 +00:00
|
|
|
return &RNA_SoundSequence;
|
|
|
|
|
case SEQ_CROSS:
|
|
|
|
|
case SEQ_ADD:
|
|
|
|
|
case SEQ_SUB:
|
|
|
|
|
case SEQ_ALPHAOVER:
|
|
|
|
|
case SEQ_ALPHAUNDER:
|
|
|
|
|
case SEQ_GAMCROSS:
|
|
|
|
|
case SEQ_MUL:
|
|
|
|
|
case SEQ_OVERDROP:
|
|
|
|
|
return &RNA_EffectSequence;
|
|
|
|
|
case SEQ_PLUGIN:
|
|
|
|
|
return &RNA_PluginSequence;
|
|
|
|
|
case SEQ_WIPE:
|
|
|
|
|
return &RNA_WipeSequence;
|
|
|
|
|
case SEQ_GLOW:
|
|
|
|
|
return &RNA_GlowSequence;
|
|
|
|
|
case SEQ_TRANSFORM:
|
|
|
|
|
return &RNA_TransformSequence;
|
|
|
|
|
case SEQ_COLOR:
|
|
|
|
|
return &RNA_ColorSequence;
|
|
|
|
|
case SEQ_SPEED:
|
|
|
|
|
return &RNA_SpeedControlSequence;
|
|
|
|
|
default:
|
|
|
|
|
return &RNA_Sequence;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-02 19:57:57 +00:00
|
|
|
static PointerRNA rna_SequenceEdtior_meta_stack_get(CollectionPropertyIterator *iter)
|
2008-12-15 10:48:04 +00:00
|
|
|
{
|
|
|
|
|
ListBaseIterator *internal= iter->internal;
|
|
|
|
|
MetaStack *ms= (MetaStack*)internal->link;
|
|
|
|
|
|
2009-02-02 19:57:57 +00:00
|
|
|
return rna_pointer_inherit_refine(&iter->parent, &RNA_Sequence, ms->parseq);
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
static void rna_def_strip_element(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceElement", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Element", "Sequence strip data for a single frame.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "StripElem");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "name");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Filename", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_strip_crop(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceCrop", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Crop", "Cropping parameters for a sequence strip.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "StripCrop");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "top", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Top", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "bottom", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Bottom", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "left", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Left", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "right", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Right", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_strip_transform(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceTransform", NULL);
|
2009-02-02 19:57:57 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Transform", "Transform parameters for a sequence strip.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "StripTransform");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "offset_x", PROP_INT, PROP_NONE);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "xofs");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Offset Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -4096, 4096, 1, 0);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "offset_y", PROP_INT, PROP_NONE);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "yofs");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Offset Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -4096, 4096, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_strip_proxy(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceProxy", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Proxy", "Proxy parameters for a sequence strip.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "StripProxy");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "dir");
|
2009-06-09 05:39:01 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Directory", "Location to story the proxy file");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "file", PROP_STRING, PROP_DIRPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "file");
|
|
|
|
|
RNA_def_property_ui_text(prop, "File", "Proxy file name");
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_strip_color_balance(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceColorBalance", NULL);
|
2009-02-02 19:57:57 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Color Balance", "Color balance parameters for a sequence strip.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "StripColorBalance");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "lift", PROP_FLOAT, PROP_COLOR);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Lift", "Color balance lift (shadows).");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "gamma", PROP_FLOAT, PROP_COLOR);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Gamma", "Color balance gamma (midtones).");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "gain", PROP_FLOAT, PROP_COLOR);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Gain", "Color balance gain (highlights).");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "inverse_gain", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_GAIN);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Inverse Gain", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "inverse_gamma", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_GAMMA);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Inverse Gamma", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "inverse_lift", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_LIFT);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Inverse Lift", "");
|
|
|
|
|
|
|
|
|
|
/* not yet used
|
|
|
|
|
prop= RNA_def_property(srna, "exposure", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 1.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Exposure", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "saturation", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 1.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Saturation", "");*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_sequence(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
2009-06-10 06:02:08 +00:00
|
|
|
FunctionRNA *func;
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
static const EnumPropertyItem seq_type_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{SEQ_IMAGE, "IMAGE", 0, "Image", ""},
|
|
|
|
|
{SEQ_META, "META", 0, "Meta", ""},
|
|
|
|
|
{SEQ_SCENE, "SCENE", 0, "Scene", ""},
|
|
|
|
|
{SEQ_MOVIE, "MOVIE", 0, "Movie", ""},
|
2009-08-09 21:16:39 +00:00
|
|
|
{SEQ_SOUND, "_SOUND", 0, "Sound", ""},
|
2009-06-16 00:52:21 +00:00
|
|
|
{SEQ_EFFECT, "REPLACE", 0, "Replace", ""},
|
|
|
|
|
{SEQ_CROSS, "CROSS", 0, "Cross", ""},
|
|
|
|
|
{SEQ_ADD, "ADD", 0, "Add", ""},
|
|
|
|
|
{SEQ_SUB, "SUBTRACT", 0, "Subtract", ""},
|
|
|
|
|
{SEQ_ALPHAOVER, "ALPHA_OVER", 0, "Alpha Over", ""},
|
|
|
|
|
{SEQ_ALPHAUNDER, "ALPHA_UNDER", 0, "Alpha Under", ""},
|
|
|
|
|
{SEQ_GAMCROSS, "GAMMA_CROSS", 0, "Gamma Cross", ""},
|
|
|
|
|
{SEQ_MUL, "MULTIPLY", 0, "Multiply", ""},
|
|
|
|
|
{SEQ_OVERDROP, "OVER_DROP", 0, "Over Drop", ""},
|
|
|
|
|
{SEQ_PLUGIN, "PLUGIN", 0, "plugin", ""},
|
|
|
|
|
{SEQ_WIPE, "WIPE", 0, "Wipe", ""},
|
|
|
|
|
{SEQ_GLOW, "GLOW", 0, "Glow", ""},
|
|
|
|
|
{SEQ_TRANSFORM, "TRANSFORM", 0, "Transform", ""},
|
|
|
|
|
{SEQ_COLOR, "COLOR", 0, "Color", ""},
|
|
|
|
|
{SEQ_SPEED, "SPEED", 0, "Speed", ""},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}};
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
static const EnumPropertyItem blend_mode_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{SEQ_BLEND_REPLACE, "REPLACE", 0, "Replace", ""},
|
|
|
|
|
{SEQ_CROSS, "CROSS", 0, "Cross", ""},
|
|
|
|
|
{SEQ_ADD, "ADD", 0, "Add", ""},
|
|
|
|
|
{SEQ_SUB, "SUBTRACT", 0, "Subtract", ""},
|
|
|
|
|
{SEQ_ALPHAOVER, "ALPHA_OVER", 0, "Alpha Over", ""},
|
|
|
|
|
{SEQ_ALPHAUNDER, "ALPHA_UNDER", 0, "Alpha Under", ""},
|
|
|
|
|
{SEQ_GAMCROSS, "GAMMA_CROSS", 0, "Gamma Cross", ""},
|
|
|
|
|
{SEQ_MUL, "MULTIPLY", 0, "Multiply", ""},
|
|
|
|
|
{SEQ_OVERDROP, "OVER_DROP", 0, "Over Drop", ""},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}};
|
2008-12-15 10:48:04 +00:00
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "Sequence", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence", "Sequence strip in the sequence editor.");
|
2009-01-01 15:52:51 +00:00
|
|
|
RNA_def_struct_refine_func(srna, "rna_Sequence_refine");
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
|
|
|
|
|
RNA_def_property_string_funcs(prop, "rna_Sequence_name_get", "rna_Sequence_name_length", "rna_Sequence_name_set");
|
|
|
|
|
RNA_def_property_string_maxlength(prop, sizeof(((Sequence*)NULL)->name)-2);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Name", "");
|
|
|
|
|
RNA_def_struct_name_property(srna, prop);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_enum_items(prop, seq_type_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Type", "");
|
|
|
|
|
|
2009-02-02 11:51:10 +00:00
|
|
|
//prop= RNA_def_property(srna, "ipo", PROP_POINTER, PROP_NONE);
|
|
|
|
|
//RNA_def_property_ui_text(prop, "Ipo Curves", "Ipo curves used by this sequence.");
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "selected", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SELECT);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Selected", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "left_handle_selected", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_LEFTSEL);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Left Handle Selected", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "right_handle_selected", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_RIGHTSEL);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Right Handle Selected", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "mute", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MUTE);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Mute", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
2009-06-06 11:34:18 +00:00
|
|
|
prop= RNA_def_property(srna, "frame_locked", PROP_BOOLEAN, PROP_NONE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_IPO_FRAME_LOCKED);
|
2009-06-06 11:34:18 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Frame Locked", "Lock the animation curve to the global frame counter.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "lock", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_LOCK);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Lock", "Lock strip so that it can't be transformed.");
|
|
|
|
|
|
|
|
|
|
/* strip positioning */
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "length", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "len");
|
2009-06-10 19:57:06 +00:00
|
|
|
RNA_def_property_range(prop, 1, MAXFRAME);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Length", "The length of the contents of this strip before the handles are applied");
|
2009-06-10 19:57:06 +00:00
|
|
|
RNA_def_property_int_funcs(prop, "rna_SequenceEditor_length_get", "rna_SequenceEditor_length_set",NULL);
|
|
|
|
|
|
2008-12-15 10:48:04 +00:00
|
|
|
prop= RNA_def_property(srna, "start_frame", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "start");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Start Frame", "");
|
2009-06-10 19:57:06 +00:00
|
|
|
RNA_def_property_int_funcs(prop, NULL, "rna_SequenceEditor_start_frame_set",NULL); // overlap tests and calc_seq_disp
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "start_offset", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "startofs");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap tests
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Start Offset", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "end_offset", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "endofs");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap tests
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "End offset", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "start_still", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "startstill");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap tests
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_range(prop, 0, MAXFRAME);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Start Still", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "end_still", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "endstill");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap tests
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_range(prop, 0, MAXFRAME);
|
|
|
|
|
RNA_def_property_ui_text(prop, "End Still", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "channel", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "machine");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Channel", "Y position of the sequence strip.");
|
2009-06-10 19:57:06 +00:00
|
|
|
RNA_def_property_int_funcs(prop, NULL, "rna_SequenceEditor_channel_set",NULL); // overlap test
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
/* blending */
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "blend_mode", PROP_ENUM, PROP_NONE);
|
|
|
|
|
RNA_def_property_enum_items(prop, blend_mode_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Blend Mode", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "blend_opacity", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 100.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Blend Opacity", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2009-06-10 06:02:08 +00:00
|
|
|
|
2009-07-08 17:41:45 +00:00
|
|
|
/* functions */
|
2009-06-10 06:02:08 +00:00
|
|
|
func= RNA_def_function(srna, "getStripElem", "give_stripelem");
|
|
|
|
|
RNA_def_function_ui_description(func, "Return the strip element from a given frame or None.");
|
|
|
|
|
prop= RNA_def_int(func, "frame", 0, INT_MIN, INT_MAX, "Frame", "The frame to get the strip element from", INT_MIN, INT_MAX);
|
|
|
|
|
RNA_def_property_flag(prop, PROP_REQUIRED);
|
|
|
|
|
RNA_def_function_return(func, RNA_def_pointer(func, "elem", "SequenceElement", "", "strip element of the current frame"));
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void rna_def_editor(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SequenceEditor", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sequence Editor", "Sequence editing data for a Scene datablock.");
|
2009-06-07 13:09:18 +00:00
|
|
|
RNA_def_struct_ui_icon(srna, ICON_SEQUENCE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Editing");
|
|
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
|
|
|
|
|
RNA_def_property_string_funcs(prop, "rna_SequenceEditor_name_get", "rna_SequenceEditor_name_length", NULL);
|
|
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Name", "");
|
|
|
|
|
RNA_def_struct_name_property(srna, prop);
|
|
|
|
|
|
2008-12-15 10:48:04 +00:00
|
|
|
prop= RNA_def_property(srna, "sequences", PROP_COLLECTION, PROP_NONE);
|
|
|
|
|
RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
|
|
|
|
|
RNA_def_property_struct_type(prop, "Sequence");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Sequences", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "meta_stack", PROP_COLLECTION, PROP_NONE);
|
|
|
|
|
RNA_def_property_collection_sdna(prop, NULL, "metastack", NULL);
|
|
|
|
|
RNA_def_property_struct_type(prop, "Sequence");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Meta Stack", "Meta strip stack, last is currently edited meta strip.");
|
2009-06-18 19:48:55 +00:00
|
|
|
RNA_def_property_collection_funcs(prop, 0, 0, 0, "rna_SequenceEdtior_meta_stack_get", 0, 0, 0, 0, 0);
|
2009-06-06 11:34:18 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "active_strip", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "act_seq");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Active Strip", "Sequencers active strip");
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_filter_video(StructRNA *srna)
|
|
|
|
|
{
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "de_interlace", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FILTERY);
|
|
|
|
|
RNA_def_property_ui_text(prop, "De-Interlace", "For video movies to remove fields.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "premultiply", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MAKE_PREMUL);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Premultiply", "Convert RGB from key alpha to premultiplied alpha.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "flip_x", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FLIPX);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Flip X", "Flip on the X axis.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "flip_y", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FLIPY);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Flip Y", "Flip on the Y axis.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "convert_float", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MAKE_FLOAT);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Convert Float", "Convert input to float data.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "reverse_frames", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_REVERSE_FRAMES);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Flip Time", "Reverse frame order.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "multiply_colors", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "mul");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 20.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Multiply Colors", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "strobe", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_range(prop, 1.0f, 30.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Strobe", "Only display every nth frame.");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "use_color_balance", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_COLOR_BALANCE);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Use Color Balance", "(3-Way color correction) on input.");
|
2009-06-10 22:03:50 +00:00
|
|
|
RNA_def_property_boolean_funcs(prop, NULL, "rna_SequenceEditor_use_color_balance_set");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "color_balance", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "strip->color_balance");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Color Balance", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "use_translation", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_TRANSFORM);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Use Translation", "Translate image before processing.");
|
2009-06-11 11:54:56 +00:00
|
|
|
RNA_def_property_boolean_funcs(prop, NULL, "rna_SequenceEditor_use_translation_set");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "transform", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "strip->transform");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Transform", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "use_crop", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_CROP);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Use Crop", "Crop image before processing.");
|
2009-06-11 11:54:56 +00:00
|
|
|
RNA_def_property_boolean_funcs(prop, NULL, "rna_SequenceEditor_use_crop_set");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "crop", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "strip->crop");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Crop", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_proxy(StructRNA *srna)
|
|
|
|
|
{
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "use_proxy", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_PROXY);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Use Proxy", "Use a preview proxy for this strip.");
|
2009-06-10 22:03:50 +00:00
|
|
|
RNA_def_property_boolean_funcs(prop, NULL, "rna_SequenceEditor_use_proxy_set");
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "proxy", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "strip->proxy");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Proxy", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "proxy_custom_directory", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_PROXY_CUSTOM_DIR);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Proxy Custom Directory", "Use a custom directory to store data.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_input(StructRNA *srna)
|
|
|
|
|
{
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "animation_start_offset", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "anim_startofs");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap test
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Animation Start Offset", "Animation start offset (trim start).");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "animation_end_offset", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "anim_endofs");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE); // overlap test
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Animation End Offset", "Animation end offset (trim end).");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_image(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "ImageSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Image Sequence", "Sequence strip to load one or more images.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "strip->dir");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Directory", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "elements", PROP_COLLECTION, PROP_NONE);
|
|
|
|
|
RNA_def_property_collection_sdna(prop, NULL, "strip->stripdata", "strip->len");
|
|
|
|
|
RNA_def_property_struct_type(prop, "SequenceElement");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Elements", "");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rna_def_filter_video(srna);
|
|
|
|
|
rna_def_proxy(srna);
|
|
|
|
|
rna_def_input(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_meta(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "MetaSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Meta Sequence", "Sequence strip to group other strips as a single sequence strip.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
prop = RNA_def_property(srna, "sequences", PROP_COLLECTION, PROP_NONE);
|
|
|
|
|
RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
|
|
|
|
|
RNA_def_property_struct_type(prop, "Sequence");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Sequences", "");
|
|
|
|
|
|
|
|
|
|
rna_def_filter_video(srna);
|
|
|
|
|
rna_def_proxy(srna);
|
|
|
|
|
rna_def_input(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_scene(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SceneSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Scene Sequence", "Sequence strip to used the rendered image of a scene.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "scene", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Scene", "Scene that this sequence uses.");
|
|
|
|
|
|
|
|
|
|
rna_def_filter_video(srna);
|
|
|
|
|
rna_def_proxy(srna);
|
|
|
|
|
rna_def_input(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_movie(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "MovieSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Movie Sequence", "Sequence strip to load a video.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "mpeg_preseek", PROP_INT, PROP_NONE);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "anim_preseek");
|
|
|
|
|
RNA_def_property_range(prop, 0, 50);
|
|
|
|
|
RNA_def_property_ui_text(prop, "MPEG Preseek", "For MPEG movies, preseek this many frames.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "strip->stripdata->name");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Filename", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "strip->dir");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Directory", "");
|
|
|
|
|
|
|
|
|
|
rna_def_filter_video(srna);
|
|
|
|
|
rna_def_proxy(srna);
|
|
|
|
|
rna_def_input(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_sound(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SoundSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Sound Sequence", "Sequence strip defining a sound to be played over a period of time.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "sound", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_struct_type(prop, "UnknownType");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Sound", "Sound datablock used by this sequence (RAM audio only).");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "strip->stripdata->name");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Filename", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "strip->dir");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Directory", "");
|
|
|
|
|
|
|
|
|
|
rna_def_input(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_effect(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "EffectSequence", "Sequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Effect Sequence", "Sequence strip applying an effect on the images created by other strips.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna(srna, "Sequence");
|
|
|
|
|
|
|
|
|
|
rna_def_proxy(srna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_plugin(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "PluginSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Plugin Sequence", "Sequence strip applying an effect, loaded from an external plugin.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "PluginSeq", "plugin");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
|
|
|
|
|
RNA_def_property_string_sdna(prop, NULL, "name");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Filename", "");
|
|
|
|
|
|
|
|
|
|
/* plugin properties need custom wrapping code like ID properties */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_wipe(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
static const EnumPropertyItem wipe_type_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, "SINGLE", 0, "Single", ""},
|
|
|
|
|
{1, "DOUBLE", 0, "Double", ""},
|
|
|
|
|
/* not used yet {2, "BOX", 0, "Box", ""}, */
|
|
|
|
|
/* not used yet {3, "CROSS", 0, "Cross", ""}, */
|
|
|
|
|
{4, "IRIS", 0, "Iris", ""},
|
|
|
|
|
{5, "CLOCK", 0, "Clock", ""},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}
|
2008-12-15 10:48:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const EnumPropertyItem wipe_direction_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, "OUT", 0, "Out", ""},
|
|
|
|
|
{1, "IN", 0, "In", ""},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}
|
2008-12-15 10:48:04 +00:00
|
|
|
};
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "WipeSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Wipe Sequence", "Sequence strip creating a wipe transition.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "WipeVars", "effectdata");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "blur_width", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "edgeWidth");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 1.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Blur Width", "Width of the blur edge, in percentage relative to the image size.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "angle", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "angle");
|
|
|
|
|
RNA_def_property_range(prop, -90.0f, 90.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Angle", "Edge angle.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "direction", PROP_ENUM, PROP_NONE);
|
|
|
|
|
RNA_def_property_enum_sdna(prop, NULL, "forward");
|
|
|
|
|
RNA_def_property_enum_items(prop, wipe_direction_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Direction", "Wipe direction.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "transition_type", PROP_ENUM, PROP_NONE);
|
|
|
|
|
RNA_def_property_enum_sdna(prop, NULL, "wipetype");
|
|
|
|
|
RNA_def_property_enum_items(prop, wipe_type_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Transition Type", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_glow(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "GlowSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Glow Sequence", "Sequence strip creating a glow effect.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "GlowVars", "effectdata");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "threshold", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "fMini");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 1.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Threshold", "Minimum intensity to trigger a glow");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "clamp", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "fClamp");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 1.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Clamp", "rightness limit of intensity.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "boost_factor", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "fBoost");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 10.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Boost Factor", "Brightness multiplier.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "blur_distance", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "dDist");
|
|
|
|
|
RNA_def_property_range(prop, 0.5f, 20.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Blur Distance", "Radius of glow effect.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "quality", PROP_INT, PROP_NONE);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "dQuality");
|
|
|
|
|
RNA_def_property_range(prop, 1, 5);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Quality", "Accuracy of the blur effect.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "only_boost", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "bNoComp", 0);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Only Boost", "Show the glow buffer only.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_transform(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
static const EnumPropertyItem interpolation_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, "NONE", 0, "None", "No interpolation."},
|
|
|
|
|
{1, "BILINEAR", 0, "Bilinear", "Bilinear interpolation."},
|
|
|
|
|
{2, "BICUBIC", 0, "Bicubic", "Bicubic interpolation."},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}
|
2008-12-15 10:48:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const EnumPropertyItem translation_unit_items[]= {
|
2009-06-16 00:52:21 +00:00
|
|
|
{0, "PIXELS", 0, "Pixels", ""},
|
|
|
|
|
{1, "PERCENT", 0, "Percent", ""},
|
|
|
|
|
{0, NULL, 0, NULL, NULL}
|
2008-12-15 10:48:04 +00:00
|
|
|
};
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "TransformSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Transform Sequence", "Sequence strip applying affine transformations to other strips.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "TransformVars", "effectdata");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "scale_start_x", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "ScalexIni");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Scale Start X", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 10, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "scale_start_y", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "ScaleyIni");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Scale Start Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 10, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "scale_end_x", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "ScalexFin");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Scale End X", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 10, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "scale_end_y", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "ScaleyFin");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Scale End Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0, 10, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "translate_start_x", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "xIni");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Translate Start X", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "translate_start_y", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "yIni");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Translate Start Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "translate_end_x", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "xFin");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Translate End X", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "translate_end_y", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "yFin");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Translate End Y", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "rotation_start", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "rotIni");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 360.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Rotation Start", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "rotation_end", PROP_FLOAT, PROP_NONE);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "rotFin");
|
|
|
|
|
RNA_def_property_range(prop, 0.0f, 360.0f);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Rotation End", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "translation_unit", PROP_ENUM, PROP_NONE);
|
|
|
|
|
RNA_def_property_enum_sdna(prop, NULL, "percent");
|
|
|
|
|
RNA_def_property_enum_items(prop, translation_unit_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Translation Unit", "");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "interpolation", PROP_ENUM, PROP_NONE);
|
|
|
|
|
RNA_def_property_enum_items(prop, interpolation_items);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Interpolation", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_solid_color(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "ColorSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Color Sequence", "Sequence strip creating an image filled with a single color.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "SolidColorVars", "effectdata");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "col");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Color", "");
|
2009-07-08 17:41:45 +00:00
|
|
|
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, NULL);
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void rna_def_speed_control(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna = RNA_def_struct(brna, "SpeedControlSequence", "EffectSequence");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "SpeedControl Sequence", "Sequence strip to control the speed of other strips.");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_struct_sdna_from(srna, "SpeedControlVars", "effectdata");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "global_speed", PROP_FLOAT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_float_sdna(prop, NULL, "globalSpeed");
|
|
|
|
|
RNA_def_property_ui_text(prop, "Global Speed", "");
|
|
|
|
|
RNA_def_property_ui_range(prop, 0.0f, 100.0f, 1, 0);
|
|
|
|
|
|
2009-06-06 16:18:19 +00:00
|
|
|
prop= RNA_def_property(srna, "curve_velocity", PROP_BOOLEAN, PROP_NONE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_INTEGRATE);
|
2009-06-06 16:18:19 +00:00
|
|
|
RNA_def_property_ui_text(prop, "F-Curve Velocity", "Interpret the F-Curve value as a velocity instead of a frame number.");
|
2008-12-15 10:48:04 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "frame_blending", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_BLEND);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Frame Blending", "Blend two frames into the target for a smoother result.");
|
|
|
|
|
|
2009-06-06 16:18:19 +00:00
|
|
|
prop= RNA_def_property(srna, "curve_compress_y", PROP_BOOLEAN, PROP_NONE);
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_COMPRESS_IPO_Y);
|
2009-06-06 16:18:19 +00:00
|
|
|
RNA_def_property_ui_text(prop, "F-Curve Compress Y", "Scale F-Curve value to get the target frame number, F-Curve value runs from 0.0 to 1.0.");
|
2008-12-15 10:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RNA_def_sequence(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
rna_def_strip_element(brna);
|
|
|
|
|
rna_def_strip_proxy(brna);
|
|
|
|
|
rna_def_strip_color_balance(brna);
|
|
|
|
|
rna_def_strip_crop(brna);
|
|
|
|
|
rna_def_strip_transform(brna);
|
|
|
|
|
|
|
|
|
|
rna_def_sequence(brna);
|
|
|
|
|
rna_def_editor(brna);
|
|
|
|
|
|
|
|
|
|
rna_def_image(brna);
|
|
|
|
|
rna_def_meta(brna);
|
|
|
|
|
rna_def_scene(brna);
|
|
|
|
|
rna_def_movie(brna);
|
|
|
|
|
rna_def_sound(brna);
|
|
|
|
|
rna_def_effect(brna);
|
|
|
|
|
rna_def_plugin(brna);
|
|
|
|
|
rna_def_wipe(brna);
|
|
|
|
|
rna_def_glow(brna);
|
|
|
|
|
rna_def_transform(brna);
|
|
|
|
|
rna_def_solid_color(brna);
|
|
|
|
|
rna_def_speed_control(brna);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|