initialize gl on the overlay window
[dana/dcompmgr.git] / dcompmgr.c
index f9d1ebb..47c6a1d 100644 (file)
@@ -1,22 +1,34 @@
+#include "efence.h"
+
 #include "screen.h"
 #include "window.h"
 #include "list.h"
 #include "display.h"
 #include "gettext.h"
 #include "time.h"
+
+/* these can be plugins */
 #include "render.h"
+#include "glxrender.h"
+#include "fade.h"
 
 #include <glib.h>
 #include <stdio.h>
 #include <sys/select.h>
 #include <stdlib.h>
 #include <string.h>
+#include <signal.h>
 #include <xcb/xcb.h>
+#include <xcb/damage.h>
+#include <xcb/shape.h>
 
 typedef struct {
     int foo;
 } d_options_t;
 
+static gboolean quit = FALSE;
+static gboolean running = FALSE;
+
 static void
 read_options(int argc, char **argv, d_options_t *opts)
 {
@@ -24,11 +36,18 @@ read_options(int argc, char **argv, d_options_t *opts)
 }
 
 static void
+signal_quit_handler(int sig)
+{
+    printf("caught signal %d, quitting\n", sig);
+    quit = TRUE;
+}
+
+static void
 event(d_display_t *dpy)
 {
     xcb_generic_event_t *ev;
 
-    while ((ev = xcb_poll_for_event(dpy->conn))) {
+    while ((ev = xcb_poll_for_event(dpy->conn)) && !quit) {
         //printf("event %d\n", ev->response_type);
 
         if (!ev->response_type) {
@@ -42,11 +61,12 @@ event(d_display_t *dpy)
         {
             xcb_create_notify_event_t *cev;
             d_screen_t *sc;
+            d_window_t *w;
 
             cev = (xcb_create_notify_event_t*)ev;
             sc = display_screen_from_root(dpy, cev->parent);
             if (!sc) break;
-            screen_add_window(sc, cev->window);
+            w = screen_add_window(sc, cev->window);
             break;
         }
         case XCB_DESTROY_NOTIFY:
@@ -61,7 +81,10 @@ event(d_display_t *dpy)
             if (!sc) break;
             w = screen_find_window(sc, dev->window);
             vis = window_is_mapped(w);
-            sc->window_hide(w);
+            if (vis) {
+                sc->window_become_zombie(w);
+                sc->window_hide(w);
+            }
             screen_remove_window(sc, w);
             if (vis) screen_refresh(sc);
             break;
@@ -79,10 +102,13 @@ event(d_display_t *dpy)
             if (rev->parent == sc->super.root)
                 screen_add_window(sc, rev->window);
             else {
-                sc->window_hide(w);
+                if (window_is_mapped(w)) {
+                    sc->window_become_zombie(w);
+                    sc->window_hide(w);
+                }
                 screen_remove_window(sc, w);
             }
-            screen_refresh(w->sc);
+            screen_refresh(sc);
             break;
         }
         case XCB_MAP_NOTIFY:
@@ -109,46 +135,166 @@ event(d_display_t *dpy)
             sc = display_screen_from_root(dpy, mev->event);
             if (!sc) break;
             w = screen_find_window(sc, mev->window);
+            sc->window_become_zombie(w);
             sc->window_hide(w);
             screen_refresh(w->sc);
             break;
         }
+        case XCB_CIRCULATE_NOTIFY:
+        {
+            xcb_circulate_notify_event_t *cev;
+            d_screen_t *sc;
+            d_window_t *w;
+
+            cev = (xcb_circulate_notify_event_t*)ev;
+            sc = display_screen_from_root(dpy, cev->event);
+            if (!sc) break;
+            w = screen_find_window(sc, cev->window);
+            if (cev->place == XCB_PLACE_ON_TOP)
+                screen_stacking_move_to_top(sc, w);
+            else
+                screen_stacking_move_to_bottom(sc, w);
+            screen_refresh(w->sc);
+        }
         case XCB_CONFIGURE_NOTIFY:
         {
             xcb_configure_notify_event_t *cev;
             d_screen_t *sc;
             d_window_t *w, *above;
+            int x, y, width, height, bwidth;
 
             cev = (xcb_configure_notify_event_t*)ev;
             sc = display_screen_from_root(dpy, cev->event);
             if (!sc) break;
+            //printf("configure 0x%x", cev->window);
             w = screen_find_window(sc, cev->window);
-            sc->window_configure(w, cev->x, cev->y,
-                                 cev->width, cev->height, cev->border_width);
+            window_get_area(w, &x, &y, &width, &height, &bwidth);
+            if (x != cev->x || y != cev->y || width != cev->width ||
+                height != cev->height || bwidth != cev->border_width)
+            {
+                window_configure(w, cev->x, cev->y,
+                                 cev->width, cev->height,
+                                 cev->border_width);
+                if (window_is_mapped(w)) {
+                    if (x != cev->x || y != cev->y)
+                        sc->window_move(w);
+                    if (width != cev->width ||
+                        height != cev->height || bwidth != cev->border_width)
+                        sc->window_resize(w);
+                }
+            }
             above = screen_find_window(sc, cev->above_sibling);
-            screen_stacking_move_above(sc, w, above);
+            if (window_is_mapped(w))
+                sc->window_restack(w, above);
             screen_refresh(w->sc);
             break;
         }
+        case XCB_PROPERTY_NOTIFY:
+        {
+            xcb_property_notify_event_t *pev;
+
+            pev = (xcb_property_notify_event_t*)ev;
+            if (pev->atom == dpy->a.xrootpmap_id ||
+                pev->atom == dpy->a.esetroot_pmap_id ||
+                pev->atom == dpy->a.xsetroot_id)
+            {
+                d_screen_t *sc;
+
+                sc = display_screen_from_root(dpy, pev->window);
+                if (sc) sc->screen_root_pixmap_change(sc);
+            }
+            else if (pev->atom == dpy->a.net_wm_window_opacity) {
+                d_list_it_t *it;
+
+                for (it = list_top(dpy->screens); it; it = it->next) {
+                    d_screen_t *sc = it->data;
+                    d_window_t *w;
+
+                    w = screen_find_window(sc, pev->window);
+                    if (w) {
+                        window_update_user_opacity(w);
+                        if (window_is_mapped(w)) {
+                            sc->window_opacity_change(w);
+                            screen_refresh(w->sc);
+                        }
+                    }
+                }
+                    
+            }
+            break;
+        }
         default:
+            if (ev->response_type - dpy->damage.event == XCB_DAMAGE_NOTIFY) {
+                xcb_damage_notify_event_t *dev;
+                d_list_it_t *it;
+
+                dev = (xcb_damage_notify_event_t*)ev;
+                for (it = list_top(dpy->screens); it; it = it->next) {
+                    d_screen_t *sc = it->data;
+                    d_window_t *w;
+
+                    w = screen_find_window(sc, dev->drawable);
+                    if (w) {
+                        sc->window_damage(w);
+                        screen_refresh(w->sc);
+                        break;
+                    }
+                }
+                xcb_damage_subtract(dpy->conn, dev->damage,
+                                    XCB_NONE, XCB_NONE);
+            }
+            else if (dpy->shape.present &&
+                     ev->response_type - dpy->shape.event == XCB_SHAPE_NOTIFY)
+            {
+                xcb_shape_notify_event_t *sev;
+                d_list_it_t *it;
+
+                sev = (xcb_shape_notify_event_t*)ev;
+                for (it = list_top(dpy->screens); it; it = it->next) {
+                    d_screen_t *sc = it->data;
+                    d_window_t *w;
+
+                    w = screen_find_window(sc, sev->affected_window);
+                    if (w && window_is_mapped(w)) {
+                        sc->window_reshape(w);
+                        screen_refresh(w->sc);
+                        break;
+                    }
+                }
+            }
             break;
         }
         free(ev);
+        xcb_flush(dpy->conn);
     }
 }
 
 static void
