Get rid of get_user_file_path and do the path handling in wrappers for open() and...
[maemo-rb.git] / apps / gui / skin_engine / skin_parser.c
blobf292ff39461f57120dcb30147d86a4a8fcf544ed
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Nicolas Pennequin, Dan Everton, Matthias Mohr
11 * 2010 Jonathan Gordon
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include <stdio.h>
24 #include <string.h>
25 #include <stdlib.h>
26 #include "config.h"
27 #include "file.h"
28 #include "misc.h"
29 #include "plugin.h"
30 #include "viewport.h"
32 #include "skin_buffer.h"
33 #include "skin_parser.h"
34 #include "tag_table.h"
36 #ifdef __PCTOOL__
37 #ifdef WPSEDITOR
38 #include "proxy.h"
39 #include "sysfont.h"
40 #else
41 #include "action.h"
42 #include "checkwps.h"
43 #include "audio.h"
44 #define lang_is_rtl() (false)
45 #define DEBUGF printf
46 #endif /*WPSEDITOR*/
47 #else
48 #include "debug.h"
49 #include "language.h"
50 #endif /*__PCTOOL__*/
52 #include <ctype.h>
53 #include <stdbool.h>
54 #include "font.h"
56 #include "wps_internals.h"
57 #include "skin_engine.h"
58 #include "settings.h"
59 #include "settings_list.h"
60 #if CONFIG_TUNER
61 #include "radio.h"
62 #include "tuner.h"
63 #endif
64 #include "skin_fonts.h"
66 #ifdef HAVE_LCD_BITMAP
67 #include "bmp.h"
68 #endif
70 #ifdef HAVE_ALBUMART
71 #include "playback.h"
72 #endif
74 #include "backdrop.h"
75 #include "statusbar-skinned.h"
77 #define WPS_ERROR_INVALID_PARAM -1
80 static bool isdefault(struct skin_tag_parameter *param)
82 return param->type == DEFAULT;
86 /* which screen are we parsing for? */
87 static enum screen_type curr_screen;
89 /* the current viewport */
90 static struct skin_element *curr_viewport_element;
91 static struct skin_viewport *curr_vp;
93 static struct line *curr_line;
95 static int follow_lang_direction = 0;
97 typedef int (*parse_function)(struct skin_element *element,
98 struct wps_token *token,
99 struct wps_data *wps_data);
101 #ifdef HAVE_LCD_BITMAP
102 /* add a skin_token_list item to the list chain. ALWAYS appended because some of the
103 * chains require the order to be kept.
105 static void add_to_ll_chain(struct skin_token_list **list, struct skin_token_list *item)
107 if (*list == NULL)
108 *list = item;
109 else
111 struct skin_token_list *t = *list;
112 while (t->next)
113 t = t->next;
114 t->next = item;
118 /* traverse the image linked-list for an image */
119 struct gui_img* find_image(const char *label, struct wps_data *data)
121 struct skin_token_list *list = data->images;
122 while (list)
124 struct gui_img *img = (struct gui_img *)list->token->value.data;
125 if (!strcmp(img->label,label))
126 return img;
127 list = list->next;
129 return NULL;
132 #endif
134 /* traverse the viewport linked list for a viewport */
135 struct skin_viewport* find_viewport(const char *label, bool uivp, struct wps_data *data)
137 struct skin_element *list = data->tree;
138 while (list)
140 struct skin_viewport *vp = (struct skin_viewport *)list->data;
141 if (vp->label && (vp->is_infovp == uivp) &&
142 !strcmp(vp->label, label))
143 return vp;
144 list = list->next;
146 return NULL;
149 #ifdef HAVE_LCD_BITMAP
151 /* create and init a new wpsll item.
152 * passing NULL to token will alloc a new one.
153 * You should only pass NULL for the token when the token type (table above)
154 * is WPS_NO_TOKEN which means it is not stored automatically in the skins token array
156 static struct skin_token_list *new_skin_token_list_item(struct wps_token *token,
157 void* token_data)
159 struct skin_token_list *llitem =
160 (struct skin_token_list *)skin_buffer_alloc(sizeof(struct skin_token_list));
161 if (!token)
162 token = (struct wps_token*)skin_buffer_alloc(sizeof(struct wps_token));
163 if (!llitem || !token)
164 return NULL;
165 llitem->next = NULL;
166 llitem->token = token;
167 if (token_data)
168 llitem->token->value.data = token_data;
169 return llitem;
172 static int parse_statusbar_tags(struct skin_element* element,
173 struct wps_token *token,
174 struct wps_data *wps_data)
176 (void)element;
177 if (token->type == SKIN_TOKEN_DRAW_INBUILTBAR)
179 token->value.data = (void*)&curr_vp->vp;
181 else
183 struct skin_element *def_vp = wps_data->tree;
184 struct skin_viewport *default_vp = def_vp->data;
185 if (def_vp->params_count == 0)
187 wps_data->wps_sb_tag = true;
188 wps_data->show_sb_on_wps = (token->type == SKIN_TOKEN_ENABLE_THEME);
190 if (wps_data->show_sb_on_wps)
192 viewport_set_defaults(&default_vp->vp, curr_screen);
194 else
196 viewport_set_fullscreen(&default_vp->vp, curr_screen);
198 #ifdef HAVE_REMOTE_LCD
199 /* viewport_set_defaults() sets the font to FONT_UI+curr_screen.
200 * This parser requires font 1 to always be the UI font,
201 * so force it back to FONT_UI and handle the screen number at the end */
202 default_vp->vp.font = FONT_UI;
203 #endif
205 return 0;
208 static int get_image_id(int c)
210 if(c >= 'a' && c <= 'z')
211 return c - 'a';
212 else if(c >= 'A' && c <= 'Z')
213 return c - 'A' + 26;
214 else
215 return -1;
218 char *get_image_filename(const char *start, const char* bmpdir,
219 char *buf, int buf_size)
221 snprintf(buf, buf_size, "%s/%s", bmpdir, start);
223 return buf;
226 static int parse_image_display(struct skin_element *element,
227 struct wps_token *token,
228 struct wps_data *wps_data)
230 char *label = element->params[0].data.text;
231 char sublabel = '\0';
232 int subimage;
233 struct gui_img *img;
234 struct image_display *id = skin_buffer_alloc(sizeof(struct image_display));
236 if (element->params_count == 1 && strlen(label) <= 2)
238 /* backwards compatability. Allow %xd(Aa) to still work */
239 sublabel = label[1];
240 label[1] = '\0';
242 /* sanity check */
243 img = find_image(label, wps_data);
244 if (!img || !id)
246 return WPS_ERROR_INVALID_PARAM;
248 id->label = label;
249 id->offset = 0;
250 id->token = NULL;
251 if (img->using_preloaded_icons)
253 token->type = SKIN_TOKEN_IMAGE_DISPLAY_LISTICON;
256 if (element->params_count > 1)
258 if (element->params[1].type == CODE)
259 id->token = element->params[1].data.code->data;
260 /* specify a number. 1 being the first subimage (i.e top) NOT 0 */
261 else if (element->params[1].type == INTEGER)
262 id->subimage = element->params[1].data.number - 1;
263 if (element->params_count > 2)
264 id->offset = element->params[2].data.number;
266 else
268 if ((subimage = get_image_id(sublabel)) != -1)
270 if (subimage >= img->num_subimages)
271 return WPS_ERROR_INVALID_PARAM;
272 id->subimage = subimage;
273 } else {
274 id->subimage = 0;
277 token->value.data = id;
278 return 0;
281 static int parse_image_load(struct skin_element *element,
282 struct wps_token *token,
283 struct wps_data *wps_data)
285 const char* filename;
286 const char* id;
287 int x,y;
288 struct gui_img *img;
290 /* format: %x(n,filename.bmp,x,y)
291 or %xl(n,filename.bmp,x,y)
292 or %xl(n,filename.bmp,x,y,num_subimages)
295 id = element->params[0].data.text;
296 filename = element->params[1].data.text;
297 x = element->params[2].data.number;
298 y = element->params[3].data.number;
300 /* check the image number and load state */
301 if(find_image(id, wps_data))
303 /* Invalid image ID */
304 return WPS_ERROR_INVALID_PARAM;
306 img = (struct gui_img*)skin_buffer_alloc(sizeof(struct gui_img));
307 if (!img)
308 return WPS_ERROR_INVALID_PARAM;
309 /* save a pointer to the filename */
310 img->bm.data = (char*)filename;
311 img->label = id;
312 img->x = x;
313 img->y = y;
314 img->num_subimages = 1;
315 img->always_display = false;
316 img->display = -1;
317 img->using_preloaded_icons = false;
319 /* save current viewport */
320 img->vp = &curr_vp->vp;
322 if (token->type == SKIN_TOKEN_IMAGE_DISPLAY)
324 img->always_display = true;
326 else if (element->params_count == 5)
328 img->num_subimages = element->params[4].data.number;
329 if (img->num_subimages <= 0)
330 return WPS_ERROR_INVALID_PARAM;
333 if (!strcmp(img->bm.data, "__list_icons__"))
335 img->num_subimages = Icon_Last_Themeable;
336 img->using_preloaded_icons = true;
339 struct skin_token_list *item =
340 (struct skin_token_list *)new_skin_token_list_item(NULL, img);
341 if (!item)
342 return WPS_ERROR_INVALID_PARAM;
343 add_to_ll_chain(&wps_data->images, item);
345 return 0;
347 struct skin_font {
348 int id; /* the id from font_load */
349 char *name; /* filename without path and extension */
350 int glyphs; /* how many glyphs to reserve room for */
352 static struct skin_font skinfonts[MAXUSERFONTS];
353 static int parse_font_load(struct skin_element *element,
354 struct wps_token *token,
355 struct wps_data *wps_data)
357 (void)wps_data; (void)token;
358 int id = element->params[0].data.number;
359 char *filename = element->params[1].data.text;
360 int glyphs;
361 char *ptr;
363 if(element->params_count > 2)
364 glyphs = element->params[2].data.number;
365 else
366 glyphs = GLYPHS_TO_CACHE;
367 #if defined(DEBUG) || defined(SIMULATOR)
368 if (skinfonts[id-FONT_FIRSTUSERFONT].name != NULL)
370 DEBUGF("font id %d already being used\n", id);
372 #endif
373 /* make sure the filename contains .fnt,
374 * we dont actually use it, but require it anyway */
375 ptr = strchr(filename, '.');
376 if (!ptr || strncmp(ptr, ".fnt", 4))
377 return WPS_ERROR_INVALID_PARAM;
378 skinfonts[id-FONT_FIRSTUSERFONT].id = -1;
379 skinfonts[id-FONT_FIRSTUSERFONT].name = filename;
380 skinfonts[id-FONT_FIRSTUSERFONT].glyphs = glyphs;
382 return 0;
386 #ifdef HAVE_LCD_BITMAP
388 static int parse_playlistview(struct skin_element *element,
389 struct wps_token *token,
390 struct wps_data *wps_data)
392 (void)wps_data;
393 struct playlistviewer *viewer =
394 (struct playlistviewer *)skin_buffer_alloc(sizeof(struct playlistviewer));
395 if (!viewer)
396 return WPS_ERROR_INVALID_PARAM;
397 viewer->vp = &curr_vp->vp;
398 viewer->show_icons = true;
399 viewer->start_offset = element->params[0].data.number;
400 viewer->line = element->params[1].data.code;
402 token->value.data = (void*)viewer;
404 return 0;
406 #endif
408 #if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
410 static int parse_viewportcolour(struct skin_element *element,
411 struct wps_token *token,
412 struct wps_data *wps_data)
414 (void)wps_data;
415 struct skin_tag_parameter *param = element->params;
416 struct viewport_colour *colour =
417 (struct viewport_colour *)skin_buffer_alloc(sizeof(struct viewport_colour));
418 if (!colour)
419 return -1;
420 if (isdefault(param))
422 colour->colour = get_viewport_default_colour(curr_screen,
423 token->type == SKIN_TOKEN_VIEWPORT_FGCOLOUR);
425 else
427 if (!parse_color(curr_screen, param->data.text, &colour->colour))
428 return -1;
430 colour->vp = &curr_vp->vp;
431 token->value.data = colour;
432 if (element->line == curr_viewport_element->line)
434 if (token->type == SKIN_TOKEN_VIEWPORT_FGCOLOUR)
436 curr_vp->start_fgcolour = colour->colour;
437 curr_vp->vp.fg_pattern = colour->colour;
439 else
441 curr_vp->start_bgcolour = colour->colour;
442 curr_vp->vp.bg_pattern = colour->colour;
445 return 0;
448 static int parse_image_special(struct skin_element *element,
449 struct wps_token *token,
450 struct wps_data *wps_data)
452 (void)wps_data; /* kill warning */
453 (void)token;
455 #if LCD_DEPTH > 1
456 char *filename;
457 if (token->type == SKIN_TOKEN_IMAGE_BACKDROP)
459 if (isdefault(&element->params[0]))
461 filename = "-";
463 else
465 filename = element->params[0].data.text;
466 /* format: %X(filename.bmp) or %X(d) */
467 if (!strcmp(filename, "d"))
468 filename = NULL;
470 wps_data->backdrop = filename;
472 #endif
474 return 0;
476 #endif
478 #endif /* HAVE_LCD_BITMAP */
480 static int parse_setting_and_lang(struct skin_element *element,
481 struct wps_token *token,
482 struct wps_data *wps_data)
484 /* NOTE: both the string validations that happen in here will
485 * automatically PASS on checkwps because its too hard to get
486 * settings_list.c and english.lang built for it.
487 * If that ever changes remove the #ifndef __PCTOOL__'s here
489 (void)wps_data;
490 char *temp = element->params[0].data.text;
491 int i;
493 if (token->type == SKIN_TOKEN_TRANSLATEDSTRING)
495 #ifndef __PCTOOL__
496 i = lang_english_to_id(temp);
497 if (i < 0)
498 return WPS_ERROR_INVALID_PARAM;
499 #endif
501 else
503 /* Find the setting */
504 for (i=0; i<nb_settings; i++)
505 if (settings[i].cfg_name &&
506 !strcmp(settings[i].cfg_name, temp))
507 break;
508 #ifndef __PCTOOL__
509 if (i == nb_settings)
510 return WPS_ERROR_INVALID_PARAM;
511 #endif
513 /* Store the setting number */
514 token->value.i = i;
515 return 0;
517 static int parse_logical_if(struct skin_element *element,
518 struct wps_token *token,
519 struct wps_data *wps_data)
521 (void)wps_data;
522 char *op = element->params[1].data.text;
523 struct logical_if *lif = skin_buffer_alloc(sizeof(struct logical_if));
524 if (!lif)
525 return -1;
526 token->value.data = lif;
527 lif->token = element->params[0].data.code->data;
529 if (!strncmp(op, "=", 1))
530 lif->op = IF_EQUALS;
531 else if (!strncmp(op, "!=", 2))
532 lif->op = IF_NOTEQUALS;
533 else if (!strncmp(op, ">=", 2))
534 lif->op = IF_GREATERTHAN_EQ;
535 else if (!strncmp(op, "<=", 2))
536 lif->op = IF_LESSTHAN_EQ;
537 else if (!strncmp(op, ">", 2))
538 lif->op = IF_GREATERTHAN;
539 else if (!strncmp(op, "<", 1))
540 lif->op = IF_LESSTHAN;
542 memcpy(&lif->operand, &element->params[2], sizeof(lif->operand));
543 if (element->params_count > 3)
544 lif->num_options = element->params[3].data.number;
545 else
546 lif->num_options = TOKEN_VALUE_ONLY;
547 return 0;
550 static int parse_timeout_tag(struct skin_element *element,
551 struct wps_token *token,
552 struct wps_data *wps_data)
554 (void)wps_data;
555 int val = 0;
556 if (element->params_count == 0)
558 switch (token->type)
560 case SKIN_TOKEN_SUBLINE_TIMEOUT:
561 return -1;
562 case SKIN_TOKEN_BUTTON_VOLUME:
563 case SKIN_TOKEN_TRACK_STARTING:
564 case SKIN_TOKEN_TRACK_ENDING:
565 case SKIN_TOKEN_LASTTOUCH:
566 val = 10;
567 break;
568 default:
569 break;
572 else
573 val = element->params[0].data.number;
574 token->value.i = val * TIMEOUT_UNIT;
575 return 0;
578 static int parse_progressbar_tag(struct skin_element* element,
579 struct wps_token *token,
580 struct wps_data *wps_data)
582 #ifdef HAVE_LCD_BITMAP
583 struct progressbar *pb;
584 struct viewport *vp = &curr_vp->vp;
585 struct skin_tag_parameter *param = element->params;
586 int curr_param = 0;
587 char *image_filename = NULL;
589 if (element->params_count == 0 &&
590 element->tag->type != SKIN_TOKEN_PROGRESSBAR)
591 return 0; /* nothing to do */
592 pb = (struct progressbar*)skin_buffer_alloc(sizeof(struct progressbar));
594 token->value.data = pb;
596 if (!pb)
597 return WPS_ERROR_INVALID_PARAM;
598 pb->vp = vp;
599 pb->follow_lang_direction = follow_lang_direction > 0;
600 pb->nofill = false;
601 pb->nobar = false;
602 pb->image = NULL;
603 pb->slider = NULL;
604 pb->invert_fill_direction = false;
605 pb->horizontal = true;
607 if (element->params_count == 0)
609 pb->x = 0;
610 pb->width = vp->width;
611 pb->height = SYSFONT_HEIGHT-2;
612 pb->y = -1; /* Will be computed during the rendering */
613 pb->type = element->tag->type;
614 return 0;
617 /* (x, y, width, height, ...) */
618 if (!isdefault(param))
619 pb->x = param->data.number;
620 else
621 pb->x = 0;
622 param++;
624 if (!isdefault(param))
625 pb->y = param->data.number;
626 else
627 pb->y = -1; /* computed at rendering */
628 param++;
630 if (!isdefault(param))
631 pb->width = param->data.number;
632 else
633 pb->width = vp->width - pb->x;
634 param++;
636 if (!isdefault(param))
638 /* A zero height makes no sense - reject it */
639 if (param->data.number == 0)
640 return WPS_ERROR_INVALID_PARAM;
642 pb->height = param->data.number;
644 else
646 if (vp->font > FONT_UI)
647 pb->height = -1; /* calculate at display time */
648 else
650 #ifndef __PCTOOL__
651 pb->height = font_get(vp->font)->height;
652 #else
653 pb->height = 8;
654 #endif
657 /* optional params, first is the image filename if it isnt recognised as a keyword */
659 curr_param = 4;
660 if (isdefault(&element->params[curr_param]))
662 param++;
663 curr_param++;
666 pb->horizontal = pb->width > pb->height;
667 while (curr_param < element->params_count)
669 param++;
670 if (!strcmp(param->data.text, "invert"))
671 pb->invert_fill_direction = true;
672 else if (!strcmp(param->data.text, "nofill"))
673 pb->nofill = true;
674 else if (!strcmp(param->data.text, "nobar"))
675 pb->nobar = true;
676 else if (!strcmp(param->data.text, "slider"))
678 if (curr_param+1 < element->params_count)
680 curr_param++;
681 param++;
682 pb->slider = find_image(param->data.text, wps_data);
684 else /* option needs the next param */
685 return -1;
687 else if (!strcmp(param->data.text, "image"))
689 if (curr_param+1 < element->params_count)
691 curr_param++;
692 param++;
693 image_filename = param->data.text;
696 else /* option needs the next param */
697 return -1;
699 else if (!strcmp(param->data.text, "vertical"))
701 pb->horizontal = false;
702 if (isdefault(&element->params[3]))
703 pb->height = vp->height - pb->y;
705 else if (!strcmp(param->data.text, "horizontal"))
706 pb->horizontal = true;
707 else if (curr_param == 4)
708 image_filename = param->data.text;
710 curr_param++;
713 if (image_filename)
715 pb->image = find_image(image_filename, wps_data);
716 if (!pb->image) /* load later */
718 struct gui_img* img = (struct gui_img*)skin_buffer_alloc(sizeof(struct gui_img));
719 if (!img)
720 return WPS_ERROR_INVALID_PARAM;
721 /* save a pointer to the filename */
722 img->bm.data = (char*)image_filename;
723 img->label = image_filename;
724 img->x = 0;
725 img->y = 0;
726 img->num_subimages = 1;
727 img->always_display = false;
728 img->display = -1;
729 img->using_preloaded_icons = false;
730 img->vp = &curr_vp->vp;
731 struct skin_token_list *item =
732 (struct skin_token_list *)new_skin_token_list_item(NULL, img);
733 if (!item)
734 return WPS_ERROR_INVALID_PARAM;
735 add_to_ll_chain(&wps_data->images, item);
736 pb->image = img;
741 if (token->type == SKIN_TOKEN_VOLUME)
742 token->type = SKIN_TOKEN_VOLUMEBAR;
743 else if (token->type == SKIN_TOKEN_BATTERY_PERCENT)
744 token->type = SKIN_TOKEN_BATTERY_PERCENTBAR;
745 else if (token->type == SKIN_TOKEN_TUNER_RSSI)
746 token->type = SKIN_TOKEN_TUNER_RSSI_BAR;
747 pb->type = token->type;
749 return 0;
751 #else
752 (void)element;
753 if (token->type == SKIN_TOKEN_PROGRESSBAR ||
754 token->type == SKIN_TOKEN_PLAYER_PROGRESSBAR)
756 wps_data->full_line_progressbar =
757 token->type == SKIN_TOKEN_PLAYER_PROGRESSBAR;
759 return 0;
761 #endif
764 #ifdef HAVE_ALBUMART
765 static int parse_albumart_load(struct skin_element* element,
766 struct wps_token *token,
767 struct wps_data *wps_data)
769 struct dim dimensions;
770 int albumart_slot;
771 bool swap_for_rtl = lang_is_rtl() && follow_lang_direction;
772 struct skin_albumart *aa =
773 (struct skin_albumart *)skin_buffer_alloc(sizeof(struct skin_albumart));
774 (void)token; /* silence warning */
775 if (!aa)
776 return -1;
778 /* reset albumart info in wps */
779 aa->width = -1;
780 aa->height = -1;
781 aa->xalign = WPS_ALBUMART_ALIGN_CENTER; /* default */
782 aa->yalign = WPS_ALBUMART_ALIGN_CENTER; /* default */
784 aa->x = element->params[0].data.number;
785 aa->y = element->params[1].data.number;
786 aa->width = element->params[2].data.number;
787 aa->height = element->params[3].data.number;
789 aa->vp = &curr_vp->vp;
790 aa->draw_handle = -1;
792 /* if we got here, we parsed everything ok .. ! */
793 if (aa->width < 0)
794 aa->width = 0;
795 else if (aa->width > LCD_WIDTH)
796 aa->width = LCD_WIDTH;
798 if (aa->height < 0)
799 aa->height = 0;
800 else if (aa->height > LCD_HEIGHT)
801 aa->height = LCD_HEIGHT;
803 if (swap_for_rtl)
804 aa->x = LCD_WIDTH - (aa->x + aa->width);
806 aa->state = WPS_ALBUMART_LOAD;
807 wps_data->albumart = aa;
809 dimensions.width = aa->width;
810 dimensions.height = aa->height;
812 albumart_slot = playback_claim_aa_slot(&dimensions);
814 if (0 <= albumart_slot)
815 wps_data->playback_aa_slot = albumart_slot;
817 if (element->params_count > 4 && !isdefault(&element->params[4]))
819 switch (*element->params[4].data.text)
821 case 'l':
822 case 'L':
823 if (swap_for_rtl)
824 aa->xalign = WPS_ALBUMART_ALIGN_RIGHT;
825 else
826 aa->xalign = WPS_ALBUMART_ALIGN_LEFT;
827 break;
828 case 'c':
829 case 'C':
830 aa->xalign = WPS_ALBUMART_ALIGN_CENTER;
831 break;
832 case 'r':
833 case 'R':
834 if (swap_for_rtl)
835 aa->xalign = WPS_ALBUMART_ALIGN_LEFT;
836 else
837 aa->xalign = WPS_ALBUMART_ALIGN_RIGHT;
838 break;
841 if (element->params_count > 5 && !isdefault(&element->params[5]))
843 switch (*element->params[5].data.text)
845 case 't':
846 case 'T':
847 aa->yalign = WPS_ALBUMART_ALIGN_TOP;
848 break;
849 case 'c':
850 case 'C':
851 aa->yalign = WPS_ALBUMART_ALIGN_CENTER;
852 break;
853 case 'b':
854 case 'B':
855 aa->yalign = WPS_ALBUMART_ALIGN_BOTTOM;
856 break;
859 return 0;
862 #endif /* HAVE_ALBUMART */
864 #ifdef HAVE_TOUCHSCREEN
866 struct touchaction {const char* s; int action;};
867 static const struct touchaction touchactions[] = {
868 /* generic actions, convert to screen actions on use */
869 {"prev", ACTION_STD_PREV }, {"next", ACTION_STD_NEXT },
870 {"rwd", ACTION_STD_PREVREPEAT }, {"ffwd", ACTION_STD_NEXTREPEAT },
871 {"hotkey", ACTION_STD_HOTKEY}, {"select", ACTION_STD_OK },
872 {"menu", ACTION_STD_MENU }, {"cancel", ACTION_STD_CANCEL },
873 {"contextmenu", ACTION_STD_CONTEXT},{"quickscreen", ACTION_STD_QUICKSCREEN },
875 /* list/tree actions */
876 { "resumeplayback", ACTION_TREE_WPS}, /* returns to previous music, WPS/FM */
877 /* not really WPS specific, but no equivilant ACTION_STD_* */
878 {"voldown", ACTION_WPS_VOLDOWN}, {"volup", ACTION_WPS_VOLUP},
880 /* generic settings changers */
881 {"setting_inc", ACTION_SETTINGS_INC}, {"setting_dec", ACTION_SETTINGS_DEC},
883 /* WPS specific actions */
884 {"browse", ACTION_WPS_BROWSE },
885 {"play", ACTION_WPS_PLAY }, {"stop", ACTION_WPS_STOP },
886 {"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE },
887 {"pitch", ACTION_WPS_PITCHSCREEN}, {"playlist", ACTION_WPS_VIEW_PLAYLIST },
889 #if CONFIG_TUNER
890 /* FM screen actions */
891 /* Also allow browse, play, stop from WPS codes */
892 {"mode", ACTION_FM_MODE }, {"record", ACTION_FM_RECORD },
893 {"presets", ACTION_FM_PRESET},
894 #endif
897 static int parse_touchregion(struct skin_element *element,
898 struct wps_token *token,
899 struct wps_data *wps_data)
901 (void)token;
902 unsigned i, imax;
903 struct touchregion *region = NULL;
904 const char *action;
905 const char pb_string[] = "progressbar";
906 const char vol_string[] = "volume";
907 char temp[20];
909 /* format: %T(x,y,width,height,action)
910 * if action starts with & the area must be held to happen
911 * action is one of:
912 * play - play/pause playback
913 * stop - stop playback, exit the wps
914 * prev - prev track
915 * next - next track
916 * ffwd - seek forward
917 * rwd - seek backwards
918 * menu - go back to the main menu
919 * browse - go back to the file/db browser
920 * shuffle - toggle shuffle mode
921 * repmode - cycle the repeat mode
922 * quickscreen - go into the quickscreen
923 * contextmenu - open the context menu
924 * playlist - go into the playlist
925 * pitch - go into the pitchscreen
926 * volup - increase volume by one step
927 * voldown - decrease volume by one step
931 region = (struct touchregion*)skin_buffer_alloc(sizeof(struct touchregion));
932 if (!region)
933 return WPS_ERROR_INVALID_PARAM;
935 /* should probably do some bounds checking here with the viewport... but later */
936 region->action = ACTION_NONE;
937 region->x = element->params[0].data.number;
938 region->y = element->params[1].data.number;
939 region->width = element->params[2].data.number;
940 region->height = element->params[3].data.number;
941 region->wvp = curr_vp;
942 region->armed = false;
943 region->reverse_bar = false;
944 region->extradata = NULL;
945 action = element->params[4].data.text;
947 strcpy(temp, action);
948 action = temp;
950 if (*action == '!')
952 region->reverse_bar = true;
953 action++;
956 if(!strcmp(pb_string, action))
957 region->type = WPS_TOUCHREGION_SCROLLBAR;
958 else if(!strcmp(vol_string, action))
959 region->type = WPS_TOUCHREGION_VOLUME;
960 else
962 region->type = WPS_TOUCHREGION_ACTION;
964 if (*action == '&')
966 action++;
967 region->repeat = true;
969 else
970 region->repeat = false;
972 imax = ARRAYLEN(touchactions);
973 for (i = 0; i < imax; i++)
975 /* try to match with one of our touchregion screens */
976 if (!strcmp(touchactions[i].s, action))
978 region->action = touchactions[i].action;
979 if (region->action == ACTION_SETTINGS_INC ||
980 region->action == ACTION_SETTINGS_DEC)
982 if (element->params_count < 6)
984 return WPS_ERROR_INVALID_PARAM;
986 else
988 char *name = element->params[5].data.text;
989 int j;
990 /* Find the setting */
991 for (j=0; j<nb_settings; j++)
992 if (settings[j].cfg_name &&
993 !strcmp(settings[j].cfg_name, name))
994 break;
995 if (j==nb_settings)
996 return WPS_ERROR_INVALID_PARAM;
997 region->extradata = (void*)&settings[j];
1000 break;
1003 if (region->action == ACTION_NONE)
1004 return WPS_ERROR_INVALID_PARAM;
1006 struct skin_token_list *item = new_skin_token_list_item(NULL, region);
1007 if (!item)
1008 return WPS_ERROR_INVALID_PARAM;
1009 add_to_ll_chain(&wps_data->touchregions, item);
1010 return 0;
1012 #endif
1014 static bool check_feature_tag(const int type)
1016 switch (type)
1018 case SKIN_TOKEN_RTC_PRESENT:
1019 #if CONFIG_RTC
1020 return true;
1021 #else
1022 return false;
1023 #endif
1024 case SKIN_TOKEN_HAVE_RECORDING:
1025 #ifdef HAVE_RECORDING
1026 return true;
1027 #else
1028 return false;
1029 #endif
1030 case SKIN_TOKEN_HAVE_TUNER:
1031 #if CONFIG_TUNER
1032 if (radio_hardware_present())
1033 return true;
1034 #endif
1035 return false;
1036 case SKIN_TOKEN_HAVE_TOUCH:
1037 #ifdef HAVE_TOUCHSCREEN
1038 return true;
1039 #else
1040 return false;
1041 #endif
1043 #if CONFIG_TUNER
1044 case SKIN_TOKEN_HAVE_RDS:
1045 #ifdef HAVE_RDS_CAP
1046 return true;
1047 #else
1048 return false;
1049 #endif /* HAVE_RDS_CAP */
1050 #endif /* CONFIG_TUNER */
1051 default: /* not a tag we care about, just don't skip */
1052 return true;
1057 * initial setup of wps_data; does reset everything
1058 * except fields which need to survive, i.e.
1061 static void skin_data_reset(struct wps_data *wps_data)
1063 wps_data->tree = NULL;
1064 #ifdef HAVE_LCD_BITMAP
1065 wps_data->images = NULL;
1066 #endif
1067 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
1068 if (wps_data->backdrop_id >= 0)
1069 skin_backdrop_unload(wps_data->backdrop_id);
1070 wps_data->backdrop = NULL;
1071 #endif
1072 #ifdef HAVE_TOUCHSCREEN
1073 wps_data->touchregions = NULL;
1074 #endif
1075 #ifdef HAVE_ALBUMART
1076 wps_data->albumart = NULL;
1077 if (wps_data->playback_aa_slot >= 0)
1079 playback_release_aa_slot(wps_data->playback_aa_slot);
1080 wps_data->playback_aa_slot = -1;
1082 #endif
1084 #ifdef HAVE_LCD_BITMAP
1085 wps_data->peak_meter_enabled = false;
1086 wps_data->wps_sb_tag = false;
1087 wps_data->show_sb_on_wps = false;
1088 #else /* HAVE_LCD_CHARCELLS */
1089 /* progress bars */
1090 int i;
1091 for (i = 0; i < 8; i++)
1093 wps_data->wps_progress_pat[i] = 0;
1095 wps_data->full_line_progressbar = false;
1096 #endif
1097 wps_data->wps_loaded = false;
1100 #ifdef HAVE_LCD_BITMAP
1101 static bool load_skin_bmp(struct wps_data *wps_data, struct bitmap *bitmap, char* bmpdir)
1103 (void)wps_data; /* only needed for remote targets */
1104 char img_path[MAX_PATH];
1105 int fd;
1106 get_image_filename(bitmap->data, bmpdir,
1107 img_path, sizeof(img_path));
1109 /* load the image */
1110 int format;
1111 #ifdef HAVE_REMOTE_LCD
1112 if (curr_screen == SCREEN_REMOTE)
1113 format = FORMAT_ANY|FORMAT_REMOTE;
1114 else
1115 #endif
1116 format = FORMAT_ANY|FORMAT_TRANSPARENT;
1118 fd = open(img_path, O_RDONLY);
1119 if (fd < 0)
1121 DEBUGF("Couldn't open %s\n", img_path);
1122 return false;
1124 size_t buf_size = read_bmp_fd(fd, bitmap, 0,
1125 format|FORMAT_RETURN_SIZE, NULL);
1126 char* imgbuf = (char*)skin_buffer_alloc(buf_size);
1127 if (!imgbuf)
1129 #ifndef APPLICATION
1130 DEBUGF("Not enough skin buffer: need %zd more.\n",
1131 buf_size - skin_buffer_freespace());
1132 #endif
1133 close(fd);
1134 return NULL;
1136 lseek(fd, 0, SEEK_SET);
1137 bitmap->data = imgbuf;
1138 int ret = read_bmp_fd(fd, bitmap, buf_size, format, NULL);
1140 close(fd);
1141 if (ret > 0)
1143 return true;
1145 else
1147 /* Abort if we can't load an image */
1148 DEBUGF("Couldn't load '%s'\n", img_path);
1149 return false;
1153 static bool load_skin_bitmaps(struct wps_data *wps_data, char *bmpdir)
1155 struct skin_token_list *list;
1156 bool retval = true; /* return false if a single image failed to load */
1158 /* regular images */
1159 list = wps_data->images;
1160 while (list)
1162 struct gui_img *img = (struct gui_img*)list->token->value.data;
1163 if (img->bm.data)
1165 if (img->using_preloaded_icons)
1167 img->loaded = true;
1168 list->token->type = SKIN_TOKEN_IMAGE_DISPLAY_LISTICON;
1170 else
1172 img->loaded = load_skin_bmp(wps_data, &img->bm, bmpdir);
1173 if (img->loaded)
1174 img->subimage_height = img->bm.height / img->num_subimages;
1175 else
1176 retval = false;
1179 list = list->next;
1182 #if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
1183 wps_data->backdrop_id = skin_backdrop_assign(wps_data->backdrop, bmpdir, curr_screen);
1184 #endif /* has backdrop support */
1185 return retval;
1188 static bool skin_load_fonts(struct wps_data *data)
1190 /* don't spit out after the first failue to aid debugging */
1191 bool success = true;
1192 struct skin_element *vp_list;
1193 int font_id;
1194 /* walk though each viewport and assign its font */
1195 for(vp_list = data->tree; vp_list; vp_list = vp_list->next)
1197 /* first, find the viewports that have a non-sys/ui-font font */
1198 struct skin_viewport *skin_vp =
1199 (struct skin_viewport*)vp_list->data;
1200 struct viewport *vp = &skin_vp->vp;
1203 if (vp->font <= FONT_UI)
1204 { /* the usual case -> built-in fonts */
1205 #ifdef HAVE_REMOTE_LCD
1206 if (vp->font == FONT_UI)
1207 vp->font += curr_screen;
1208 #endif
1209 continue;
1211 font_id = vp->font;
1213 /* now find the corresponding skin_font */
1214 struct skin_font *font = &skinfonts[font_id-FONT_FIRSTUSERFONT];
1215 if (!font->name)
1217 if (success)
1219 DEBUGF("font %d not specified\n", font_id);
1221 success = false;
1222 continue;
1225 /* load the font - will handle loading the same font again if
1226 * multiple viewports use the same */
1227 if (font->id < 0)
1229 char *dot = strchr(font->name, '.');
1230 *dot = '\0';
1231 font->id = skin_font_load(font->name,
1232 skinfonts[font_id-FONT_FIRSTUSERFONT].glyphs);
1235 if (font->id < 0)
1237 DEBUGF("Unable to load font %d: '%s.fnt'\n",
1238 font_id, font->name);
1239 font->name = NULL; /* to stop trying to load it again if we fail */
1240 success = false;
1241 font->name = NULL;
1242 continue;
1245 /* finally, assign the font_id to the viewport */
1246 vp->font = font->id;
1248 return success;
1251 #endif /* HAVE_LCD_BITMAP */
1252 static int convert_viewport(struct wps_data *data, struct skin_element* element)
1254 struct skin_viewport *skin_vp =
1255 (struct skin_viewport *)skin_buffer_alloc(sizeof(struct skin_viewport));
1256 struct screen *display = &screens[curr_screen];
1258 if (!skin_vp)
1259 return CALLBACK_ERROR;
1261 skin_vp->hidden_flags = 0;
1262 skin_vp->label = NULL;
1263 skin_vp->is_infovp = false;
1264 element->data = skin_vp;
1265 curr_vp = skin_vp;
1266 curr_viewport_element = element;
1268 viewport_set_defaults(&skin_vp->vp, curr_screen);
1269 #ifdef HAVE_REMOTE_LCD
1270 /* viewport_set_defaults() sets the font to FONT_UI+curr_screen.
1271 * This parser requires font 1 to always be the UI font,
1272 * so force it back to FONT_UI and handle the screen number at the end */
1273 skin_vp->vp.font = FONT_UI;
1274 #endif
1276 #if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
1277 skin_vp->start_fgcolour = skin_vp->vp.fg_pattern;
1278 skin_vp->start_bgcolour = skin_vp->vp.bg_pattern;
1279 #endif
1282 struct skin_tag_parameter *param = element->params;
1283 if (element->params_count == 0) /* default viewport */
1285 if (!data->tree) /* first viewport in the skin */
1286 data->tree = element;
1287 skin_vp->label = VP_DEFAULT_LABEL;
1288 return CALLBACK_OK;
1291 if (element->params_count == 6)
1293 if (element->tag->type == SKIN_TOKEN_UIVIEWPORT_LOAD)
1295 skin_vp->is_infovp = true;
1296 if (isdefault(param))
1298 skin_vp->hidden_flags = VP_NEVER_VISIBLE;
1299 skin_vp->label = VP_DEFAULT_LABEL;
1301 else
1303 skin_vp->hidden_flags = VP_NEVER_VISIBLE;
1304 skin_vp->label = param->data.text;
1307 else
1309 skin_vp->hidden_flags = VP_DRAW_HIDEABLE|VP_DRAW_HIDDEN;
1310 skin_vp->label = param->data.text;
1312 param++;
1314 /* x */
1315 if (!isdefault(param))
1317 skin_vp->vp.x = param->data.number;
1318 if (param->data.number < 0)
1319 skin_vp->vp.x += display->lcdwidth;
1321 param++;
1322 /* y */
1323 if (!isdefault(param))
1325 skin_vp->vp.y = param->data.number;
1326 if (param->data.number < 0)
1327 skin_vp->vp.y += display->lcdheight;
1329 param++;
1330 /* width */
1331 if (!isdefault(param))
1333 skin_vp->vp.width = param->data.number;
1334 if (param->data.number < 0)
1335 skin_vp->vp.width = (skin_vp->vp.width + display->lcdwidth) - skin_vp->vp.x;
1337 else
1339 skin_vp->vp.width = display->lcdwidth - skin_vp->vp.x;
1341 param++;
1342 /* height */
1343 if (!isdefault(param))
1345 skin_vp->vp.height = param->data.number;
1346 if (param->data.number < 0)
1347 skin_vp->vp.height = (skin_vp->vp.height + display->lcdheight) - skin_vp->vp.y;
1349 else
1351 skin_vp->vp.height = display->lcdheight - skin_vp->vp.y;
1353 param++;
1354 #ifdef HAVE_LCD_BITMAP
1355 /* font */
1356 if (!isdefault(param))
1358 skin_vp->vp.font = param->data.number;
1360 #endif
1361 if ((unsigned) skin_vp->vp.x >= (unsigned) display->lcdwidth ||
1362 skin_vp->vp.width + skin_vp->vp.x > display->lcdwidth ||
1363 (unsigned) skin_vp->vp.y >= (unsigned) display->lcdheight ||
1364 skin_vp->vp.height + skin_vp->vp.y > display->lcdheight)
1365 return CALLBACK_ERROR;
1367 return CALLBACK_OK;
1370 static int skin_element_callback(struct skin_element* element, void* data)
1372 struct wps_data *wps_data = (struct wps_data *)data;
1373 struct wps_token *token;
1374 parse_function function = NULL;
1376 switch (element->type)
1378 /* IMPORTANT: element params are shared, so copy them if needed
1379 * or use then NOW, dont presume they have a long lifespan
1381 case TAG:
1383 token = (struct wps_token*)skin_buffer_alloc(sizeof(struct wps_token));
1384 memset(token, 0, sizeof(*token));
1385 token->type = element->tag->type;
1387 if (element->tag->flags&SKIN_RTC_REFRESH)
1389 #if CONFIG_RTC
1390 curr_line->update_mode |= SKIN_REFRESH_DYNAMIC;
1391 #else
1392 curr_line->update_mode |= SKIN_REFRESH_STATIC;
1393 #endif
1395 else
1396 curr_line->update_mode |= element->tag->flags&SKIN_REFRESH_ALL;
1398 element->data = token;
1400 /* Some tags need special handling for the tag, so add them here */
1401 switch (token->type)
1403 case SKIN_TOKEN_ALIGN_LANGDIRECTION:
1404 follow_lang_direction = 2;
1405 break;
1406 case SKIN_TOKEN_LOGICAL_IF:
1407 function = parse_logical_if;
1408 break;
1409 case SKIN_TOKEN_PROGRESSBAR:
1410 case SKIN_TOKEN_VOLUME:
1411 case SKIN_TOKEN_BATTERY_PERCENT:
1412 case SKIN_TOKEN_PLAYER_PROGRESSBAR:
1413 #ifdef HAVE_RADIO_RSSI
1414 case SKIN_TOKEN_TUNER_RSSI:
1415 #endif
1416 function = parse_progressbar_tag;
1417 break;
1418 case SKIN_TOKEN_SUBLINE_TIMEOUT:
1419 case SKIN_TOKEN_BUTTON_VOLUME:
1420 case SKIN_TOKEN_TRACK_STARTING:
1421 case SKIN_TOKEN_TRACK_ENDING:
1422 case SKIN_TOKEN_LASTTOUCH:
1423 function = parse_timeout_tag;
1424 break;
1425 #ifdef HAVE_LCD_BITMAP
1426 case SKIN_TOKEN_DISABLE_THEME:
1427 case SKIN_TOKEN_ENABLE_THEME:
1428 case SKIN_TOKEN_DRAW_INBUILTBAR:
1429 function = parse_statusbar_tags;
1430 break;
1431 case SKIN_TOKEN_LIST_TITLE_TEXT:
1432 #ifndef __PCTOOL__
1433 sb_skin_has_title(curr_screen);
1434 #endif
1435 break;
1436 #endif
1437 case SKIN_TOKEN_FILE_DIRECTORY:
1438 token->value.i = element->params[0].data.number;
1439 break;
1440 #if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
1441 case SKIN_TOKEN_VIEWPORT_FGCOLOUR:
1442 case SKIN_TOKEN_VIEWPORT_BGCOLOUR:
1443 function = parse_viewportcolour;
1444 break;
1445 case SKIN_TOKEN_IMAGE_BACKDROP:
1446 function = parse_image_special;
1447 break;
1448 #endif
1449 case SKIN_TOKEN_TRANSLATEDSTRING:
1450 case SKIN_TOKEN_SETTING:
1451 function = parse_setting_and_lang;
1452 break;
1453 #ifdef HAVE_LCD_BITMAP
1454 case SKIN_TOKEN_VIEWPORT_CUSTOMLIST:
1455 function = parse_playlistview;
1456 break;
1457 case SKIN_TOKEN_LOAD_FONT:
1458 function = parse_font_load;
1459 break;
1460 case SKIN_TOKEN_VIEWPORT_ENABLE:
1461 case SKIN_TOKEN_UIVIEWPORT_ENABLE:
1462 token->value.data = element->params[0].data.text;
1463 break;
1464 case SKIN_TOKEN_IMAGE_PRELOAD_DISPLAY:
1465 function = parse_image_display;
1466 break;
1467 case SKIN_TOKEN_IMAGE_PRELOAD:
1468 case SKIN_TOKEN_IMAGE_DISPLAY:
1469 function = parse_image_load;
1470 break;
1471 #endif
1472 #ifdef HAVE_TOUCHSCREEN
1473 case SKIN_TOKEN_TOUCHREGION:
1474 function = parse_touchregion;
1475 break;
1476 #endif
1477 #ifdef HAVE_ALBUMART
1478 case SKIN_TOKEN_ALBUMART_DISPLAY:
1479 if (wps_data->albumart)
1480 wps_data->albumart->vp = &curr_vp->vp;
1481 break;
1482 case SKIN_TOKEN_ALBUMART_LOAD:
1483 function = parse_albumart_load;
1484 break;
1485 #endif
1486 default:
1487 break;
1489 if (function)
1491 if (function(element, token, wps_data) < 0)
1492 return CALLBACK_ERROR;
1494 /* tags that start with 'F', 'I' or 'D' are for the next file */
1495 if ( *(element->tag->name) == 'I' || *(element->tag->name) == 'F' ||
1496 *(element->tag->name) == 'D')
1497 token->next = true;
1498 if (follow_lang_direction > 0 )
1499 follow_lang_direction--;
1500 break;
1502 case VIEWPORT:
1503 return convert_viewport(wps_data, element);
1504 case LINE:
1506 struct line *line =
1507 (struct line *)skin_buffer_alloc(sizeof(struct line));
1508 line->update_mode = SKIN_REFRESH_STATIC;
1509 curr_line = line;
1510 element->data = line;
1512 break;
1513 case LINE_ALTERNATOR:
1515 struct line_alternator *alternator =
1516 (struct line_alternator *)skin_buffer_alloc(sizeof(struct line_alternator));
1517 alternator->current_line = 0;
1518 #ifndef __PCTOOL__
1519 alternator->next_change_tick = current_tick;
1520 #endif
1521 element->data = alternator;
1523 break;
1524 case CONDITIONAL:
1526 struct conditional *conditional =
1527 (struct conditional *)skin_buffer_alloc(sizeof(struct conditional));
1528 conditional->last_value = -1;
1529 conditional->token = element->data;
1530 element->data = conditional;
1531 if (!check_feature_tag(element->tag->type))
1533 return FEATURE_NOT_AVAILABLE;
1535 return CALLBACK_OK;
1537 case TEXT:
1538 curr_line->update_mode |= SKIN_REFRESH_STATIC;
1539 break;
1540 default:
1541 break;
1543 return CALLBACK_OK;
1546 /* to setup up the wps-data from a format-buffer (isfile = false)
1547 from a (wps-)file (isfile = true)*/
1548 bool skin_data_load(enum screen_type screen, struct wps_data *wps_data,
1549 const char *buf, bool isfile)
1551 char *wps_buffer = NULL;
1552 if (!wps_data || !buf)
1553 return false;
1554 #ifdef HAVE_ALBUMART
1555 int status;
1556 struct mp3entry *curtrack;
1557 long offset;
1558 struct skin_albumart old_aa = {.state = WPS_ALBUMART_NONE};
1559 if (wps_data->albumart)
1561 old_aa.state = wps_data->albumart->state;
1562 old_aa.height = wps_data->albumart->height;
1563 old_aa.width = wps_data->albumart->width;
1565 #endif
1566 #ifdef HAVE_LCD_BITMAP
1567 int i;
1568 for (i=0;i<MAXUSERFONTS;i++)
1570 skinfonts[i].id = -1;
1571 skinfonts[i].name = NULL;
1573 #endif
1574 #ifdef DEBUG_SKIN_ENGINE
1575 if (isfile && debug_wps)
1577 DEBUGF("\n=====================\nLoading '%s'\n=====================\n", buf);
1579 #endif
1582 skin_data_reset(wps_data);
1583 wps_data->wps_loaded = false;
1584 curr_screen = screen;
1585 curr_line = NULL;
1586 curr_vp = NULL;
1587 curr_viewport_element = NULL;
1589 if (isfile)
1591 int fd = open_utf8(buf, O_RDONLY);
1593 if (fd < 0)
1594 return false;
1596 /* get buffer space from the plugin buffer */
1597 size_t buffersize = 0;
1598 wps_buffer = (char *)plugin_get_buffer(&buffersize);
1600 if (!wps_buffer)
1601 return false;
1603 /* copy the file's content to the buffer for parsing,
1604 ensuring that every line ends with a newline char. */
1605 unsigned int start = 0;
1606 while(read_line(fd, wps_buffer + start, buffersize - start) > 0)
1608 start += strlen(wps_buffer + start);
1609 if (start < buffersize - 1)
1611 wps_buffer[start++] = '\n';
1612 wps_buffer[start] = 0;
1615 close(fd);
1616 if (start <= 0)
1617 return false;
1619 else
1621 wps_buffer = (char*)buf;
1623 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
1624 wps_data->backdrop = "-";
1625 wps_data->backdrop_id = -1;
1626 #endif
1627 /* parse the skin source */
1628 #ifndef APPLICATION
1629 skin_buffer_save_position();
1630 #endif
1631 wps_data->tree = skin_parse(wps_buffer, skin_element_callback, wps_data);
1632 if (!wps_data->tree) {
1633 skin_data_reset(wps_data);
1634 #ifndef APPLICATION
1635 skin_buffer_restore_position();
1636 #endif
1637 return false;
1640 #ifdef HAVE_LCD_BITMAP
1641 char bmpdir[MAX_PATH];
1642 if (isfile)
1644 /* get the bitmap dir */
1645 char *dot = strrchr(buf, '.');
1646 strlcpy(bmpdir, buf, dot - buf + 1);
1648 else
1650 snprintf(bmpdir, MAX_PATH, "%s", BACKDROP_DIR);
1652 /* load the bitmaps that were found by the parsing */
1653 if (!load_skin_bitmaps(wps_data, bmpdir) ||
1654 !skin_load_fonts(wps_data))
1656 skin_data_reset(wps_data);
1657 #ifndef APPLICATION
1658 skin_buffer_restore_position();
1659 #endif
1660 return false;
1662 #endif
1663 #if defined(HAVE_ALBUMART) && !defined(__PCTOOL__)
1664 status = audio_status();
1665 if (status & AUDIO_STATUS_PLAY)
1667 struct skin_albumart *aa = wps_data->albumart;
1668 if (aa && ((aa->state && !old_aa.state) ||
1669 (aa->state &&
1670 (((old_aa.height != aa->height) ||
1671 (old_aa.width != aa->width))))))
1673 curtrack = audio_current_track();
1674 offset = curtrack->offset;
1675 audio_stop();
1676 if (!(status & AUDIO_STATUS_PAUSE))
1677 audio_play(offset);
1680 #endif
1681 wps_data->wps_loaded = true;
1682 #ifdef DEBUG_SKIN_ENGINE
1683 // if (isfile && debug_wps)
1684 // debug_skin_usage();
1685 #endif
1686 return true;