blob: 2a3d8c30b15bf2b591af752933afe9a6331c97c2 [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"
Tao Bao0ecbd762017-01-16 21:16:58 -080026
27// From minui/minui.h.
28struct GRSurface;
Doug Zongker211aebc2011-10-28 15:13:10 -070029
30// Implementation of RecoveryUI appropriate for devices with a screen
31// (shows an icon + a progress bar, text logging, menu, etc.)
32class ScreenRecoveryUI : public RecoveryUI {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070033 public:
34 ScreenRecoveryUI();
Doug Zongker211aebc2011-10-28 15:13:10 -070035
Tao Bao5d2e3bd2017-06-23 22:23:50 -070036 bool Init(const std::string& locale) override;
Doug Zongker211aebc2011-10-28 15:13:10 -070037
Tao Bao5d2e3bd2017-06-23 22:23:50 -070038 // overall recovery state ("background image")
39 void SetBackground(Icon icon);
40 void SetSystemUpdateText(bool security_update);
Doug Zongker211aebc2011-10-28 15:13:10 -070041
Tao Bao5d2e3bd2017-06-23 22:23:50 -070042 // progress indicator
43 void SetProgressType(ProgressType type) override;
44 void ShowProgress(float portion, float seconds) override;
45 void SetProgress(float fraction) override;
Doug Zongker211aebc2011-10-28 15:13:10 -070046
Tao Bao5d2e3bd2017-06-23 22:23:50 -070047 void SetStage(int current, int max) override;
Doug Zongkerc87bab12013-11-25 13:53:25 -080048
Tao Bao5d2e3bd2017-06-23 22:23:50 -070049 // text log
50 void ShowText(bool visible) override;
51 bool IsTextVisible() override;
52 bool WasTextEverVisible() override;
Doug Zongker211aebc2011-10-28 15:13:10 -070053
Tao Bao5d2e3bd2017-06-23 22:23:50 -070054 // printing messages
55 void Print(const char* fmt, ...) __printflike(2, 3);
56 void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3);
57 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070058
Tao Bao5d2e3bd2017-06-23 22:23:50 -070059 // menu display
60 void StartMenu(const char* const* headers, const char* const* items, int initial_selection);
61 int SelectMenu(int sel);
62 void EndMenu();
Doug Zongker211aebc2011-10-28 15:13:10 -070063
Tao Bao5d2e3bd2017-06-23 22:23:50 -070064 void KeyLongPress(int);
Elliott Hughes642aaa72015-04-10 12:47:46 -070065
Tao Bao5d2e3bd2017-06-23 22:23:50 -070066 void Redraw();
Doug Zongkerc0441d12013-07-31 11:28:24 -070067
Tao Bao5d2e3bd2017-06-23 22:23:50 -070068 enum UIElement {
69 HEADER,
70 MENU,
71 MENU_SEL_BG,
72 MENU_SEL_BG_ACTIVE,
73 MENU_SEL_FG,
74 LOG,
75 TEXT_FILL,
76 INFO
77 };
78 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070079
Tao Bao5d2e3bd2017-06-23 22:23:50 -070080 protected:
81 // The margin that we don't want to use for showing texts (e.g. round screen, or screen with
82 // rounded corners).
83 const int kMarginWidth;
84 const int kMarginHeight;
Tao Bao4521b702017-06-20 18:11:21 -070085
Tao Bao5d2e3bd2017-06-23 22:23:50 -070086 // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
87 const float density_;
Tao Bao171b4c42017-06-19 23:10:44 -070088
Tao Bao5d2e3bd2017-06-23 22:23:50 -070089 Icon currentIcon;
Doug Zongker211aebc2011-10-28 15:13:10 -070090
Tao Bao5d2e3bd2017-06-23 22:23:50 -070091 // The layout to use.
92 int layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -070093
Tao Bao5d2e3bd2017-06-23 22:23:50 -070094 GRSurface* error_icon;
Elliott Hughes498cda62016-04-14 16:49:04 -070095
Tao Bao5d2e3bd2017-06-23 22:23:50 -070096 GRSurface* erasing_text;
97 GRSurface* error_text;
98 GRSurface* installing_text;
99 GRSurface* no_command_text;
Elliott Hughes498cda62016-04-14 16:49:04 -0700100
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700101 GRSurface** introFrames;
102 GRSurface** loopFrames;
Elliott Hughes498cda62016-04-14 16:49:04 -0700103
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700104 GRSurface* progressBarEmpty;
105 GRSurface* progressBarFill;
106 GRSurface* stageMarkerEmpty;
107 GRSurface* stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -0700108
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700109 ProgressType progressBarType;
Doug Zongker211aebc2011-10-28 15:13:10 -0700110
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700111 float progressScopeStart, progressScopeSize, progress;
112 double progressScopeTime, progressScopeDuration;
Doug Zongker211aebc2011-10-28 15:13:10 -0700113
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700114 // true when both graphics pages are the same (except for the progress bar).
115 bool pagesIdentical;
Doug Zongker211aebc2011-10-28 15:13:10 -0700116
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700117 size_t text_cols_, text_rows_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700118
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700119 // Log text overlay, displayed when a magic key is pressed.
120 char** text_;
121 size_t text_col_, text_row_, text_top_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700122
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700123 bool show_text;
124 bool show_text_ever; // has show_text ever been true?
Doug Zongker211aebc2011-10-28 15:13:10 -0700125
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700126 char** menu_;
127 const char* const* menu_headers_;
128 bool show_menu;
129 int menu_items, menu_sel;
Doug Zongker211aebc2011-10-28 15:13:10 -0700130
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700131 // An alternate text screen, swapped with 'text_' when we're viewing a log file.
132 char** file_viewer_text_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700133
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700134 pthread_t progress_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700135
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700136 // Number of intro frames and loop frames in the animation.
137 size_t intro_frames;
138 size_t loop_frames;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700139
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700140 size_t current_frame;
141 bool intro_done;
Elliott Hughes498cda62016-04-14 16:49:04 -0700142
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700143 // Number of frames per sec (default: 30) for both parts of the animation.
144 int animation_fps;
Doug Zongkereac881c2014-03-07 09:21:25 -0800145
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700146 int stage, max_stage;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800147
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700148 int char_width_;
149 int char_height_;
Tao Bao171b4c42017-06-19 23:10:44 -0700150
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700151 pthread_mutex_t updateMutex;
Elliott Hughes498cda62016-04-14 16:49:04 -0700152
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700153 virtual bool InitTextParams();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700154
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700155 virtual void draw_background_locked();
156 virtual void draw_foreground_locked();
157 virtual void draw_screen_locked();
158 virtual void update_screen_locked();
159 virtual void update_progress_locked();
Elliott Hughes985022a2015-04-13 13:04:32 -0700160
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700161 GRSurface* GetCurrentFrame();
162 GRSurface* GetCurrentText();
Elliott Hughes498cda62016-04-14 16:49:04 -0700163
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700164 static void* ProgressThreadStartRoutine(void* data);
165 void ProgressThreadLoop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700166
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700167 virtual void ShowFile(FILE*);
168 virtual void PrintV(const char*, bool, va_list);
169 void PutChar(char);
170 void ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700171
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700172 void LoadAnimation();
173 void LoadBitmap(const char* filename, GRSurface** surface);
174 void LoadLocalizedBitmap(const char* filename, GRSurface** surface);
Elliott Hughes498cda62016-04-14 16:49:04 -0700175
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700176 int PixelsFromDp(int dp) const;
177 virtual int GetAnimationBaseline();
178 virtual int GetProgressBaseline();
179 virtual int GetTextBaseline();
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700180
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700181 virtual void DrawHorizontalRule(int* y);
182 virtual void DrawHighlightBar(int x, int y, int width, int height) const;
183 virtual void DrawTextLine(int x, int* y, const char* line, bool bold) const;
184 void DrawTextLines(int x, int* y, const char* const* lines) const;
Doug Zongker211aebc2011-10-28 15:13:10 -0700185};
186
187#endif // RECOVERY_UI_H