-paint(d_display_t *dpy)
+timeouts(d_display_t *dpy, const struct timeval *now)
 {
     d_list_it_t *it;
-    struct timeval now;
 
-    gettimeofday(&now, NULL);
-    
     for (it = list_top(dpy->screens); it; it = it->next) {
         d_screen_t *sc = it->data;
+        struct timeval tv;
+
+        if (glxrender_next_timeout(sc, &tv) && time_compare(&tv, now) <= 0)
+            glxrender_timeout(sc, now);
+        if (render_next_timeout(sc, &tv) && time_compare(&tv, now) <= 0)
+            render_timeout(sc, now);
+        if (fade_next_timeout(sc, &tv) && time_compare(&tv, now) <= 0)
+            fade_timeout(sc, now);
+    }
+}
 
-        if (time_compare(&sc->next_repaint, &now) <= 0)
+static void
+paint(d_display_t *dpy)
+{
+    d_list_it_t *it;
+
+    for (it = list_top(dpy->screens); it; it = it->next) {
+        d_screen_t *sc = it->data;
+        if (sc->need_repaint)
             sc->screen_paint(sc);
     }
 }
@@ -156,67 +302,100 @@ paint(d_display_t *dpy)
 static void
 run(d_display_t *dpy)
 {
-    gboolean quit;
+    struct timeval now, next_repaint;
 
-    paint(dpy);
+    running = TRUE;
+
+    gettimeofday(&now, NULL);
+    next_repaint = now;
 
-    quit = FALSE;
     while (!quit) {
-        struct timeval next, now, *wait;
-        int            r, npaint;
+        struct timeval next, *wait;
+        int            r, npaint, ntime;
         d_list_it_t   *it;
         fd_set         fds;
+        gboolean due;
+
+        event(dpy);
 
         npaint = 0;
+        ntime = 0;
         for (it = list_top(dpy->screens); it; it = it->next) {
             d_screen_t *sc = it->data;
-            if (sc->need_repaint &&
-                (!npaint || time_compare(&sc->next_repaint, &next) < 0))
-            {
-                next = sc->next_repaint;
-                ++npaint;
+            struct timeval next_timeout;
+
+            if (glxrender_next_timeout(sc, &next_timeout)) {
+                if (!ntime || time_compare(&next_timeout, &next) < 0) {
+                    next = next_timeout;
+                    ++ntime;
+                }
+            }
+            if (render_next_timeout(sc, &next_timeout)) {
+                if (!ntime || time_compare(&next_timeout, &next) < 0) {
+                    next = next_timeout;
+                    ++ntime;
+                }
+            }
+            if (fade_next_timeout(sc, &next_timeout)) {
+                if (!ntime || time_compare(&next_timeout, &next) < 0) {
+                    next = next_timeout;
+                    ++ntime;
+                }
             }
+
+            if (sc->need_repaint)
+                ++npaint;
         }
 
-        gettimeofday(&now, 0);
+        if (npaint) {
+            if (!ntime || time_compare(&next_repaint, &next) < 0) {
+                next = next_repaint;
+            }
+        }
 
-        if (!npaint)
+        if (!npaint && !ntime) {
             /* wait forever, there is nothing that needs drawing */
             wait = NULL;
+            due = FALSE;
+        }
         else if (time_compare(&next, &now) > 0) {
             /* wait until the next allowed redraw time */
             time_difference(&next, &now, &next);
             wait = &next;
+            due = FALSE;
         }
         else {
-            /* don't wait cuz a redraw is due now already */
-            next.tv_sec = 0;
-            next.tv_usec = 0;
-            wait = &next;
+            /* don't wait cuz a timer is due now already */
+            due = TRUE;
         }
 
-        FD_ZERO(&fds);
-        FD_SET(dpy->fd, &fds);
+        //printf("select? %d %d\n", due, npaint);
 
-        r = select(dpy->fd+1, &fds, NULL, NULL, wait);
-        if (r < 0)
-            printf("select error\n");
-        else if (r == 0) {
-            //printf("select timeout\n");
-            paint(dpy);
+        if (!due) {
+            FD_ZERO(&fds);
+            FD_SET(dpy->fd, &fds);
+            r = select(dpy->fd+1, &fds, NULL, NULL, wait);
         }
-        else {
-            //printf("select data\n");
-            /*if (FD_ISSET(dpy->fd, &fds))*/ {
-                event(dpy);
+        else
+            r = 0;
+
+        gettimeofday(&now, NULL);
+        if (r == 0) {
+            //printf("select timeout\n");
+            timeouts(dpy, &now);
+            if (time_compare(&next_repaint, &now) <= 0) {
+                paint(dpy);
+                next_repaint = now;
+                time_add(&next_repaint, 1000000/90); /* 60hz */
             }
+            xcb_flush(dpy->conn);
         }
 
         if (xcb_connection_has_error(dpy->conn))
             quit = TRUE;
-        else
-            xcb_flush(dpy->conn);
     }
+
+    running = FALSE;
 }
 
 static void
@@ -226,10 +405,14 @@ setup_functions(d_display_t *dpy)
 
     for (it = list_top(dpy->screens); it; it = it->next) {
         d_screen_t *sc = it->data;
+        int id;
         screen_setup_default_functions(sc);
 
         /* these can be plugins.. */
-        render_init(sc);
+        id = 1;
+        glxrender_init(sc, id++);
+        //render_init(sc, id++);
+        fade_init(sc, id++);
     }
 }
 
@@ -242,7 +425,9 @@ cleanup_functions(d_display_t *dpy)
         d_screen_t *sc = it->data;
 
         /* these can be plugins.. */
-        render_free(sc);
+        fade_free(sc);
+        //render_free(sc);
+        glxrender_free(sc);
     }
 }
 
@@ -293,6 +478,11 @@ main(int argc, char **argv)
         return 0;
     }
 
