blob: 233ff55e64a399aecd4a477b7d1cf33056d213d4 [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#ifndef RECOVERY_SCREEN_UI_H
18#define RECOVERY_SCREEN_UI_H
19
20#include <pthread.h>
Elliott Hughes95fc63e2015-04-10 19:12:01 -070021#include <stdio.h>
Doug Zongker211aebc2011-10-28 15:13:10 -070022
23#include "ui.h"
24#include "minui/minui.h"
25
26// Implementation of RecoveryUI appropriate for devices with a screen
27// (shows an icon + a progress bar, text logging, menu, etc.)
28class ScreenRecoveryUI : public RecoveryUI {
29 public:
30 ScreenRecoveryUI();
31
32 void Init();
Doug Zongker5fa8c232012-09-18 12:37:02 -070033 void SetLocale(const char* locale);
Doug Zongker211aebc2011-10-28 15:13:10 -070034
35 // overall recovery state ("background image")
36 void SetBackground(Icon icon);
37
38 // progress indicator
39 void SetProgressType(ProgressType type);
40 void ShowProgress(float portion, float seconds);
41 void SetProgress(float fraction);
42
Doug Zongkerc87bab12013-11-25 13:53:25 -080043 void SetStage(int current, int max);
44
Doug Zongker211aebc2011-10-28 15:13:10 -070045 // text log
46 void ShowText(bool visible);
47 bool IsTextVisible();
48 bool WasTextEverVisible();
49
Doug Zongker211aebc2011-10-28 15:13:10 -070050 // printing messages
Elliott Hughes018ed312015-04-08 16:51:36 -070051 void Print(const char* fmt, ...) __printflike(2, 3);
Tao Baob6918c72015-05-19 17:02:16 -070052 void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3);
Elliott Hughes8de52072015-04-08 20:06:50 -070053 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070054
55 // menu display
56 void StartMenu(const char* const * headers, const char* const * items,
Elliott Hughes018ed312015-04-08 16:51:36 -070057 int initial_selection);
Doug Zongker211aebc2011-10-28 15:13:10 -070058 int SelectMenu(int sel);
59 void EndMenu();
60
Elliott Hughes642aaa72015-04-10 12:47:46 -070061 void KeyLongPress(int);
62
Doug Zongkerc0441d12013-07-31 11:28:24 -070063 void Redraw();
64
Elliott Hughes8fd86d72015-04-13 14:36:02 -070065 enum UIElement {
66 HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO
67 };
Elliott Hughes642aaa72015-04-10 12:47:46 -070068 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070069
Elliott Hughes498cda62016-04-14 16:49:04 -070070 protected:
Prashant Malanif7f9e502016-03-10 03:40:20 +000071 Icon currentIcon;
Doug Zongker211aebc2011-10-28 15:13:10 -070072
Elliott Hughes498cda62016-04-14 16:49:04 -070073 const char* locale;
74 bool intro_done;
75 int current_frame;
76
77 GRSurface* error_icon;
78
79 GRSurface* erasing_text;
80 GRSurface* error_text;
81 GRSurface* installing_text;
82 GRSurface* no_command_text;
83
84 GRSurface** introFrames;
85 GRSurface** loopFrames;
86
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070087 GRSurface* progressBarEmpty;
88 GRSurface* progressBarFill;
89 GRSurface* stageMarkerEmpty;
90 GRSurface* stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -070091
92 ProgressType progressBarType;
93
94 float progressScopeStart, progressScopeSize, progress;
95 double progressScopeTime, progressScopeDuration;
96
Elliott Hughes8de52072015-04-08 20:06:50 -070097 // true when both graphics pages are the same (except for the progress bar).
Doug Zongker211aebc2011-10-28 15:13:10 -070098 bool pagesIdentical;
99
Elliott Hughesc0491632015-05-06 12:40:05 -0700100 size_t text_cols_, text_rows_;
101
Elliott Hughes8de52072015-04-08 20:06:50 -0700102 // Log text overlay, displayed when a magic key is pressed.
Elliott Hughesc0491632015-05-06 12:40:05 -0700103 char** text_;
104 size_t text_col_, text_row_, text_top_;
105
Doug Zongker211aebc2011-10-28 15:13:10 -0700106 bool show_text;
107 bool show_text_ever; // has show_text ever been true?
108
Elliott Hughesc0491632015-05-06 12:40:05 -0700109 char** menu_;
110 const char* const* menu_headers_;
Doug Zongker211aebc2011-10-28 15:13:10 -0700111 bool show_menu;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700112 int menu_items, menu_sel;
Doug Zongker211aebc2011-10-28 15:13:10 -0700113
Elliott Hughesc0491632015-05-06 12:40:05 -0700114 // An alternate text screen, swapped with 'text_' when we're viewing a log file.
115 char** file_viewer_text_;
116
Elliott Hughes985022a2015-04-13 13:04:32 -0700117 pthread_t progress_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700118
Elliott Hughes498cda62016-04-14 16:49:04 -0700119 // Number of intro frames and loop frames in the animation.
120 int intro_frames;
121 int loop_frames;
122
123 // Number of frames per sec (default: 30) for both parts of the animation.
Doug Zongker32a0a472011-11-01 11:00:20 -0700124 int animation_fps;
Doug Zongkereac881c2014-03-07 09:21:25 -0800125
126 int iconX, iconY;
Doug Zongker211aebc2011-10-28 15:13:10 -0700127
Doug Zongkerc87bab12013-11-25 13:53:25 -0800128 int stage, max_stage;
129
Elliott Hughes498cda62016-04-14 16:49:04 -0700130 int char_width_;
131 int char_height_;
132 pthread_mutex_t updateMutex;
133 bool rtl_locale;
134
135 void draw_background_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700136 void draw_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700137 void draw_screen_locked();
138 void update_screen_locked();
139 void update_progress_locked();
Elliott Hughes985022a2015-04-13 13:04:32 -0700140
Elliott Hughes498cda62016-04-14 16:49:04 -0700141 GRSurface* GetCurrentFrame();
142 GRSurface* GetCurrentText();
143
Elliott Hughes985022a2015-04-13 13:04:32 -0700144 static void* ProgressThreadStartRoutine(void* data);
145 void ProgressThreadLoop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700146
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700147 void ShowFile(FILE*);
Tao Baob6918c72015-05-19 17:02:16 -0700148 void PrintV(const char*, bool, va_list);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700149 void PutChar(char);
150 void ClearText();
151
Elliott Hughes498cda62016-04-14 16:49:04 -0700152 void LoadAnimation();
Prashant Malani0ba21cf2016-03-10 14:51:25 -0800153 void LoadBitmap(const char* filename, GRSurface** surface);
Elliott Hughes498cda62016-04-14 16:49:04 -0700154 void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
155
156 void DrawHorizontalRule(int* y);
Prashant Malani7a491222016-03-11 10:00:55 -0800157 void DrawTextLine(int x, int* y, const char* line, bool bold);
158 void DrawTextLines(int x, int* y, const char* const* lines);
Doug Zongker211aebc2011-10-28 15:13:10 -0700159};
160
161#endif // RECOVERY_UI_H