]> git.sesse.net Git - pkanalytics/blob - events.h
Fix formation JSON export.
[pkanalytics] / events.h
1 #ifndef _EVENTS_H
2 #define _EVENTS_H 1
3
4 #include <sqlite3.h>
5 #include <stdint.h>
6 #include <QAbstractTableModel>
7 #include <map>
8 #include <vector>
9 #include <optional>
10 #include <set>
11
12 class EventsModel : public QAbstractTableModel
13 {
14 public:
15         EventsModel(sqlite3 *db, int match_id);
16
17         int rowCount(const QModelIndex &parent) const override
18         {
19                 return events.size();
20         }
21         int columnCount(const QModelIndex &column) const override
22         {
23                 return 3;
24         }
25         QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
26         QVariant data(const QModelIndex &index, int role) const override;
27
28         unsigned insert_event(uint64_t t, std::optional<int> player_id, std::optional<int> formation_id, const std::string &type = "unknown");  // Returns the row.
29         void delete_event(unsigned row);
30         void set_event_type(unsigned row, const std::string &type);
31         uint64_t get_time(unsigned row) { return events[row].t; }
32         unsigned get_last_event_pos(uint64_t t) const;  // Last event that happened at or before t.
33         QModelIndex get_last_event_qt(uint64_t t) const {
34                 return createIndex(get_last_event_pos(t), 0);
35         }
36         std::optional<int> get_player_id(unsigned row) { return events[row].player_id; }
37
38         struct Status {
39                 unsigned our_score, their_score;
40                 enum { NOT_STARTED, OFFENSE, DEFENSE } attack_state;
41                 unsigned offensive_formation, defensive_formation;
42                 bool stoppage;
43                 enum { NOT_PULLING, SHOULD_PULL, PULL_IN_AIR } pull_state;
44                 unsigned num_passes;
45                 unsigned possession_sec;
46                 unsigned stoppage_sec;
47         };
48         Status get_status_at(uint64_t t);
49         std::set<int> get_team_at(uint64_t t);
50         void set_team_at(uint64_t, const std::set<int> &new_team);
51         std::vector<int> sort_team(const std::set<int> &team) const;  // Ordered first by gender, then by number.
52         void set_formation_at(uint64_t t, bool offense, unsigned formation);
53
54         // Used to notify when we've inserted a new one into the database.
55         void inserted_new_formation(int formation_id, const std::string &name) {
56                 formations[formation_id] = Formation{ formation_id, name };
57         }
58
59 private:
60         struct Player {
61                 int player_id;
62                 std::string number;
63                 std::string name;
64         };
65         std::map<int, Player> players;
66         std::map<int, int> player_ordering;  // From id to position.
67
68         struct Formation {
69                 int formation_id;
70                 std::string name;
71         };
72         std::map<int, Formation> formations;
73
74         struct Event {
75                 int event_id;
76                 uint64_t t;
77                 std::optional<int> player_id;
78                 std::optional<int> formation_id;
79                 std::string type;
80         };
81         std::vector<Event> events;
82
83         sqlite3 *db;
84         int match_id;
85
86         void load_data();
87 };
88
89 #endif  // !defined(_EVENTS_H)