changes related to temperature and layout
[monky] / src / imlib2.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Please see COPYING for details
7  *
8  * Copyright (c) 2005-2010 Brenden Matthews, et. al.
9  * All rights reserved.
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 #include "config.h"
26 #include "imlib2.h"
27 #include "conky.h"
28 #include "logging.h"
29
30 #include <Imlib2.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <limits.h>
34 #include <string.h>
35 #include <time.h>
36
37 struct image_list_s {
38         char name[1024];
39         Imlib_Image image;
40         int x, y, w, h;
41         int wh_set;
42         char no_cache;
43         int flush_interval;
44         struct image_list_s *next;
45 };
46
47 struct image_list_s *image_list_start, *image_list_end;
48
49 /* areas to update */
50 Imlib_Updates updates, current_update;
51 /* our virtual framebuffer image we draw into */
52 Imlib_Image buffer, image;
53
54 static int cache_size_set = 0;
55
56 /* flush the image cache ever X seconds */
57 static int cimlib_cache_flush_interval = 0;
58 static int cimlib_cache_flush_last = 0;
59
60 #define DEFAULT_IMLIB2_CACHE_SIZE 4096 * 1024 /* default cache size for loaded images */
61
62 void cimlib_set_cache_size(long size)
63 {
64         imlib_set_cache_size(size);
65         cache_size_set = 1;
66 }
67
68 void cimlib_set_cache_flush_interval(long interval)
69 {
70         if (interval >= 0) {
71                 cimlib_cache_flush_interval = interval;
72         } else {
73                 NORM_ERR("Imlib2: flush interval should be >= 0");
74         }
75 }
76
77 void cimlib_cleanup(void)
78 {
79         struct image_list_s *cur = image_list_start, *last = NULL;
80         while (cur) {
81                 last = cur;
82                 cur = last->next;
83                 free(last);
84         }
85         image_list_start = image_list_end = NULL;
86 }
87
88 Imlib_Context context;
89
90
91 void cimlib_init(Display *disp, Drawable drawable, Visual *visual, Colormap
92                 colourmap)
93 {
94         image_list_start = image_list_end = NULL;
95         context = imlib_context_new();
96         imlib_context_push(context);
97         if (!cache_size_set) cimlib_set_cache_size(DEFAULT_IMLIB2_CACHE_SIZE);
98         /* set the maximum number of colors to allocate for 8bpp and less to 256 */
99         imlib_set_color_usage(256);
100         /* dither for depths < 24bpp */
101         imlib_context_set_dither(1);
102         /* set the display , visual, colormap and drawable we are using */
103         imlib_context_set_display(disp);
104         imlib_context_set_visual(visual);
105         imlib_context_set_colormap(colourmap);
106         imlib_context_set_drawable(drawable);
107 }
108
109 void cimlib_deinit(void)
110 {
111         cimlib_cleanup();
112         cache_size_set = 0;
113 //      imlib_context_disconnect_display();
114         imlib_context_pop();
115         imlib_context_free(context);
116 }
117
118 void cimlib_add_image(const char *args)
119 {
120         struct image_list_s *cur = NULL;
121         char *tmp;
122
123         cur = malloc(sizeof(struct image_list_s));
124         memset(cur, 0, sizeof(struct image_list_s));
125
126         if (!sscanf(args, "%1023s", cur->name)) {
127                 NORM_ERR("Invalid args for $image.  Format is: '<path to image> (-p"
128                                 "x,y) (-s WxH) (-n) (-f interval)' (got '%s')", args);
129                 free(cur);
130                 return;
131         }
132         to_real_path(cur->name, cur->name);
133         // now we check for optional args
134         tmp = strstr(args, "-p ");
135         if (tmp) {
136                 tmp += 3;
137                 sscanf(tmp, "%i,%i", &cur->x, &cur->y);
138         }
139         tmp = strstr(args, "-s ");
140         if (tmp) {
141                 tmp += 3;
142                 if (sscanf(tmp, "%ix%i", &cur->w, &cur->h)) {
143                         cur->wh_set = 1;
144                 }
145         }
146
147         tmp = strstr(args, "-n");
148         if (tmp) {
149                 cur->no_cache = 1;
150         }
151
152         tmp = strstr(args, "-f ");
153         if (tmp) {
154                 tmp += 3;
155                 if (sscanf(tmp, "%d", &cur->flush_interval)) {
156                         cur->no_cache = 0;
157                 }
158         }
159         if (cur->flush_interval < 0) {
160                 NORM_ERR("Imlib2: flush interval should be >= 0");
161                 cur->flush_interval = 0;
162         }
163
164         if (image_list_end) {
165                 image_list_end->next = cur;
166                 image_list_end = cur;
167         } else {
168                 image_list_start = image_list_end = cur;
169         }
170 }
171
172 static void cimlib_draw_image(struct image_list_s *cur, int *clip_x, int
173                 *clip_y, int *clip_x2, int *clip_y2)
174 {
175         int w, h;
176         time_t now = time(NULL);
177         static int rep = 0;
178
179         image = imlib_load_image(cur->name);
180         if (!image) {
181                 if (!rep)
182                         NORM_ERR("Unable to load image '%s'", cur->name);
183                 rep = 1;
184                 return;
185         }
186         rep = 0;        /* reset so disappearing images are reported */
187
188         DBGP("Drawing image '%s' at (%i,%i) scaled to %ix%i, "
189              "caching interval set to %i (with -n opt %i)",
190              cur->name, cur->x, cur->y, cur->w, cur->h,
191              cur->flush_interval, cur->no_cache);
192
193         imlib_context_set_image(image);
194         /* turn alpha channel on */
195         imlib_image_set_has_alpha(1);
196         w = imlib_image_get_width();
197         h = imlib_image_get_height();
198         if (!cur->wh_set) {
199                 cur->w = w;
200                 cur->h = h;
201         }
202         imlib_context_set_image(buffer);
203         imlib_blend_image_onto_image(image, 1, 0, 0, w, h,
204                         cur->x, cur->y, cur->w, cur->h);
205         imlib_context_set_image(image);
206         if (cur->no_cache || (cur->flush_interval &&
207                               now % cur->flush_interval == 0)) {
208                 imlib_free_image_and_decache();
209         } else {
210                 imlib_free_image();
211         }
212         if (cur->x < *clip_x) *clip_x = cur->x;
213         if (cur->y < *clip_y) *clip_y = cur->y;
214         if (cur->x + cur->w > *clip_x2) *clip_x2 = cur->x + cur->w;
215         if (cur->y + cur->h > *clip_y2) *clip_y2 = cur->y + cur->h;
216 }
217
218 static void cimlib_draw_all(int *clip_x, int *clip_y, int *clip_x2, int *clip_y2)
219 {
220         struct image_list_s *cur = image_list_start;
221         while (cur) {
222                 cimlib_draw_image(cur, clip_x, clip_y, clip_x2, clip_y2);
223                 cur = cur->next;
224         }
225 }
226
227 void cimlib_render(int x, int y, int width, int height)
228 {
229         int clip_x = INT_MAX, clip_y = INT_MAX;
230         int clip_x2 = 0, clip_y2 = 0;
231         time_t now;
232
233         if (!image_list_start) return; /* are we actually drawing anything? */
234         /* check if it's time to flush our cache */
235         now = time(NULL);
236         if (cimlib_cache_flush_interval && now - cimlib_cache_flush_interval > cimlib_cache_flush_last) {
237                 int size = imlib_get_cache_size();
238                 imlib_set_cache_size(0);
239                 imlib_set_cache_size(size);
240                 cimlib_cache_flush_last = now;
241                 DBGP("Flushing Imlib2 cache (%li)\n", now);
242         }
243         /* take all the little rectangles to redraw and merge them into
244          * something sane for rendering */
245         buffer = imlib_create_image(width, height);
246         /* clear our buffer */
247         imlib_context_set_image(buffer);
248         imlib_image_clear();
249         /* we can blend stuff now */
250         imlib_context_set_blend(1);
251         /* turn alpha channel on */
252         imlib_image_set_has_alpha(1);
253         cimlib_draw_all(&clip_x, &clip_y, &clip_x2, &clip_y2);
254         /* set the buffer image as our current image */
255         imlib_context_set_image(buffer);
256         /* setup our clip rect */
257         if (clip_x == INT_MAX) clip_x = 0;
258         if (clip_y == INT_MAX) clip_y = 0;
259         /* render the image at 0, 0 */
260         imlib_render_image_part_on_drawable_at_size(clip_x, clip_y, clip_x2 - clip_x,
261                         clip_y2 - clip_y, x + clip_x, y + clip_y, clip_x2 - clip_x,
262                         clip_y2 - clip_y);
263         /* don't need that temporary buffer image anymore */
264         imlib_free_image();
265 }
266