169 lines
3.8 KiB
C
169 lines
3.8 KiB
C
/*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
* All rights reserved.
|
|
*
|
|
* - Blender Foundation, 2003-2009
|
|
* - Peter Schlaile <peter [at] schlaile [dot] de> 2005/2006
|
|
*/
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
#include "DNA_sequence_types.h"
|
|
|
|
#include "BLI_listbase.h"
|
|
|
|
#include "BKE_scene.h"
|
|
|
|
#include "SEQ_iterator.h"
|
|
|
|
/* ************************* iterator ************************** */
|
|
/* *************** (replaces old WHILE_SEQ) ********************* */
|
|
/* **************** use now SEQ_ALL_BEGIN () SEQ_ALL_END ***************** */
|
|
|
|
/* sequence strip iterator:
|
|
* - builds a full array, recursively into meta strips
|
|
*/
|
|
|
|
static void seq_count(ListBase *seqbase, int *tot)
|
|
{
|
|
Sequence *seq;
|
|
|
|
for (seq = seqbase->first; seq; seq = seq->next) {
|
|
(*tot)++;
|
|
|
|
if (seq->seqbase.first) {
|
|
seq_count(&seq->seqbase, tot);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void seq_build_array(ListBase *seqbase, Sequence ***array, int depth)
|
|
{
|
|
Sequence *seq;
|
|
|
|
for (seq = seqbase->first; seq; seq = seq->next) {
|
|
seq->depth = depth;
|
|
|
|
if (seq->seqbase.first) {
|
|
seq_build_array(&seq->seqbase, array, depth + 1);
|
|
}
|
|
|
|
**array = seq;
|
|
(*array)++;
|
|
}
|
|
}
|
|
|
|
static void seq_array(Editing *ed,
|
|
Sequence ***seqarray,
|
|
int *tot,
|
|
const bool use_current_sequences)
|
|
{
|
|
Sequence **array;
|
|
|
|
*seqarray = NULL;
|
|
*tot = 0;
|
|
|
|
if (ed == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (use_current_sequences) {
|
|
seq_count(ed->seqbasep, tot);
|
|
}
|
|
else {
|
|
seq_count(&ed->seqbase, tot);
|
|
}
|
|
|
|
if (*tot == 0) {
|
|
return;
|
|
}
|
|
|
|
*seqarray = array = MEM_mallocN(sizeof(Sequence *) * (*tot), "SeqArray");
|
|
if (use_current_sequences) {
|
|
seq_build_array(ed->seqbasep, &array, 0);
|
|
}
|
|
else {
|
|
seq_build_array(&ed->seqbase, &array, 0);
|
|
}
|
|
}
|
|
|
|
void SEQ_iterator_begin(Editing *ed, SeqIterator *iter, const bool use_current_sequences)
|
|
{
|
|
memset(iter, 0, sizeof(*iter));
|
|
seq_array(ed, &iter->array, &iter->tot, use_current_sequences);
|
|
|
|
if (iter->tot) {
|
|
iter->cur = 0;
|
|
iter->seq = iter->array[iter->cur];
|
|
iter->valid = 1;
|
|
}
|
|
}
|
|
|
|
void SEQ_iterator_next(SeqIterator *iter)
|
|
{
|
|
if (++iter->cur < iter->tot) {
|
|
iter->seq = iter->array[iter->cur];
|
|
}
|
|
else {
|
|
iter->valid = 0;
|
|
}
|
|
}
|
|
|
|
void SEQ_iterator_end(SeqIterator *iter)
|
|
{
|
|
if (iter->array) {
|
|
MEM_freeN(iter->array);
|
|
}
|
|
|
|
iter->valid = 0;
|
|
}
|
|
|
|
int SEQ_iterator_seqbase_recursive_apply(ListBase *seqbase,
|
|
int (*apply_fn)(Sequence *seq, void *),
|
|
void *arg)
|
|
{
|
|
Sequence *iseq;
|
|
for (iseq = seqbase->first; iseq; iseq = iseq->next) {
|
|
if (SEQ_iterator_recursive_apply(iseq, apply_fn, arg) == -1) {
|
|
return -1; /* bail out */
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
int SEQ_iterator_recursive_apply(Sequence *seq, int (*apply_fn)(Sequence *, void *), void *arg)
|
|
{
|
|
int ret = apply_fn(seq, arg);
|
|
|
|
if (ret == -1) {
|
|
return -1; /* bail out */
|
|
}
|
|
|
|
if (ret && seq->seqbase.first) {
|
|
ret = SEQ_iterator_seqbase_recursive_apply(&seq->seqbase, apply_fn, arg);
|
|
}
|
|
|
|
return ret;
|
|
}
|