/** * * ***** 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. * * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. * All rights reserved. * * Contributor(s): Blender Foundation, 2003-2009, Campbell Barton * * ***** END GPL LICENSE BLOCK ***** */ #include #include #include #ifndef WIN32 #include #else #include #endif #include #include "MEM_guardedalloc.h" #include "BLI_blenlib.h" #include "BLI_arithb.h" #include "BLI_storage_types.h" #include "IMB_imbuf_types.h" #include "IMB_imbuf.h" #include "DNA_ipo_types.h" #include "DNA_curve_types.h" #include "DNA_scene_types.h" #include "DNA_screen_types.h" #include "DNA_space_types.h" #include "DNA_sequence_types.h" #include "DNA_view2d_types.h" #include "DNA_userdef_types.h" #include "DNA_sound_types.h" #include "BKE_context.h" #include "BKE_global.h" #include "BKE_image.h" #include "BKE_library.h" #include "BKE_main.h" #include "BKE_plugin_types.h" #include "BKE_sequence.h" #include "BKE_scene.h" #include "BKE_utildefines.h" #include "BKE_report.h" #include "BIF_gl.h" #include "BIF_glutil.h" #include "WM_api.h" #include "WM_types.h" #include "RNA_access.h" #include "RNA_define.h" /* for menu/popup icons etc etc*/ #include "UI_interface.h" #include "UI_resources.h" #include "ED_anim_api.h" #include "ED_space_api.h" #include "ED_types.h" #include "ED_screen.h" #include "ED_util.h" #include "ED_fileselect.h" #include "UI_interface.h" #include "UI_resources.h" #include "UI_view2d.h" #include "BKE_sound.h" #include "AUD_C-API.h" /* own include */ #include "sequencer_intern.h" /* Generic functions, reused by add strip operators */ /* avoid passing multiple args and be more verbose */ #define SEQPROP_STARTFRAME 1<<0 #define SEQPROP_ENDFRAME 1<<1 static void sequencer_generic_props__internal(wmOperatorType *ot, int flag) { RNA_def_string(ot->srna, "name", "", MAX_ID_NAME-2, "Name", "Name of the new sequence strip"); if(flag & SEQPROP_STARTFRAME) RNA_def_int(ot->srna, "start_frame", 0, INT_MIN, INT_MAX, "Start Frame", "Start frame of the sequence strip", INT_MIN, INT_MAX); if(flag & SEQPROP_ENDFRAME) RNA_def_int(ot->srna, "end_frame", 0, INT_MIN, INT_MAX, "End Frame", "End frame for the color strip", INT_MIN, INT_MAX); /* not useual since most strips have a fixed length */ RNA_def_int(ot->srna, "channel", 1, 1, MAXSEQ, "Channel", "Channel to place this strip into", 1, MAXSEQ); RNA_def_boolean(ot->srna, "replace_sel", 1, "Replace Selection", "replace the current selection"); } static void sequencer_generic_invoke_xy__internal(bContext *C, wmOperator *op, wmEvent *event, int flag) { ARegion *ar= CTX_wm_region(C); View2D *v2d= UI_view2d_fromcontext(C); short mval[2]; float mval_v2d[2]; mval[0]= event->x - ar->winrct.xmin; mval[1]= event->y - ar->winrct.ymin; UI_view2d_region_to_view(v2d, mval[0], mval[1], &mval_v2d[0], &mval_v2d[1]); RNA_int_set(op->ptr, "channel", (int)mval_v2d[1]+0.5f); RNA_int_set(op->ptr, "start_frame", (int)mval_v2d[0]); if ((flag & SEQPROP_ENDFRAME) && RNA_property_is_set(op->ptr, "end_frame")==0) RNA_int_set(op->ptr, "end_frame", (int)mval_v2d[0] + 25); // XXX arbitary but ok for now. } /* add scene operator */ static int sequencer_add_scene_strip_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, TRUE); Scene *sce_seq; char sce_name[MAX_ID_NAME-2]; Sequence *seq; /* generic strip vars */ Strip *strip; StripElem *se; int start_frame, channel; /* operator props */ start_frame= RNA_int_get(op->ptr, "start_frame"); channel= RNA_int_get(op->ptr, "channel"); RNA_string_get(op->ptr, "scene", sce_name); sce_seq= (Scene *)find_id("SC", sce_name); if (sce_seq==NULL) { BKE_reportf(op->reports, RPT_ERROR, "Scene \"%s\" not found", sce_name); return OPERATOR_CANCELLED; } seq = alloc_sequence(ed->seqbasep, start_frame, channel); seq->type= SEQ_SCENE; seq->scene= sce_seq; /* basic defaults */ seq->strip= strip= MEM_callocN(sizeof(Strip), "strip"); strip->len = seq->len = sce_seq->r.efra - sce_seq->r.sfra + 1; strip->us= 1; strip->stripdata= se= MEM_callocN(seq->len*sizeof(StripElem), "stripelem"); RNA_string_get(op->ptr, "name", seq->name); calc_sequence_disp(seq); sort_seq(scene); if (RNA_boolean_get(op->ptr, "replace_sel")) { deselect_all_seq(scene); set_last_seq(scene, seq); seq->flag |= SELECT; } ED_area_tag_redraw(CTX_wm_area(C)); return OPERATOR_FINISHED; } static int sequencer_add_scene_strip_invoke(bContext *C, wmOperator *op, wmEvent *event) { sequencer_generic_invoke_xy__internal(C, op, event, 0); /* scene can be left default */ RNA_string_set(op->ptr, "scene", "Scene"); // XXX should popup a menu but ton says 2.5 will have some better feature for this return sequencer_add_scene_strip_exec(C, op); } void SEQUENCER_OT_scene_strip_add(struct wmOperatorType *ot) { /* identifiers */ ot->name= "Add Scene Strip"; ot->idname= "SEQUENCER_OT_scene_strip_add"; ot->description= "Add a strip to the sequencer using a blender scene as a source"; /* api callbacks */ ot->invoke= sequencer_add_scene_strip_invoke; ot->exec= sequencer_add_scene_strip_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME); RNA_def_string(ot->srna, "scene", "", MAX_ID_NAME-2, "Scene Name", "Scene name to add as a strip"); } static Sequence* sequencer_add_sound_strip(bContext *C, wmOperator *op, int start_frame, int channel, char* filename) { Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, TRUE); bSound *sound; Sequence *seq; /* generic strip vars */ Strip *strip; StripElem *se; AUD_SoundInfo info; sound = sound_new_file(CTX_data_main(C), filename); if (sound==NULL || sound->snd_sound == NULL) { if(op) BKE_report(op->reports, RPT_ERROR, "Unsupported audio format"); return NULL; } info = AUD_getInfo(sound->snd_sound); if (info.specs.format == AUD_FORMAT_INVALID) { sound_delete(C, sound); if(op) BKE_report(op->reports, RPT_ERROR, "Unsupported audio format"); return NULL; } seq = alloc_sequence(ed->seqbasep, start_frame, channel); seq->type= SEQ_SOUND; seq->sound= sound; /* basic defaults */ seq->strip= strip= MEM_callocN(sizeof(Strip), "strip"); strip->len = seq->len = (int) (info.length * FPS); strip->us= 1; strip->stripdata= se= MEM_callocN(seq->len*sizeof(StripElem), "stripelem"); BLI_split_dirfile_basic(filename, strip->dir, se->name); seq->sound_handle = sound_new_handle(scene, sound, start_frame, start_frame + strip->len, 0); calc_sequence_disp(seq); sort_seq(scene); /* last active name */ strncpy(ed->act_sounddir, strip->dir, FILE_MAXDIR-1); return seq; } /* add movie operator */ static int sequencer_add_movie_strip_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, TRUE); struct anim *an; char filename[FILE_MAX]; Sequence *seq, *soundseq; /* generic strip vars */ Strip *strip; StripElem *se; int start_frame, channel, sound; /* operator props */ start_frame= RNA_int_get(op->ptr, "start_frame"); channel= RNA_int_get(op->ptr, "channel"); sound = RNA_boolean_get(op->ptr, "sound"); RNA_string_get(op->ptr, "filename", filename); an = openanim(filename, IB_rect); if (an==NULL) { BKE_reportf(op->reports, RPT_ERROR, "Filename \"%s\" could not be loaded as a movie", filename); return OPERATOR_CANCELLED; } seq = alloc_sequence(ed->seqbasep, start_frame, channel); seq->type= SEQ_MOVIE; seq->anim= an; seq->anim_preseek = IMB_anim_get_preseek(an); /* basic defaults */ seq->strip= strip= MEM_callocN(sizeof(Strip), "strip"); strip->len = seq->len = IMB_anim_get_duration( an ); strip->us= 1; strip->stripdata= se= MEM_callocN(seq->len*sizeof(StripElem), "stripelem"); BLI_split_dirfile_basic(filename, strip->dir, se->name); RNA_string_get(op->ptr, "name", seq->name); calc_sequence_disp(seq); sort_seq(scene); if(sound) { soundseq = sequencer_add_sound_strip(C, NULL, start_frame, channel+1, filename); if(soundseq != NULL) RNA_string_get(op->ptr, "name", soundseq->name); } if (RNA_boolean_get(op->ptr, "replace_sel")) { deselect_all_seq(scene); set_last_seq(scene, seq); seq->flag |= SELECT; if(soundseq) soundseq->flag |= SELECT; } ED_area_tag_redraw(CTX_wm_area(C)); return OPERATOR_FINISHED; } static int sequencer_add_movie_strip_invoke(bContext *C, wmOperator *op, wmEvent *event) { sequencer_generic_invoke_xy__internal(C, op, event, 0); return WM_operator_filesel(C, op, event); //return sequencer_add_movie_strip_exec(C, op); } void SEQUENCER_OT_movie_strip_add(struct wmOperatorType *ot) { /* identifiers */ ot->name= "Add Movie Strip"; ot->idname= "SEQUENCER_OT_movie_strip_add"; ot->description= "Add a movie strip to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_movie_strip_invoke; ot->exec= sequencer_add_movie_strip_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_filesel(ot, FOLDERFILE|MOVIEFILE); sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME); RNA_def_boolean(ot->srna, "sound", TRUE, "Sound", "Load sound with the movie"); } /* add sound operator */ static int sequencer_add_sound_strip_exec(bContext *C, wmOperator *op) { char filename[FILE_MAX]; Scene *scene= CTX_data_scene(C); Sequence *seq; /* generic strip vars */ int start_frame, channel; /* operator props */ start_frame= RNA_int_get(op->ptr, "start_frame"); channel= RNA_int_get(op->ptr, "channel"); RNA_string_get(op->ptr, "filename", filename); seq = sequencer_add_sound_strip(C, op, start_frame, channel, filename); if(seq == NULL) return OPERATOR_CANCELLED; RNA_string_get(op->ptr, "name", seq->name); if (RNA_boolean_get(op->ptr, "cache")) { sound_cache(seq->sound, 0); } if (RNA_boolean_get(op->ptr, "replace_sel")) { deselect_all_seq(scene); set_last_seq(scene, seq); seq->flag |= SELECT; } ED_area_tag_redraw(CTX_wm_area(C)); return OPERATOR_FINISHED; } static int sequencer_add_sound_strip_invoke(bContext *C, wmOperator *op, wmEvent *event) { sequencer_generic_invoke_xy__internal(C, op, event, 0); return WM_operator_filesel(C, op, event); //return sequencer_add_sound_strip_exec(C, op); } void SEQUENCER_OT_sound_strip_add(struct wmOperatorType *ot) { /* identifiers */ ot->name= "Add Sound Strip"; ot->idname= "SEQUENCER_OT_sound_strip_add"; ot->description= "Add a sound strip to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_sound_strip_invoke; ot->exec= sequencer_add_sound_strip_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_filesel(ot, FOLDERFILE|SOUNDFILE); sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME); RNA_def_boolean(ot->srna, "cache", FALSE, "Cache", "Cache the sound in memory."); } /* add image operator */ static int sequencer_add_image_strip_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, TRUE); int tot_images; char filename[FILE_MAX]; Sequence *seq; /* generic strip vars */ Strip *strip; StripElem *se; int start_frame, channel; /* operator props */ start_frame= RNA_int_get(op->ptr, "start_frame"); channel= RNA_int_get(op->ptr, "channel"); RNA_string_get(op->ptr, "filename", filename); seq = alloc_sequence(ed->seqbasep, start_frame, channel); seq->type= SEQ_IMAGE; /* basic defaults */ seq->strip= strip= MEM_callocN(sizeof(Strip), "strip"); BLI_split_dirfile_basic(filename, strip->dir, NULL); tot_images= RNA_property_collection_length(op->ptr, RNA_struct_find_property(op->ptr, "files")); strip->len = seq->len = tot_images?tot_images:1; strip->us= 1; strip->stripdata= se= MEM_callocN(seq->len*sizeof(StripElem), "stripelem"); if(tot_images) { RNA_BEGIN(op->ptr, itemptr, "files") { RNA_string_get(&itemptr, "name", se->name); se++; } RNA_END; } else { BLI_split_dirfile_basic(filename, NULL, se->name); } RNA_string_get(op->ptr, "name", seq->name); calc_sequence_disp(seq); sort_seq(scene); /* last active name */ strncpy(ed->act_imagedir, strip->dir, FILE_MAXDIR-1); if (RNA_boolean_get(op->ptr, "replace_sel")) { deselect_all_seq(scene); set_last_seq(scene, seq); seq->flag |= SELECT; } ED_area_tag_redraw(CTX_wm_area(C)); return OPERATOR_FINISHED; } static int sequencer_add_image_strip_invoke(bContext *C, wmOperator *op, wmEvent *event) { sequencer_generic_invoke_xy__internal(C, op, event, 0); return WM_operator_filesel(C, op, event); //return sequencer_add_image_strip_exec(C, op); } void SEQUENCER_OT_image_strip_add(struct wmOperatorType *ot) { /* identifiers */ ot->name= "Add Image Strip"; ot->idname= "SEQUENCER_OT_image_strip_add"; ot->description= "Add an image or image sequence to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_image_strip_invoke; ot->exec= sequencer_add_image_strip_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_filesel(ot, FOLDERFILE|IMAGEFILE); sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME); RNA_def_collection_runtime(ot->srna, "files", &RNA_OperatorFileListElement, "Files", ""); } /* add_effect_strip operator */ static int sequencer_add_effect_strip_exec(bContext *C, wmOperator *op) { Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, TRUE); Sequence *seq; /* generic strip vars */ Strip *strip; StripElem *se; struct SeqEffectHandle sh; int start_frame, end_frame, channel, type; /* operator props */ Sequence *seq1, *seq2, *seq3; char *error_msg; start_frame= RNA_int_get(op->ptr, "start_frame"); end_frame= RNA_int_get(op->ptr, "end_frame"); channel= RNA_int_get(op->ptr, "channel"); type= RNA_enum_get(op->ptr, "type"); // XXX We need unique names and move to invoke if(!seq_effect_find_selected(scene, NULL, type, &seq1, &seq2, &seq3, &error_msg)) { BKE_report(op->reports, RPT_ERROR, error_msg); return OPERATOR_CANCELLED; } /* If seq1 is NULL and no error was rasied it means the seq is standalone * (like color strips) and we need to check its start and end frames are valid */ if (seq1==NULL && end_frame <= start_frame) { BKE_report(op->reports, RPT_ERROR, "Start and end frame are not set"); return OPERATOR_CANCELLED; } seq = alloc_sequence(ed->seqbasep, start_frame, channel); seq->type= type; sh = get_sequence_effect(seq); seq->seq1= seq1; seq->seq2= seq2; seq->seq3= seq3; sh.init(seq); if (!seq1) { /* effect has no deps */ seq->len= 1; seq_tx_set_final_right(seq, end_frame); } calc_sequence(seq); /* basic defaults */ seq->strip= strip= MEM_callocN(sizeof(Strip), "strip"); strip->len = seq->len; strip->us= 1; if(seq->len>0) strip->stripdata= se= MEM_callocN(seq->len*sizeof(StripElem), "stripelem"); if (seq->type==SEQ_PLUGIN) { char filename[FILE_MAX]; RNA_string_get(op->ptr, "filename", filename); sh.init_plugin(seq, filename); if(seq->plugin==NULL) { BLI_remlink(ed->seqbasep, seq); seq_free_sequence(scene, seq); BKE_reportf(op->reports, RPT_ERROR, "Sequencer plugin \"%s\" could not load.", filename); return OPERATOR_CANCELLED; } } else if (seq->type==SEQ_COLOR) { SolidColorVars *colvars= (SolidColorVars *)seq->effectdata; RNA_float_get_array(op->ptr, "color", colvars->col); } if(seq_test_overlap(ed->seqbasep, seq)) shuffle_seq(ed->seqbasep, seq); update_changed_seq_and_deps(scene, seq, 1, 1); /* runs calc_sequence */ /* not sure if this is needed with update_changed_seq_and_deps. * it was NOT called in blender 2.4x, but wont hurt */ sort_seq(scene); if (RNA_boolean_get(op->ptr, "replace_sel")) { deselect_all_seq(scene); set_last_seq(scene, seq); seq->flag |= SELECT; } ED_area_tag_redraw(CTX_wm_area(C)); return OPERATOR_FINISHED; } /* add color */ static int sequencer_add_effect_strip_invoke(bContext *C, wmOperator *op, wmEvent *event) { sequencer_generic_invoke_xy__internal(C, op, event, SEQPROP_ENDFRAME); if (RNA_property_is_set(op->ptr, "type") && RNA_enum_get(op->ptr, "type")==SEQ_PLUGIN) { /* only plugins need the file selector */ return WM_operator_filesel(C, op, event); } else { return sequencer_add_effect_strip_exec(C, op); } } void SEQUENCER_OT_effect_strip_add(struct wmOperatorType *ot) { /* identifiers */ ot->name= "Add Effect Strip"; ot->idname= "SEQUENCER_OT_effect_strip_add"; ot->description= "Add an effect to the sequencer, most are applied ontop of existing strips"; /* api callbacks */ ot->invoke= sequencer_add_effect_strip_invoke; ot->exec= sequencer_add_effect_strip_exec; ot->poll= ED_operator_sequencer_active; /* flags */ ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; WM_operator_properties_filesel(ot, 0); sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME|SEQPROP_ENDFRAME); RNA_def_enum(ot->srna, "type", sequencer_prop_effect_types, SEQ_CROSS, "Type", "Sequencer effect type"); RNA_def_float_vector(ot->srna, "color", 3, NULL, 0.0f, 1.0f, "Color", "Initialize the strip with this color (only used when type='COLOR')", 0.0f, 1.0f); }