X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=mainwindow.cpp;h=b6ac8bf1c45fba2ee652178178ebe8a93e4b526b;hb=a75a8e649f8c116abfa51df9dccacc0d5f4efd42;hp=febcacf950bd7d7004fab030de5ae85c675c84d8;hpb=c015224d38abb896d92c55f1b4517f0600828f68;p=nageru diff --git a/mainwindow.cpp b/mainwindow.cpp index febcacf..b6ac8bf 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,8 +1,10 @@ #include "mainwindow.h" #include "clip_list.h" +#include "disk_space_estimator.h" #include "player.h" #include "post_to_main_thread.h" +#include "timebase.h" #include "ui_mainwindow.h" #include @@ -11,8 +13,12 @@ #include #include #include +#include + +#include using namespace std; +using namespace std::placeholders; MainWindow *global_mainwindow = nullptr; ClipList *cliplist_clips; @@ -23,16 +29,29 @@ extern mutex frame_mu; extern vector frames[MAX_STREAMS]; MainWindow::MainWindow() - : ui(new Ui::MainWindow) + : ui(new Ui::MainWindow), + db("futatabi.db") { global_mainwindow = this; ui->setupUi(this); - cliplist_clips = new ClipList(); + // The menus. + connect(ui->exit_action, &QAction::triggered, this, &MainWindow::exit_triggered); + + global_disk_space_estimator = new DiskSpaceEstimator(bind(&MainWindow::report_disk_space, this, _1, _2)); + disk_free_label = new QLabel(this); + disk_free_label->setStyleSheet("QLabel {padding-right: 5px;}"); + ui->menuBar->setCornerWidget(disk_free_label); + + StateProto state = db.get_state(); + + cliplist_clips = new ClipList(state.clip_list()); ui->clip_list->setModel(cliplist_clips); + connect(cliplist_clips, &ClipList::any_content_changed, this, &MainWindow::content_changed); - playlist_clips = new PlayList(); + playlist_clips = new PlayList(state.play_list()); ui->playlist->setModel(playlist_clips); + connect(playlist_clips, &PlayList::any_content_changed, this, &MainWindow::content_changed); // For scrubbing in the pts columns. ui->clip_list->viewport()->installEventFilter(this); @@ -84,8 +103,13 @@ MainWindow::MainWindow() connect(ui->playlist_duplicate_btn, &QPushButton::clicked, this, &MainWindow::playlist_duplicate); - // TODO: support the delete key iff the widget has focus? connect(ui->playlist_remove_btn, &QPushButton::clicked, this, &MainWindow::playlist_remove); + QShortcut *delete_key = new QShortcut(QKeySequence(Qt::Key_Delete), ui->playlist); + connect(delete_key, &QShortcut::activated, [this] { + if (ui->playlist->hasFocus()) { + playlist_remove(); + } + }); // TODO: support drag-and-drop. connect(ui->playlist_move_up_btn, &QPushButton::clicked, [this]{ playlist_move(-1); }); @@ -102,12 +126,21 @@ MainWindow::MainWindow() live_player_clip_done(); }); }); + live_player->set_progress_callback([this](double played_this_clip, double total_length) { + post_to_main_thread([this, played_this_clip, total_length] { + live_player_clip_progress(played_this_clip, total_length); + }); + }); + + defer_timeout = new QTimer(this); + defer_timeout->setSingleShot(true); + connect(defer_timeout, &QTimer::timeout, this, &MainWindow::defer_timer_expired); } void MainWindow::cue_in_clicked() { if (!cliplist_clips->empty() && cliplist_clips->back()->pts_out < 0) { - cliplist_clips->back()->pts_in = current_pts; + cliplist_clips->mutable_back()->pts_in = current_pts; return; } Clip clip; @@ -119,7 +152,7 @@ void MainWindow::cue_in_clicked() void MainWindow::cue_out_clicked() { if (!cliplist_clips->empty()) { - cliplist_clips->back()->pts_out = current_pts; + cliplist_clips->mutable_back()->pts_out = current_pts; // TODO: select the row in the clip list? } } @@ -134,15 +167,23 @@ void MainWindow::queue_clicked() if (!selected->hasSelection()) { Clip clip = *cliplist_clips->back(); clip.stream_idx = 0; - playlist_clips->add_clip(clip); + if (clip.pts_out != -1) { + playlist_clips->add_clip(clip); + playlist_selection_changed(); + } return; } QModelIndex index = selected->currentIndex(); + Clip clip = *cliplist_clips->clip(index.row()); if (index.column() >= int(ClipList::Column::CAMERA_1) && index.column() <= int(ClipList::Column::CAMERA_4)) { - Clip clip = *cliplist_clips->clip(index.row()); clip.stream_idx = index.column() - int(ClipList::Column::CAMERA_1); + } else { + clip.stream_idx = ui->preview_display->get_stream_idx(); + } + + if (clip.pts_out != -1) { playlist_clips->add_clip(clip); playlist_selection_changed(); } @@ -159,11 +200,14 @@ void MainWindow::preview_clicked() } QModelIndex index = selected->currentIndex(); + unsigned stream_idx; if (index.column() >= int(ClipList::Column::CAMERA_1) && index.column() <= int(ClipList::Column::CAMERA_4)) { - unsigned stream_idx = index.column() - int(ClipList::Column::CAMERA_1); - preview_player->play_clip(*cliplist_clips->clip(index.row()), stream_idx); + stream_idx = index.column() - int(ClipList::Column::CAMERA_1); + } else { + stream_idx = ui->preview_display->get_stream_idx(); } + preview_player->play_clip(*cliplist_clips->clip(index.row()), stream_idx); } void MainWindow::preview_angle_clicked(unsigned stream_idx) @@ -230,6 +274,37 @@ void MainWindow::playlist_move(int delta) playlist_selection_changed(); } +void MainWindow::defer_timer_expired() +{ + state_changed(deferred_state); +} + +void MainWindow::content_changed() +{ + if (defer_timeout->isActive() && + (!currently_deferring_model_changes || deferred_change_id != current_change_id)) { + // There's some deferred event waiting, but this event is unrelated. + // So it's time to short-circuit that timer and do the work it wanted to do. + defer_timeout->stop(); + state_changed(deferred_state); + } + StateProto state; + *state.mutable_clip_list() = cliplist_clips->serialize(); + *state.mutable_play_list() = playlist_clips->serialize(); + if (currently_deferring_model_changes) { + deferred_change_id = current_change_id; + deferred_state = std::move(state); + defer_timeout->start(200); + return; + } + state_changed(state); +} + +void MainWindow::state_changed(const StateProto &state) +{ + db.store_state(state); +} + void MainWindow::play_clicked() { if (playlist_clips->empty()) return; @@ -244,7 +319,7 @@ void MainWindow::play_clicked() const Clip &clip = *playlist_clips->clip(row); live_player->play_clip(clip, clip.stream_idx); - playlist_clips->set_currently_playing(row); + playlist_clips->set_currently_playing(row, 0.0f); playlist_selection_changed(); } @@ -255,10 +330,33 @@ void MainWindow::live_player_clip_done() ++row; const Clip &clip = *playlist_clips->clip(row); live_player->play_clip(clip, clip.stream_idx); - playlist_clips->set_currently_playing(row); + playlist_clips->set_currently_playing(row, 0.0f); } else { - playlist_clips->set_currently_playing(-1); + playlist_clips->set_currently_playing(-1, 0.0f); + ui->live_label->setText("Current output (paused)"); + } +} + +void MainWindow::live_player_clip_progress(double played_this_clip, double total_length) +{ + playlist_clips->set_currently_playing(playlist_clips->get_currently_playing(), played_this_clip / total_length); + + double remaining = total_length - played_this_clip; + for (int row = playlist_clips->get_currently_playing() + 1; row < int(playlist_clips->size()); ++row) { + const Clip clip = *playlist_clips->clip(row); + remaining += double(clip.pts_out - clip.pts_in) / TIMEBASE / 0.5; // FIXME: stop hardcoding speed. } + int remaining_ms = lrint(remaining * 1e3); + + int ms = remaining_ms % 1000; + remaining_ms /= 1000; + int s = remaining_ms % 60; + remaining_ms /= 60; + int m = remaining_ms; + + char buf[256]; + snprintf(buf, sizeof(buf), "Current output (%d:%02d.%03d left)", m, s, ms); + ui->live_label->setText(buf); } void MainWindow::resizeEvent(QResizeEvent *event) @@ -272,7 +370,19 @@ void MainWindow::resizeEvent(QResizeEvent *event) void MainWindow::relayout() { - ui->live_display->setMinimumHeight(ui->live_display->width() * 9 / 16); + ui->live_display->setMinimumWidth(ui->live_display->height() * 16 / 9); + ui->preview_display->setMinimumWidth(ui->preview_display->height() * 16 / 9); +} + +void set_pts_in(int64_t pts, int64_t current_pts, ClipProxy &clip) +{ + pts = std::max(pts, 0); + if (clip->pts_out == -1) { + pts = std::min(pts, current_pts); + } else { + pts = std::min(pts, clip->pts_out); + } + clip->pts_in = pts; } bool MainWindow::eventFilter(QObject *watched, QEvent *event) @@ -348,34 +458,35 @@ bool MainWindow::eventFilter(QObject *watched, QEvent *event) } int64_t pts = scrub_pts_origin + adjusted_offset * scrub_sensitivity; - + currently_deferring_model_changes = true; if (scrub_type == SCRUBBING_CLIP_LIST) { - ClipProxy clip = cliplist_clips->clip(scrub_row); + ClipProxy clip = cliplist_clips->mutable_clip(scrub_row); if (scrub_column == int(ClipList::Column::IN)) { - pts = std::max(pts, 0); - pts = std::min(pts, clip->pts_out); - clip->pts_in = pts; + current_change_id = "cliplist:in:" + to_string(scrub_row); + set_pts_in(pts, current_pts, clip); preview_single_frame(pts, stream_idx, FIRST_AT_OR_AFTER); } else { + current_change_id = "cliplist:out" + to_string(scrub_row); pts = std::max(pts, clip->pts_in); pts = std::min(pts, current_pts); clip->pts_out = pts; preview_single_frame(pts, stream_idx, LAST_BEFORE); } } else { - ClipProxy clip = playlist_clips->clip(scrub_row); + ClipProxy clip = playlist_clips->mutable_clip(scrub_row); if (scrub_column == int(PlayList::Column::IN)) { - pts = std::max(pts, 0); - pts = std::min(pts, clip->pts_out); - clip->pts_in = pts; + current_change_id = "playlist:in:" + to_string(scrub_row); + set_pts_in(pts, current_pts, clip); preview_single_frame(pts, clip->stream_idx, FIRST_AT_OR_AFTER); } else { + current_change_id = "playlist:out:" + to_string(scrub_row); pts = std::max(pts, clip->pts_in); pts = std::min(pts, current_pts); clip->pts_out = pts; preview_single_frame(pts, clip->stream_idx, LAST_BEFORE); } } + currently_deferring_model_changes = false; return true; // Don't use this mouse movement for selecting things. } @@ -403,43 +514,49 @@ bool MainWindow::eventFilter(QObject *watched, QEvent *event) int row = destination->rowAt(wheel->y()); if (column == -1 || row == -1) return false; - ClipProxy clip = (watched == ui->clip_list->viewport()) ? - cliplist_clips->clip(row) : playlist_clips->clip(row); - if (watched == ui->playlist->viewport()) { - stream_idx = clip->stream_idx; - } + currently_deferring_model_changes = true; + { + current_change_id = (watched == ui->clip_list->viewport()) ? "cliplist:" : "playlist:"; + ClipProxy clip = (watched == ui->clip_list->viewport()) ? + cliplist_clips->mutable_clip(row) : playlist_clips->mutable_clip(row); + if (watched == ui->playlist->viewport()) { + stream_idx = clip->stream_idx; + } - if (column != camera_column) { - last_mousewheel_camera_row = -1; - } - if (column == in_column) { - int64_t pts = clip->pts_in + wheel->angleDelta().y() * wheel_sensitivity; - pts = std::max(pts, 0); - pts = std::min(pts, clip->pts_out); - clip->pts_in = pts; - preview_single_frame(pts, stream_idx, FIRST_AT_OR_AFTER); - } else if (column == out_column) { - int64_t pts = clip->pts_out + wheel->angleDelta().y() * wheel_sensitivity; - pts = std::max(pts, clip->pts_in); - pts = std::min(pts, current_pts); - clip->pts_out = pts; - preview_single_frame(pts, stream_idx, LAST_BEFORE); - } else if (column == camera_column) { - int angle_degrees = wheel->angleDelta().y(); - if (last_mousewheel_camera_row == row) { - angle_degrees += leftover_angle_degrees; + if (column != camera_column) { + last_mousewheel_camera_row = -1; } + if (column == in_column) { + current_change_id += "in:" + to_string(row); + int64_t pts = clip->pts_in + wheel->angleDelta().y() * wheel_sensitivity; + set_pts_in(pts, current_pts, clip); + preview_single_frame(pts, stream_idx, FIRST_AT_OR_AFTER); + } else if (column == out_column) { + current_change_id += "out:" + to_string(row); + int64_t pts = clip->pts_out + wheel->angleDelta().y() * wheel_sensitivity; + pts = std::max(pts, clip->pts_in); + pts = std::min(pts, current_pts); + clip->pts_out = pts; + preview_single_frame(pts, stream_idx, LAST_BEFORE); + } else if (column == camera_column) { + current_change_id += "camera:" + to_string(row); + int angle_degrees = wheel->angleDelta().y(); + if (last_mousewheel_camera_row == row) { + angle_degrees += leftover_angle_degrees; + } - int stream_idx = clip->stream_idx + angle_degrees / camera_degrees_per_pixel; - stream_idx = std::max(stream_idx, 0); - stream_idx = std::min(stream_idx, NUM_CAMERAS - 1); - clip->stream_idx = stream_idx; + int stream_idx = clip->stream_idx + angle_degrees / camera_degrees_per_pixel; + stream_idx = std::max(stream_idx, 0); + stream_idx = std::min(stream_idx, NUM_CAMERAS - 1); + clip->stream_idx = stream_idx; - last_mousewheel_camera_row = row; - leftover_angle_degrees = angle_degrees % camera_degrees_per_pixel; + last_mousewheel_camera_row = row; + leftover_angle_degrees = angle_degrees % camera_degrees_per_pixel; - // Don't update the live view, that's rarely what the operator wants. + // Don't update the live view, that's rarely what the operator wants. + } } + currently_deferring_model_changes = false; } else if (event->type() == QEvent::MouseButtonRelease) { scrubbing = false; } @@ -483,3 +600,42 @@ void MainWindow::playlist_selection_changed() any_selected && selected->selectedRows().back().row() < int(playlist_clips->size()) - 1); ui->play_btn->setEnabled(!playlist_clips->empty()); } + +void MainWindow::report_disk_space(off_t free_bytes, double estimated_seconds_left) +{ + char time_str[256]; + if (estimated_seconds_left < 60.0) { + strcpy(time_str, "Less than a minute"); + } else if (estimated_seconds_left < 1800.0) { // Less than half an hour: Xm Ys (red). + int s = lrintf(estimated_seconds_left); + int m = s / 60; + s %= 60; + snprintf(time_str, sizeof(time_str), "%dm %ds", m, s); + } else if (estimated_seconds_left < 3600.0) { // Less than an hour: Xm. + int m = lrintf(estimated_seconds_left / 60.0); + snprintf(time_str, sizeof(time_str), "%dm", m); + } else if (estimated_seconds_left < 36000.0) { // Less than ten hours: Xh Ym. + int m = lrintf(estimated_seconds_left / 60.0); + int h = m / 60; + m %= 60; + snprintf(time_str, sizeof(time_str), "%dh %dm", h, m); + } else { // More than ten hours: Xh. + int h = lrintf(estimated_seconds_left / 3600.0); + snprintf(time_str, sizeof(time_str), "%dh", h); + } + char buf[256]; + snprintf(buf, sizeof(buf), "Disk free: %'.0f MB (approx. %s)", free_bytes / 1048576.0, time_str); + + std::string label = buf; + + post_to_main_thread([this, label]{ + disk_free_label->setText(QString::fromStdString(label)); + ui->menuBar->setCornerWidget(disk_free_label); // Need to set this again for the sizing to get right. + }); +} + +void MainWindow::exit_triggered() +{ + close(); +} +