]> git.sesse.net Git - ccbs/blobdiff - bigscreen/ccbs_bigscreen.cpp
Support different theming for odd/even rows.
[ccbs] / bigscreen / ccbs_bigscreen.cpp
index d09b1c4d36f1fae35d363aa0fe7bd01ae1ef34aa..05b32b89cec2b341630eeada909ee718bc0cd149 100644 (file)
@@ -13,6 +13,7 @@
 #include "fetch_group.h"
 #include "fetch_auxilliary_screens.h"
 #include "fonts.h"
+#include "theme.h"
 #include "groupscreen.h"
 #include "top10scorescreen.h"
 #include "top5chosenscreen.h"
@@ -26,6 +27,7 @@ std::vector<SkeletonGroup> active_groups;
 std::vector<GenericScreen *> screens;
 GenericScreen *mainscreen = NULL;
 unsigned char framebuf[SCREEN_WIDTH * SCREEN_HEIGHT * 4], screenbuf[SCREEN_WIDTH * SCREEN_HEIGHT * 4];
+bool quit_requested = false;
 
 void init(pqxx::connection &conn)
 {
@@ -39,9 +41,11 @@ void init(pqxx::connection &conn)
        }
        screens.erase(screens.begin(), screens.end());
 
+#if !USE_SPLITSCREEN
        RotateScreen *rs = new RotateScreen();
        mainscreen = rs;
-       
+#endif
+
        conn.perform(FetchCurrentTournament(&active_tournament));
        conn.perform(FetchListOfActiveGroups(&active_groups));
 
@@ -56,12 +60,30 @@ void init(pqxx::connection &conn)
 
                        // memory leaks here?
                        for (unsigned j = 0; j < i->num_machines; ++j) {
+#if USE_SPLITSCREEN
+                               RotateScreen *rs = new RotateScreen();
+                               screens.push_back(rs);
+#endif
                                rs->add_screen(new GroupScreen(conn, i->tournament, i->round, i->parallel, j, i->num_machines, i->players_per_machine));
                        }
                }
        }
 
-       {
+       bool show_only_main_screen = (USE_SPLITSCREEN && screens.size() == 1);
+
+       /*
+        * Show auxilliary screens except if we have too many already,
+        * or if we're in the special split-screen end-tournament mode,
+        * where there if only one.
+        */
+       RotateScreen *aux_screen = NULL;
+       if (screens.size() < 4 && !show_only_main_screen) {
+#if USE_SPLITSCREEN
+               RotateScreen *rs = new RotateScreen();
+               screens.push_back(rs);
+#endif
+               aux_screen = rs;
+
                conn.perform(FetchAuxilliaryScreens(&aux_screens));
                for (std::vector<widestring>::const_iterator i = aux_screens.begin(); i != aux_screens.end(); ++i) {
                        if (*i == widestring("top10scores")) {
@@ -74,6 +96,45 @@ void init(pqxx::connection &conn)
                        }
                }
        }
+
+#if USE_SPLITSCREEN
+       /*
+        * If we still have room, make yet another rotational screen with
+        * results from previous groups -- otherwise tack them onto the end
+        * of the auxilliary screens.
+        */
+       RotateScreen *finished_groups_screen;
+       if (show_only_main_screen) {
+               finished_groups_screen = NULL;
+       } else if (screens.size() < 4) {
+               finished_groups_screen = new RotateScreen();
+               screens.push_back(finished_groups_screen);
+       } else {
+               finished_groups_screen = aux_screen;
+       }
+       if (finished_groups_screen != NULL) {
+               std::vector<SkeletonGroup> finished_groups;
+               conn.perform(FetchListOfFinishedGroups(active_tournament.id, &finished_groups));
+
+               for (std::vector<SkeletonGroup>::const_iterator i = finished_groups.begin(); i != finished_groups.end(); ++i) {
+                       finished_groups_screen->add_screen(new GroupScreen(conn, i->tournament, i->round, i->parallel, 0, 1, 1));
+               }
+       }
+#endif
+
+#if USE_SPLITSCREEN
+       // hack
+       screens.push_back(NULL);
+       screens.push_back(NULL);
+       screens.push_back(NULL);
+       screens.push_back(NULL);
+
+       if (screens[1] == NULL) {
+               mainscreen = screens[0];
+       } else {
+               mainscreen = new SplitScreen(screens[0], screens[1], screens[2], screens[3]);
+       }
+#endif
 }
 
 void main_loop(pqxx::connection &conn)
