Split commands between several files rather than having them all in two monolithic ones.
182 lines
4.9 KiB
C++
182 lines
4.9 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2021 Olive Team
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#include "timelineundosplit.h"
|
|
|
|
#include "node/block/transition/transition.h"
|
|
#include "widget/nodeview/nodeviewundo.h"
|
|
|
|
namespace olive {
|
|
|
|
//
|
|
// BlockSplitCommand
|
|
//
|
|
void BlockSplitCommand::redo()
|
|
{
|
|
old_length_ = block_->length();
|
|
|
|
Q_ASSERT(point_ > block_->in() && point_ < block_->out());
|
|
|
|
if (!reconnect_tree_command_) {
|
|
reconnect_tree_command_ = new MultiUndoCommand();
|
|
new_block_ = static_cast<Block*>(Node::CopyNodeInGraph(block_, reconnect_tree_command_));
|
|
}
|
|
|
|
reconnect_tree_command_->redo();
|
|
|
|
// Determine our new lengths
|
|
rational new_length = point_ - block_->in();
|
|
rational new_part_length = block_->out() - point_;
|
|
|
|
// Begin an operation
|
|
Track* track = block_->track();
|
|
track->BeginOperation();
|
|
|
|
// Set lengths
|
|
block_->set_length_and_media_out(new_length);
|
|
new_block()->set_length_and_media_in(new_part_length);
|
|
|
|
// Insert new block
|
|
track->InsertBlockAfter(new_block(), block_);
|
|
|
|
// Position the block
|
|
if (!position_command_) {
|
|
position_command_ = new NodeSetPositionAsChildCommand(new_block(), track, nullptr, new_block()->index(), track->Blocks().size(), true);
|
|
}
|
|
position_command_->redo();
|
|
|
|
// If the block had an out transition, we move it to the new block
|
|
moved_transition_ = NodeInput();
|
|
|
|
TransitionBlock* potential_transition = dynamic_cast<TransitionBlock*>(new_block()->next());
|
|
if (potential_transition) {
|
|
for (const Node::OutputConnection& output : block_->output_connections()) {
|
|
if (output.second.node() == potential_transition) {
|
|
moved_transition_ = NodeInput(potential_transition, TransitionBlock::kOutBlockInput);
|
|
Node::DisconnectEdge(block_, moved_transition_);
|
|
Node::ConnectEdge(new_block(), moved_transition_);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
track->EndOperation();
|
|
}
|
|
|
|
void BlockSplitCommand::undo()
|
|
{
|
|
Track* track = block_->track();
|
|
|
|
track->BeginOperation();
|
|
|
|
if (moved_transition_.IsValid()) {
|
|
Node::DisconnectEdge(new_block(), moved_transition_);
|
|
Node::ConnectEdge(block_, moved_transition_);
|
|
}
|
|
|
|
position_command_->undo();
|
|
|
|
block_->set_length_and_media_out(old_length_);
|
|
track->RippleRemoveBlock(new_block());
|
|
|
|
// If we ran a reconnect command, disconnect now
|
|
reconnect_tree_command_->undo();
|
|
|
|
track->EndOperation();
|
|
}
|
|
|
|
//
|
|
// BlockSplitPreservingLinksCommand
|
|
//
|
|
void BlockSplitPreservingLinksCommand::redo()
|
|
{
|
|
if (commands_.isEmpty()) {
|
|
QVector< QVector<Block*> > split_blocks(times_.size());
|
|
|
|
for (int i=0;i<times_.size();i++) {
|
|
const rational& time = times_.at(i);
|
|
|
|
// FIXME: I realize this isn't going to work if the times aren't ordered. I'm lazy so rather
|
|
// than writing in a sorting algorithm here, I'll just put an assert as a reminder
|
|
// if this ever becomes an issue.
|
|
Q_ASSERT(i == 0 || time > times_.at(i-1));
|
|
|
|
QVector<Block*> splits(blocks_.size());
|
|
|
|
for (int j=0;j<blocks_.size();j++) {
|
|
Block* b = blocks_.at(j);
|
|
|
|
if (b->in() < time && b->out() > time) {
|
|
BlockSplitCommand* split_command = new BlockSplitCommand(b, time);
|
|
split_command->redo();
|
|
splits.replace(j, split_command->new_block());
|
|
commands_.append(split_command);
|
|
} else {
|
|
splits.replace(j, nullptr);
|
|
}
|
|
}
|
|
|
|
split_blocks.replace(i, splits);
|
|
}
|
|
|
|
// Now that we've determined all the splits, we can relink everything
|
|
for (int i=0;i<blocks_.size();i++) {
|
|
Block* a = blocks_.at(i);
|
|
|
|
for (int j=0;j<blocks_.size();j++) {
|
|
if (i == j) {
|
|
continue;
|
|
}
|
|
|
|
Block* b = blocks_.at(j);
|
|
|
|
if (Block::AreLinked(a, b)) {
|
|
// These blocks are linked, ensure all the splits are linked too
|
|
|
|
foreach (const QVector<Block*>& split_list, split_blocks) {
|
|
NodeLinkCommand* blc = new NodeLinkCommand(split_list.at(i), split_list.at(j), true);
|
|
blc->redo();
|
|
commands_.append(blc);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
for (int i=0; i<commands_.size(); i++) {
|
|
commands_.at(i)->redo();
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// TrackSplitAtTimeCommand
|
|
//
|
|
void TrackSplitAtTimeCommand::prepare()
|
|
{
|
|
// Find Block that contains this time
|
|
Block* b = track_->BlockContainingTime(point_);
|
|
|
|
if (b) {
|
|
command_ = new BlockSplitCommand(b, point_);
|
|
}
|
|
}
|
|
|
|
}
|