]> git.sesse.net Git - pkanalytics/blob - mainwindow.cpp
b8322cbb856c20f0c5902251d45e8135afd242e2
[pkanalytics] / mainwindow.cpp
1 #include <QMediaPlayer>
2 #include <QMainWindow>
3 #include <QApplication>
4 #include <QGridLayout>
5 #include <QShortcut>
6 #include <QFileDialog>
7 #include <QInputDialog>
8 #include <QTimer>
9 #include <algorithm>
10 #include <string>
11 #include <map>
12 #include <vector>
13 #include <optional>
14 #include <sqlite3.h>
15 #include "mainwindow.h"
16 #include "ui_mainwindow.h"
17 #include "events.h"
18 #include "players.h"
19 #include "formations.h"
20 #include "json.h"
21 #include "video_widget.h"
22
23 using namespace std;
24
25 string format_timestamp(uint64_t pos)
26 {
27         int ms = pos % 1000;
28         pos /= 1000;
29         int sec = pos % 60;
30         pos /= 60;
31         int min = pos % 60;
32         int hour = pos / 60;
33
34         char buf[256];
35         snprintf(buf, sizeof(buf), "%d:%02d:%02d.%03d", hour, min, sec, ms);
36         return buf;
37 }
38
39 string get_video_filename(sqlite3 *db, int match_id)
40 {
41         sqlite3_stmt *stmt;
42
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));
46                 abort();
47         }
48
49         sqlite3_bind_int64(stmt, 1, match_id);
50
51         ret = sqlite3_step(stmt);
52         if (ret != SQLITE_ROW) {
53                 fprintf(stderr, "SELECT step: %s\n", sqlite3_errmsg(db));
54                 abort();
55         }
56
57         if (sqlite3_column_type(stmt, 0) != SQLITE_TEXT) {
58                 return "";
59         }
60         string filename = (const char *)sqlite3_column_text(stmt, 0);
61
62         ret = sqlite3_finalize(stmt);
63         if (ret != SQLITE_OK) {
64                 fprintf(stderr, "SELECT finalize: %s\n", sqlite3_errmsg(db));
65                 abort();
66         }
67         return filename;
68 }
69
70 void save_video_filename(sqlite3 *db, int match_id, const string &filename)
71 {
72         sqlite3_stmt *stmt;
73
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));
77                 abort();
78         }
79
80         sqlite3_bind_text(stmt, 1, filename.data(), filename.size(), SQLITE_STATIC);
81         sqlite3_bind_int64(stmt, 2, match_id);
82
83         ret = sqlite3_step(stmt);
84         if (ret == SQLITE_ROW) {
85                 fprintf(stderr, "INSERT step: %s\n", sqlite3_errmsg(db));
86                 abort();
87         }
88
89         ret = sqlite3_finalize(stmt);
90         if (ret != SQLITE_OK) {
91                 fprintf(stderr, "SELECT finalize: %s\n", sqlite3_errmsg(db));
92                 abort();
93         }
94 }
95
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)
100 {
101         ui = new Ui::MainWindow;
102         ui->setupUi(this);
103
104         string filename = get_video_filename(db, match_id);
105         bool need_save_filename = false;
106         for ( ;; ) {
107                 if (!filename.empty() && ui->video->open(filename.c_str())) {
108                         break;
109                 }
110
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;
115         }
116         if (need_save_filename) {
117                 save_video_filename(db, match_id, filename);
118         }
119         ui->video->play();
120
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 &current, 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()));
129                         } else {
130                                 // Selection could have changed, so we still need to update.
131                                 // (Just calling setPosition() would not give us the signal
132                                 // in this case.)
133                                 update_ui_from_time(t);
134                         }
135                 });
136
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);
141
142         auto formation_changed = [this](const QModelIndex &current, const QModelIndex &previous) {
143                 QTimer::singleShot(1, [=]{  // The selection is wrong until the callback actually returns.
144                         update_action_buttons(ui->video->get_position());
145                 });
146         };
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());
153         });
154         connect(ui->defensive_formation_view, &QListView::doubleClicked, [this](const QModelIndex &index) {
155                 formation_double_clicked(false, index.row());
156         });
157
158         connect(ui->video, &VideoWidget::position_changed, [this](uint64_t pos) {
159                 position_changed(pos);
160         });
161
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); });
168
169         connect(ui->minus10s, &QPushButton::clicked, [this]() { ui->video->seek(-10000); });
170         connect(ui->plus10s, &QPushButton::clicked, [this]() { ui->video->seek(10000); });
171
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); });
176
177         connect(ui->minus1f, &QPushButton::clicked, [this]() { ui->video->seek_frames(-1); });
178         connect(ui->plus1f, &QPushButton::clicked, [this]() { ui->video->seek_frames(1); });
179
180         connect(ui->play_pause, &QPushButton::clicked, [this]() {
181                 if (playing) {
182                         ui->video->pause();
183                         ui->play_pause->setText("Play (space)");
184                 } else {
185                         ui->video->play();
186                         ui->play_pause->setText("Pause (space)");
187                 }
188                 playing = !playing;
189
190                 // Needs to be set anew when we modify setText(), evidently.
191                 ui->play_pause->setShortcut(QCoreApplication::translate("MainWindow", "Space", nullptr));
192         });
193
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); });
201
202         // Offensive events
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");
209                 } else {
210                         set_current_event_type("throwaway");
211                 }
212         });
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");
222                 }
223         });
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");
230                 }
231         });
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                         set_current_event_type("pull");
236                 } else if (s.pull_state == EventsModel::Status::PULL_IN_AIR) {
237                         insert_noplayer_event("pull_landed");
238                 } else if (s.pull_state == EventsModel::Status::NOT_PULLING) {
239                         set_current_event_type("was_d");
240                 }
241         });
242
243         // Defensive events (TODO add more)
244         connect(ui->interception, &QPushButton::clicked, [this]() { set_current_event_type("interception"); });
245         connect(ui->defense_label, &ClickableLabel::clicked, [this]() { insert_noplayer_event("set_defense"); });
246         connect(ui->their_throwaway, &QPushButton::clicked, [this]() { insert_noplayer_event("their_throwaway"); });
247         connect(ui->their_goal, &QPushButton::clicked, [this]() { insert_noplayer_event("their_goal"); });
248         connect(ui->their_pull, &QPushButton::clicked, [this, events]() {
249                 EventsModel::Status s = events->get_status_at(ui->video->get_position());
250                 if (s.pull_state == EventsModel::Status::SHOULD_PULL) {
251                         insert_noplayer_event("their_pull");
252                 }
253         });
254         connect(ui->our_defense, &QPushButton::clicked, [this]() { set_current_event_type("defense"); });
255
256         connect(ui->offensive_formation, &QPushButton::clicked, [this]() { insert_or_change_formation(/*offense=*/true); });
257         connect(ui->defensive_formation, &QPushButton::clicked, [this]() { insert_or_change_formation(/*offense=*/false); });
258
259         // Misc. events
260         connect(ui->substitution, &QPushButton::clicked, [this]() { make_substitution(); });
261         connect(ui->stoppage, &QPushButton::clicked, [this, events]() {
262                 EventsModel::Status s = events->get_status_at(ui->video->get_position());
263                 if (s.stoppage) {
264                         insert_noplayer_event("restart");
265                 } else {
266                         insert_noplayer_event("stoppage");
267                 }
268         });
269         connect(ui->unknown, &QPushButton::clicked, [this]() { insert_noplayer_event("unknown"); });
270
271         QShortcut *key_delete = new QShortcut(QKeySequence(Qt::Key_Delete), this);
272         connect(key_delete, &QShortcut::activated, [this]() { ui->delete_->animateClick(); });
273         connect(ui->delete_, &QPushButton::clicked, [this]() { delete_current_event(); });
274 }
275
276 void MainWindow::position_changed(uint64_t pos)
277 {
278         ui->timestamp->setText(QString::fromUtf8(format_timestamp(pos)));
279         if (!playing) {
280                 ui->video->pause();  // We only played to get a picture.
281         }
282         if (playing) {
283                 QModelIndex row = events->get_last_event_qt(ui->video->get_position());
284                 ui->event_view->scrollTo(row, QAbstractItemView::PositionAtCenter);
285         }
286         update_ui_from_time(pos);
287 }
288
289 void MainWindow::insert_player_event(int button_id)
290 {
291         uint64_t t = ui->video->get_position();
292         vector<int> team = events->sort_team(events->get_team_at(t));
293         if (unsigned(button_id) >= team.size()) {
294                 return;
295         }
296         int player_id = team[button_id];
297
298         EventsModel::Status s = events->get_status_at(t);
299
300         ui->event_view->selectionModel()->blockSignals(true);
301         if (s.attack_state == EventsModel::Status::OFFENSE) {
302                 // TODO: Perhaps not if that player already did the last catch?
303                 ui->event_view->selectRow(events->insert_event(t, player_id, nullopt, "catch"));
304         } else {
305                 ui->event_view->selectRow(events->insert_event(t, player_id, nullopt));
306         }
307         ui->event_view->selectionModel()->blockSignals(false);
308
309         update_ui_from_time(t);
310 }
311
312 void MainWindow::insert_noplayer_event(const string &type)
313 {
314         uint64_t t = ui->video->get_position();
315
316         ui->event_view->selectionModel()->blockSignals(true);
317         ui->event_view->selectRow(events->insert_event(t, nullopt, nullopt, type));
318         ui->event_view->selectionModel()->blockSignals(false);
319
320         update_ui_from_time(t);
321 }
322
323 void MainWindow::set_current_event_type(const string &type)
324 {
325         QItemSelectionModel *select = ui->event_view->selectionModel();
326         if (!select->hasSelection()) {
327                 return;
328         }
329         int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
330         events->set_event_type(row, type);
331         update_ui_from_time(ui->video->get_position());
332 }
333
334 // Formation buttons either modify the existing formation (if we've selected
335 // a formation change event), or insert a new one (if not).
336 void MainWindow::insert_or_change_formation(bool offense)
337 {
338         FormationsModel *formations = offense ? offensive_formations : defensive_formations;
339         QListView *formation_view = offense ? ui->offensive_formation_view : ui->defensive_formation_view;
340         if (!formation_view->selectionModel()->hasSelection()) {
341                 // This shouldn't happen; the button should not have been enabled.
342                 return;
343         }
344         int formation_row = formation_view->selectionModel()->selectedRows().front().row();  // Should only be one, due to our selection behavior.
345         int formation_id = formations->get_formation_id(formation_row);
346         if (formation_id == -1) {
347                 // This also shouldn't happen (“Add new…” selected).
348                 return;
349         }
350
351         QItemSelectionModel *select = ui->event_view->selectionModel();
352         if (select->hasSelection()) {
353                 int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
354                 string expected_type = offense ? "formation_offense" : "formation_defense";
355                 if (events->get_event_type(row) == expected_type) {
356                         events->set_event_formation(row, formation_id);
357                         update_ui_from_time(ui->video->get_position());
358                         return;
359                 }
360         }
361
362         // Insert a new formation event instead (same as double-click on the selected one).
363         events->set_formation_at(ui->video->get_position(), offense, formation_id);
364         update_ui_from_time(ui->video->get_position());
365 }
366
367 void MainWindow::delete_current_event()
368 {
369         QItemSelectionModel *select = ui->event_view->selectionModel();
370         if (!select->hasSelection()) {
371                 return;
372         }
373         int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
374         ui->event_view->selectionModel()->blockSignals(true);
375         events->delete_event(row);
376         ui->event_view->selectionModel()->blockSignals(false);
377         update_ui_from_time(ui->video->get_position());
378 }
379
380 void MainWindow::make_substitution()
381 {
382         QItemSelectionModel *select = ui->player_view->selectionModel();
383         set<int> new_team;
384         for (QModelIndex row : select->selectedRows()) {
385                 new_team.insert(players->get_player_id(row.row()));
386         }
387         events->set_team_at(ui->video->get_position(), new_team);
388         update_player_buttons(ui->video->get_position());
389 }
390
391 void MainWindow::update_ui_from_time(uint64_t t)
392 {
393         update_status(t);
394         update_player_buttons(t);
395         update_action_buttons(t);
396 }
397
398 void MainWindow::update_status(uint64_t t)
399 {
400         EventsModel::Status s = events->get_status_at(t);
401         char buf[256];
402         std::string formation = "Not started";
403         if (s.attack_state == EventsModel::Status::OFFENSE) {
404                 if (s.offensive_formation != 0) {
405                         formation = offensive_formations->get_formation_name_by_id(s.offensive_formation);
406                 } else {
407                         formation = "Offense";
408                 }
409         } else if (s.attack_state == EventsModel::Status::DEFENSE) {
410                 if (s.defensive_formation != 0) {
411                         formation = defensive_formations->get_formation_name_by_id(s.defensive_formation);
412                 } else {
413                         formation = "Defense";
414                 }
415         }
416
417         snprintf(buf, sizeof(buf), "%d–%d | %s | %d passes, %d sec possession",
418                 s.our_score, s.their_score, formation.c_str(), s.num_passes, s.possession_sec);
419         if (s.stoppage_sec > 0) {
420                 char buf2[256];
421                 snprintf(buf2, sizeof(buf2), "%s (plus %d sec stoppage)", buf, s.stoppage_sec);
422                 ui->status->setText(buf2);
423         } else {
424                 ui->status->setText(buf);
425         }
426 }
427
428 void MainWindow::update_player_buttons(uint64_t t)
429 {
430         QPushButton *buttons[] = {
431                 ui->player_1,
432                 ui->player_2,
433                 ui->player_3,
434                 ui->player_4,
435                 ui->player_5,
436                 ui->player_6,
437                 ui->player_7
438         };
439         const char shortcuts[] = "qweasdf";
440         int num_players = 0;
441         for (int player_id : events->sort_team(events->get_team_at(t))) {
442                 QPushButton *btn = buttons[num_players];
443                 string label = players->get_player_name_by_id(player_id) + " (&" + shortcuts[num_players] + ")";
444                 char shortcut[2] = "";
445                 shortcut[0] = toupper(shortcuts[num_players]);
446                 btn->setText(QString::fromUtf8(label));
447                 btn->setShortcut(QCoreApplication::translate("MainWindow", shortcut, nullptr));
448                 btn->setEnabled(true);
449                 if (++num_players == 7) {
450                         break;
451                 }
452         }
453         for (int i = num_players; i < 7; ++i) {
454                 QPushButton *btn = buttons[i];
455                 btn->setText("No player");
456                 btn->setEnabled(false);
457         }
458 }
459
460 void MainWindow::update_action_buttons(uint64_t t)
461 {
462         {
463                 QItemSelectionModel *select = ui->offensive_formation_view->selectionModel();
464                 if (select->hasSelection()) {
465                         int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
466                         ui->offensive_formation->setEnabled(offensive_formations->get_formation_id(row) != -1);
467                 } else {
468                         ui->offensive_formation->setEnabled(false);
469                 }
470         }
471         {
472                 QItemSelectionModel *select = ui->defensive_formation_view->selectionModel();
473                 if (select->hasSelection()) {
474                         int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
475                         ui->defensive_formation->setEnabled(defensive_formations->get_formation_id(row) != -1);
476                 } else {
477                         ui->defensive_formation->setEnabled(false);
478                 }
479         }
480
481         EventsModel::Status s = events->get_status_at(t);
482
483         bool has_selection = false;
484         bool has_selection_with_player = false;
485
486         QItemSelectionModel *select = ui->event_view->selectionModel();
487         if (select->hasSelection()) {
488                 has_selection = true;
489                 int row = select->selectedRows().front().row();  // Should only be one, due to our selection behavior.
490                 has_selection_with_player = events->get_player_id(row).has_value();
491         }
492         ui->delete_->setEnabled(has_selection);
493
494         if (s.stoppage) {
495                 ui->stoppage->setText("Restart (&v)");
496                 ui->stoppage->setShortcut(QCoreApplication::translate("MainWindow", "V", nullptr));
497                 ui->catch_->setEnabled(false);
498                 ui->throwaway->setEnabled(false);
499                 ui->drop->setEnabled(false);
500                 ui->goal->setEnabled(false);
501                 ui->stallout->setEnabled(false);
502                 ui->soft_plus->setEnabled(false);
503                 ui->soft_minus->setEnabled(false);
504                 ui->pull_or_was_d->setEnabled(false);
505                 ui->interception->setEnabled(false);
506                 ui->their_throwaway->setEnabled(false);
507                 ui->our_defense->setEnabled(false);
508                 ui->their_goal->setEnabled(false);
509                 ui->their_pull->setEnabled(false);
510                 return;
511         } else {
512                 ui->stoppage->setText("Stoppage (&v)");
513                 ui->stoppage->setShortcut(QCoreApplication::translate("MainWindow", "V", nullptr));
514         }
515
516         // Defaults for pull-related buttons.
517         ui->pull_or_was_d->setText("Pull (&p)");
518         ui->their_pull->setText("Their pull (&p)");
519         ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
520         ui->their_pull->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
521         ui->throwaway->setText("Throwaway (&t)");
522         ui->throwaway->setShortcut(QCoreApplication::translate("MainWindow", "T", nullptr));
523
524         if (s.pull_state == EventsModel::Status::SHOULD_PULL) {
525                 ui->pull_or_was_d->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
526                 ui->their_pull->setEnabled(s.attack_state == EventsModel::Status::OFFENSE);
527
528                 ui->catch_->setEnabled(false);
529                 ui->throwaway->setEnabled(false);
530                 ui->drop->setEnabled(false);
531                 ui->goal->setEnabled(false);
532                 ui->stallout->setEnabled(false);
533                 ui->soft_plus->setEnabled(false);
534                 ui->soft_minus->setEnabled(false);
535                 ui->interception->setEnabled(false);
536                 ui->their_throwaway->setEnabled(false);
537                 ui->our_defense->setEnabled(false);
538                 ui->their_goal->setEnabled(false);
539                 return;
540         }
541         if (s.pull_state == EventsModel::Status::PULL_IN_AIR) {
542                 if (s.attack_state == EventsModel::Status::DEFENSE) {
543                         ui->pull_or_was_d->setText("Pull landed (&p)");
544                         ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "P", nullptr));
545                         ui->pull_or_was_d->setEnabled(true);
546
547                         ui->throwaway->setText("Pull OOB (&t)");
548                         ui->throwaway->setShortcut(QCoreApplication::translate("MainWindow", "T", nullptr));
549                         ui->throwaway->setEnabled(true);
550                 } else {
551                         ui->pull_or_was_d->setEnabled(false);
552                         ui->throwaway->setEnabled(false);
553                 }
554                 ui->their_pull->setEnabled(false);  // We don't track their pull landings; only by means of catch etc.
555
556                 ui->catch_->setEnabled(false);
557                 ui->drop->setEnabled(false);
558                 ui->goal->setEnabled(false);
559                 ui->stallout->setEnabled(false);
560                 ui->soft_plus->setEnabled(false);
561                 ui->soft_minus->setEnabled(false);
562                 ui->interception->setEnabled(false);
563                 ui->their_throwaway->setEnabled(false);
564                 ui->our_defense->setEnabled(false);
565                 ui->their_goal->setEnabled(false);
566                 return;
567         }
568
569         // Not pulling, so reuse the pull button for got d-ed.
570         ui->pull_or_was_d->setText("Was d-ed (&z)");
571         ui->pull_or_was_d->setShortcut(QCoreApplication::translate("MainWindow", "Z", nullptr));
572         ui->pull_or_was_d->setEnabled(true);
573
574         ui->catch_->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
575         ui->throwaway->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
576         ui->drop->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
577         ui->goal->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
578         ui->stallout->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);
579         ui->soft_plus->setEnabled(s.attack_state != EventsModel::Status::NOT_STARTED && has_selection_with_player);
580         ui->soft_minus->setEnabled(s.attack_state != EventsModel::Status::NOT_STARTED && has_selection_with_player);
581         ui->pull_or_was_d->setEnabled(s.attack_state == EventsModel::Status::OFFENSE && has_selection_with_player);  // Was d-ed.
582
583         ui->interception->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
584         ui->their_throwaway->setEnabled(s.attack_state == EventsModel::Status::DEFENSE);
585         ui->our_defense->setEnabled(s.attack_state == EventsModel::Status::DEFENSE && has_selection_with_player);
586         ui->their_goal->setEnabled(s.attack_state == EventsModel::Status::DEFENSE);
587         ui->their_pull->setEnabled(false);
588 }
589
590 void MainWindow::formation_double_clicked(bool offense, unsigned row)
591 {
592         FormationsModel *formations = offense ? offensive_formations : defensive_formations;
593         int id = formations->get_formation_id(row);
594         if (id == -1) {  // “Add new” clicked.
595                 bool ok;
596                 QString new_formation_str = QInputDialog::getText(this, "New formation", "Choose name for new formation:", QLineEdit::Normal, "", &ok);
597                 if (!ok || new_formation_str.isEmpty()) {
598                         return;
599                 }
600
601                 id = formations->insert_new(new_formation_str.toStdString());
602                 QListView *view = offense ? ui->offensive_formation_view : ui->defensive_formation_view;
603                 view->selectionModel()->select(formations->index(formations->get_row_from_id(id), 0), QItemSelectionModel::ClearAndSelect);
604                 events->inserted_new_formation(id, new_formation_str.toStdString());
605         } else {
606                 events->set_formation_at(ui->video->get_position(), offense, id);
607         }
608         update_ui_from_time(ui->video->get_position());
609 }
610