blob: de7b6442ec576451b042cc6b4be8d0df036c63be [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);
Tianjie Xu35926c42016-04-28 18:06:26 -070037 void SetSystemUpdateText(bool security_update);
Doug Zongker211aebc2011-10-28 15:13:10 -070038
39 // progress indicator
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070040 void SetProgressType(ProgressType type) override;
41 void ShowProgress(float portion, float seconds) override;
42 void SetProgress(float fraction) override;
Doug Zongker211aebc2011-10-28 15:13:10 -070043
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070044 void SetStage(int current, int max) override;
Doug Zongkerc87bab12013-11-25 13:53:25 -080045
Doug Zongker211aebc2011-10-28 15:13:10 -070046 // text log
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070047 void ShowText(bool visible) override;
48 bool IsTextVisible() override;
49 bool WasTextEverVisible() override;
Doug Zongker211aebc2011-10-28 15:13:10 -070050
Doug Zongker211aebc2011-10-28 15:13:10 -070051 // printing messages
Elliott Hughes018ed312015-04-08 16:51:36 -070052 void Print(const char* fmt, ...) __printflike(2, 3);
Tao Baob6918c72015-05-19 17:02:16 -070053 void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3);
Elliott Hughes8de52072015-04-08 20:06:50 -070054 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070055
56 // menu display
57 void StartMenu(const char* const * headers, const char* const * items,
Elliott Hughes018ed312015-04-08 16:51:36 -070058 int initial_selection);
Doug Zongker211aebc2011-10-28 15:13:10 -070059 int SelectMenu(int sel);
60 void EndMenu();
61
Elliott Hughes642aaa72015-04-10 12:47:46 -070062 void KeyLongPress(int);
63
Doug Zongkerc0441d12013-07-31 11:28:24 -070064 void Redraw();
65
Elliott Hughes8fd86d72015-04-13 14:36:02 -070066 enum UIElement {
67 HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO
68 };
Elliott Hughes642aaa72015-04-10 12:47:46 -070069 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070070
Elliott Hughes498cda62016-04-14 16:49:04 -070071 protected:
Prashant Malanif7f9e502016-03-10 03:40:20 +000072 Icon currentIcon;
Doug Zongker211aebc2011-10-28 15:13:10 -070073
Elliott Hughes498cda62016-04-14 16:49:04 -070074 const char* locale;
Elliott Hughes498cda62016-04-14 16:49:04 -070075
Elliott Hughesfaf36e02016-04-20 17:22:16 -070076 // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
77 float density_;
Elliott Hughes6d089a92016-07-08 17:23:41 -070078 // The layout to use.
79 int layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -070080
Elliott Hughes498cda62016-04-14 16:49:04 -070081 GRSurface* error_icon;
82
83 GRSurface* erasing_text;
84 GRSurface* error_text;
85 GRSurface* installing_text;
86 GRSurface* no_command_text;
87
88 GRSurface** introFrames;
89 GRSurface** loopFrames;
90
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070091 GRSurface* progressBarEmpty;
92 GRSurface* progressBarFill;
93 GRSurface* stageMarkerEmpty;
94 GRSurface* stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -070095
96 ProgressType progressBarType;
97
98 float progressScopeStart, progressScopeSize, progress;
99 double progressScopeTime, progressScopeDuration;
100
Elliott Hughes8de52072015-04-08 20:06:50 -0700101 // true when both graphics pages are the same (except for the progress bar).
Doug Zongker211aebc2011-10-28 15:13:10 -0700102 bool pagesIdentical;
103
Elliott Hughesc0491632015-05-06 12:40:05 -0700104 size_t text_cols_, text_rows_;
105
Elliott Hughes8de52072015-04-08 20:06:50 -0700106 // Log text overlay, displayed when a magic key is pressed.
Elliott Hughesc0491632015-05-06 12:40:05 -0700107 char** text_;
108 size_t text_col_, text_row_, text_top_;
109
Doug Zongker211aebc2011-10-28 15:13:10 -0700110 bool show_text;
111 bool show_text_ever; // has show_text ever been true?
112
Elliott Hughesc0491632015-05-06 12:40:05 -0700113 char** menu_;
114 const char* const* menu_headers_;
Doug Zongker211aebc2011-10-28 15:13:10 -0700115 bool show_menu;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700116 int menu_items, menu_sel;
Doug Zongker211aebc2011-10-28 15:13:10 -0700117
Elliott Hughesc0491632015-05-06 12:40:05 -0700118 // An alternate text screen, swapped with 'text_' when we're viewing a log file.
119 char** file_viewer_text_;
120
Elliott Hughes985022a2015-04-13 13:04:32 -0700121 pthread_t progress_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700122
Elliott Hughes498cda62016-04-14 16:49:04 -0700123 // Number of intro frames and loop frames in the animation.
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700124 size_t intro_frames;
125 size_t loop_frames;
126
127 size_t current_frame;
128 bool intro_done;
Elliott Hughes498cda62016-04-14 16:49:04 -0700129
130 // Number of frames per sec (default: 30) for both parts of the animation.
Doug Zongker32a0a472011-11-01 11:00:20 -0700131 int animation_fps;
Doug Zongkereac881c2014-03-07 09:21:25 -0800132
Doug Zongkerc87bab12013-11-25 13:53:25 -0800133 int stage, max_stage;
134
Elliott Hughes498cda62016-04-14 16:49:04 -0700135 int char_width_;
136 int char_height_;
137 pthread_mutex_t updateMutex;
138 bool rtl_locale;
139
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700140 virtual void InitTextParams();
141
142 virtual void draw_background_locked();
143 virtual void draw_foreground_locked();
144 virtual void draw_screen_locked();
145 virtual void update_screen_locked();
146 virtual void update_progress_locked();
Elliott Hughes985022a2015-04-13 13:04:32 -0700147
Elliott Hughes498cda62016-04-14 16:49:04 -0700148 GRSurface* GetCurrentFrame();
149 GRSurface* GetCurrentText();
150
Elliott Hughes985022a2015-04-13 13:04:32 -0700151 static void* ProgressThreadStartRoutine(void* data);
152 void ProgressThreadLoop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700153
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700154 virtual void ShowFile(FILE*);
155 virtual void PrintV(const char*, bool, va_list);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700156 void PutChar(char);
157 void ClearText();
158
Elliott Hughes498cda62016-04-14 16:49:04 -0700159 void LoadAnimation();
Prashant Malani0ba21cf2016-03-10 14:51:25 -0800160 void LoadBitmap(const char* filename, GRSurface** surface);
Elliott Hughes498cda62016-04-14 16:49:04 -0700161 void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
162
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700163 int PixelsFromDp(int dp);
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700164 virtual int GetAnimationBaseline();
165 virtual int GetProgressBaseline();
166 virtual int GetTextBaseline();
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700167
Elliott Hughes498cda62016-04-14 16:49:04 -0700168 void DrawHorizontalRule(int* y);
Prashant Malani7a491222016-03-11 10:00:55 -0800169 void DrawTextLine(int x, int* y, const char* line, bool bold);
170 void DrawTextLines(int x, int* y, const char* const* lines);
Doug Zongker211aebc2011-10-28 15:13:10 -0700171};
172
173#endif // RECOVERY_UI_H