Files
oak-editor/engine/node/output/track/tracklist.cpp
T
Mike-Solar 28c4426236 build: split the engine into liboakengine.so; worker drops the UI entirely
Physical split: app/{audio,cli,codec,common,config,node,pluginSupport,
render,task,timeline,undo,tool,shaders} plus coreengine, version and
ui/icons+colorcoding move to a new top-level engine/ tree, built as
liboakengine.so (shared). The render backends (oakgl/oakvulkan) move
with it and link the engine library instead of embedding a static
render-core subset (libolive-rendercore is gone).

- oak-render-worker now links liboakengine instead of the whole
  libolive-editor object set: 336MB -> 2.9MB, no Qt Widgets UI
- the editor links liboakengine for the engine and keeps only UI
  objects in libolive-editor
- install/packaging: GNUInstallDirs libdir on Linux, bundle copy on
  macOS, oakengine.dll staged for NSIS, AppImage validation entry
- fix backend lookup for the new layout: DynamicRenderer searched
  ../app but backends now live in engine/; a stale pre-split liboakgl
  in the build tree got dlopened instead, re-initialized and later
  destroyed the interposed engine statics (full-suite segfault at
  DialogSequenceParameterTab, found via gdb watchpoint)
2026-07-20 03:23:28 +08:00

201 lines
4.6 KiB
C++

/***
Olive - Non-Linear Video Editor
Copyright (C) 2022 Olive Team
Modifications Copyright (C) 2025 mikesolar
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 "tracklist.h"
#include "node/factory.h"
#include "node/math/math/math.h"
#include "node/math/merge/merge.h"
#include "node/output/viewer/viewer.h"
#include "node/project/sequence/sequence.h"
namespace olive
{
TrackList::TrackList(Sequence *parent, const Track::Type &type,
const QString &track_input)
: QObject(parent)
, track_input_(track_input)
, total_length_(0)
, type_(type)
{
}
Track *TrackList::get_track_at(int index) const
{
if (index >= 0 && index < track_cache_.size()) {
return track_cache_.at(index);
} else {
return nullptr;
}
}
void TrackList::track_connected(Node *node, int element)
{
if (element == -1) {
parent()->invalidate_all(track_input(), element);
return;
}
Track *track = dynamic_cast<Track *>(node);
if (!track) {
return;
}
// Determine where in the cache this block will be
int cache_index = -1;
for (int i = element + 1; i < array_size(); i++) {
// Find next track because this will be the index we insert at
cache_index = get_cache_index_from_array_index(i);
if (cache_index >= 0) {
break;
}
}
// If there was no next, this will be inserted at the end
if (cache_index == -1) {
cache_index = track_cache_.size();
}
track_cache_.insert(cache_index, track);
track_array_indexes_.insert(cache_index, element);
// Update track indexes in the list (including this track)
update_track_indexes_from(cache_index);
connect(track, &Track::track_length_changed, this,
&TrackList::update_total_length);
track_height_connections_.insert(
track, connect(track, &Track::track_height_changed, this, [this]() {
Track *t = static_cast<Track *>(sender());
emit track_height_changed(t, t->get_track_height_in_pixels());
}));
track->set_type(type_);
track->set_sequence(parent());
emit track_list_changed();
// This function must be called after the track is added to track_cache_, since it uses track_cache_ to determine
// the track's index
emit track_added(track);
update_total_length();
}
void TrackList::track_disconnected(Node *node, int element)
{
if (element == -1) {
// User has replaced the entire array, we will invalidate everything
parent()->invalidate_all(track_input(), element);
return;
}
Track *track = dynamic_cast<Track *>(node);
if (!track) {
return;
}
// Traverse through Tracks uncaching and disconnecting them
emit track_removed(track);
int cache_index = get_cache_index_from_array_index(element);
// Remove track here
track_cache_.removeAt(cache_index);
track_array_indexes_.removeAt(cache_index);
// Update indices for all subsequent tracks
update_track_indexes_from(cache_index);
track->set_index(-1);
track->set_type(Track::k_none);
track->set_sequence(nullptr);
disconnect(track, &Track::track_length_changed, this,
&TrackList::update_total_length);
disconnect(track_height_connections_.take(track));
emit track_list_changed();
update_total_length();
}
void TrackList::update_track_indexes_from(int index)
{
for (int i = index; i < track_cache_.size(); i++) {
track_cache_.at(i)->set_index(i);
}
}
Project *TrackList::get_parent_graph() const
{
return parent()->parent();
}
const QString &TrackList::track_input() const
{
return track_input_;
}
NodeInput TrackList::track_input(int element) const
{
return NodeInput(parent(), track_input(), element);
}
Sequence *TrackList::parent() const
{
return static_cast<Sequence *>(QObject::parent());
}
int TrackList::array_size() const
{
return parent()->input_array_size(track_input());
}
void TrackList::array_append()
{
parent()->input_array_append(track_input());
}
void TrackList::array_remove_last()
{
parent()->input_array_remove_last(track_input());
}
void TrackList::update_total_length()
{
total_length_ = 0;
foreach (Track *track, track_cache_) {
if (track) {
total_length_ = qMax(total_length_, track->track_length());
}
}
emit length_changed(total_length_);
}
}