Don't objcopy simulator plugins.
[kugel-rb.git] / apps / plugins / test_fps.c
blob6d347738b746c72aab807e4a31e5c66254c38c6c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Peter D'Hoye
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 ****************************************************************************/
21 #include "plugin.h"
22 #include "lib/helper.h"
23 #include "lib/grey.h"
25 #ifdef HAVE_LCD_BITMAP
27 PLUGIN_IRAM_DECLARE
29 #if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
30 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
31 #define FPS_QUIT BUTTON_MENU
32 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
33 #define FPS_QUIT BUTTON_RC_REC
34 #elif defined(BUTTON_OFF)
35 #define FPS_QUIT BUTTON_OFF
36 #else
37 #define FPS_QUIT BUTTON_POWER
38 #endif
40 #define DURATION (2*HZ) /* longer duration gives more precise results */
42 PLUGIN_HEADER
44 static const struct plugin_api* rb;
46 /* Screen logging */
47 static int line;
48 static int max_line;
49 #ifdef HAVE_REMOTE_LCD
50 static int remote_line;
51 static int remote_max_line;
52 #endif
53 #if LCD_DEPTH < 4
54 static unsigned char *gbuf;
55 static size_t gbuf_size;
56 #endif
58 static void log_init(void)
60 int h;
62 rb->lcd_getstringsize("A", NULL, &h);
63 max_line = LCD_HEIGHT / h;
64 line = 0;
65 rb->lcd_clear_display();
66 rb->lcd_update();
67 #ifdef HAVE_REMOTE_LCD
68 rb->lcd_remote_getstringsize("A", NULL, &h);
69 remote_max_line = LCD_REMOTE_HEIGHT / h;
70 remote_line = 0;
71 rb->lcd_remote_clear_display();
72 rb->lcd_remote_update();
73 #endif
76 static void log_text(char *text)
78 rb->lcd_puts(0, line, text);
79 if (++line >= max_line)
80 line = 0;
81 rb->lcd_update();
82 #ifdef HAVE_REMOTE_LCD
83 rb->lcd_remote_puts(0, remote_line, text);
84 if (++remote_line >= remote_max_line)
85 remote_line = 0;
86 rb->lcd_remote_update();
87 #endif
90 static int calc_tenth_fps(int framecount, long ticks)
92 return (10*HZ) * framecount / ticks;
95 static void time_main_update(void)
97 char str[32]; /* text buffer */
98 long time_start; /* start tickcount */
99 long time_end; /* end tickcount */
100 int frame_count;
101 int fps;
103 const int part14_x = LCD_WIDTH/4; /* x-offset for 1/4 update test */
104 const int part14_w = LCD_WIDTH/2; /* x-size for 1/4 update test */
105 const int part14_y = LCD_HEIGHT/4; /* y-offset for 1/4 update test */
106 const int part14_h = LCD_HEIGHT/2; /* y-size for 1/4 update test */
108 /* Test 1: full LCD update */
109 frame_count = 0;
110 rb->sleep(0); /* sync to tick */
111 time_start = *rb->current_tick;
112 while((time_end = *rb->current_tick) - time_start < DURATION)
114 rb->lcd_update();
115 frame_count++;
117 fps = calc_tenth_fps(frame_count, time_end - time_start);
118 rb->snprintf(str, sizeof(str), "1/1: %d.%d fps", fps / 10, fps % 10);
119 log_text(str);
121 /* Test 2: quarter LCD update */
122 frame_count = 0;
123 rb->sleep(0); /* sync to tick */
124 time_start = *rb->current_tick;
125 while((time_end = *rb->current_tick) - time_start < DURATION)
127 rb->lcd_update_rect(part14_x, part14_y, part14_w, part14_h);
128 frame_count++;
130 fps = calc_tenth_fps(frame_count, time_end - time_start);
131 rb->snprintf(str, sizeof(str), "1/4: %d.%d fps", fps / 10, fps % 10);
132 log_text(str);
135 #ifdef HAVE_LCD_COLOR
137 #if LCD_WIDTH >= LCD_HEIGHT
138 #define YUV_WIDTH LCD_WIDTH
139 #define YUV_HEIGHT LCD_HEIGHT
140 #else /* Assume the screen is rotated on portrait LCDs */
141 #define YUV_WIDTH LCD_HEIGHT
142 #define YUV_HEIGHT LCD_WIDTH
143 #endif
145 static unsigned char ydata[YUV_HEIGHT][YUV_WIDTH];
146 static unsigned char udata[YUV_HEIGHT/2][YUV_WIDTH/2];
147 static unsigned char vdata[YUV_HEIGHT/2][YUV_WIDTH/2];
149 static unsigned char * const yuvbuf[3] = {
150 (void*)ydata,
151 (void*)udata,
152 (void*)vdata
155 static void make_gradient_rect(int width, int height)
157 unsigned char vline[YUV_WIDTH/2];
158 int x, y;
160 width /= 2;
161 height /= 2;
163 for (x = 0; x < width; x++)
164 vline[x] = (x << 8) / width;
165 for (y = 0; y < height; y++)
167 rb->memset(udata[y], (y << 8) / height, width);
168 rb->memcpy(vdata[y], vline, width);
172 static void time_main_yuv(void)
174 char str[32]; /* text buffer */
175 long time_start; /* start tickcount */
176 long time_end; /* end tickcount */
177 int frame_count;
178 int fps;
180 const int part14_x = YUV_WIDTH/4; /* x-offset for 1/4 update test */
181 const int part14_w = YUV_WIDTH/2; /* x-size for 1/4 update test */
182 const int part14_y = YUV_HEIGHT/4; /* y-offset for 1/4 update test */
183 const int part14_h = YUV_HEIGHT/2; /* y-size for 1/4 update test */
185 rb->memset(ydata, 128, sizeof(ydata)); /* medium grey */
187 /* Test 1: full LCD update */
188 make_gradient_rect(YUV_WIDTH, YUV_HEIGHT);
190 frame_count = 0;
191 rb->sleep(0); /* sync to tick */
192 time_start = *rb->current_tick;
193 while((time_end = *rb->current_tick) - time_start < DURATION)
195 rb->lcd_blit_yuv(yuvbuf, 0, 0, YUV_WIDTH,
196 0, 0, YUV_WIDTH, YUV_HEIGHT);
197 frame_count++;
199 fps = calc_tenth_fps(frame_count, time_end - time_start);
200 rb->snprintf(str, sizeof(str), "1/1: %d.%d fps", fps / 10, fps % 10);
201 log_text(str);
203 /* Test 2: quarter LCD update */
204 make_gradient_rect(YUV_WIDTH/2, YUV_HEIGHT/2);
206 frame_count = 0;
207 rb->sleep(0); /* sync to tick */
208 time_start = *rb->current_tick;
209 while((time_end = *rb->current_tick) - time_start < DURATION)
211 rb->lcd_blit_yuv(yuvbuf, 0, 0, YUV_WIDTH,
212 part14_x, part14_y, part14_w, part14_h);
213 frame_count++;
215 fps = calc_tenth_fps(frame_count, time_end - time_start);
216 rb->snprintf(str, sizeof(str), "1/4: %d.%d fps", fps / 10, fps % 10);
217 log_text(str);
219 #endif
221 #ifdef HAVE_REMOTE_LCD
222 static void time_remote_update(void)
224 char str[32]; /* text buffer */
225 long time_start; /* start tickcount */
226 long time_end; /* end tickcount */
227 int frame_count;
228 int fps;
230 const int part14_x = LCD_REMOTE_WIDTH/4; /* x-offset for 1/4 update test */
231 const int part14_w = LCD_REMOTE_WIDTH/2; /* x-size for 1/4 update test */
232 const int part14_y = LCD_REMOTE_HEIGHT/4; /* y-offset for 1/4 update test */
233 const int part14_h = LCD_REMOTE_HEIGHT/2; /* y-size for 1/4 update test */
235 /* Test 1: full LCD update */
236 frame_count = 0;
237 rb->sleep(0); /* sync to tick */
238 time_start = *rb->current_tick;
239 while((time_end = *rb->current_tick) - time_start < DURATION)
241 rb->lcd_remote_update();
242 frame_count++;
244 fps = calc_tenth_fps(frame_count, time_end - time_start);
245 rb->snprintf(str, sizeof(str), "1/1: %d.%d fps", fps / 10, fps % 10);
246 log_text(str);
248 /* Test 2: quarter LCD update */
249 frame_count = 0;
250 rb->sleep(0); /* sync to tick */
251 time_start = *rb->current_tick;
252 while((time_end = *rb->current_tick) - time_start < DURATION)
254 rb->lcd_remote_update_rect(part14_x, part14_y, part14_w, part14_h);
255 frame_count++;
257 fps = calc_tenth_fps(frame_count, time_end - time_start);
258 rb->snprintf(str, sizeof(str), "1/4: %d.%d fps", fps / 10, fps % 10);
259 log_text(str);
261 #endif
263 #if LCD_DEPTH < 4
265 GREY_INFO_STRUCT_IRAM
266 static unsigned char greydata[LCD_HEIGHT][LCD_WIDTH];
268 static void make_grey_rect(int width, int height)
270 unsigned char vline[LCD_WIDTH];
271 int x, y;
273 for (x = 0; x < width; x++)
274 vline[x] = (x << 8) / width;
275 for (y = 0; y < height; y++)
276 rb->memcpy(greydata[y], vline, width);
279 static void time_greyscale(void)
281 char str[32]; /* text buffer */
282 long time_start; /* start tickcount */
283 long time_end; /* end tickcount */
284 long time_1, time_2;
285 int frames_1, frames_2;
286 int fps, load;
288 gbuf = (unsigned char *) rb->plugin_get_buffer(&gbuf_size);
289 if (!grey_init(rb, gbuf, gbuf_size, GREY_ON_COP,
290 LCD_WIDTH, LCD_HEIGHT, NULL))
292 log_text("greylib: out of memory.");
293 return;
295 make_grey_rect(LCD_WIDTH, LCD_HEIGHT);
297 /* Test 1 - greyscale overlay not yet enabled */
298 frames_1 = 0;
299 rb->sleep(0); /* sync to tick */
300 time_start = *rb->current_tick;
301 while((time_end = *rb->current_tick) - time_start < DURATION)
303 grey_ub_gray_bitmap(greydata[0], 0, 0, LCD_WIDTH, LCD_HEIGHT);
304 frames_1++;
306 time_1 = time_end - time_start;
308 /* Test 2 - greyscale overlay enabled */
309 grey_show(true);
310 frames_2 = 0;
311 rb->sleep(0); /* sync to tick */
312 time_start = *rb->current_tick;
313 while((time_end = *rb->current_tick) - time_start < DURATION)
315 grey_ub_gray_bitmap(greydata[0], 0, 0, LCD_WIDTH, LCD_HEIGHT);
316 frames_2++;
318 time_2 = time_end - time_start;
320 grey_release();
321 fps = calc_tenth_fps(frames_2, time_2);
322 load = 100 - (100 * frames_2 * time_1) / (frames_1 * time_2);
323 rb->snprintf(str, sizeof(str), "1/1: %d.%d fps", fps / 10, fps % 10);
324 log_text(str);
326 if (load > 0 && load < 100)
328 rb->snprintf(str, sizeof(str), "CPU load: %d%%", load);
329 log_text(str);
331 else
332 log_text("CPU load err (boost?)");
334 #endif
336 /* plugin entry point */
337 enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
339 #ifndef SIMULATOR
340 char str[32];
341 int cpu_freq;
342 #endif
344 /* standard stuff */
345 PLUGIN_IRAM_INIT(api)
346 (void)parameter;
347 rb = api;
349 log_init();
350 #ifndef SIMULATOR
351 cpu_freq = *rb->cpu_frequency; /* remember CPU frequency */
352 #endif
353 backlight_force_on(rb); /* backlight control in lib/helper.c */
355 log_text("Main LCD Update");
356 time_main_update();
357 #ifdef HAVE_LCD_COLOR
358 log_text("Main LCD YUV");
359 time_main_yuv();
360 #endif
361 #if LCD_DEPTH < 4
362 log_text("Greyscale library");
363 time_greyscale();
364 #endif
365 #ifdef HAVE_REMOTE_LCD
366 log_text("Remote LCD Update");
367 time_remote_update();
368 #endif
370 #ifndef SIMULATOR
371 if (*rb->cpu_frequency != cpu_freq)
372 rb->snprintf(str, sizeof(str), "CPU clock changed!");
373 else
374 rb->snprintf(str, sizeof(str), "CPU: %d MHz",
375 (cpu_freq + 500000) / 1000000);
376 log_text(str);
377 #endif
378 backlight_use_settings(rb); /* backlight control in lib/helper.c */
380 /* wait until user closes plugin */
381 while (rb->button_get(true) != FPS_QUIT);
383 return PLUGIN_OK;
385 #endif