Build doom on clipv2 and clip+
[kugel-rb.git] / apps / radio / radioart.c
blob7ba9881d84d57b35f93b3a4207c26e1338531235
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Jonathan Gordon
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "config.h"
23 #include <stdio.h>
24 #include <stdbool.h>
25 #include <stdlib.h>
26 #include "settings.h"
27 #include "radio.h"
28 #include "buffering.h"
29 #include "file.h"
30 #include "kernel.h"
31 #include "string-extra.h"
32 #include "misc.h"
34 #define MAX_RADIOART_IMAGES 10
35 struct radioart {
36 int handle;
37 long last_tick;
38 struct dim dim;
39 char name[MAX_FMPRESET_LEN+1];
42 static struct radioart radioart[MAX_RADIOART_IMAGES];
43 #ifdef HAVE_RECORDING
44 static bool allow_buffer_access = true; /* If we are recording dont touch the buffers! */
45 #endif
46 static int find_oldest_image(void)
48 int i;
49 long oldest_tick = radioart[0].last_tick;
50 int oldest_idx = 0;
51 for(i=1;i<MAX_RADIOART_IMAGES;i++)
53 if (radioart[i].last_tick < oldest_tick)
55 oldest_tick = radioart[i].last_tick;
56 oldest_idx = i;
59 return oldest_idx;
61 static int load_radioart_image(struct radioart *ra, const char* preset_name,
62 struct dim *dim)
64 char path[MAX_PATH];
65 #ifndef HAVE_NOISY_IDLE_MODE
66 cpu_idle_mode(false);
67 #endif
68 snprintf(path, sizeof(path), FMPRESET_PATH "/%s.bmp",preset_name);
69 if (!file_exists(path))
70 snprintf(path, sizeof(path), FMPRESET_PATH "/%s.jpg",preset_name);
71 if (!file_exists(path))
73 #ifndef HAVE_NOISY_IDLE_MODE
74 cpu_idle_mode(true);
75 #endif
76 return -1;
78 strlcpy(ra->name, preset_name, MAX_FMPRESET_LEN+1);
79 ra->dim.height = dim->height;
80 ra->dim.width = dim->width;
81 ra->last_tick = current_tick;
82 ra->handle = bufopen(path, 0, TYPE_BITMAP, &ra->dim);
83 if (ra->handle == ERR_BUFFER_FULL)
85 int i = find_oldest_image();
86 bufclose(i);
87 ra->handle = bufopen(path, 0, TYPE_BITMAP, &ra->dim);
89 #ifndef HAVE_NOISY_IDLE_MODE
90 cpu_idle_mode(true);
91 #endif
92 return ra->handle;
94 int radio_get_art_hid(struct dim *requested_dim)
96 int preset = radio_current_preset();
97 int i, free_idx = -1;
98 const char* preset_name;
99 if (radio_scan_mode() || preset < 0)
100 return -1;
101 #ifdef HAVE_RECORDING
102 if (!allow_buffer_access)
103 return -1;
104 #endif
105 preset_name = radio_get_preset_name(preset);
106 for(i=0;i<MAX_RADIOART_IMAGES;i++)
108 if (radioart[i].handle < 0)
110 free_idx = i;
112 else if (!strcmp(radioart[i].name, preset_name) &&
113 radioart[i].dim.width == requested_dim->width &&
114 radioart[i].dim.height == requested_dim->height)
116 radioart[i].last_tick = current_tick;
117 return radioart[i].handle;
120 if (free_idx >= 0)
122 return load_radioart_image(&radioart[free_idx],
123 preset_name, requested_dim);
125 else
127 int i = find_oldest_image();
128 bufclose(radioart[i].handle);
129 return load_radioart_image(&radioart[i],
130 preset_name, requested_dim);
133 return -1;
135 static void playback_restarting_handler(void *data)
137 (void)data;
138 int i;
139 for(i=0;i<MAX_RADIOART_IMAGES;i++)
141 if (radioart[i].handle >= 0)
142 bufclose(radioart[i].handle);
143 radioart[i].handle = -1;
144 radioart[i].name[0] = '\0';
147 #ifdef HAVE_RECORDING
148 static void recording_started_handler(void *data)
150 (void)data;
151 allow_buffer_access = false;
152 playback_restarting_handler(NULL);
154 static void recording_stopped_handler(void *data)
156 (void)data;
157 allow_buffer_access = true;
159 #endif
161 void radioart_init(bool entering_screen)
163 int i;
164 if (entering_screen)
166 for(i=0;i<MAX_RADIOART_IMAGES;i++)
168 radioart[i].handle = -1;
169 radioart[i].name[0] = '\0';
171 add_event(PLAYBACK_EVENT_START_PLAYBACK, true, playback_restarting_handler);
173 else
175 #if defined(HAVE_RECORDING)
176 add_event(RECORDING_EVENT_START, false, recording_started_handler);
177 add_event(RECORDING_EVENT_STOP, false, recording_stopped_handler);
178 #endif