some small change for debug
[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 #include <sys/time.h>
30 #include <stdlib.h>
31
32 #define PLUGIN_NAME "livewp-home-widget.desktop-0"
33 #define GCONF_KEY_POSITION "/apps/osso/hildon-desktop/applets/%s/position"
34 #define GCONF_KEY_MODIFIED "/apps/osso/hildon-desktop/applets/%s/modified"
35 #define GCONF_KEY_VIEW     "/apps/osso/hildon-desktop/applets/%s/view"
36
37 HD_DEFINE_PLUGIN_MODULE (AWallpaperPlugin, animation_wallpaper_plugin, HD_TYPE_HOME_PLUGIN_ITEM)
38 #define Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE (obj,\
39                                                           Animation_Wallpaper_TYPE_HOME_PLUGIN,\
40                                                           Animation_WallpaperPrivate))
41
42 /* Position of plugin on desktop */
43 #define Xstartposition 700 
44 #define Ystartposition 448 
45
46 gint xapplet = 0, yapplet = 0;
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     if (cr){
95         gdk_cairo_region(cr, event->region);
96         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
97         gdk_cairo_set_source_pixbuf(cr, pixbuf, 0.0, 0.0);
98         cairo_paint(cr);
99         cairo_destroy(cr);
100     }
101     return TRUE;
102 }
103
104 static void
105 realize (GtkWidget *widget)
106 {
107     GdkScreen *screen;
108     screen = gtk_widget_get_screen (widget);
109     gtk_widget_set_colormap (widget, gdk_screen_get_rgba_colormap (screen));
110 }
111
112 /* Set position of widget on desktop */
113 static void
114 init_applet_position(void)
115 {
116   GSList *position = NULL;
117   gchar *position_key;
118   gchar *modified_key;
119   gchar *modified;
120   GError *error = NULL;
121   GConfClient   *gconf_client = gconf_client_get_default ();
122   position_key = g_strdup_printf (GCONF_KEY_POSITION, PLUGIN_NAME);
123   position = gconf_client_get_list (gconf_client,
124                                     position_key,
125                                     GCONF_VALUE_INT,
126                                     NULL);
127   if (position && position->data && position->next->data){
128         xapplet = GPOINTER_TO_INT (position->data);
129         yapplet = GPOINTER_TO_INT (position->next->data);
130   }else{
131         position = g_slist_prepend (g_slist_prepend (NULL,
132                                       GINT_TO_POINTER (Ystartposition)),
133                                       GINT_TO_POINTER (Xstartposition));
134         gconf_client_set_list (gconf_client,
135                                position_key,
136                                GCONF_VALUE_INT,
137                                position,
138                                &error);
139         xapplet = Xstartposition;
140         yapplet = Ystartposition;
141   }
142   g_free (position_key);
143   modified = g_strdup_printf ("%i", 0);
144   modified_key = g_strdup_printf (GCONF_KEY_MODIFIED, PLUGIN_NAME);
145   gconf_client_set_string (gconf_client,
146                            modified_key,
147                            modified,
148                            &error);
149   g_free(modified);
150   g_free(modified_key);
151   gconf_client_clear_cache(gconf_client);
152   g_object_unref(gconf_client);
153 }
154
155 void
156 actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z)
157 {
158 /*  fprintf(stderr, "actor_set_position_full z=%d\n", z); */
159     hildon_animation_actor_set_position_full (HILDON_ANIMATION_ACTOR (actor),x-xapplet, y-yapplet, z);
160 }
161
162 static gint 
163 path_line(gint x0, gint x1, double t)
164 {
165     // уравниение прямой
166     return ((x1 - x0) * t + x0);
167 }
168
169
170 void
171 destroy_hildon_actor(Actor *actor)
172 {
173     //fprintf(stderr, "destroy_hildon_actor %s\n",actor->name);
174     gtk_widget_destroy(actor->widget);
175     actor->widget = NULL;
176 }
177
178 static Actor* 
179 init_object(AWallpaperPlugin *desktop_plugin, 
180             gchar * name, 
181             gchar * filename, 
182             gint x, 
183             gint y, 
184             gint z, 
185             gint width, 
186             gint height, 
187             gboolean visible, 
188             gint scale, 
189             gint opacity, 
190             void (*pfunc_change)(Actor*),
191             void (*pfunc_probability)(Actor*)
192            )
193 {
194   Actor *actor = NULL;
195   actor = g_new0(Actor, 1);
196   actor->x = x;
197   actor->y = y;
198   actor->z = z;
199   actor->width = width;
200   actor->height = height;
201   actor->visible = visible;
202   actor->scale = scale;
203   actor->opacity = opacity;
204   actor->filename = g_strdup(filename);
205   actor->name = g_strdup(name);
206   actor->func_change = (gpointer)pfunc_change; 
207   actor->func_probability = (gpointer)pfunc_probability;
208   if (visible)
209     create_hildon_actor(actor, desktop_plugin);
210   else 
211     actor->widget = NULL;
212   actor->time_start_animation = 0;
213   actor->duration_animation = 0;
214   /*
215   a.widget = actor;
216   a.name = name;
217   a.x = x;
218   a.y = y;
219   a.z = z;
220   */
221   //objects_list = g_slist_append(objects_list, G_OBJECT(actor));
222   //objects_list = g_slist_append(objects_list, G_OBJECT(a));
223   return actor;
224 }
225
226 gint 
227 rnd(gint max)
228 {
229     srand(time(NULL));
230     return rand() % max;
231 }
232 gint fast_rnd(gint max)
233 {
234     guint offset = 12923;
235     guint multiplier = 4079;
236     
237     scene.seed = scene.seed * multiplier + offset;
238     return (gint)(scene.seed % max);
239 }
240
241 gint 
242 probability_sun()
243 {
244     /* update sun position after ...  second */
245     return 60;
246 }
247
248
249 gint 
250 probability_plane()
251 {
252     return (fast_rnd(10) + 1) * 60;
253 //    return 0;
254 }
255
256 void 
257 change_moon(Actor * actor, AWallpaperPlugin *desktop_plugin)
258 {
259     gint phase;
260     char *newfile;
261
262     if (actor){
263         if (scene.daytime == TIME_NIGHT){
264             if (!actor->visible){
265                 actor->visible = TRUE;
266                 phase = get_moon_phase();
267                 newfile = g_strdup_printf( "%s%d.png", actor->name, phase);
268                 if (actor->filename)
269                     g_free(actor->filename);
270                 actor->filename = newfile;
271                 create_hildon_actor(actor, desktop_plugin);
272
273             }
274             //actor->x = 400;
275             //actor->y = 10;
276            // actor_set_position_full(actor->widget, x, y, actor->z);
277             //probability_sun(actor);
278             //fprintf(stderr, "after change sun %d\n", actor->time_start_animation);
279          }else if (actor->visible){
280             actor->visible = FALSE;
281             fprintf(stderr, "destroy moon \n");
282             destroy_hildon_actor(actor);
283             /* TO DO make moonrise*/
284             actor->time_start_animation = 0;
285         } 
286     }
287     
288 }
289
290 void 
291 change_sun(Actor * actor, AWallpaperPlugin *desktop_plugin)
292 {
293     double alt, azm;
294     gint x, y;
295
296     //fprintf(stderr, "change sun\n");
297     if (actor){
298         if (scene.daytime != TIME_NIGHT){
299             if (!actor->visible){
300                 actor->visible = TRUE;
301                 create_hildon_actor(actor, desktop_plugin);
302             }
303             get_sun_pos(&alt, &azm);
304             get_sun_screen_pos(alt, azm, &x, &y);
305             actor->x = x;
306             actor->y = y;
307             actor_set_position_full(actor->widget, x, y, actor->z);
308             //probability_sun(actor);
309             actor->time_start_animation = time(NULL) + probability_sun();
310          }else if (actor->visible){
311             actor->visible = FALSE;
312             destroy_hildon_actor(actor);
313             actor->time_start_animation = 0;
314         } 
315     }
316     
317 }
318
319 static void 
320 change_tram(Actor * actor, AWallpaperPlugin *desktop_plugin)
321 {
322     gint x0 = -300, y0 = 225, scale0 = 100,
323          x1 = 800, y1 = 162, scale1 = 130, 
324          x, y, scale;
325     struct timeval tvb;     
326     suseconds_t ms;
327     long sec;
328     double t;
329
330     //fprintf(stderr, "change tram\n");
331     gettimeofday(&tvb, NULL);
332     
333     ms = tvb.tv_usec;
334     sec = tvb.tv_sec;
335     
336     if (!actor->visible){
337         actor->visible = TRUE;
338         if (scene.daytime == TIME_NIGHT){
339             if (actor->filename)
340                 g_free(actor->filename);
341             actor->filename = g_strdup("tram_dark.png");
342         } else{
343             if (actor->filename)
344                 g_free(actor->filename);
345             actor->filename = g_strdup("tram.png");
346         }
347         create_hildon_actor(actor, desktop_plugin);
348     }
349     t = (double)((double)sec+(double)ms/1000000 - actor->time_start_animation) / actor->duration_animation;
350     x = path_line(x0, x1, t);
351     y = path_line(y0, y1, t);
352     scale = path_line(scale0, scale1, t);
353     //fprintf(stderr, "change tram t=%f x=%d y=%d scale=%d\n", t, x, y, scale);
354     actor_set_position_full(actor->widget, x, y, actor->z);
355     hildon_animation_actor_set_scale(HILDON_ANIMATION_ACTOR(actor->widget), (double)scale/100, (double)scale/100);
356     if (t >= 1){
357         /* stop animation */
358         actor->visible = FALSE;
359         destroy_hildon_actor(actor);
360         actor->time_start_animation = sec + fast_rnd(300);
361     }
362 }
363
364 void
365 change_plane1(Actor *actor, AWallpaperPlugin *desktop_plugin)
366 {
367     gint x0 = 620, y0 = 233, scale0 = 100,
368          x1 = 79, y1 = -146, scale1 = 100, 
369          x, y, scale;
370     struct timeval tvb;     
371     suseconds_t ms;
372     long sec;
373     double t;
374
375     gettimeofday(&tvb, NULL);
376     
377     ms = tvb.tv_usec;
378     sec = tvb.tv_sec;
379 //    fprintf(stderr, "1 %f - %d\n", sec+(double)ms/100000, now);
380    
381     if (scene.daytime != TIME_NIGHT){
382         if (actor->time_start_animation == 0){
383             actor->time_start_animation = sec + probability_plane();
384             return;
385         }
386     }
387     if (!actor->visible){
388         actor->visible = TRUE;
389         create_hildon_actor(actor, desktop_plugin);
390     }
391     t = (double)((double)sec+(double)ms/1000000 - actor->time_start_animation) / actor->duration_animation;
392     x = path_line(x0, x1, t);
393     y = path_line(y0, y1, t);
394     //scale = path_line(scale0, scale1, t);
395     //fprintf(stderr, "change tram t=%f x=%d y=%d scale=%d\n", t, x, y, scale);
396     actor_set_position_full(actor->widget, x, y, actor->z);
397     //hildon_animation_actor_set_scale(HILDON_ANIMATION_ACTOR(actor->widget), (double)scale/100, (double)scale/100);
398     if (t >= 1){
399         /* stop animation */
400         actor->visible = FALSE;
401         destroy_hildon_actor(actor);
402         if (scene.daytime == TIME_NIGHT) 
403             actor->time_start_animation = 0;
404         else 
405             actor->time_start_animation = sec + probability_plane();
406     }
407
408 }
409
410 void
411 change_plane2(Actor *actor, AWallpaperPlugin *desktop_plugin)
412 {
413     gint x0 = -actor->width, y0 = 45, scale0 = 100,
414          x1 = 800, y1 = 20, scale1 = 100, 
415          x, y, scale;
416     struct timeval tvb;     
417     suseconds_t ms;
418     long sec;
419     double t;
420
421     gettimeofday(&tvb, NULL);
422     
423     ms = tvb.tv_usec;
424     sec = tvb.tv_sec;
425 //    fprintf(stderr, "1 %f - %d\n", sec+(double)ms/100000, now);
426     if (scene.daytime != TIME_NIGHT){
427         if (actor->time_start_animation == 0){
428             actor->time_start_animation = sec + probability_plane();
429             return;
430         }
431     }
432     if (!actor->visible){
433         actor->visible = TRUE;
434         create_hildon_actor(actor, desktop_plugin);
435     }
436
437     t = (double)((double)sec+(double)ms/1000000 - actor->time_start_animation) / actor->duration_animation;
438     x = path_line(x0, x1, t);
439     y = path_line(y0, y1, t);
440     //scale = path_line(scale0, scale1, t);
441     //fprintf(stderr, "change tram t=%f x=%d y=%d scale=%d\n", t, x, y, scale);
442     actor_set_position_full(actor->widget, x, y, actor->z);
443     //hildon_animation_actor_set_scale(HILDON_ANIMATION_ACTOR(actor->widget), (double)scale/100, (double)scale/100);
444     if (t >= 1){
445         /* stop animation */
446         actor->visible = FALSE;
447         destroy_hildon_actor(actor);
448         if (scene.daytime == TIME_NIGHT) 
449             actor->time_start_animation = 0;
450         else 
451             actor->time_start_animation = sec + probability_plane();
452     }
453
454 }
455
456 void
457 change_cloud(Actor *actor, AWallpaperPlugin *desktop_plugin)
458 {
459     gint x0, y0 = 300, scale0 = 100,
460          x1, y1 = -actor->height, scale1 = 150, 
461          x, y, scale;
462     struct timeval tvb;     
463     suseconds_t ms;
464     long sec;
465     double t;
466     gchar *newfile;
467
468     //fprintf(stderr, "change cloud\n");
469     gettimeofday(&tvb, NULL);
470     
471     ms = tvb.tv_usec;
472     sec = tvb.tv_sec;
473     //fprintf(stderr, "c1oud %s - y0=%d\n", actor->name, actor->y);
474    
475     if (!actor->visible){
476         actor->visible = TRUE;
477         if (scene.daytime == TIME_NIGHT){
478             newfile = g_strdup_printf("%s_dark.png", actor->name);
479         }else{
480             newfile = g_strdup_printf("%s.png", actor->name);
481         } 
482         if (actor->filename)
483             g_free(actor->filename);
484         actor->filename = newfile;
485          
486
487         create_hildon_actor(actor, desktop_plugin);
488     }
489     t = (double)((double)sec+(double)ms/1000000 - actor->time_start_animation) / actor->duration_animation;
490     
491     if (scene.wind_orientation == 1){
492         x0 = -actor->width;
493         x1 = 800;
494     }
495     else {
496         x0 = 800;
497         x1 = -actor->width;
498     }
499
500     x = path_line(x0, x1, t);    
501     y = -scene.wind_angle * (x - x0) + actor->y;
502     scale = path_line(scale0, scale1, (double)(y - y0)/(y1 - y0));
503
504     //fprintf(stderr, "change cloud t=%f x=%d y=%d scale=%d\n", t, x, y, scale);
505     actor_set_position_full(actor->widget, x, y, actor->z);
506     hildon_animation_actor_set_scale(HILDON_ANIMATION_ACTOR(actor->widget), (double)scale/100, (double)scale/100);
507     if ((y < y1 || y > y0) || t >= 1){
508         /* stop animation */
509         actor->visible = FALSE;
510         destroy_hildon_actor(actor);
511         actor->time_start_animation = sec + fast_rnd(300);
512         actor->y = fast_rnd(300);
513     }
514
515 }
516
517 void
518 change_wind(Actor *actor, AWallpaperPlugin *desktop_plugin)
519 {
520     scene.wind_orientation = fast_rnd(2);
521     if (scene.wind_orientation == 0) scene.wind_orientation = -1;
522     scene.wind_angle = (double)(fast_rnd(200) - 100) / 100;
523     actor->time_start_animation = time(NULL) + (fast_rnd(10) + 10) * 60;
524     //fprintf(stderr, "change wind orient = %d angle = %f after = %d\n", scene.wind_orientation, scene.wind_angle, actor->time_start_animation-time(NULL));
525 }
526
527 void 
528 change_window1(Actor * actor, AWallpaperPlugin *desktop_plugin)
529 {
530     
531     gint now = time(NULL);
532     if (scene.daytime == TIME_DAY){
533         if (actor->visible){
534             actor->visible = FALSE;
535             destroy_hildon_actor(actor);
536         }
537         actor->time_start_animation = 0;
538         return;
539     }else if (actor->time_start_animation == 0){
540         actor->time_start_animation = now + fast_rnd(30);
541         return;
542     }
543
544     if (!actor->visible){
545         actor->visible = TRUE;
546         create_hildon_actor(actor, desktop_plugin);
547         actor->time_start_animation = now + fast_rnd(60) + 10;
548     }else {
549         actor->visible = FALSE;
550         destroy_hildon_actor(actor);
551         actor->time_start_animation = now + fast_rnd(60) + 10;
552     }
553    
554 }
555
556 void 
557 change_signal(Actor * actor, AWallpaperPlugin *desktop_plugin)
558 {
559     gchar *newfile;
560     gint now = time(NULL);
561     newfile = g_strdup_printf("%s%d.png", actor->name, scene.daytime); 
562     if (!strcmp(actor->filename, "red.png"))
563         newfile = g_strdup_printf("%s", "green.png");
564     else 
565         newfile = g_strdup_printf("%s", "red.png");
566     g_free(actor->filename);
567     actor->filename = newfile;
568     change_hildon_actor(actor, desktop_plugin);
569     actor->time_start_animation = now + fast_rnd(30) + 10;
570 }
571
572 void
573 create_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin) 
574 {
575   GtkWidget *ha = NULL;
576   GdkPixbuf *pixbuf = NULL;
577   GtkWidget *image = NULL;
578   gchar     *str = NULL;
579
580   /* fprintf(stderr, "create_hildon_actor %s\n", actor->name);*/
581   ha = hildon_animation_actor_new();
582   str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
583                         desktop_plugin->priv->theme, actor->filename);
584   pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
585                                              actor->width, 
586                                              actor->height, 
587                                              NULL);
588   if (str)
589       g_free(str);
590   if (pixbuf){
591       image = gtk_image_new_from_pixbuf (pixbuf);
592       g_object_unref(G_OBJECT(pixbuf));
593   }
594   if (image){
595     g_signal_connect(G_OBJECT(image), "expose_event",
596                            G_CALLBACK(expose_event), pixbuf);
597     gtk_container_add (GTK_CONTAINER (ha), image);
598   }  
599   actor_set_position_full(ha, actor->x, actor->y, actor->z);
600   hildon_animation_actor_set_show (HILDON_ANIMATION_ACTOR(ha), actor->visible);
601   hildon_animation_actor_set_scale(HILDON_ANIMATION_ACTOR(ha), (double)actor->scale/100, (double)actor->scale/100);
602   realize(ha);
603   gtk_widget_show_all(ha);
604
605   /* TO DO check it */
606   /*  gdk_flush (); */
607
608   //g_object_set_data(G_OBJECT(ha), "name", name);
609   //g_object_set_data(G_OBJECT(ha), "filename", filename);
610   g_object_set_data(G_OBJECT(ha), "image", image);
611   /*
612   g_object_set_data(G_OBJECT(ha), "x", x);
613   g_object_set_data(G_OBJECT(ha), "y", y);
614   g_object_set_data(G_OBJECT(ha), "z", z);
615   g_object_set_data(G_OBJECT(ha), "width", width);
616   g_object_set_data(G_OBJECT(ha), "height", height);
617   g_object_set_data(G_OBJECT(ha), "scale", scale);
618   g_object_set_data(G_OBJECT(ha), "visible", visible);
619   g_object_set_data(G_OBJECT(ha), "opacity", opacity);
620   g_object_set_data(G_OBJECT(ha), "func", pfunc);
621   */
622   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (ha), GTK_WINDOW(desktop_plugin));
623   actor->widget = ha;
624 }
625
626
627 void
628 change_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin)
629 {
630     GtkWidget *image = NULL;
631     GdkPixbuf *pixbuf = NULL;
632     gchar     *str = NULL;
633
634     str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
635                             desktop_plugin->priv->theme, actor->filename);
636  
637     fprintf(stderr, "55555 actor=%s filename=%s\n", actor->name, str);
638     pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
639                                                actor->width, 
640                                                actor->height, 
641                                                NULL);
642     if(str)
643         g_free(str);
644     if (pixbuf){
645         image = gtk_image_new_from_pixbuf (pixbuf);
646         g_object_unref(G_OBJECT(pixbuf));
647     }
648     if (image){ 
649         g_signal_connect(G_OBJECT(image), "expose_event",
650                                        G_CALLBACK(expose_event), pixbuf);
651         if (g_object_get_data(G_OBJECT(actor->widget), "image")){
652             gtk_container_remove(GTK_CONTAINER(actor->widget), g_object_get_data(G_OBJECT(actor->widget), "image"));  
653         }
654         g_object_set_data(G_OBJECT(actor->widget), "image", image);
655         gtk_container_add (GTK_CONTAINER (actor->widget), image);
656         realize(actor->widget);
657         gtk_widget_show_all(actor->widget);
658         /* TO DO check it */
659        /*  gdk_flush (); */
660
661
662     }
663
664 }
665
666
667 void 
668 change_static_actor(Actor * actor, AWallpaperPlugin *desktop_plugin)
669 {
670     gchar *newfile;
671     newfile = g_strdup_printf("%s%d.png", actor->name, scene.daytime); 
672     if (actor->filename)
673             g_free(actor->filename);
674     actor->filename = newfile;
675     change_hildon_actor(actor, desktop_plugin);
676 }
677
678 void 
679 change_static_actor_with_corner(Actor * actor, AWallpaperPlugin *desktop_plugin)
680 {
681     gchar *newfile;
682     gchar           buffer[2048];
683
684     if (desktop_plugin->priv->right_corner)
685         gtk_widget_destroy(desktop_plugin->priv->right_corner);
686     snprintf(buffer, sizeof(buffer) - 1, "%s/%s/town%i_right_corner.png", \
687                                   THEME_PATH, desktop_plugin->priv->theme, scene.daytime);
688     desktop_plugin->priv->right_corner = gtk_image_new_from_file (buffer);
689     if (desktop_plugin->priv->right_corner){
690         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), desktop_plugin->priv->right_corner, 0, 0);
691         gtk_widget_show (desktop_plugin->priv->right_corner);
692     }
693     change_static_actor(actor, desktop_plugin);
694
695 }
696
697 void
698 change_layer1(Actor * actor, AWallpaperPlugin *desktop_plugin)
699 {
700     gint y;
701     y = actor->y + 10;
702     if (y > 480) y = -480;
703     //fprintf(stderr, "!! %s - %d\n", actor->name, y);
704     actor_set_position_full(actor->widget, actor->x, y, actor->z);
705     actor->y = y;
706 }
707
708 void
709 change_layer2(Actor * actor, AWallpaperPlugin *desktop_plugin)
710 {
711     gint y;
712     y = actor->y + 15;
713     if (y >= 480) y = -480;
714     //fprintf(stderr, "!! %s - %d\n", actor->name, y);
715     actor_set_position_full(actor->widget, actor->x, y, actor->z);
716     actor->y = y;
717 }
718
719 /*
720 static gint 
721 get_time(gint t){
722     // уравнение изменения времени
723     return t*1.1;
724 }
725 */
726 static void 
727 destroy_scene(void){
728     GSList * tmp = scene.actors;
729     Actor *actor;
730     while (tmp != NULL){
731         actor = tmp->data;
732         if (actor){
733             if (actor->filename)
734                 g_free(actor->filename);
735             if (actor->name)
736                 g_free(actor->name);
737             gtk_widget_destroy(actor->widget);
738             //actor->widget = NULL;
739             g_free(actor);
740         }
741         tmp = g_slist_next(tmp);
742     }
743     g_slist_free(tmp);
744
745 }
746
747 void
748 reload_scene(AWallpaperPlugin *desktop_plugin)
749 {
750     fprintf(stderr,"Reload scene %s\n", desktop_plugin->priv->theme);  
751     destroy_scene();
752     if (!strcmp(desktop_plugin->priv->theme,"Modern"))
753         init_scene(desktop_plugin);
754     else if (!strcmp(desktop_plugin->priv->theme,"Berlin")) 
755         init_scene1(desktop_plugin);
756     else if (!strcmp(desktop_plugin->priv->theme,"Matrix")) 
757         init_scene2(desktop_plugin);
758
759 }
760
761 static void
762 init_scene2(AWallpaperPlugin *desktop_plugin)
763 {
764   Actor *actor;
765   gint now = time(NULL);
766
767   fprintf(stderr, "init scene2 \n");
768   //scene.daytime = get_daytime();
769   scene.actors = NULL;
770
771   
772   actor = init_object(desktop_plugin, "background", "bg.png", 
773                       0, 0, 5, 800, 480, 
774                       TRUE, 100, 255, NULL, NULL);
775   scene.actors = g_slist_append(scene.actors, actor);
776
777   actor = init_object(desktop_plugin, "symbols", "symbols.png", 
778                       0, 0, 10, 800, 480, 
779                       TRUE, 100, 255, NULL, NULL);
780   scene.actors = g_slist_append(scene.actors, actor);
781
782   actor = init_object(desktop_plugin, "layer1", "layer1_2.png", 
783                       0, -480, 6, 800, 960, 
784                       TRUE, 100, 255, (gpointer)&change_layer1, NULL);
785   actor->time_start_animation = now;
786   actor->duration_animation = G_MAXINT;
787   scene.actors = g_slist_append(scene.actors, actor);
788
789   actor = init_object(desktop_plugin, "layer1", "layer1_1.png", 
790                       0, (-480 - 480), 7, 800, 960, 
791                       TRUE, 100, 255, (gpointer)&change_layer1, NULL);
792   actor->time_start_animation = now;
793   actor->duration_animation = G_MAXINT;
794   scene.actors = g_slist_append(scene.actors, actor);
795
796   actor = init_object(desktop_plugin, "layer2", "layer2_2.png", 
797                       0, -480, 8, 800, 960, 
798                       TRUE, 100, 255, (gpointer)&change_layer2, NULL);
799   actor->time_start_animation = now;
800   actor->duration_animation = G_MAXINT;
801   scene.actors = g_slist_append(scene.actors, actor);
802
803   actor = init_object(desktop_plugin, "layer2", "layer2_1.png", 
804                       0, (-480 - 480), 9, 800, 960, 
805                       TRUE, 100, 255, (gpointer)&change_layer2, NULL);
806   actor->time_start_animation = now;
807   actor->duration_animation = G_MAXINT;
808   scene.actors = g_slist_append(scene.actors, actor);
809
810   run_long_timeout(desktop_plugin);
811 }
812 /* Init Modern Scene */
813 static void
814 init_scene(AWallpaperPlugin *desktop_plugin)
815 {
816   Actor *actor;
817   gint now = time(NULL);
818   gint i;
819   gint winds[13][2];
820
821   /* fprintf(stderr, "init scene \n");*/
822   scene.daytime = get_daytime();
823   scene.actors = NULL;
824   scene.wind_orientation = -1;
825   scene.wind_angle = 0.3;
826   /* init value for random */
827   scene.seed = time(NULL);
828
829   
830
831   actor = init_object(desktop_plugin, "sky", "sky0.png", 0, 0, 5, 800, 480, 
832                       TRUE, 100, 255, (gpointer)&change_static_actor, NULL);
833   change_static_actor(actor, desktop_plugin);
834   scene.actors = g_slist_append(scene.actors, actor);
835
836   actor = init_object(desktop_plugin, "sun", "sun.png", 0, 0, 6, 88, 88, 
837                       TRUE, 100, 255, (gpointer)&change_sun, &probability_sun);
838   actor->time_start_animation = now;
839   actor->duration_animation = G_MAXINT;
840   change_sun(actor, desktop_plugin);
841   scene.actors = g_slist_append(scene.actors, actor);
842
843   //actor = init_object(desktop_plugin, "dot", "dot1.png", 0, 0, 11, 50, 50, 
844     //                  TRUE, 100, 255, NULL, NULL);
845   //scene.actors = g_slist_append(scene.actors, actor);
846   
847   actor = init_object(desktop_plugin, "cloud1", "cloud1.png", 0, fast_rnd(300)-97, 7, 150, 97, 
848                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
849   actor->time_start_animation = now + fast_rnd(180);
850   actor->duration_animation = 3*60;
851   scene.actors = g_slist_append(scene.actors, actor);
852   
853   actor = init_object(desktop_plugin, "cloud2", "cloud2.png", 0, fast_rnd(300)-75, 7, 188, 75, 
854                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
855   actor->time_start_animation = now + fast_rnd(180);
856   actor->duration_animation = 3*60;
857   scene.actors = g_slist_append(scene.actors, actor);
858
859   actor = init_object(desktop_plugin, "cloud4", "cloud4.png", 0, fast_rnd(300)-75, 7, 150, 75, 
860                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
861   actor->time_start_animation = now + fast_rnd(180);
862   actor->duration_animation = 5*60;
863   scene.actors = g_slist_append(scene.actors, actor);
864
865
866   actor = init_object(desktop_plugin, "town", "town0.png", 0, 0, 8, 800, 480, 
867                       TRUE, 100, 255, (gpointer)&change_static_actor, NULL);
868   change_static_actor(actor, desktop_plugin);
869   scene.actors = g_slist_append(scene.actors, actor);
870
871   actor = init_object(desktop_plugin, "tram", "tram.png", -300, 225, 9, 350, 210, 
872                       FALSE, 100, 255, (gpointer)&change_tram, NULL);
873   actor->time_start_animation = time(NULL) + fast_rnd(10); 
874   actor->duration_animation = 60;
875   scene.actors = g_slist_append(scene.actors, actor);
876
877   actor = init_object(desktop_plugin, "border", "border0.png", 0, 480-79, 10, 800, 79,
878                       TRUE, 100, 255, (gpointer)&change_static_actor_with_corner, NULL);
879   change_static_actor_with_corner(actor, desktop_plugin);
880   scene.actors = g_slist_append(scene.actors, actor);
881   
882   actor = init_object(desktop_plugin, "moon", "moon1.png", 400, 20, 6, 60, 60, 
883                       FALSE, 100, 255, (gpointer)&change_moon, NULL);
884   change_moon(actor, desktop_plugin);
885   scene.actors = g_slist_append(scene.actors, actor);
886
887   actor = init_object(desktop_plugin, "wind", "", 0, 0, 5, 0, 0, 
888                       FALSE, 100, 255, (gpointer)&change_wind, NULL);
889   change_wind(actor, desktop_plugin);
890   scene.actors = g_slist_append(scene.actors, actor);
891
892     /* windows in 4-th house  */
893
894     winds[0][0] = 482;
895     winds[0][1] = 180;
896
897     winds[1][0] = 495;
898     winds[1][1] = 179;
899
900     winds[2][0] = 482;
901     winds[2][1] = 191;
902
903     winds[3][0] = 495;
904     winds[3][1] = 190;
905     
906     winds[4][0] = 482;
907     winds[4][1] = 201;
908     
909     winds[5][0] = 495;
910     winds[5][1] = 210;
911     
912     winds[6][0] = 482;
913     winds[6][1] = 222;
914     
915     winds[7][0] = 495;
916     winds[7][1] = 221;
917     
918     winds[8][0] = 459;
919     winds[8][1] = 203;
920     
921     winds[9][0] = 495;
922     winds[9][1] = 241;
923     
924     winds[10][0] = 495;
925     winds[10][1] = 252;
926     
927     winds[11][0] = 482;
928     winds[11][1] = 273;
929     
930     winds[12][0] = 495;
931     winds[12][1] = 303;
932     for (i=0; i<13; i++){
933         actor = init_object(desktop_plugin, "window1", "window1.png", 
934                             winds[i][0], winds[i][1], 8, 8, 10, 
935                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
936         //change_window1(actor, desktop_plugin);
937         actor->time_start_animation = now + fast_rnd(30);
938         scene.actors = g_slist_append(scene.actors, actor);
939
940     }
941     
942     /* windows in 1-th house  */
943     
944     winds[0][0] = 86;
945     winds[0][1] = 321;
946
947     winds[1][0] = 86;
948     winds[1][1] = 363;
949
950     winds[2][0] = 86;
951     winds[2][1] = 385;
952
953     winds[3][0] = 86;
954     winds[3][1] = 286;
955     
956     winds[4][0] = 94;
957     winds[4][1] = 232;
958     
959     winds[5][0] = 94;
960     winds[5][1] = 243;
961     
962     winds[6][0] = 94;
963     winds[6][1] = 265;
964     
965     winds[7][0] = 94;
966     winds[7][1] = 331;
967     for (i=0; i<8; i++){
968         actor = init_object(desktop_plugin, "window2", "window2.png", 
969                             winds[i][0], winds[i][1], 8, 8, 10, 
970                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
971         //change_window1(actor, desktop_plugin);
972         actor->time_start_animation = now + fast_rnd(30);
973         scene.actors = g_slist_append(scene.actors, actor);
974
975     }
976     
977     /* windows in 3-th house  */
978     
979     winds[0][0] = 251;
980     winds[0][1] = 162;
981
982     winds[1][0] = 251;
983     winds[1][1] = 196;
984
985     winds[2][0] = 251;
986     winds[2][1] = 278;
987
988     winds[3][0] = 251;
989     winds[3][1] = 289;
990     
991     winds[4][0] = 313;
992     winds[4][1] = 173;
993     
994     winds[5][0] = 322;
995     winds[5][1] = 160;
996     
997     winds[6][0] = 303;
998     winds[6][1] = 217;
999     
1000     winds[7][0] = 322;
1001     winds[7][1] = 224;
1002     
1003     winds[8][0] = 323;
1004     winds[8][1] = 217;
1005     
1006     winds[9][0] = 322;
1007     winds[9][1] = 288;
1008     
1009     for (i=0; i<10; i++){
1010         actor = init_object(desktop_plugin, "window3", "window3.png", 
1011                             winds[i][0], winds[i][1], 8, 8, 10, 
1012                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
1013         //change_window1(actor, desktop_plugin);
1014         actor->time_start_animation = now + fast_rnd(30);
1015         scene.actors = g_slist_append(scene.actors, actor);
1016
1017     }
1018
1019     /* windows in 5-th house  */
1020     
1021     winds[0][0] = 610;
1022     winds[0][1] = 224;
1023
1024     winds[1][0] = 602;
1025     winds[1][1] = 245;
1026
1027     winds[2][0] = 602;
1028     winds[2][1] = 264;
1029
1030     winds[3][0] = 610;
1031     winds[3][1] = 301;
1032     
1033     winds[4][0] = 610;
1034     winds[4][1] = 320;
1035     
1036     winds[5][0] = 593;
1037     winds[5][1] = 352;
1038     
1039     winds[6][0] = 610;
1040     winds[6][1] = 368;
1041     
1042     for (i=0; i<7; i++){
1043         actor = init_object(desktop_plugin, "window4", "window4.png", 
1044                             winds[i][0], winds[i][1], 8, 8, 10, 
1045                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
1046         //change_window1(actor, desktop_plugin);
1047         actor->time_start_animation = now + fast_rnd(30);
1048         scene.actors = g_slist_append(scene.actors, actor);
1049
1050     }
1051
1052     /* windows in 6-th house  */
1053     
1054     winds[0][0] = 717;
1055     winds[0][1] = 283;
1056
1057     winds[1][0] = 698;
1058     winds[1][1] = 293;
1059
1060     winds[2][0] = 717;
1061     winds[2][1] = 315;
1062
1063     winds[3][0] = 717;
1064     winds[3][1] = 323;
1065     
1066     winds[4][0] = 698;
1067     winds[4][1] = 362;
1068     
1069     winds[5][0] = 698;
1070     winds[5][1] = 400;
1071     
1072     for (i=0; i<6; i++){
1073         actor = init_object(desktop_plugin, "window5", "window5.png", 
1074                             winds[i][0], winds[i][1], 8, 8, 10, 
1075                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
1076         //change_window1(actor, desktop_plugin);
1077         actor->time_start_animation = now + fast_rnd(30);
1078         scene.actors = g_slist_append(scene.actors, actor);
1079
1080     }
1081
1082     run_long_timeout(desktop_plugin);
1083 #if 0    
1084   anim = g_new0(Animation, 1);
1085   anim->count = 1;
1086   anim->actor = actor;
1087   anim->func_change = &change_tram;
1088   anim->func_time = NULL;
1089   anim->timestart = time(NULL); 
1090   anim->timeall = 10;
1091   
1092   scene.dynamic_actors = g_slist_append(scene.dynamic_actors, anim);
1093 #endif  
1094  }
1095
1096 /* Init Berlin Scene */
1097 static void
1098 init_scene1(AWallpaperPlugin *desktop_plugin)
1099 {
1100   Actor *actor;
1101   gint now = time(NULL);
1102   gint i; 
1103   gint winds[13][2];
1104
1105   scene.daytime = get_daytime();
1106   scene.actors = NULL;
1107   scene.wind_orientation = -1;
1108   scene.wind_angle = 0.3;
1109   /* init value for random */
1110   scene.seed = time(NULL);
1111
1112   
1113   actor = init_object(desktop_plugin, "sky", "sky.png", 0, 0, 5, 800, 480, 
1114                       TRUE, 100, 255, (gpointer)&change_static_actor, NULL);
1115   change_static_actor(actor, desktop_plugin);
1116   scene.actors = g_slist_append(scene.actors, actor);
1117
1118   
1119   actor = init_object(desktop_plugin, "sun", "sun.png", 0, 0, 6, 88, 88, 
1120                       TRUE, 100, 255, (gpointer)&change_sun, &probability_sun);
1121   actor->time_start_animation = time(NULL);
1122   actor->duration_animation = G_MAXINT;
1123   change_sun(actor, desktop_plugin);
1124   scene.actors = g_slist_append(scene.actors, actor);
1125
1126 #if 0
1127   actor = init_object(desktop_plugin, "dot", "dot1.png", 0, 0, 11, 50, 50, 
1128                       TRUE, 100, 255, NULL, NULL);
1129   scene.actors = g_slist_append(scene.actors, actor);
1130 #endif
1131
1132   actor = init_object(desktop_plugin, "moon", "moon1.png", 400, 15, 6, 60, 60, 
1133                       FALSE, 100, 255, (gpointer)&change_moon, NULL);
1134   change_moon(actor, desktop_plugin);
1135   scene.actors = g_slist_append(scene.actors, actor);
1136   
1137   actor = init_object(desktop_plugin, "cloud1", "cloud1.png", 0, fast_rnd(300)-97, 7, 150, 97, 
1138                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
1139   actor->time_start_animation = now + fast_rnd(180);
1140   actor->duration_animation = 3*60;
1141   scene.actors = g_slist_append(scene.actors, actor);
1142   
1143   actor = init_object(desktop_plugin, "cloud2", "cloud2.png", 0, fast_rnd(300)-75, 7, 188, 75, 
1144                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
1145   actor->time_start_animation = now + fast_rnd(180);
1146   actor->duration_animation = 3*60;
1147   scene.actors = g_slist_append(scene.actors, actor);
1148
1149   actor = init_object(desktop_plugin, "cloud4", "cloud4.png", 0, fast_rnd(300)-75, 7, 150, 75, 
1150                       FALSE, 100, 255, (gpointer)&change_cloud, NULL);
1151   actor->time_start_animation = now + fast_rnd(180);
1152   actor->duration_animation = 5*60;
1153   scene.actors = g_slist_append(scene.actors, actor);
1154
1155  
1156   actor = init_object(desktop_plugin, "plane2", "plane3.png", 0, 45, 8, 160, 50, 
1157                       FALSE, 100, 255, (gpointer)&change_plane2, NULL);
1158   actor->time_start_animation = now + probability_plane();
1159   actor->duration_animation = 60;
1160   scene.actors = g_slist_append(scene.actors, actor);
1161   
1162   actor = init_object(desktop_plugin, "plane1", "tu154.png", 620, 233, 9, 300, 116, 
1163                       FALSE, 100, 255, (gpointer)&change_plane1, NULL);
1164   actor->time_start_animation = now + probability_plane();
1165   actor->duration_animation = 30;
1166   scene.actors = g_slist_append(scene.actors, actor);
1167
1168   actor = init_object(desktop_plugin, "town", "town.png", 0, 0, 10, 800, 480, 
1169                       TRUE, 100, 255, (gpointer)&change_static_actor_with_corner, NULL);
1170   change_static_actor_with_corner(actor, desktop_plugin);
1171   scene.actors = g_slist_append(scene.actors, actor);
1172
1173   actor = init_object(desktop_plugin, "wind", "", 0, 0, 5, 0, 0, 
1174                       FALSE, 100, 255, (gpointer)&change_wind, NULL);
1175   change_wind(actor, desktop_plugin);
1176   scene.actors = g_slist_append(scene.actors, actor);
1177
1178   actor = init_object(desktop_plugin, "signal", "red.png", 486, 425, 10, 18, 38, 
1179                       TRUE, 100, 255, (gpointer)&change_signal, NULL);
1180   actor->time_start_animation = now + fast_rnd(30) + 10;  
1181   scene.actors = g_slist_append(scene.actors, actor);winds[0][0] = 717;
1182     
1183     winds[0][0] = 389;
1184     winds[0][1] = 305;
1185
1186     winds[1][0] = 373;
1187     winds[1][1] = 306;
1188
1189     winds[2][0] = 355;
1190     winds[2][1] = 306;
1191
1192     winds[3][0] = 356;
1193     winds[3][1] = 288;
1194     
1195     winds[4][0] = 337;
1196     winds[4][1] = 269;
1197     
1198     winds[5][0] = 372;
1199     winds[5][1] = 268;
1200   
1201     winds[6][0] = 372;
1202     winds[6][1] = 249;
1203     
1204     winds[7][0] = 388;
1205     winds[7][1] = 249;
1206     
1207     winds[8][0] = 387;
1208     winds[8][1] = 230;
1209     
1210     winds[9][0] = 372;
1211     winds[9][1] = 211;
1212     
1213     winds[10][0] = 355;
1214     winds[10][1] = 159;
1215     
1216     winds[11][0] = 335;
1217     winds[11][1] = 158;
1218     
1219     winds[12][0] = 386;
1220     winds[12][1] = 119;
1221   
1222     for (i=0; i<13; i++){
1223         actor = init_object(desktop_plugin, "window", "window.png", 
1224                             winds[i][0], winds[i][1], 10, 8, 9, 
1225                             FALSE, 100, 255, (gpointer)&change_window1, NULL);
1226         //change_window1(actor, desktop_plugin);
1227         actor->time_start_animation = now + fast_rnd(30);
1228         scene.actors = g_slist_append(scene.actors, actor);
1229
1230     }
1231     
1232     run_long_timeout(desktop_plugin);
1233
1234 }
1235
1236
1237 void 
1238 get_sun_screen_pos(double alt, double azm, gint * x, gint * y)
1239 {
1240     gint y0 = 365;// - уровень горизонта
1241     *x = (int)(azm * 800) - 64;
1242     *y = (int)((1 - alt) * y0) - 64;
1243     //fprintf(stderr, "sun pos alt=%f azm=%f x=%d y=%d\n", alt, azm, *x, *y);
1244 }
1245 #if 0
1246 static void 
1247 change_actor(GtkWidget * actor)
1248 {
1249     char * name;
1250     gint x, y, daytime, scale;
1251     gdouble sc;
1252     double alt, azm;
1253
1254     GtkWidget *image;
1255     GdkPixbuf *pixbuf;
1256
1257     void (*pfunc)(gpointer, gpointer);
1258
1259     name = g_object_get_data(G_OBJECT(actor), "name");
1260     fprintf(stderr, "change actor %s\n", name);
1261     if (name == "sun"){
1262         pfunc = g_object_get_data(G_OBJECT(actor), "func");
1263         if (pfunc)
1264             (*pfunc)(actor, g_strdup(name));
1265         daytime = get_daytime();
1266         if (daytime != TIME_NIGHT){
1267             hildon_animation_actor_set_show(actor, 1);
1268             get_sun_pos(&alt, &azm);
1269             get_sun_screen_pos(alt, azm, &x, &y);
1270             actor_set_position_full(actor, x, y, g_object_get_data(G_OBJECT(actor), "z"));
1271         }
1272     }
1273     
1274     if (name == "cloud1"){
1275         x = g_object_get_data(G_OBJECT(actor), "x");
1276         y = g_object_get_data(G_OBJECT(actor), "y");
1277         scale = g_object_get_data(G_OBJECT(actor), "scale");
1278
1279         /* Start */
1280         image = g_object_get_data(G_OBJECT(actor), "image");
1281         
1282         gtk_container_remove(actor, image);  
1283         pixbuf = gdk_pixbuf_new_from_file_at_size ("/usr/share/livewp/theme/Modern/sun.png", 
1284                                              200, 
1285                                              200, 
1286                                              NULL);
1287         if (pixbuf){
1288               image = gtk_image_new_from_pixbuf (pixbuf);
1289               g_object_unref(G_OBJECT(pixbuf));
1290         }
1291         g_signal_connect(G_OBJECT(image), "expose_event",
1292                                    G_CALLBACK(expose_event), pixbuf);
1293         gtk_container_add (GTK_CONTAINER (actor), image);
1294         realize(actor);
1295         gtk_widget_show_all(actor);
1296         /* End*/
1297
1298             
1299         x += 40;
1300         y -= 20;
1301         scale -= 10;
1302         if (x > 500){
1303             x = 400;
1304             y = 150;
1305             sc = 1;
1306         }
1307         sc = (double)scale / 100;
1308         hildon_animation_actor_set_scale(actor, sc, sc);
1309         fprintf(stderr, "cloud x=%d y=%d scale=%f", x, y, sc);
1310         actor_set_position_full(actor, x, y, g_object_get_data(G_OBJECT(actor), "z"));
1311         g_object_set_data(G_OBJECT(actor), "x", x);
1312         g_object_set_data(G_OBJECT(actor), "y", y);
1313         g_object_set_data(G_OBJECT(actor), "scale", scale);
1314     }
1315
1316 }
1317 #endif
1318 static gboolean
1319 short_timeout (AWallpaperPlugin *desktop_plugin)
1320 {
1321     gint daytime = get_daytime();
1322     GSList * tmp;
1323     void (*pfunc)(gpointer, gpointer);
1324     time_t now;
1325     Actor *actor;
1326     gboolean stop_flag = TRUE;
1327
1328 if (!desktop_plugin->priv->visible || !desktop_plugin->priv->rich_animation){
1329         desktop_plugin->priv->short_timer = 0;
1330         return FALSE;
1331     }
1332
1333     now = time(NULL);
1334     //scene.daytime = daytime;
1335     /* fprintf(stderr, "Short timer %d\n", now); */
1336     tmp = scene.actors;
1337     while (tmp != NULL){
1338            actor = tmp->data;
1339            if (now >= actor->time_start_animation  
1340                && actor->time_start_animation > 0
1341                /* && now - actor->time_start_animation <= actor->duration_animation*/){
1342                 pfunc = actor->func_change;
1343                 if (pfunc){ 
1344                     (*pfunc)(actor, desktop_plugin);
1345                     stop_flag = FALSE;
1346                 }
1347             }
1348             tmp = g_slist_next(tmp);
1349     }
1350     if (stop_flag){
1351          desktop_plugin->priv->short_timer = 0;
1352          return FALSE;
1353     }else
1354          return TRUE; /* keep running this event */
1355 }
1356
1357 void
1358 run_long_timeout(AWallpaperPlugin *desktop_plugin)
1359 {
1360
1361     gint daytime = get_daytime();
1362     GSList * tmp;
1363     void (*pfunc)(gpointer, gpointer);
1364     time_t now;
1365     Actor *actor;
1366
1367
1368     //fprintf(stderr, "!!!run long timeout short_timer=%d\n", desktop_plugin->priv->short_timer);
1369     if (scene.daytime != daytime){
1370         scene.daytime = daytime;
1371         tmp = scene.actors;
1372         while (tmp != NULL){
1373             //change_actor(tmp->data);
1374             pfunc =((Actor*)tmp->data)->func_change;
1375             if (pfunc){
1376                 (*pfunc)(tmp->data, desktop_plugin);
1377             }
1378             tmp = g_slist_next(tmp);
1379         }
1380     }
1381    
1382     now = time(NULL);
1383     //fprintf(stderr, "Now  %d\n", now);
1384     tmp = scene.actors;
1385     while (tmp != NULL){
1386         actor = tmp->data;
1387         if (now >= actor->time_start_animation  
1388             && actor->time_start_animation > 0
1389             && desktop_plugin->priv->short_timer == 0){
1390             /* fprintf(stderr, "start short timer act = %s %d\n", actor->name, now); */
1391             if (desktop_plugin->priv->rich_animation){
1392                 actor->time_start_animation = now;
1393                 desktop_plugin->priv->short_timer = g_timeout_add(SHORT_TIMER, (GtkFunction)short_timeout, desktop_plugin);
1394                 //fprintf(stderr, " start shor timer %d\n", desktop_plugin->priv->short_timer);
1395             }
1396             else {
1397                 (*actor->func_change)(actor, desktop_plugin);
1398             }
1399         }
1400         tmp = g_slist_next(tmp);
1401     }
1402  
1403 }
1404
1405 static gboolean
1406 long_timeout (AWallpaperPlugin *desktop_plugin)
1407 {
1408     /* fprintf(stderr, "long_timeout %i\n", desktop_plugin->priv->long_timer); */
1409     if (desktop_plugin->priv->long_timer == 0 )
1410         return FALSE;
1411     if (!desktop_plugin->priv->visible){
1412         if(desktop_plugin->priv->short_timer != 0){
1413             g_source_remove(desktop_plugin->priv->short_timer);
1414             desktop_plugin->priv->short_timer = 0;
1415         }
1416         desktop_plugin->priv->long_timer = 0;
1417         return FALSE;
1418     }
1419   
1420
1421     run_long_timeout(desktop_plugin);
1422     return TRUE; /* keep running this event */
1423 }
1424
1425 static void
1426 desktop_plugin_visible_notify (GObject    *object,
1427                                           GParamSpec *spec,
1428                                           AWallpaperPlugin *desktop_plugin)
1429 {
1430     gboolean visible;
1431     g_object_get (object, "is-on-current-desktop", &visible, NULL);
1432     /* fprintf (stderr, "is-on-current-desktop changed. visible: %u", visible); */
1433     if (visible){
1434         desktop_plugin->priv->visible = TRUE;
1435         if (desktop_plugin->priv->long_timer == 0 ){
1436             desktop_plugin->priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
1437             run_long_timeout(desktop_plugin);
1438         }
1439     }else{
1440         desktop_plugin->priv->visible = FALSE;
1441         if (desktop_plugin->priv->long_timer != 0 ){
1442             g_source_remove(desktop_plugin->priv->long_timer);
1443             desktop_plugin->priv->long_timer = 0;
1444         }
1445     }
1446 }
1447
1448 gboolean
1449 rich_animation_press(GtkWidget *widget, GdkEvent *event,
1450                                             gpointer user_data){
1451     fprintf(stderr,"gggggggggggggggggggg2222\n");
1452 }    
1453 static void
1454 animation_wallpaper_plugin_init (AWallpaperPlugin *desktop_plugin)
1455 {
1456     GtkWidget *rich_animation;
1457     gchar           buffer[2048];
1458
1459
1460     fprintf(stderr, "!!!!!!!plugin init \n");
1461     Animation_WallpaperPrivate *priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
1462     desktop_plugin->priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
1463
1464     /* Load config */
1465     read_config(priv);
1466     priv->desktop_plugin = desktop_plugin;
1467     priv->visible = TRUE;
1468     priv->short_timer = 0;
1469     desktop_plugin->priv->main_widget = gtk_fixed_new();
1470
1471     gtk_widget_set_size_request(desktop_plugin->priv->main_widget, 100, 32);
1472     desktop_plugin->priv->right_corner = NULL;
1473     snprintf(buffer, sizeof(buffer) - 1, "%s/%s/%s", THEME_PATH, desktop_plugin->priv->theme, "town0_right_corner.png");
1474     desktop_plugin->priv->right_corner = gtk_image_new_from_file (buffer);
1475     if (desktop_plugin->priv->right_corner){
1476         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), desktop_plugin->priv->right_corner, 0, 0);
1477         gtk_widget_show (desktop_plugin->priv->right_corner);
1478     }
1479     /* Create rich animation event */
1480     rich_animation = gtk_event_box_new();
1481     if(rich_animation){
1482         gtk_widget_set_events(rich_animation, GDK_BUTTON_PRESS_MASK);
1483         gtk_event_box_set_visible_window(GTK_EVENT_BOX(rich_animation), FALSE);
1484         gtk_widget_set_size_request(rich_animation, 100, 32);
1485         gtk_widget_show (rich_animation);
1486         g_signal_connect(rich_animation, "button-press-event", G_CALLBACK(rich_animation_press), desktop_plugin);
1487         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), rich_animation, 0, 0);
1488     }
1489 /*
1490     GtkWidget *label = gtk_label_new ("ddddddddddddd"); 
1491     gtk_widget_set_size_request(label, 95, 30);
1492     gtk_widget_show (label);
1493 //    gtk_container_add (GTK_CONTAINER (desktop_plugin), label);
1494     gtk_fixed_put(GTK_FIXED(widget), label, 0, 0);
1495 */
1496     hd_home_plugin_item_set_settings (HD_HOME_PLUGIN_ITEM (desktop_plugin), TRUE);
1497     g_signal_connect (desktop_plugin, "show-settings",
1498                              G_CALLBACK (lw_settings), priv);
1499     gtk_widget_show (desktop_plugin->priv->main_widget);
1500     gtk_container_add (GTK_CONTAINER (desktop_plugin), desktop_plugin->priv->main_widget);
1501     init_applet_position();
1502
1503     
1504     fprintf(stderr, "!!!theme = %s\n", priv->theme);
1505     if (!strcmp(priv->theme,"Modern"))
1506         init_scene(desktop_plugin);
1507     else if (!strcmp(priv->theme,"Berlin")) 
1508         init_scene1(desktop_plugin);
1509     else if (!strcmp(priv->theme, "Matrix"))
1510         init_scene2(desktop_plugin);
1511     priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
1512     /* TODO Move scene to priv */
1513     scene.timer_type = LONG_TIMER_TYPE;
1514     g_signal_connect (desktop_plugin, "notify::is-on-current-desktop",
1515                      G_CALLBACK (desktop_plugin_visible_notify), desktop_plugin);
1516
1517    
1518     //sleep(2);
1519 }
1520
1521 static void
1522 lw_applet_finalize (GObject *object)
1523 {
1524      AWallpaperPlugin *desktop_plugin = Animation_Wallpaper_HOME_PLUGIN (object);
1525      Animation_WallpaperPrivate *priv = desktop_plugin->priv;
1526      
1527      fprintf(stderr,"finalaze %i\n", priv->long_timer);
1528      if (priv->long_timer){
1529         g_source_remove(priv->long_timer);
1530         priv->long_timer = 0;
1531      }
1532      if (priv->short_timer){
1533         g_source_remove(priv->short_timer);
1534         priv->short_timer = 0;
1535      }
1536
1537      destroy_scene();
1538 }
1539
1540 static void
1541 animation_wallpaper_plugin_class_init (AWallpaperPluginClass *klass) {
1542
1543     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
1544     GtkObjectClass *gobject_class = GTK_OBJECT_CLASS (klass);
1545
1546     /* gobject */
1547     gobject_class->destroy = (gpointer)lw_applet_finalize;
1548     widget_class->realize = lw_applet_realize;
1549     widget_class->expose_event = lw_applet_expose_event;
1550
1551     g_type_class_add_private (klass, sizeof (Animation_WallpaperPrivate));
1552
1553 }
1554
1555 static void
1556 animation_wallpaper_plugin_class_finalize (AWallpaperPluginClass *class) {
1557 }