Files needed are now required as parameters.
[cascardo/movie.git] / gdk.c
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <gtk/gtk.h>
21 #include <gdk-pixbuf/gdk-pixbuf.h>
22 #include "point.h"
23
24 struct ctx
25 {
26   GtkWidget *draw;
27   GdkPixbuf *picture;
28   GArray *points;
29   int i;
30   gboolean move;
31   GdkGC *gc;
32   GdkGC *gc2;
33   PangoAttrList *list;
34 };
35
36 #define WIDTH 800
37 #define HEIGHT 600
38
39 gboolean
40 queue (gpointer data)
41 {
42   struct ctx *ctx;
43   ctx = (struct ctx *) data;
44   gtk_widget_queue_draw (GTK_WIDGET (ctx->draw));
45   ctx->move = TRUE;
46   return FALSE;
47 }
48
49 gboolean
50 expose (GtkWidget *widget, GdkEventExpose *event, gpointer data)
51 {
52   GdkPixbuf *screen;
53   struct ctx *ctx;
54   Point point;
55   int w, h;
56   ctx = (struct ctx *) data;
57   gdk_drawable_get_size (GDK_DRAWABLE (event->window), &w, &h);
58   if (ctx->move)
59     ctx->i = (ctx->i >= ctx->points->len) ? 0 : ctx->i + 1;
60   point = g_array_index (ctx->points, Point, ctx->i);
61   screen = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8,
62                            event->area.width, event->area.height);
63   gdk_pixbuf_scale (ctx->picture, screen, 0, 0,
64                     event->area.width, event->area.height,
65                     -point.x + w/2 - event->area.x,
66                     -point.y + h/2 - event->area.y,
67                     point.rx, point.ry, GDK_INTERP_BILINEAR);
68   gdk_draw_pixbuf (widget->window, NULL, screen, 0, 0,
69                    event->area.x, event->area.y,
70                    event->area.width, event->area.height,
71                    GDK_RGB_DITHER_NONE, 0, 0);
72   gdk_pixbuf_unref (screen);
73   if (point.name)
74     {
75       PangoLayout *layout;
76       int pw, ph;
77       layout = gtk_widget_create_pango_layout (ctx->draw, point.name);
78       pango_layout_set_attributes (layout, ctx->list);
79       pango_layout_get_pixel_size (layout, &pw, &ph);
80       gdk_draw_rectangle (widget->window, ctx->gc2, TRUE,
81                           (WIDTH - pw - 8) / 2, HEIGHT - ph - 20, pw + 8, ph);
82       gdk_draw_layout (widget->window, ctx->gc, (WIDTH - pw) / 2,
83                        HEIGHT - ph - 20, layout);
84       g_object_unref (layout);
85       if (ctx->move)
86         g_timeout_add (3000, queue, ctx);
87     }
88   else
89     {
90       if (ctx->move)
91         g_timeout_add (10, queue, ctx);
92     }
93   ctx->move = FALSE;
94   return FALSE;
95 }
96
97 #define FPF 40
98
99 void
100 usage ()
101 {
102   fprintf (stderr, "movie picture dotsfile\n");
103   exit (0);
104 }
105
106 int
107 main (int argc, char **argv)
108 {
109   char *filename;
110   char *dotsfile;
111   GdkColorspace colorspace;
112   gboolean has_alpha;
113   int bits_per_sample;
114   int width, height;
115   GtkWidget *window;
116   struct ctx ctx;
117   GdkColor Yellow;
118   GdkColor Black;
119   PangoAttribute *attr;
120   gtk_init (&argc, &argv);
121   if (argc < 3)
122     {
123       usage ();
124     }
125   else
126     {
127       filename = argv[1];
128       dotsfile = argv[2];
129     }
130   ctx.points = ReadPoints (dotsfile);
131   ctx.points = drop_dup_frames (ctx.points, FPF);
132   rescale_points (ctx.points, get_scales (FPF));
133   ctx.picture = gdk_pixbuf_new_from_file (filename, NULL);
134   ctx.i = ctx.points->len;
135   colorspace = gdk_pixbuf_get_colorspace (ctx.picture);
136   has_alpha = gdk_pixbuf_get_has_alpha (ctx.picture);
137   bits_per_sample = gdk_pixbuf_get_bits_per_sample (ctx.picture);
138   width = WIDTH;
139   height = HEIGHT;
140   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
141   g_signal_connect (G_OBJECT (window), "destroy",
142                     G_CALLBACK (gtk_main_quit), NULL);
143   ctx.draw = gtk_drawing_area_new ();
144   gtk_widget_set_size_request (ctx.draw, width, height);
145   gtk_container_add (GTK_CONTAINER (window), ctx.draw);
146   gtk_widget_show_all (window);
147   g_signal_connect (G_OBJECT (ctx.draw), "expose_event",
148                     G_CALLBACK (expose), &ctx);
149   Yellow.red = 0xFFFF;
150   Yellow.green = 0xFFFF;
151   Yellow.blue = 0;
152   Black.red = 0;
153   Black.green = 0;
154   Black.blue = 0;
155   ctx.gc = gdk_gc_new (ctx.draw->window);
156   gdk_gc_set_rgb_fg_color (ctx.gc, &Yellow);
157   ctx.gc2 = gdk_gc_new (ctx.draw->window);
158   gdk_gc_set_rgb_fg_color (ctx.gc2, &Black);
159   ctx.list = pango_attr_list_new ();
160   attr = pango_attr_size_new (32 * PANGO_SCALE);
161   pango_attr_list_insert (ctx.list, attr);
162   attr = pango_attr_weight_new (PANGO_WEIGHT_SEMIBOLD);
163   pango_attr_list_insert (ctx.list, attr);
164   g_timeout_add (10, queue, &ctx);
165   gtk_main ();
166   gdk_pixbuf_unref (ctx.picture);
167   return 0;
168 }