invaders: clean code
[awesome.git] / image.c
blobf7be27487ac558e1b347b66d5f70c78f54f11a97
1 /*
2 * image.c - image object
4 * Copyright © 2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "structs.h"
24 extern awesome_t globalconf;
26 DO_LUA_NEW(extern, image_t, image, "image", image_ref)
27 DO_LUA_GC(image_t, image, "image", image_unref)
28 DO_LUA_EQ(image_t, image, "image")
30 static const char *
31 image_imlib_load_strerror(Imlib_Load_Error e)
33 switch(e)
35 case IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST:
36 return "no such file or directory";
37 case IMLIB_LOAD_ERROR_FILE_IS_DIRECTORY:
38 return "file is a directory";
39 case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_READ:
40 return "read permission denied";
41 case IMLIB_LOAD_ERROR_NO_LOADER_FOR_FILE_FORMAT:
42 return "no loader for file format";
43 case IMLIB_LOAD_ERROR_PATH_TOO_LONG:
44 return "path too long";
45 case IMLIB_LOAD_ERROR_PATH_COMPONENT_NON_EXISTANT:
46 return "path component non existant";
47 case IMLIB_LOAD_ERROR_PATH_COMPONENT_NOT_DIRECTORY:
48 return "path compoment not a directory";
49 case IMLIB_LOAD_ERROR_PATH_POINTS_OUTSIDE_ADDRESS_SPACE:
50 return "path points oustide address space";
51 case IMLIB_LOAD_ERROR_TOO_MANY_SYMBOLIC_LINKS:
52 return "too many symbolic links";
53 case IMLIB_LOAD_ERROR_OUT_OF_MEMORY:
54 return "out of memory";
55 case IMLIB_LOAD_ERROR_OUT_OF_FILE_DESCRIPTORS:
56 return "out of file descriptors";
57 case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_WRITE:
58 return "write permission denied";
59 case IMLIB_LOAD_ERROR_OUT_OF_DISK_SPACE:
60 return "out of disk space";
61 case IMLIB_LOAD_ERROR_UNKNOWN:
62 return "unknown error, that's really bad";
63 case IMLIB_LOAD_ERROR_NONE:
64 return "no error, oops";
67 return "unknown error";
70 /** Recompute the ARGB32 data from an image.
71 * \param image The image.
72 * \return Data.
74 static void
75 image_compute(image_t *image)
77 int size, i;
78 uint32_t *data;
79 double alpha;
80 uint8_t *dataimg;
82 imlib_context_set_image(image->image);
84 data = imlib_image_get_data_for_reading_only();
86 image->width = imlib_image_get_width();
87 image->height = imlib_image_get_height();
89 size = image->width * image->height;
91 p_delete(&image->data);
92 image->data = dataimg = p_new(uint8_t, size * 4);
94 for(i = 0; i < size; i++, dataimg += 4)
96 dataimg[3] = (data[i] >> 24) & 0xff; /* A */
97 /* cairo wants pre-multiplied alpha */
98 alpha = dataimg[3] / 255.0;
99 dataimg[2] = ((data[i] >> 16) & 0xff) * alpha; /* R */
100 dataimg[1] = ((data[i] >> 8) & 0xff) * alpha; /* G */
101 dataimg[0] = (data[i] & 0xff) * alpha; /* B */
105 /** Create a new image from ARGB32 data.
106 * \param width The image width.
107 * \param height The image height.
108 * \param data The image data.
109 * \return A brand new image.
111 image_t *
112 image_new_from_argb32(int width, int height, uint32_t *data)
114 Imlib_Image imimage;
115 image_t *image = NULL;
117 if((imimage = imlib_create_image_using_data(width, height, data)))
119 image = p_new(image_t, 1);
120 image->image = imimage;
121 image_compute(image);
124 return image;
127 /** Load an image from filename.
128 * \param filename The image file to load.
129 * \return A new image.
131 image_t *
132 image_new_from_file(const char *filename)
134 Imlib_Image imimage;
135 Imlib_Load_Error e = IMLIB_LOAD_ERROR_NONE;
136 image_t *image;
138 if(!filename)
139 return NULL;
141 if(!(imimage = imlib_load_image_with_error_return(filename, &e)))
143 warn("cannot load image %s: %s", filename, image_imlib_load_strerror(e));
144 return NULL;
147 image = p_new(image_t, 1);
148 image->image = imimage;
150 image_compute(image);
152 return image;
155 /** Create a new image object.
156 * \param L The Lua stack.
157 * \return The number of elements pushed on stack.
158 * \luastack
159 * \lparam The image path.
160 * \lreturn An image object.
162 static int
163 luaA_image_new(lua_State *L)
165 const char *filename = luaL_checkstring(L, 2);
166 image_t *image;
168 if((image = image_new_from_file(filename)))
169 return luaA_image_userdata_new(L, image);
171 return 0;
174 /** Rotate an image with specified angle radians and return a new image.
175 * \param L The Lua VM state.
176 * \return The number of elements pushed on stack.
177 * \luastack
178 * \lvalue An image.
179 * \lparam The angle in radians.
180 * \lreturn A rotated image.
182 static int
183 luaA_image_rotate(lua_State *L)
185 image_t **image = luaA_checkudata(L, 1, "image"), *new;
186 double angle = luaL_checknumber(L, 2);
188 new = p_new(image_t, 1);
190 imlib_context_set_image((*image)->image);
191 new->image = imlib_create_rotated_image(angle);
193 image_compute(new);
195 return luaA_image_userdata_new(L, new);
198 /** Crop an image to the given rectangle.
199 * \return The number of elements pushed on stack.
200 * \luastack
201 * \lvalue An image.
202 * \lparam The top left x coordinate of the rectangle.
203 * \lparam The top left y coordinate of the rectangle.
204 * \lparam The width of the rectangle.
205 * \lparam The height of the rectangle.
206 * \lreturn A cropped image.
208 static int
209 luaA_image_crop(lua_State *L)
211 image_t **image = luaA_checkudata(L, 1, "image"), *new;
212 int x = luaL_checkint(L, 2);
213 int y = luaL_checkint(L, 3);
214 int w = luaL_checkint(L, 4);
215 int h = luaL_checkint(L, 5);
217 new = p_new(image_t, 1);
219 imlib_context_set_image((*image)->image);
220 new->image = imlib_create_cropped_image(x, y, w, h);
222 image_compute(new);
224 return luaA_image_userdata_new(L, new);
227 /** Crop the image to the given rectangle and scales it.
228 * \param L The Lua VM state.
229 * \return The number of elements pushed on stack.
230 * \luastack
231 * \lvalue An image.
232 * \lparam The top left x coordinate of the source rectangle.
233 * \lparam The top left y coordinate of the source rectangle.
234 * \lparam The width of the source rectangle.
235 * \lparam The height of the source rectangle.
236 * \lparam The width of the destination rectangle.
237 * \lparam The height of the destination rectangle.
238 * \lreturn A cropped image.
240 static int
241 luaA_image_crop_and_scale(lua_State *L)
243 image_t **image = luaA_checkudata(L, 1, "image"), *new;
244 int source_x = luaL_checkint(L, 2);
245 int source_y = luaL_checkint(L, 3);
246 int w = luaL_checkint(L, 4);
247 int h = luaL_checkint(L, 5);
248 int dest_w = luaL_checkint(L, 6);
249 int dest_h = luaL_checkint(L, 7);
251 new = p_new(image_t, 1);
253 imlib_context_set_image((*image)->image);
254 new->image = imlib_create_cropped_scaled_image(source_x,
255 source_y,
256 w, h,
257 dest_w, dest_h);
259 image_compute(new);
261 return luaA_image_userdata_new(L, new);
264 /** Image object.
265 * \param L The Lua VM state.
266 * \return The number of elements pushed on stack.
267 * \luastack
268 * \lvalue An image
269 * \lfield width The image width.
270 * \lfield height The image height.
272 static int
273 luaA_image_index(lua_State *L)
275 if(luaA_usemetatable(L, 1, 2))
276 return 1;
278 image_t **image = luaA_checkudata(L, 1, "image");
279 size_t len;
280 const char *attr = luaL_checklstring(L, 2, &len);
282 switch(a_tokenize(attr, len))
284 case A_TK_WIDTH:
285 imlib_context_set_image((*image)->image);
286 lua_pushnumber(L, imlib_image_get_width());
287 break;
288 case A_TK_HEIGHT:
289 imlib_context_set_image((*image)->image);
290 lua_pushnumber(L, imlib_image_get_height());
291 break;
292 default:
293 return 0;
296 return 1;
299 /** Return a formated string for an image.
300 * \param L The Lua VM state.
301 * \luastack
302 * \lvalue An image.
303 * \lreturn A string.
305 static int
306 luaA_image_tostring(lua_State *L)
308 image_t **p = luaA_checkudata(L, 1, "image");
309 lua_pushfstring(L, "[image udata(%p) width(%d) height(%d)]", *p,
310 (*p)->width, (*p)->height);
311 return 1;
314 const struct luaL_reg awesome_image_methods[] =
316 { "__call", luaA_image_new },
317 { NULL, NULL }
319 const struct luaL_reg awesome_image_meta[] =
321 { "__index", luaA_image_index },
322 { "rotate", luaA_image_rotate },
323 { "crop", luaA_image_crop },
324 { "crop_and_scale", luaA_image_crop_and_scale },
325 { "__gc", luaA_image_gc },
326 { "__eq", luaA_image_eq },
327 { "__tostring", luaA_image_tostring },
328 { NULL, NULL }
331 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80