@@ -85,14 +146,20 @@ void main_loop(pqxx::connection &conn)
        }
 
        if (mainscreen && mainscreen->check_invalidated()) {
-               mainscreen->draw(framebuf, SCREEN_WIDTH, SCREEN_HEIGHT);
-               SDL_LockSurface(screen);
-               for (unsigned y = 0; y < SCREEN_HEIGHT; ++y) {
-                       unsigned char *sptr = framebuf + y * SCREEN_WIDTH * 4;
-                       unsigned char *dptr = (unsigned char *)screen->pixels + y * screen->pitch;
-                       memcpy(dptr, sptr, SCREEN_WIDTH * 4);
+               if (screen->pitch == SCREEN_WIDTH * 4) {
+                       SDL_LockSurface(screen);
+                       mainscreen->draw((unsigned char *)screen->pixels, SCREEN_WIDTH, SCREEN_HEIGHT);
+                       SDL_UnlockSurface(screen);
+               } else {
+                       mainscreen->draw(framebuf, SCREEN_WIDTH, SCREEN_HEIGHT);
+                       SDL_LockSurface(screen);
+                       for (unsigned y = 0; y < SCREEN_HEIGHT; ++y) {
+                               unsigned char *sptr = framebuf + y * SCREEN_WIDTH * 4;
+                               unsigned char *dptr = (unsigned char *)screen->pixels + y * screen->pitch;
+                               memcpy(dptr, sptr, SCREEN_WIDTH * 4);
+                       }
+                       SDL_UnlockSurface(screen);
                }
-               SDL_UnlockSurface(screen);
                SDL_Flip(screen);
                conn.await_notification(0, 10000);
        } else {
@@ -101,6 +168,19 @@ void main_loop(pqxx::connection &conn)
        }
 }
 
+void handle_events()
+{
+       SDL_Event event;
+       while (SDL_PollEvent(&event)) {
+               if (event.type == SDL_QUIT) {
+                       quit_requested = true;
+               }
+               if (event.type == SDL_KEYUP && event.key.keysym.sym == SDLK_ESCAPE) {
+                       quit_requested = true;
+               }
+       }
+}
+
 int main(int argc, char **argv)
 {
        SDL_Init(SDL_INIT_VIDEO);
@@ -116,6 +196,7 @@ int main(int argc, char **argv)
        }
        
        try {
+               init_theme();
                init_freetype();
                pqxx::connection conn("dbname=ccbs host=www.positivegaming.com user=ccbs password=GeT|>>B_");
                FlagTrigger tournament_changed(conn, "active_tournament");
@@ -123,15 +204,21 @@ int main(int argc, char **argv)
                
                // when active_tournament or active_rounds is changed, we destroy everything and start from scratch
                // (at least currently)
-               for ( ;; ) {
+               while (!quit_requested) {
                        tournament_changed.reset_flag();
                        rounds_changed.reset_flag();
                        init(conn);
                        do {
                                main_loop(conn);
                                conn.get_notifs();
-                       } while (!tournament_changed.get_flag() && !rounds_changed.get_flag());
-                       std::fprintf(stderr, "active_tournament or active_groups changed, resetting...\n");
+                               handle_events();
+                       } while (!tournament_changed.get_flag() && !rounds_changed.get_flag() && !quit_requested);
+
+                       if (quit_requested) {
+                               fprintf(stderr, "Quitting...\n");
+                       } else {
+                               fprintf(stderr, "active_tournament or active_groups changed, resetting...\n");
+                       }
                }
        } catch (const std::exception &e) {
                std::fprintf(stderr, "Exception: %s\n", e.what());