X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroupscreen.h;h=fb27787b34813e1ca39f6708aed6cec7a610c899;hp=3d24403443e6aa0b957a02ee9aa73abd3f3fdd5f;hb=09ae4d8636130d4c86ab3f8df8f823482f948f97;hpb=88b3ef1f363e8181e7eb04e24f1646fe9782bb44 diff --git a/bigscreen/groupscreen.h b/bigscreen/groupscreen.h index 3d24403..fb27787 100644 --- a/bigscreen/groupscreen.h +++ b/bigscreen/groupscreen.h @@ -14,7 +14,7 @@ /* A screen class showing a group in the tournament */ class GroupScreen : public GenericScreen { private: - unsigned tournament, round, parallel; + unsigned tournament, round, parallel, machine, num_machines; FlagTrigger scores_changed; pqxx::connection &conn; bool valid; @@ -22,11 +22,12 @@ private: std::vector last_text; public: - GroupScreen(pqxx::connection &conn, unsigned tournament, unsigned round, unsigned parallel); + GroupScreen(pqxx::connection &conn, unsigned tournament, unsigned round, unsigned parallel, unsigned machine, unsigned num_machines); virtual ~GroupScreen(); bool check_invalidated(); - void draw(unsigned char *buf); + void draw(unsigned char *buf, unsigned width, unsigned height); + int get_priority(); }; #endif /* !defined(_GROUPSCREEN_H) */