+    signal(SIGINT, signal_quit_handler);
+    signal(SIGHUP, signal_quit_handler);
+    signal(SIGTERM, signal_quit_handler);
+    signal(SIGQUIT, signal_quit_handler);
+
     setup_functions(dpy);
 
     {
@@ -302,16 +492,37 @@ main(int argc, char **argv)
         for (sc_it = list_top(dpy->screens); sc_it; sc_it = sc_it->next) {
             d_screen_t *sc = sc_it->data;
             d_list_it_t *it;
-            for (it = list_top(sc->stacking); it; it = it->next)
-                if (window_is_mapped(it->data))
+            for (it = list_bottom(sc->stacking); it; it = it->prev)
+                if (window_is_attr_mapped(it->data))
                     sc->window_show(it->data);
         }
     }
 
+    printf("running\n");
     run(dpy);
 
+    {
+        /* make everything hidden */
+        d_list_it_t *sc_it;
+
+        for (sc_it = list_top(dpy->screens); sc_it; sc_it = sc_it->next) {
+            d_screen_t *sc = sc_it->data;
+            d_list_it_t *it;
+            for (it = list_top(sc->stacking); it; it = it->next) {
+                if (window_is_mapped(it->data))
+                    sc->window_hide(it->data);
+            }
+        }
+    }
+
     cleanup_functions(dpy);
 
     display_unref(dpy);
     return 0;
 }
+
+gboolean
+dcompmgr_running(void)
+{
+    return running;
+}