1 #include <QMediaPlayer>
3 #include <QApplication>
7 #include <QInputDialog>
15 #include "mainwindow.h"
16 #include "ui_mainwindow.h"
19 #include "formations.h"
21 #include "video_widget.h"
25 string format_timestamp(uint64_t pos)
35 snprintf(buf, sizeof(buf), "%d:%02d:%02d.%03d", hour, min, sec, ms);
39 string get_video_filename(sqlite3 *db, int match_id)
43 int ret = sqlite3_prepare_v2(db, "SELECT video_filename FROM match WHERE match=?", -1, &stmt, 0);
44 if (ret != SQLITE_OK) {
45 fprintf(stderr, "SELECT prepare: %s\n", sqlite3_errmsg(db));
49 sqlite3_bind_int64(stmt, 1, match_id);
51 ret = sqlite3_step(stmt);
52 if (ret != SQLITE_ROW) {
53 fprintf(stderr, "SELECT step: %s\n", sqlite3_errmsg(db));
57 if (sqlite3_column_type(stmt, 0) != SQLITE_TEXT) {
60 string filename = (const char *)sqlite3_column_text(stmt, 0);
62 ret = sqlite3_finalize(stmt);
63 if (ret != SQLITE_OK) {
64 fprintf(stderr, "SELECT finalize: %s\n", sqlite3_errmsg(db));
70 void save_video_filename(sqlite3 *db, int match_id, const string &filename)
74 int ret = sqlite3_prepare_v2(db, "UPDATE match SET video_filename=? WHERE match=?", -1, &stmt, 0);
75 if (ret != SQLITE_OK) {
76 fprintf(stderr, "SELECT prepare: %s\n", sqlite3_errmsg(db));
80 sqlite3_bind_text(stmt, 1, filename.data(), filename.size(), SQLITE_STATIC);
81 sqlite3_bind_int64(stmt, 2, match_id);
83 ret = sqlite3_step(stmt);
84 if (ret == SQLITE_ROW) {
85 fprintf(stderr, "INSERT step: %s\n", sqlite3_errmsg(db));
89 ret = sqlite3_finalize(stmt);
90 if (ret != SQLITE_OK) {
91 fprintf(stderr, "SELECT finalize: %s\n", sqlite3_errmsg(db));
96 MainWindow::MainWindow(EventsModel *events, PlayersModel *players,
97 FormationsModel *offensive_formations, FormationsModel *defensive_formations,
98 sqlite3 *db, int match_id)
99 : events(events), players(players), offensive_formations(offensive_formations), defensive_formations(defensive_formations), db(db), match_id(match_id)
101 ui = new Ui::MainWindow;
104 string filename = get_video_filename(db, match_id);
105 bool need_save_filename = false;
107 if (!filename.empty() && ui->video->open(filename.c_str())) {
111 // TODO: Probably relativize this path, so that we can move the .db
112 // more easily with the videos.
113 filename = QFileDialog::getOpenFileName(this, "Open video").toUtf8();
114 need_save_filename = true;
116 if (need_save_filename) {
117 save_video_filename(db, match_id, filename);
121 ui->event_view->setModel(events);
122 ui->event_view->setColumnWidth(1, 150);
123 ui->event_view->setColumnWidth(2, 150);
124 connect(ui->event_view->selectionModel(), &QItemSelectionModel::currentRowChanged,
125 [this, events](const QModelIndex ¤t, const QModelIndex &previous) {
126 uint64_t t = events->get_time(current.row());
127 if (t != ui->video->get_position()) {
128 ui->video->seek_absolute(events->get_time(current.row()));
130 // Selection could have changed, so we still need to update.
131 // (Just calling setPosition() would not give us the signal
133 update_ui_from_time(t);
137 ui->player_view->setModel(players);
138 ui->player_view->setColumnWidth(0, 30);
139 ui->player_view->setColumnWidth(1, 20);
140 ui->player_view->horizontalHeader()->setStretchLastSection(true);
142 auto formation_changed = [this](const QModelIndex ¤t, const QModelIndex &previous) {
143 QTimer::singleShot(1, [=]{ // The selection is wrong until the callback actually returns.
144 update_action_buttons(ui->video->get_position());
147 ui->offensive_formation_view->setModel(offensive_formations);
148 ui->defensive_formation_view->setModel(defensive_formations);
149 connect(ui->offensive_formation_view->selectionModel(), &QItemSelectionModel::currentRowChanged, formation_changed);
150 connect(ui->defensive_formation_view->selectionModel(), &QItemSelectionModel::currentRowChanged, formation_changed);
151 connect(ui->offensive_formation_view, &QListView::doubleClicked, [this](const QModelIndex &index) {
152 formation_double_clicked(true, index.row());
154 connect(ui->defensive_formation_view, &QListView::doubleClicked, [this](const QModelIndex &index) {
155 formation_double_clicked(false, index.row());
158 connect(ui->video, &VideoWidget::position_changed, [this](uint64_t pos) {
159 position_changed(pos);
162 // It's not really clear whether PgUp should be forwards or backwards,
163 // but mpv does at least up = forwards, so that's probably standard.
164 QShortcut *pgdown = new QShortcut(QKeySequence(Qt::Key_PageDown), this);
165 connect(pgdown, &QShortcut::activated, [this]() { ui->video->seek(-120000); });
166 QShortcut *pgup = new QShortcut(QKeySequence(Qt::Key_PageUp), this);
167 connect(pgup, &QShortcut::activated, [this]() { ui->video->seek(120000); });
169 connect(ui->minus10s, &QPushButton::clicked, [this]() { ui->video->seek(-10000); });
170 connect(ui->plus10s, &QPushButton::clicked, [this]() { ui->video->seek(10000); });
172 connect(ui->minus2s, &QPushButton::clicked, [this]() { ui->video->seek(-2000); });
173 connect(ui->plus2s, &QPushButton::clicked, [this]() { ui->video->seek(2000); });
174 connect(ui->video, &VideoWidget::mouse_back_clicked, [this]() { ui->video->seek(-2000); });
175 connect(ui->video, &VideoWidget::mouse_forward_clicked, [this]() { ui->video->seek(2000); });
177 connect(ui->minus1f, &QPushButton::clicked, [this]() { ui->video->seek_frames(-1); });
178 connect(ui->plus1f, &QPushButton::clicked, [this]() { ui->video->seek_frames(1); });
180 connect(ui->play_pause, &QPushButton::clicked, [this]() {
183 ui->play_pause->setText("Play (space)");
186 ui->play_pause->setText("Pause (space)");
190 // Needs to be set anew when we modify setText(), evidently.
191 ui->play_pause->setShortcut(QCoreApplication::translate("MainWindow", "Space", nullptr));
194 connect(ui->player_1, &QPushButton::clicked, [this]() { insert_player_event(0); });
195 connect(ui->player_2, &QPushButton::clicked, [this]() { insert_player_event(1); });
196 connect(ui->player_3, &QPushButton::clicked, [this]() { insert_player_event(2); });
197 connect(ui->player_4, &QPushButton::clicked, [this]() { insert_player_event(3); });
198 connect(ui->player_5, &QPushButton::clicked, [this]() { insert_player_event(4); });
199 connect(ui->player_6, &QPushButton::clicked, [this]() { insert_player_event(5); });
200 connect(ui->player_7, &QPushButton::clicked, [this]() { insert_player_event(6); });
203 connect(ui->offense_label, &ClickableLabel::clicked, [this]() { insert_noplayer_event("set_offense"); });
204 connect(ui->catch_, &QPushButton::clicked, [this]() { set_current_event_type("catch"); });
205 connect(ui->throwaway, &QPushButton::clicked, [this, events]() {
206 EventsModel::Status s = events->get_status_at(ui->video->get_position());
207 if (s.attack_state == EventsModel::Status::DEFENSE && s.pull_state == EventsModel::Status::PULL_IN_AIR) {
208 insert_noplayer_event("pull_oob");
210 set_current_event_type("throwaway");
213 connect(ui->drop, &QPushButton::clicked, [this]() { set_current_event_type("drop"); });
214 connect(ui->goal, &QPushButton::clicked, [this]() { set_current_event_type("goal"); });
215 connect(ui->stallout, &QPushButton::clicked, [this]() { set_current_event_type("stallout"); });
216 connect(ui->soft_plus, &QPushButton::clicked, [this, events]() {
217 EventsModel::Status s = events->get_status_at(ui->video->get_position());
218 if (s.attack_state == EventsModel::Status::OFFENSE) {
219 set_current_event_type("offensive_soft_plus");
220 } else if (s.attack_state == EventsModel::Status::DEFENSE) {
221 set_current_event_type("defensive_soft_plus");
224 connect(ui->soft_minus, &QPushButton::clicked, [this, events]() {
225 EventsModel::Status s = events->get_status_at(ui->video->get_position());
226 if (s.attack_state == EventsModel::Status::OFFENSE) {
227 set_current_event_type("offensive_soft_minus");
228 } else if (s.attack_state == EventsModel::Status::DEFENSE) {
229 set_current_event_type("defensive_soft_minus");
232 connect(ui->pull_or_was_d, &QPushButton::clicked, [this, events]() {
233 EventsModel::Status s = events->get_status_at(ui->video->get_position());
234 if (s.pull_state == EventsModel::Status::SHOULD_PULL ||
235 events->get_status_at(ui->video->get_position() - 1).pull_state == EventsModel::Status::SHOULD_PULL) {
236 set_current_event_type("pull");
237 } else if (s.pull_state == EventsModel::Status::PULL_IN_AIR) {
238 insert_noplayer_event("pull_landed");
239 } else if (s.pull_state == EventsModel::Status::NOT_PULLING) {
240 set_current_event_type("was_d");
244 // Defensive events (TODO add more)
245 connect(ui->interception, &QPushButton::clicked, [this]() { set_current_event_type("interception"); });
246 connect(ui->defense_label, &ClickableLabel::clicked, [this]() { insert_noplayer_event("set_defense"); });
247 connect(ui->their_throwaway, &QPushButton::clicked, [this]() { insert_noplayer_event("their_throwaway"); });
248 connect(ui->their_goal, &QPushButton::clicked, [this]() { insert_noplayer_event("their_goal"); });
249 connect(ui->their_pull, &QPushButton::clicked, [this, events]() {
250 EventsModel::Status s = events->get_status_at(ui->video->get_position());
251 if (s.pull_state == EventsModel::Status::SHOULD_PULL) {
252 insert_noplayer_event("their_pull");
255 connect(ui->our_defense, &QPushButton::clicked, [this]() { set_current_event_type("defense"); });
257 connect(ui->offensive_formation, &QPushButton::clicked, [this]() { insert_or_change_formation(/*offense=*/true); });
258 connect(ui->defensive_formation, &QPushButton::clicked, [this]() { insert_or_change_formation(/*offense=*/false); });
261 connect(ui->substitution, &QPushButton::clicked, [this]() { make_substitution(); });
262 connect(ui->stoppage, &QPushButton::clicked, [this, events]() {
263 EventsModel::Status s = events->get_status_at(ui->video->get_position());
265 insert_noplayer_event("restart");
267 insert_noplayer_event("stoppage");
270 connect(ui->unknown, &QPushButton::clicked, [this]() { insert_noplayer_event("unknown"); });
272 QShortcut *key_delete = new QShortcut(QKeySequence(Qt::Key_Delete), this);
273 connect(key_delete, &QShortcut::activated, [this]() { ui->delete_->animateClick(); });
274 connect(ui->delete_, &QPushButton::clicked, [this]() { delete_current_event(); });
277 void MainWindow::position_changed(uint64_t pos)
279 ui->timestamp->setText(QString::fromUtf8(format_timestamp(pos)));
281 ui->video->pause(); // We only played to get a picture.
284 QModelIndex row = events->get_last_event_qt(ui->video->get_position());
285 ui->event_view->scrollTo(row, QAbstractItemView::PositionAtCenter);
287 update_ui_from_time(pos);
290 void MainWindow::insert_player_event(int button_id)
292 uint64_t t = ui->video->get_position();
293 vector<int> team = events->sort_team(events->get_team_at(t));
294 if (unsigned(button_id) >= team.size()) {
297 int player_id = team[button_id];
299 EventsModel::Status s = events->get_status_at(t);
301 ui->event_view->selectionModel()->blockSignals(true);
302 if (s.attack_state == EventsModel::Status::OFFENSE) {
303 // TODO: Perhaps not if that player already did the last catch?
304 ui->event_view->selectRow(events->insert_event(t, player_id, nullopt, "catch"));
306 ui->event_view->selectRow(events->insert_event(t, player_id, nullopt));
308 ui->event_view->selectionModel()->blockSignals(false);
310 update_ui_from_time(t);
313 void MainWindow::insert_noplayer_event(const string &type)
315 uint64_t t = ui->video->get_position();
317 ui->event_view->selectionModel()->blockSignals(true);
318 ui->event_view->selectRow(events->insert_event(t, nullopt, nullopt, type));
319 ui->event_view->selectionModel()->blockSignals(false);
321 update_ui_from_time(t);
324 void MainWindow::set_current_event_type(const string &type)
326 QItemSelectionModel *select = ui->event_view->selectionModel();
327 if (!select->hasSelection()) {
330 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
331 events->set_event_type(row, type);
332 update_ui_from_time(ui->video->get_position());
335 // Formation buttons either modify the existing formation (if we've selected
336 // a formation change event), or insert a new one (if not).
337 void MainWindow::insert_or_change_formation(bool offense)
339 FormationsModel *formations = offense ? offensive_formations : defensive_formations;
340 QListView *formation_view = offense ? ui->offensive_formation_view : ui->defensive_formation_view;
341 if (!formation_view->selectionModel()->hasSelection()) {
342 // This shouldn't happen; the button should not have been enabled.
345 int formation_row = formation_view->selectionModel()->selectedRows().front().row(); // Should only be one, due to our selection behavior.
346 int formation_id = formations->get_formation_id(formation_row);
347 if (formation_id == -1) {
348 // This also shouldn't happen (“Add new…” selected).
352 QItemSelectionModel *select = ui->event_view->selectionModel();
353 if (select->hasSelection()) {
354 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
355 string expected_type = offense ? "formation_offense" : "formation_defense";
356 if (events->get_event_type(row) == expected_type) {
357 events->set_event_formation(row, formation_id);
358 update_ui_from_time(ui->video->get_position());
363 // Insert a new formation event instead (same as double-click on the selected one).
364 events->set_formation_at(ui->video->get_position(), offense, formation_id);
365 update_ui_from_time(ui->video->get_position());
368 void MainWindow::delete_current_event()
370 QItemSelectionModel *select = ui->event_view->selectionModel();
371 if (!select->hasSelection()) {
374 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
375 ui->event_view->selectionModel()->blockSignals(true);
376 events->delete_event(row);
377 ui->event_view->selectionModel()->blockSignals(false);
378 update_ui_from_time(ui->video->get_position());
381 void MainWindow::make_substitution()
383 QItemSelectionModel *select = ui->player_view->selectionModel();
385 for (QModelIndex row : select->selectedRows()) {
386 new_team.insert(players->get_player_id(row.row()));
388 events->set_team_at(ui->video->get_position(), new_team);
389 update_player_buttons(ui->video->get_position());
392 void MainWindow::update_ui_from_time(uint64_t t)
395 update_player_buttons(t);
396 update_action_buttons(t);
399 void MainWindow::update_status(uint64_t t)
401 EventsModel::Status s = events->get_status_at(t);
403 std::string formation = "Not started";
404 if (s.attack_state == EventsModel::Status::OFFENSE) {
405 if (s.offensive_formation != 0) {
406 formation = offensive_formations->get_formation_name_by_id(s.offensive_formation);
408 formation = "Offense";
410 } else if (s.attack_state == EventsModel::Status::DEFENSE) {
411 if (s.defensive_formation != 0) {
412 formation = defensive_formations->get_formation_name_by_id(s.defensive_formation);
414 formation = "Defense";
418 snprintf(buf, sizeof(buf), "%d–%d | %s | %d passes, %d sec possession",
419 s.our_score, s.their_score, formation.c_str(), s.num_passes, s.possession_sec);
420 if (s.stoppage_sec > 0) {
422 snprintf(buf2, sizeof(buf2), "%s (plus %d sec stoppage)", buf, s.stoppage_sec);
423 ui->status->setText(buf2);
425 ui->status->setText(buf);
429 void MainWindow::update_player_buttons(uint64_t t)
431 QPushButton *buttons[] = {
440 const char shortcuts[] = "qweasdf";
442 for (int player_id : events->sort_team(events->get_team_at(t))) {
443 QPushButton *btn = buttons[num_players];
444 string label = players->get_player_name_by_id(player_id) + " (&" + shortcuts[num_players] + ")";
445 char shortcut[2] = "";
446 shortcut[0] = toupper(shortcuts[num_players]);
447 btn->setText(QString::fromUtf8(label));
448 btn->setShortcut(QCoreApplication::translate("MainWindow", shortcut, nullptr));
449 btn->setEnabled(true);
450 if (++num_players == 7) {
454 for (int i = num_players; i < 7; ++i) {
455 QPushButton *btn = buttons[i];
456 btn->setText("No player");
457 btn->setEnabled(false);
461 void MainWindow::update_action_buttons(uint64_t t)
464 QItemSelectionModel *select = ui->offensive_formation_view->selectionModel();
465 if (select->hasSelection()) {
466 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
467 ui->offensive_formation->setEnabled(offensive_formations->get_formation_id(row) != -1);
469 ui->offensive_formation->setEnabled(false);
473 QItemSelectionModel *select = ui->defensive_formation_view->selectionModel();
474 if (select->hasSelection()) {
475 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
476 ui->defensive_formation->setEnabled(defensive_formations->get_formation_id(row) != -1);
478 ui->defensive_formation->setEnabled(false);
482 EventsModel::Status s = events->get_status_at(t);
484 bool has_selection = false;
485 bool has_selection_with_player = false;
487 QItemSelectionModel *select = ui->event_view->selectionModel();
488 if (select->hasSelection()) {
489 has_selection = true;
490 int row = select->selectedRows().front().row(); // Should only be one, due to our selection behavior.
491 has_selection_with_player = events->get_player_id(row).has_value();
493 ui->delete_->setEnabled(has_selection);
496 ui->stoppage->setText("Restart (&v)");
497 ui->stoppage->setShortcut(QCoreApplication::translate("MainWindow", "V", nullptr));
498 ui->catch_->setEnabled(false);
499 ui->throwaway->setEnabled(false);
500 ui->drop->setEnabled(false);
501 ui->goal->setEnabled(false);
502 ui->stallout->setEnabled(false);
503 ui->soft_plus->setEnabled(false);
504 ui->soft_minus->setEnabled(false);
505 ui->pull_or_was_d->setEnabled(false);
506 ui->interception->setEnabled(false);
507 ui->their_throwaway->setEnabled(false);
508 ui->our_defense->setEnabled(false);
509 ui->their_goal->setEnabled(false);
510 ui->their_pull->setEnabled(false);
513 ui->stoppage->setText("Stoppage (&v)");
514 ui->stoppage->setShortcut(QCoreApplication::translate("MainWindow", "V", nullptr));
517 // Defaults for pull-related buttons.
518 ui->pull_or_was_d->setText("Pull (&p)");
519 ui->their_pull->setText("Their pull (&p)");
520 ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
521 ui->their_pull->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
522 ui->throwaway->setText("Throwaway (&t)");
523 ui->throwaway->setShortcut(QCoreApplication::translate("MainWindow", "T", nullptr));
525 if (s.pull_state == EventsModel::Status::SHOULD_PULL ||
526 (has_selection_with_player && events->get_status_at(ui->video->get_position() - 1).pull_state == EventsModel::Status::SHOULD_PULL)) { // Can change this event to pull.
527 ui->pull_or_was_d->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
528 ui->their_pull->setEnabled(s.attack_state == EventsModel::Status::OFFENSE);
530 ui->catch_->setEnabled(false);
531 ui->throwaway->setEnabled(false);
532 ui->drop->setEnabled(false);
533 ui->goal->setEnabled(false);
534 ui->stallout->setEnabled(false);
535 ui->soft_plus->setEnabled(false);
536 ui->soft_minus->setEnabled(false);
537 ui->interception->setEnabled(false);
538 ui->their_throwaway->setEnabled(false);
539 ui->our_defense->setEnabled(false);
540 ui->their_goal->setEnabled(false);
543 if (s.pull_state == EventsModel::Status::PULL_IN_AIR) {
544 if (s.attack_state == EventsModel::Status::DEFENSE) {
545 ui->pull_or_was_d->setText("Pull landed (&p)");
546 ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
547 ui->pull_or_was_d->setEnabled(true);
549 ui->throwaway->setText("Pull OOB (&t)");
550 ui->throwaway->setShortcut(QCoreApplication::translate("MainWindow", "T", nullptr));
551 ui->throwaway->setEnabled(true);
553 ui->pull_or_was_d->setEnabled(false);
554 ui->throwaway->setEnabled(false);
556 ui->their_pull->setEnabled(false); // We don't track their pull landings; only by means of catch etc.
558 ui->catch_->setEnabled(false);
559 ui->drop->setEnabled(false);
560 ui->goal->setEnabled(false);
561 ui->stallout->setEnabled(false);
562 ui->soft_plus->setEnabled(false);
563 ui->soft_minus->setEnabled(false);
564 ui->interception->setEnabled(false);
565 ui->their_throwaway->setEnabled(false);
566 ui->our_defense->setEnabled(false);
567 ui->their_goal->setEnabled(false);
571 // Not pulling, so reuse the pull button for got d-ed.
572 ui->pull_or_was_d->setText("Was d-ed (&z)");
573 ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "Z", nullptr));
574 ui->pull_or_was_d->setEnabled(true);
576 ui->catch_->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
577 ui->throwaway->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
578 ui->drop->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
579 ui->goal->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
580 ui->stallout->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
581 ui->soft_plus->setEnabled(s.attack_state != EventsModel::Status::NOT_STARTED && has_selection_with_player);
582 ui->soft_minus->setEnabled(s.attack_state != EventsModel::Status::NOT_STARTED && has_selection_with_player);
583 ui->pull_or_was_d->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player); // Was d-ed.
585 ui->interception->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
586 ui->their_throwaway->setEnabled(s.attack_state == EventsModel::Status::DEFENSE);
587 ui->our_defense->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
588 ui->their_goal->setEnabled(s.attack_state == EventsModel::Status::DEFENSE);
589 ui->their_pull->setEnabled(false);
592 void MainWindow::formation_double_clicked(bool offense, unsigned row)
594 FormationsModel *formations = offense ? offensive_formations : defensive_formations;
595 int id = formations->get_formation_id(row);
596 if (id == -1) { // “Add new” clicked.
598 QString new_formation_str = QInputDialog::getText(this, "New formation", "Choose name for new formation:", QLineEdit::Normal, "", &ok);
599 if (!ok || new_formation_str.isEmpty()) {
603 id = formations->insert_new(new_formation_str.toStdString());
604 QListView *view = offense ? ui->offensive_formation_view : ui->defensive_formation_view;
605 view->selectionModel()->select(formations->index(formations->get_row_from_id(id), 0), QItemSelectionModel::ClearAndSelect);
606 events->inserted_new_formation(id, new_formation_str.toStdString());
608 events->set_formation_at(ui->video->get_position(), offense, id);
610 update_ui_from_time(ui->video->get_position());