added settings file
[livewp] / applet / src / livewp-home-widget.c
1 /* vim: set sw=4 ts=4 et: */
2 /*
3  * This file is part of Live Wallpaper (livewp)
4  * 
5  * Copyright (C) 2010 Vlad Vasiliev
6  * Copyright (C) 2010 Tanya Makova
7  *       for the code
8  * 
9  * This software is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1 of
12  * the License, or (at your option) any later version.
13  * 
14  * This software is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  * 
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this software; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23 */
24 /*******************************************************************************/
25 #include "livewp-common.h"
26 #include "livewp-home-widget.h"
27 #include <gconf/gconf-client.h>
28 #include "livewp-rules.h"
29
30 #define PLUGIN_NAME "livewp-home-widget.desktop-0"
31 #define GCONF_KEY_POSITION "/apps/osso/hildon-desktop/applets/%s/position"
32 #define GCONF_KEY_MODIFIED "/apps/osso/hildon-desktop/applets/%s/modified"
33 #define GCONF_KEY_VIEW     "/apps/osso/hildon-desktop/applets/%s/view"
34
35 HD_DEFINE_PLUGIN_MODULE (AWallpaperPlugin, animation_wallpaper_plugin, HD_TYPE_HOME_PLUGIN_ITEM)
36 #define Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE (obj,\
37                                                           Animation_Wallpaper_TYPE_HOME_PLUGIN,\
38                                                           Animation_WallpaperPrivate))
39
40
41 /* Position of plugin on desktop */
42 #define Xstartposition 700 
43 #define Ystartposition 425
44
45 gint xapplet = 0, yapplet = 0;
46 GSList * objects_list = NULL;
47 Scene scene;
48
49 static void
50 lw_applet_realize (GtkWidget *widget)
51 {
52       GdkScreen *screen;
53
54       screen = gtk_widget_get_screen (widget);
55       gtk_widget_set_colormap (widget,
56                                 gdk_screen_get_rgba_colormap (screen));
57       gtk_widget_set_app_paintable (widget,
58                                 TRUE);
59       GTK_WIDGET_CLASS (animation_wallpaper_plugin_parent_class)->realize (widget);
60 }
61
62
63 static gboolean
64 lw_applet_expose_event(GtkWidget      *widget,
65                                         GdkEventExpose *event)
66 {
67   cairo_t *cr;
68
69   /* Create cairo context */
70   cr = gdk_cairo_create (GDK_DRAWABLE (widget->window));
71   gdk_cairo_region (cr, event->region);
72   cairo_clip (cr);
73
74   /* Draw alpha background */
75   cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
76   cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.0);
77   cairo_paint (cr);
78
79   /* Free context */
80   cairo_destroy (cr);
81
82   return GTK_WIDGET_CLASS (animation_wallpaper_plugin_parent_class)->expose_event (widget,
83                                                                                   event);
84 }
85
86 static gboolean
87 expose_event (GtkWidget *widget,GdkEventExpose *event,
88      gpointer data)
89 {
90     cairo_t *cr;
91     GdkPixbuf *pixbuf = (GdkPixbuf *) data;
92         
93     cr = gdk_cairo_create(widget->window);
94     gdk_cairo_region(cr, event->region);
95     cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
96     gdk_cairo_set_source_pixbuf(cr, pixbuf, 0.0, 0.0);
97     cairo_paint(cr);
98     cairo_destroy(cr);
99     return TRUE;
100 }
101
102 static void
103 realize (GtkWidget *widget)
104 {
105     GdkScreen *screen;
106     screen = gtk_widget_get_screen (widget);
107     gtk_widget_set_colormap (widget, gdk_screen_get_rgba_colormap (screen));
108 }
109
110 /* Set position of widget on desktop */
111 static void
112 init_applet_position(void)
113 {
114   GSList *position = NULL;
115   gchar *position_key;
116   gchar *modified_key;
117   gchar *modified;
118   GError *error = NULL;
119   GConfClient   *gconf_client = gconf_client_get_default ();
120   position_key = g_strdup_printf (GCONF_KEY_POSITION, PLUGIN_NAME);
121   position = gconf_client_get_list (gconf_client,
122                                     position_key,
123                                     GCONF_VALUE_INT,
124                                     NULL);
125   if (position && position->data && position->next->data){
126         xapplet = GPOINTER_TO_INT (position->data);
127         yapplet = GPOINTER_TO_INT (position->next->data);
128   }else{
129         position = g_slist_prepend (g_slist_prepend (NULL,
130                                       GINT_TO_POINTER (Ystartposition)),
131                                       GINT_TO_POINTER (Xstartposition));
132         gconf_client_set_list (gconf_client,
133                                position_key,
134                                GCONF_VALUE_INT,
135                                position,
136                                &error);
137         xapplet = Xstartposition;
138         yapplet = Ystartposition;
139   }
140   g_free (position_key);
141   modified = g_strdup_printf ("%ld", 0);
142   modified_key = g_strdup_printf (GCONF_KEY_MODIFIED, PLUGIN_NAME);
143   gconf_client_set_string (gconf_client,
144                            modified_key,
145                            modified,
146                            &error);
147   gconf_client_clear_cache(gconf_client);
148   g_object_unref(gconf_client);
149 }
150
151 static void
152 actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z)
153 {
154  fprintf(stderr, "actor_set_position_full\n");
155  hildon_animation_actor_set_position_full (HILDON_ANIMATION_ACTOR (actor),x-xapplet, y-yapplet, z);
156 }
157
158 static GtkWidget* 
159 init_object(gchar * name, gint x, gint y, gint z, gint width, gint height)
160 {
161   Actor  a;  
162   GtkWidget *actor;
163   GdkPixbuf *pixbuf;
164   GtkWidget *image;
165
166   actor = hildon_animation_actor_new();
167   gchar str[256];
168   snprintf(str, 255, "/usr/share/anwall/%s.png", name);
169   /* fprintf(stderr, "!!!init object !!!!\nname = %s file = %s\n", name, str); */
170   pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
171                                              width, 
172                                              height, 
173                                              NULL);
174   if (pixbuf){
175       image = gtk_image_new_from_pixbuf (pixbuf);
176       g_object_unref(G_OBJECT(pixbuf));
177   }
178   g_signal_connect(G_OBJECT(image), "expose_event",
179                            G_CALLBACK(expose_event), pixbuf);
180   gtk_container_add (GTK_CONTAINER (actor), image);
181
182   actor_set_position_full(actor, x, y, z);
183   hildon_animation_actor_set_show (actor, 1);
184   realize(actor);
185   gtk_widget_show_all(actor);
186   g_object_set_data(G_OBJECT(actor), "name", name);
187   g_object_set_data(G_OBJECT(actor), "image", image);
188   g_object_set_data(G_OBJECT(actor), "x", x);
189   g_object_set_data(G_OBJECT(actor), "y", y);
190   g_object_set_data(G_OBJECT(actor), "z", z);
191   g_object_set_data(G_OBJECT(actor), "scale", 10);
192
193   
194   //objects_list = g_slist_append(objects_list, G_OBJECT(actor));
195   //objects_list = g_slist_append(objects_list, G_OBJECT(a));
196   return actor;
197 }
198
199 static void
200 init_scene(GtkWidget *window)
201 {
202   GtkWidget *actor;
203   GdkPixbuf *pixbuf;
204   GtkWidget *image;
205   double alt, azm;
206   gint x, y;
207
208   scene.window = window;
209   scene.daytime = get_daytime();
210   scene.dynamic_actors = NULL;
211   scene.static_actors = NULL;
212
213   get_sun_pos(&alt, &azm);
214   get_sun_screen_pos(alt, azm, &x, &y);
215   fprintf(stderr, "init scene\n");
216   actor = init_object("sun", x, y, 20, 88, 88);
217   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (actor), window);
218   scene.static_actors = g_slist_append(scene.static_actors, G_OBJECT(actor));
219   scene.dynamic_actors = g_slist_append(scene.dynamic_actors, G_OBJECT(actor));
220
221   actor = init_object("sky", 0, 0, 0, 800, 480);
222   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (actor), window);
223   scene.static_actors = g_slist_append(scene.static_actors, G_OBJECT(actor));
224
225   actor = init_object("town", 0, 0, 10, 800, 480);
226   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (actor), window);
227   scene.static_actors = g_slist_append(scene.static_actors, G_OBJECT(actor));
228
229   actor = init_object("cloud1", 400, 150, 2, 200, 150);
230   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (actor), window);
231   scene.dynamic_actors = g_slist_append(scene.dynamic_actors, G_OBJECT(actor));
232
233 }
234
235 void 
236 get_sun_screen_pos(double alt, double azm, gint * x, gint * y)
237 {
238     gint y0 = 400;// - уровень горизонта
239     gint o_width = 128,
240          o_height = 
241     *x = (int)(azm * 800) - 64;
242     *y = (int)((1 - alt) * y0) - 64;
243 }
244
245 static void 
246 change_actor(GtkWidget * actor)
247 {
248     char * name;
249     gint x, y, daytime, sc;
250     double scale;
251     double alt, azm;
252
253     GtkWidget *image;
254     GdkPixbuf *pixbuf;
255
256     name = g_object_get_data(G_OBJECT(actor), "name");
257     fprintf(stderr, "change actor %s\n", name);
258     if (name == "sun"){
259         daytime = get_daytime();
260         if (daytime != TIME_NIGHT){
261             hildon_animation_actor_set_show(actor, 1);
262             get_sun_pos(&alt, &azm);
263             get_sun_screen_pos(alt, azm, &x, &y);
264             actor_set_position_full(actor, x, y, g_object_get_data(G_OBJECT(actor), "z"));
265         }
266     }
267     
268     if (name == "cloud1"){
269         x = g_object_get_data(G_OBJECT(actor), "x");
270         y = g_object_get_data(G_OBJECT(actor), "y");
271         sc = g_object_get_data(G_OBJECT(actor), "scale");
272
273         /* Start */
274         image = g_object_get_data(G_OBJECT(actor), "image");
275         
276         gtk_container_remove(actor, image);  
277         pixbuf = gdk_pixbuf_new_from_file_at_size ("/usr/share/anwall/sun.png", 
278                                              200, 
279                                              200, 
280                                              NULL);
281         if (pixbuf){
282               image = gtk_image_new_from_pixbuf (pixbuf);
283               g_object_unref(G_OBJECT(pixbuf));
284         }
285         g_signal_connect(G_OBJECT(image), "expose_event",
286                                    G_CALLBACK(expose_event), pixbuf);
287         gtk_container_add (GTK_CONTAINER (actor), image);
288         realize(actor);
289         gtk_widget_show_all(actor);
290         /* End*/
291
292             
293         x += 40;
294         y -= 20;
295         sc -= 1;
296         if (x > 600){
297             x = 400;
298             y = 150;
299             sc = 10;
300         }
301         scale = (double)sc / 10;
302         hildon_animation_actor_set_scale(actor, scale, scale);
303         fprintf(stderr, "cloud x=%d y=%d scale=%f", x, y, scale);
304         actor_set_position_full(actor, x, y, g_object_get_data(G_OBJECT(actor), "z"));
305         g_object_set_data(G_OBJECT(actor), "x", x);
306         g_object_set_data(G_OBJECT(actor), "y", y);
307         g_object_set_data(G_OBJECT(actor), "scale", sc);
308     }
309
310 }
311
312 static gboolean
313 plugin_on_timeout (gpointer data)
314 {
315   gint daytime = get_daytime();
316   GSList * tmp;
317   fprintf(stderr, "on timeout\n");
318
319   if (scene.daytime == daytime){
320       /* Change dynamic actors */
321       tmp = scene.dynamic_actors;
322   }else {
323       /* Change static actors */
324       tmp = scene.dynamic_actors;
325   } 
326   while (tmp != NULL){
327       change_actor(tmp->data);
328       tmp = g_slist_next(tmp);
329   }
330
331   scene.daytime = daytime;
332
333   //double azm, alt;
334   //get_sun_pos(&alt, &azm);
335 /*
336   GSList * tmp = objects_list;
337   while (tmp != NULL){
338       //processing(tmp->data);
339       
340       str = g_object_get_data(G_OBJECT(tmp->data), "name");
341       fprintf(stderr, "object: %s\n", str);
342       
343       if (str == "sun"){
344         //get_sun_screen_pos(alt, azm, &x, &y);
345         //x = tmp->data
346         //actor_set_position_full(tmp->data, x, y, 20);
347         //g_object_set_data(G_OBJECT(tmp->data), "posX", x);
348         //g_object_set_data(G_OBJECT(tmp->data), "posY", y);
349         //fprintf(stderr, "x = %d y = %d\n", x, y);
350         child = gtk_container_get_children(GTK_CONTAINER (tmp->data));
351         while (child != NULL) {
352             gtk_container_remove(GTK_CONTAINER (tmp->data), child->data);
353             child = child->next;
354         }
355
356          //snprintf(str, 255, "/usr/share/anwall/%s.png", name);
357          //fprintf(stderr, "!!!init object !!!!\nname = %s file = %s\n", name, str);
358              
359       }
360       
361       if (str == "town"){
362           //hildon_animation_actor_set_show(tmp->data, 0);
363       }
364       //a = tmp->data;
365       //fprintf(stderr, "--timeout %s\n", a->name);
366       tmp = g_slist_next(tmp);
367   }
368   */
369   return TRUE; /* keep running this event */
370 }
371
372 static void
373 animation_wallpaper_plugin_init (AWallpaperPlugin *desktop_plugin)
374 {
375   GtkWidget *label;
376   label = gtk_label_new (""); 
377   gtk_widget_set_size_request(label, 95, 30);
378   gtk_widget_show (label);
379   hd_home_plugin_item_set_settings (HD_HOME_PLUGIN_ITEM (desktop_plugin), TRUE);
380   g_signal_connect (desktop_plugin, "show-settings",
381                              G_CALLBACK (live_wallpaper_settings), NULL);
382   gtk_container_add (GTK_CONTAINER (desktop_plugin), label);
383   init_applet_position();
384   init_scene(desktop_plugin);
385   desktop_plugin->timer = g_timeout_add(1000*10, plugin_on_timeout, desktop_plugin);
386 }
387
388 static void
389 animation_wallpaper_plugin_class_init (AWallpaperPluginClass *klass) {
390   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
391
392   widget_class->realize = lw_applet_realize;
393   widget_class->expose_event = lw_applet_expose_event;
394
395   g_type_class_add_private (klass, sizeof (Animation_WallpaperPrivate));
396
397 }
398
399 static void
400 animation_wallpaper_plugin_class_finalize (AWallpaperPluginClass *class) {}