blob: 3ad64907ee22d8f1660ce348c92fc6d5683e57c8 [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
Tao Bao736d59c2017-01-03 10:15:33 -080023#include <string>
24
Doug Zongker211aebc2011-10-28 15:13:10 -070025#include "ui.h"
26#include "minui/minui.h"
27
28// Implementation of RecoveryUI appropriate for devices with a screen
29// (shows an icon + a progress bar, text logging, menu, etc.)
30class ScreenRecoveryUI : public RecoveryUI {
31 public:
32 ScreenRecoveryUI();
33
Tao Bao736d59c2017-01-03 10:15:33 -080034 bool Init(const std::string& locale) override;
Doug Zongker211aebc2011-10-28 15:13:10 -070035
36 // overall recovery state ("background image")
37 void SetBackground(Icon icon);
Tianjie Xu35926c42016-04-28 18:06:26 -070038 void SetSystemUpdateText(bool security_update);
Doug Zongker211aebc2011-10-28 15:13:10 -070039
40 // progress indicator
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070041 void SetProgressType(ProgressType type) override;
42 void ShowProgress(float portion, float seconds) override;
43 void SetProgress(float fraction) override;
Doug Zongker211aebc2011-10-28 15:13:10 -070044
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070045 void SetStage(int current, int max) override;
Doug Zongkerc87bab12013-11-25 13:53:25 -080046
Doug Zongker211aebc2011-10-28 15:13:10 -070047 // text log
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070048 void ShowText(bool visible) override;
49 bool IsTextVisible() override;
50 bool WasTextEverVisible() override;
Doug Zongker211aebc2011-10-28 15:13:10 -070051
Doug Zongker211aebc2011-10-28 15:13:10 -070052 // printing messages
Elliott Hughes018ed312015-04-08 16:51:36 -070053 void Print(const char* fmt, ...) __printflike(2, 3);
Tao Baob6918c72015-05-19 17:02:16 -070054 void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3);
Elliott Hughes8de52072015-04-08 20:06:50 -070055 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070056
57 // menu display
58 void StartMenu(const char* const * headers, const char* const * items,
Elliott Hughes018ed312015-04-08 16:51:36 -070059 int initial_selection);
Doug Zongker211aebc2011-10-28 15:13:10 -070060 int SelectMenu(int sel);
61 void EndMenu();
62
Elliott Hughes642aaa72015-04-10 12:47:46 -070063 void KeyLongPress(int);
64
Doug Zongkerc0441d12013-07-31 11:28:24 -070065 void Redraw();
66
Elliott Hughes8fd86d72015-04-13 14:36:02 -070067 enum UIElement {
68 HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO
69 };
Elliott Hughes642aaa72015-04-10 12:47:46 -070070 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070071
Elliott Hughes498cda62016-04-14 16:49:04 -070072 protected:
Prashant Malanif7f9e502016-03-10 03:40:20 +000073 Icon currentIcon;
Doug Zongker211aebc2011-10-28 15:13:10 -070074
Elliott Hughesfaf36e02016-04-20 17:22:16 -070075 // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
76 float density_;
Elliott Hughes6d089a92016-07-08 17:23:41 -070077 // The layout to use.
78 int layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -070079
Elliott Hughes498cda62016-04-14 16:49:04 -070080 GRSurface* error_icon;
81
82 GRSurface* erasing_text;
83 GRSurface* error_text;
84 GRSurface* installing_text;
85 GRSurface* no_command_text;
86
87 GRSurface** introFrames;
88 GRSurface** loopFrames;
89
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070090 GRSurface* progressBarEmpty;
91 GRSurface* progressBarFill;
92 GRSurface* stageMarkerEmpty;
93 GRSurface* stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -070094
95 ProgressType progressBarType;
96
97 float progressScopeStart, progressScopeSize, progress;
98 double progressScopeTime, progressScopeDuration;
99
Elliott Hughes8de52072015-04-08 20:06:50 -0700100 // true when both graphics pages are the same (except for the progress bar).
Doug Zongker211aebc2011-10-28 15:13:10 -0700101 bool pagesIdentical;
102
Elliott Hughesc0491632015-05-06 12:40:05 -0700103 size_t text_cols_, text_rows_;
104
Elliott Hughes8de52072015-04-08 20:06:50 -0700105 // Log text overlay, displayed when a magic key is pressed.
Elliott Hughesc0491632015-05-06 12:40:05 -0700106 char** text_;
107 size_t text_col_, text_row_, text_top_;
108
Doug Zongker211aebc2011-10-28 15:13:10 -0700109 bool show_text;
110 bool show_text_ever; // has show_text ever been true?
111
Elliott Hughesc0491632015-05-06 12:40:05 -0700112 char** menu_;
113 const char* const* menu_headers_;
Doug Zongker211aebc2011-10-28 15:13:10 -0700114 bool show_menu;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700115 int menu_items, menu_sel;
Doug Zongker211aebc2011-10-28 15:13:10 -0700116
Elliott Hughesc0491632015-05-06 12:40:05 -0700117 // An alternate text screen, swapped with 'text_' when we're viewing a log file.
118 char** file_viewer_text_;
119
Elliott Hughes985022a2015-04-13 13:04:32 -0700120 pthread_t progress_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700121
Elliott Hughes498cda62016-04-14 16:49:04 -0700122 // Number of intro frames and loop frames in the animation.
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700123 size_t intro_frames;
124 size_t loop_frames;
125
126 size_t current_frame;
127 bool intro_done;
Elliott Hughes498cda62016-04-14 16:49:04 -0700128
129 // Number of frames per sec (default: 30) for both parts of the animation.
Doug Zongker32a0a472011-11-01 11:00:20 -0700130 int animation_fps;
Doug Zongkereac881c2014-03-07 09:21:25 -0800131
Doug Zongkerc87bab12013-11-25 13:53:25 -0800132 int stage, max_stage;
133
Elliott Hughes498cda62016-04-14 16:49:04 -0700134 int char_width_;
135 int char_height_;
136 pthread_mutex_t updateMutex;
Elliott Hughes498cda62016-04-14 16:49:04 -0700137
Sen Jiangd5304492016-12-09 16:20:49 -0800138 virtual bool InitTextParams();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700139
140 virtual void draw_background_locked();
141 virtual void draw_foreground_locked();
142 virtual void draw_screen_locked();
143 virtual void update_screen_locked();
144 virtual void update_progress_locked();
Elliott Hughes985022a2015-04-13 13:04:32 -0700145
Elliott Hughes498cda62016-04-14 16:49:04 -0700146 GRSurface* GetCurrentFrame();
147 GRSurface* GetCurrentText();
148
Elliott Hughes985022a2015-04-13 13:04:32 -0700149 static void* ProgressThreadStartRoutine(void* data);
150 void ProgressThreadLoop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700151
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700152 virtual void ShowFile(FILE*);
153 virtual void PrintV(const char*, bool, va_list);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700154 void PutChar(char);
155 void ClearText();
156
Elliott Hughes498cda62016-04-14 16:49:04 -0700157 void LoadAnimation();
Prashant Malani0ba21cf2016-03-10 14:51:25 -0800158 void LoadBitmap(const char* filename, GRSurface** surface);
Elliott Hughes498cda62016-04-14 16:49:04 -0700159 void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
160
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700161 int PixelsFromDp(int dp);
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700162 virtual int GetAnimationBaseline();
163 virtual int GetProgressBaseline();
164 virtual int GetTextBaseline();
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700165
Elliott Hughes498cda62016-04-14 16:49:04 -0700166 void DrawHorizontalRule(int* y);
Prashant Malani7a491222016-03-11 10:00:55 -0800167 void DrawTextLine(int x, int* y, const char* line, bool bold);
168 void DrawTextLines(int x, int* y, const char* const* lines);
Doug Zongker211aebc2011-10-28 15:13:10 -0700169};
170
171#endif // RECOVERY_UI_H