fix wrong score recording.
[kugel-rb.git] / apps / plugins / test_fps.c
blobddbd51c00b2bc29f358311cb9420c57fbec6bab8
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 CONFIG_KEYPAD == SANSA_FUZE_PAD
35 #define FPS_QUIT (BUTTON_HOME|BUTTON_REPEAT)
36 #elif defined(BUTTON_OFF)
37 #define FPS_QUIT BUTTON_OFF
38 #else
39 #define FPS_QUIT BUTTON_POWER
40 #endif
42 #define DURATION (2*HZ) /* longer duration gives more precise results */
44 PLUGIN_HEADER
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 #if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
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(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 void* parameter)
339 #ifndef SIMULATOR
340 char str[32];
341 int cpu_freq;
342 #endif
344 /* standard stuff */
345 PLUGIN_IRAM_INIT(rb)
346 (void)parameter;
348 log_init();
349 #ifndef SIMULATOR
350 cpu_freq = *rb->cpu_frequency; /* remember CPU frequency */
351 #endif
352 backlight_force_on(); /* backlight control in lib/helper.c */
354 log_text("Main LCD Update");
355 time_main_update();
356 #if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
357 log_text("Main LCD YUV");
358 time_main_yuv();
359 #endif
360 #if LCD_DEPTH < 4
361 log_text("Greyscale library");
362 time_greyscale();
363 #endif
364 #ifdef HAVE_REMOTE_LCD
365 log_text("Remote LCD Update");
366 time_remote_update();
367 #endif
369 #ifndef SIMULATOR
370 if (*rb->cpu_frequency != cpu_freq)
371 rb->snprintf(str, sizeof(str), "CPU clock changed!");
372 else
373 rb->snprintf(str, sizeof(str), "CPU: %d MHz",
374 (cpu_freq + 500000) / 1000000);
375 log_text(str);
376 #endif
377 backlight_use_settings(); /* backlight control in lib/helper.c */
379 /* wait until user closes plugin */
380 while (rb->button_get(true) != FPS_QUIT);
382 return PLUGIN_OK;
384 #endif