blob: fd1a6c7fa372c846ae4a68885448bc3674aeb730 [file] [log] [blame]
Doug Zongker211aebc2011-10-28 15:13:10 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <errno.h>
18#include <fcntl.h>
19#include <linux/input.h>
20#include <pthread.h>
21#include <stdarg.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/stat.h>
26#include <sys/time.h>
27#include <sys/types.h>
28#include <time.h>
29#include <unistd.h>
30
31#include "common.h"
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070032#include "device.h"
Doug Zongker32a0a472011-11-01 11:00:20 -070033#include "minui/minui.h"
34#include "screen_ui.h"
35#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070036
Doug Zongker55a36ac2013-03-04 15:49:02 -080037static int char_width;
38static int char_height;
Doug Zongker211aebc2011-10-28 15:13:10 -070039
Doug Zongker211aebc2011-10-28 15:13:10 -070040// There's only (at most) one of these objects, and global callbacks
41// (for pthread_create, and the input event system) need to find it,
42// so use a global variable.
43static ScreenRecoveryUI* self = NULL;
44
45// Return the current time as a double (including fractions of a second).
46static double now() {
47 struct timeval tv;
48 gettimeofday(&tv, NULL);
49 return tv.tv_sec + tv.tv_usec / 1000000.0;
50}
51
52ScreenRecoveryUI::ScreenRecoveryUI() :
53 currentIcon(NONE),
54 installingFrame(0),
Doug Zongker5fa8c232012-09-18 12:37:02 -070055 rtl_locale(false),
Doug Zongker211aebc2011-10-28 15:13:10 -070056 progressBarType(EMPTY),
57 progressScopeStart(0),
58 progressScopeSize(0),
59 progress(0),
60 pagesIdentical(false),
61 text_cols(0),
62 text_rows(0),
63 text_col(0),
64 text_row(0),
65 text_top(0),
66 show_text(false),
67 show_text_ever(false),
68 show_menu(false),
69 menu_top(0),
70 menu_items(0),
71 menu_sel(0),
Doug Zongker32a0a472011-11-01 11:00:20 -070072
73 // These values are correct for the default image resources
74 // provided with the android platform. Devices which use
75 // different resources should have a subclass of ScreenRecoveryUI
76 // that overrides Init() to set these values appropriately and
77 // then call the superclass Init().
78 animation_fps(20),
Doug Zongker8347cb22012-10-08 08:38:16 -070079 indeterminate_frames(6),
80 installing_frames(7),
81 install_overlay_offset_x(13),
82 install_overlay_offset_y(190),
Doug Zongker52eeea4f2012-09-04 14:28:25 -070083 overlay_offset_x(-1),
Doug Zongkerc87bab12013-11-25 13:53:25 -080084 overlay_offset_y(-1),
85 stage(-1),
86 max_stage(-1) {
yetta_wu5b468fc2013-06-25 15:03:11 +080087
88 for (int i = 0; i < 5; i++)
89 backgroundIcon[i] = NULL;
90
Doug Zongker211aebc2011-10-28 15:13:10 -070091 pthread_mutex_init(&updateMutex, NULL);
Doug Zongker211aebc2011-10-28 15:13:10 -070092 self = this;
93}
94
95// Draw the given frame over the installation overlay animation. The
96// background is not cleared or draw with the base icon first; we
97// assume that the frame already contains some other frame of the
98// animation. Does nothing if no overlay animation is defined.
99// Should only be called with updateMutex locked.
100void ScreenRecoveryUI::draw_install_overlay_locked(int frame) {
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700101 if (installationOverlay == NULL || overlay_offset_x < 0) return;
Doug Zongker211aebc2011-10-28 15:13:10 -0700102 gr_surface surface = installationOverlay[frame];
103 int iconWidth = gr_get_width(surface);
104 int iconHeight = gr_get_height(surface);
105 gr_blit(surface, 0, 0, iconWidth, iconHeight,
Doug Zongker02ec6b82012-08-22 17:26:40 -0700106 overlay_offset_x, overlay_offset_y);
Doug Zongker211aebc2011-10-28 15:13:10 -0700107}
108
109// Clear the screen and draw the currently selected background icon (if any).
110// Should only be called with updateMutex locked.
111void ScreenRecoveryUI::draw_background_locked(Icon icon)
112{
113 pagesIdentical = false;
114 gr_color(0, 0, 0, 255);
115 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
116
117 if (icon) {
118 gr_surface surface = backgroundIcon[icon];
Doug Zongker02ec6b82012-08-22 17:26:40 -0700119 gr_surface text_surface = backgroundText[icon];
120
Doug Zongker211aebc2011-10-28 15:13:10 -0700121 int iconWidth = gr_get_width(surface);
122 int iconHeight = gr_get_height(surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700123 int textWidth = gr_get_width(text_surface);
124 int textHeight = gr_get_height(text_surface);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800125 int stageHeight = gr_get_height(stageMarkerEmpty);
126
127 int sh = (max_stage >= 0) ? stageHeight : 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700128
Doug Zongker211aebc2011-10-28 15:13:10 -0700129 int iconX = (gr_fb_width() - iconWidth) / 2;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800130 int iconY = (gr_fb_height() - (iconHeight+textHeight+40+sh)) / 2;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700131
132 int textX = (gr_fb_width() - textWidth) / 2;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800133 int textY = ((gr_fb_height() - (iconHeight+textHeight+40+sh)) / 2) + iconHeight + 40;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700134
Doug Zongker211aebc2011-10-28 15:13:10 -0700135 gr_blit(surface, 0, 0, iconWidth, iconHeight, iconX, iconY);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800136 if (stageHeight > 0) {
137 int sw = gr_get_width(stageMarkerEmpty);
138 int x = (gr_fb_width() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
139 int y = iconY + iconHeight + 20;
140 for (int i = 0; i < max_stage; ++i) {
141 gr_blit((i < stage) ? stageMarkerFill : stageMarkerEmpty,
142 0, 0, sw, stageHeight, x, y);
143 x += sw;
144 }
145 }
146
Doug Zongker02ec6b82012-08-22 17:26:40 -0700147 if (icon == INSTALLING_UPDATE || icon == ERASING) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700148 draw_install_overlay_locked(installingFrame);
149 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700150
151 gr_color(255, 255, 255, 255);
152 gr_texticon(textX, textY, text_surface);
Doug Zongker211aebc2011-10-28 15:13:10 -0700153 }
154}
155
156// Draw the progress bar (if any) on the screen. Does not flip pages.
157// Should only be called with updateMutex locked.
158void ScreenRecoveryUI::draw_progress_locked()
159{
Doug Zongker69f4b672012-04-26 14:37:53 -0700160 if (currentIcon == ERROR) return;
161
Doug Zongker02ec6b82012-08-22 17:26:40 -0700162 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700163 draw_install_overlay_locked(installingFrame);
164 }
165
166 if (progressBarType != EMPTY) {
Doug Zongker02ec6b82012-08-22 17:26:40 -0700167 int iconHeight = gr_get_height(backgroundIcon[INSTALLING_UPDATE]);
Doug Zongker211aebc2011-10-28 15:13:10 -0700168 int width = gr_get_width(progressBarEmpty);
169 int height = gr_get_height(progressBarEmpty);
170
171 int dx = (gr_fb_width() - width)/2;
172 int dy = (3*gr_fb_height() + iconHeight - 2*height)/4;
173
174 // Erase behind the progress bar (in case this was a progress-only update)
175 gr_color(0, 0, 0, 255);
176 gr_fill(dx, dy, width, height);
177
178 if (progressBarType == DETERMINATE) {
179 float p = progressScopeStart + progress * progressScopeSize;
180 int pos = (int) (p * width);
181
Doug Zongker5fa8c232012-09-18 12:37:02 -0700182 if (rtl_locale) {
183 // Fill the progress bar from right to left.
184 if (pos > 0) {
185 gr_blit(progressBarFill, width-pos, 0, pos, height, dx+width-pos, dy);
186 }
187 if (pos < width-1) {
188 gr_blit(progressBarEmpty, 0, 0, width-pos, height, dx, dy);
189 }
190 } else {
191 // Fill the progress bar from left to right.
192 if (pos > 0) {
193 gr_blit(progressBarFill, 0, 0, pos, height, dx, dy);
194 }
195 if (pos < width-1) {
196 gr_blit(progressBarEmpty, pos, 0, width-pos, height, dx+pos, dy);
197 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700198 }
199 }
200
201 if (progressBarType == INDETERMINATE) {
202 static int frame = 0;
203 gr_blit(progressBarIndeterminate[frame], 0, 0, width, height, dx, dy);
Doug Zongker5fa8c232012-09-18 12:37:02 -0700204 // in RTL locales, we run the animation backwards, which
205 // makes the spinner spin the other way.
206 if (rtl_locale) {
207 frame = (frame + indeterminate_frames - 1) % indeterminate_frames;
208 } else {
209 frame = (frame + 1) % indeterminate_frames;
210 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700211 }
212 }
213}
214
Doug Zongkerc0441d12013-07-31 11:28:24 -0700215void ScreenRecoveryUI::SetColor(UIElement e) {
216 switch (e) {
217 case HEADER:
218 gr_color(247, 0, 6, 255);
219 break;
220 case MENU:
221 case MENU_SEL_BG:
222 gr_color(0, 106, 157, 255);
223 break;
224 case MENU_SEL_FG:
225 gr_color(255, 255, 255, 255);
226 break;
227 case LOG:
228 gr_color(249, 194, 0, 255);
229 break;
230 case TEXT_FILL:
231 gr_color(0, 0, 0, 160);
232 break;
233 default:
234 gr_color(255, 255, 255, 255);
235 break;
236 }
237}
Doug Zongker211aebc2011-10-28 15:13:10 -0700238
239// Redraw everything on the screen. Does not flip pages.
240// Should only be called with updateMutex locked.
241void ScreenRecoveryUI::draw_screen_locked()
242{
243 draw_background_locked(currentIcon);
244 draw_progress_locked();
245
246 if (show_text) {
Doug Zongkerc0441d12013-07-31 11:28:24 -0700247 SetColor(TEXT_FILL);
Doug Zongker211aebc2011-10-28 15:13:10 -0700248 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
249
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800250 int y = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700251 int i = 0;
252 if (show_menu) {
Doug Zongkerc0441d12013-07-31 11:28:24 -0700253 SetColor(HEADER);
Doug Zongker211aebc2011-10-28 15:13:10 -0700254
255 for (; i < menu_top + menu_items; ++i) {
Doug Zongkerc0441d12013-07-31 11:28:24 -0700256 if (i == menu_top) SetColor(MENU);
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800257
Doug Zongker211aebc2011-10-28 15:13:10 -0700258 if (i == menu_top + menu_sel) {
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800259 // draw the highlight bar
Doug Zongkerc0441d12013-07-31 11:28:24 -0700260 SetColor(MENU_SEL_BG);
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800261 gr_fill(0, y-2, gr_fb_width(), y+char_height+2);
262 // white text of selected item
Doug Zongkerc0441d12013-07-31 11:28:24 -0700263 SetColor(MENU_SEL_FG);
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800264 if (menu[i][0]) gr_text(4, y, menu[i], 1);
Doug Zongkerc0441d12013-07-31 11:28:24 -0700265 SetColor(MENU);
Doug Zongker211aebc2011-10-28 15:13:10 -0700266 } else {
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800267 if (menu[i][0]) gr_text(4, y, menu[i], i < menu_top);
Doug Zongker211aebc2011-10-28 15:13:10 -0700268 }
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800269 y += char_height+4;
Doug Zongker211aebc2011-10-28 15:13:10 -0700270 }
Doug Zongkerc0441d12013-07-31 11:28:24 -0700271 SetColor(MENU);
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800272 y += 4;
273 gr_fill(0, y, gr_fb_width(), y+2);
274 y += 4;
Doug Zongker211aebc2011-10-28 15:13:10 -0700275 ++i;
276 }
277
Doug Zongkerc0441d12013-07-31 11:28:24 -0700278 SetColor(LOG);
Doug Zongker211aebc2011-10-28 15:13:10 -0700279
Doug Zongker6fd59ac2013-03-06 15:01:11 -0800280 // display from the bottom up, until we hit the top of the
281 // screen, the bottom of the menu, or we've displayed the
282 // entire text buffer.
283 int ty;
284 int row = (text_top+text_rows-1) % text_rows;
285 for (int ty = gr_fb_height() - char_height, count = 0;
286 ty > y+2 && count < text_rows;
287 ty -= char_height, ++count) {
288 gr_text(4, ty, text[row], 0);
289 --row;
290 if (row < 0) row = text_rows-1;
Doug Zongker211aebc2011-10-28 15:13:10 -0700291 }
292 }
293}
294
295// Redraw everything on the screen and flip the screen (make it visible).
296// Should only be called with updateMutex locked.
297void ScreenRecoveryUI::update_screen_locked()
298{
299 draw_screen_locked();
300 gr_flip();
301}
302
303// Updates only the progress bar, if possible, otherwise redraws the screen.
304// Should only be called with updateMutex locked.
305void ScreenRecoveryUI::update_progress_locked()
306{
307 if (show_text || !pagesIdentical) {
308 draw_screen_locked(); // Must redraw the whole screen
309 pagesIdentical = true;
310 } else {
311 draw_progress_locked(); // Draw only the progress bar and overlays
312 }
313 gr_flip();
314}
315
316// Keeps the progress bar updated, even when the process is otherwise busy.
Doug Zongker32a0a472011-11-01 11:00:20 -0700317void* ScreenRecoveryUI::progress_thread(void *cookie) {
318 self->progress_loop();
319 return NULL;
320}
321
322void ScreenRecoveryUI::progress_loop() {
323 double interval = 1.0 / animation_fps;
Doug Zongker211aebc2011-10-28 15:13:10 -0700324 for (;;) {
325 double start = now();
Doug Zongker32a0a472011-11-01 11:00:20 -0700326 pthread_mutex_lock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700327
328 int redraw = 0;
329
330 // update the installation animation, if active
331 // skip this if we have a text overlay (too expensive to update)
Doug Zongker02ec6b82012-08-22 17:26:40 -0700332 if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) &&
333 installing_frames > 0 && !show_text) {
Doug Zongker32a0a472011-11-01 11:00:20 -0700334 installingFrame = (installingFrame + 1) % installing_frames;
Doug Zongker211aebc2011-10-28 15:13:10 -0700335 redraw = 1;
336 }
337
338 // update the progress bar animation, if active
339 // skip this if we have a text overlay (too expensive to update)
Doug Zongker32a0a472011-11-01 11:00:20 -0700340 if (progressBarType == INDETERMINATE && !show_text) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700341 redraw = 1;
342 }
343
344 // move the progress bar forward on timed intervals, if configured
Doug Zongker32a0a472011-11-01 11:00:20 -0700345 int duration = progressScopeDuration;
346 if (progressBarType == DETERMINATE && duration > 0) {
347 double elapsed = now() - progressScopeTime;
Doug Zongker69f4b672012-04-26 14:37:53 -0700348 float p = 1.0 * elapsed / duration;
349 if (p > 1.0) p = 1.0;
350 if (p > progress) {
351 progress = p;
Doug Zongker211aebc2011-10-28 15:13:10 -0700352 redraw = 1;
353 }
354 }
355
Doug Zongker32a0a472011-11-01 11:00:20 -0700356 if (redraw) update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700357
Doug Zongker32a0a472011-11-01 11:00:20 -0700358 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700359 double end = now();
360 // minimum of 20ms delay between frames
361 double delay = interval - (end-start);
362 if (delay < 0.02) delay = 0.02;
363 usleep((long)(delay * 1000000));
364 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700365}
366
367void ScreenRecoveryUI::LoadBitmap(const char* filename, gr_surface* surface) {
368 int result = res_create_surface(filename, surface);
369 if (result < 0) {
370 LOGE("missing bitmap %s\n(Code %d)\n", filename, result);
371 }
372}
373
Doug Zongker02ec6b82012-08-22 17:26:40 -0700374void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, gr_surface* surface) {
375 int result = res_create_localized_surface(filename, surface);
376 if (result < 0) {
377 LOGE("missing bitmap %s\n(Code %d)\n", filename, result);
378 }
379}
380
Doug Zongker211aebc2011-10-28 15:13:10 -0700381void ScreenRecoveryUI::Init()
382{
383 gr_init();
Doug Zongker211aebc2011-10-28 15:13:10 -0700384
Doug Zongker55a36ac2013-03-04 15:49:02 -0800385 gr_font_size(&char_width, &char_height);
386
Doug Zongker211aebc2011-10-28 15:13:10 -0700387 text_col = text_row = 0;
Doug Zongker55a36ac2013-03-04 15:49:02 -0800388 text_rows = gr_fb_height() / char_height;
Doug Zongker211aebc2011-10-28 15:13:10 -0700389 if (text_rows > kMaxRows) text_rows = kMaxRows;
390 text_top = 1;
391
Doug Zongker55a36ac2013-03-04 15:49:02 -0800392 text_cols = gr_fb_width() / char_width;
Doug Zongker211aebc2011-10-28 15:13:10 -0700393 if (text_cols > kMaxCols - 1) text_cols = kMaxCols - 1;
394
Alistair Strachan9b8ae802013-07-17 10:34:36 -0700395 backgroundIcon[NONE] = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700396 LoadBitmap("icon_installing", &backgroundIcon[INSTALLING_UPDATE]);
397 backgroundIcon[ERASING] = backgroundIcon[INSTALLING_UPDATE];
Doug Zongker211aebc2011-10-28 15:13:10 -0700398 LoadBitmap("icon_error", &backgroundIcon[ERROR]);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700399 backgroundIcon[NO_COMMAND] = backgroundIcon[ERROR];
400
Doug Zongker211aebc2011-10-28 15:13:10 -0700401 LoadBitmap("progress_empty", &progressBarEmpty);
402 LoadBitmap("progress_fill", &progressBarFill);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800403 LoadBitmap("stage_empty", &stageMarkerEmpty);
404 LoadBitmap("stage_fill", &stageMarkerFill);
Doug Zongker211aebc2011-10-28 15:13:10 -0700405
Doug Zongker02ec6b82012-08-22 17:26:40 -0700406 LoadLocalizedBitmap("installing_text", &backgroundText[INSTALLING_UPDATE]);
407 LoadLocalizedBitmap("erasing_text", &backgroundText[ERASING]);
408 LoadLocalizedBitmap("no_command_text", &backgroundText[NO_COMMAND]);
409 LoadLocalizedBitmap("error_text", &backgroundText[ERROR]);
410
Doug Zongker211aebc2011-10-28 15:13:10 -0700411 int i;
412
Doug Zongker32a0a472011-11-01 11:00:20 -0700413 progressBarIndeterminate = (gr_surface*)malloc(indeterminate_frames *
Doug Zongker211aebc2011-10-28 15:13:10 -0700414 sizeof(gr_surface));
Doug Zongker32a0a472011-11-01 11:00:20 -0700415 for (i = 0; i < indeterminate_frames; ++i) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700416 char filename[40];
417 // "indeterminate01.png", "indeterminate02.png", ...
418 sprintf(filename, "indeterminate%02d", i+1);
419 LoadBitmap(filename, progressBarIndeterminate+i);
420 }
421
Doug Zongker32a0a472011-11-01 11:00:20 -0700422 if (installing_frames > 0) {
423 installationOverlay = (gr_surface*)malloc(installing_frames *
Doug Zongker211aebc2011-10-28 15:13:10 -0700424 sizeof(gr_surface));
Doug Zongker32a0a472011-11-01 11:00:20 -0700425 for (i = 0; i < installing_frames; ++i) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700426 char filename[40];
427 // "icon_installing_overlay01.png",
428 // "icon_installing_overlay02.png", ...
429 sprintf(filename, "icon_installing_overlay%02d", i+1);
430 LoadBitmap(filename, installationOverlay+i);
431 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700432 } else {
433 installationOverlay = NULL;
434 }
435
436 pthread_create(&progress_t, NULL, progress_thread, NULL);
Doug Zongker32a0a472011-11-01 11:00:20 -0700437
438 RecoveryUI::Init();
Doug Zongker211aebc2011-10-28 15:13:10 -0700439}
440
Doug Zongker5fa8c232012-09-18 12:37:02 -0700441void ScreenRecoveryUI::SetLocale(const char* locale) {
442 if (locale) {
443 char* lang = strdup(locale);
444 for (char* p = lang; *p; ++p) {
445 if (*p == '_') {
446 *p = '\0';
447 break;
448 }
449 }
450
451 // A bit cheesy: keep an explicit list of supported languages
452 // that are RTL.
453 if (strcmp(lang, "ar") == 0 || // Arabic
454 strcmp(lang, "fa") == 0 || // Persian (Farsi)
455 strcmp(lang, "he") == 0 || // Hebrew (new language code)
Doug Zongkerb66cb692012-09-18 14:52:18 -0700456 strcmp(lang, "iw") == 0 || // Hebrew (old language code)
457 strcmp(lang, "ur") == 0) { // Urdu
Doug Zongker5fa8c232012-09-18 12:37:02 -0700458 rtl_locale = true;
459 }
460 free(lang);
461 }
462}
463
Doug Zongker211aebc2011-10-28 15:13:10 -0700464void ScreenRecoveryUI::SetBackground(Icon icon)
465{
466 pthread_mutex_lock(&updateMutex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700467
468 // Adjust the offset to account for the positioning of the
469 // base image on the screen.
470 if (backgroundIcon[icon] != NULL) {
471 gr_surface bg = backgroundIcon[icon];
472 gr_surface text = backgroundText[icon];
473 overlay_offset_x = install_overlay_offset_x + (gr_fb_width() - gr_get_width(bg)) / 2;
474 overlay_offset_y = install_overlay_offset_y +
Doug Zongkerc87bab12013-11-25 13:53:25 -0800475 (gr_fb_height() - (gr_get_height(bg) +
476 gr_get_height(text) +
477 40 +
478 ((max_stage >= 0) ? gr_get_height(stageMarkerEmpty) : 0))) / 2;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700479 }
480
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700481 currentIcon = icon;
482 update_screen_locked();
483
Doug Zongker211aebc2011-10-28 15:13:10 -0700484 pthread_mutex_unlock(&updateMutex);
485}
486
487void ScreenRecoveryUI::SetProgressType(ProgressType type)
488{
489 pthread_mutex_lock(&updateMutex);
490 if (progressBarType != type) {
491 progressBarType = type;
Doug Zongker211aebc2011-10-28 15:13:10 -0700492 }
Doug Zongker69f4b672012-04-26 14:37:53 -0700493 progressScopeStart = 0;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700494 progressScopeSize = 0;
Doug Zongker69f4b672012-04-26 14:37:53 -0700495 progress = 0;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700496 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700497 pthread_mutex_unlock(&updateMutex);
498}
499
500void ScreenRecoveryUI::ShowProgress(float portion, float seconds)
501{
502 pthread_mutex_lock(&updateMutex);
503 progressBarType = DETERMINATE;
504 progressScopeStart += progressScopeSize;
505 progressScopeSize = portion;
506 progressScopeTime = now();
507 progressScopeDuration = seconds;
508 progress = 0;
509 update_progress_locked();
510 pthread_mutex_unlock(&updateMutex);
511}
512
513void ScreenRecoveryUI::SetProgress(float fraction)
514{
515 pthread_mutex_lock(&updateMutex);
516 if (fraction < 0.0) fraction = 0.0;
517 if (fraction > 1.0) fraction = 1.0;
518 if (progressBarType == DETERMINATE && fraction > progress) {
519 // Skip updates that aren't visibly different.
520 int width = gr_get_width(progressBarIndeterminate[0]);
521 float scale = width * progressScopeSize;
522 if ((int) (progress * scale) != (int) (fraction * scale)) {
523 progress = fraction;
524 update_progress_locked();
525 }
526 }
527 pthread_mutex_unlock(&updateMutex);
528}
529
Doug Zongkerc87bab12013-11-25 13:53:25 -0800530void ScreenRecoveryUI::SetStage(int current, int max) {
531 pthread_mutex_lock(&updateMutex);
532 stage = current;
533 max_stage = max;
534 pthread_mutex_unlock(&updateMutex);
535}
536
Doug Zongker211aebc2011-10-28 15:13:10 -0700537void ScreenRecoveryUI::Print(const char *fmt, ...)
538{
539 char buf[256];
540 va_list ap;
541 va_start(ap, fmt);
542 vsnprintf(buf, 256, fmt, ap);
543 va_end(ap);
544
545 fputs(buf, stdout);
546
547 // This can get called before ui_init(), so be careful.
548 pthread_mutex_lock(&updateMutex);
549 if (text_rows > 0 && text_cols > 0) {
550 char *ptr;
551 for (ptr = buf; *ptr != '\0'; ++ptr) {
552 if (*ptr == '\n' || text_col >= text_cols) {
553 text[text_row][text_col] = '\0';
554 text_col = 0;
555 text_row = (text_row + 1) % text_rows;
556 if (text_row == text_top) text_top = (text_top + 1) % text_rows;
557 }
558 if (*ptr != '\n') text[text_row][text_col++] = *ptr;
559 }
560 text[text_row][text_col] = '\0';
561 update_screen_locked();
562 }
563 pthread_mutex_unlock(&updateMutex);
564}
565
566void ScreenRecoveryUI::StartMenu(const char* const * headers, const char* const * items,
567 int initial_selection) {
568 int i;
569 pthread_mutex_lock(&updateMutex);
570 if (text_rows > 0 && text_cols > 0) {
571 for (i = 0; i < text_rows; ++i) {
572 if (headers[i] == NULL) break;
573 strncpy(menu[i], headers[i], text_cols-1);
574 menu[i][text_cols-1] = '\0';
575 }
576 menu_top = i;
577 for (; i < text_rows; ++i) {
578 if (items[i-menu_top] == NULL) break;
579 strncpy(menu[i], items[i-menu_top], text_cols-1);
580 menu[i][text_cols-1] = '\0';
581 }
582 menu_items = i - menu_top;
583 show_menu = 1;
584 menu_sel = initial_selection;
585 update_screen_locked();
586 }
587 pthread_mutex_unlock(&updateMutex);
588}
589
590int ScreenRecoveryUI::SelectMenu(int sel) {
591 int old_sel;
592 pthread_mutex_lock(&updateMutex);
593 if (show_menu > 0) {
594 old_sel = menu_sel;
595 menu_sel = sel;
596 if (menu_sel < 0) menu_sel = 0;
597 if (menu_sel >= menu_items) menu_sel = menu_items-1;
598 sel = menu_sel;
599 if (menu_sel != old_sel) update_screen_locked();
600 }
601 pthread_mutex_unlock(&updateMutex);
602 return sel;
603}
604
605void ScreenRecoveryUI::EndMenu() {
606 int i;
607 pthread_mutex_lock(&updateMutex);
608 if (show_menu > 0 && text_rows > 0 && text_cols > 0) {
609 show_menu = 0;
610 update_screen_locked();
611 }
612 pthread_mutex_unlock(&updateMutex);
613}
614
615bool ScreenRecoveryUI::IsTextVisible()
616{
617 pthread_mutex_lock(&updateMutex);
618 int visible = show_text;
619 pthread_mutex_unlock(&updateMutex);
620 return visible;
621}
622
623bool ScreenRecoveryUI::WasTextEverVisible()
624{
625 pthread_mutex_lock(&updateMutex);
626 int ever_visible = show_text_ever;
627 pthread_mutex_unlock(&updateMutex);
628 return ever_visible;
629}
630
631void ScreenRecoveryUI::ShowText(bool visible)
632{
633 pthread_mutex_lock(&updateMutex);
634 show_text = visible;
635 if (show_text) show_text_ever = 1;
636 update_screen_locked();
637 pthread_mutex_unlock(&updateMutex);
638}
Doug Zongkerc0441d12013-07-31 11:28:24 -0700639
640void ScreenRecoveryUI::Redraw()
641{
642 pthread_mutex_lock(&updateMutex);
643 update_screen_locked();
644 pthread_mutex_unlock(&updateMutex);
645}