Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 21 | #include <stdio.h> |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 22 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 23 | #include <string> |
| 24 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 25 | #include "ui.h" |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 26 | |
| 27 | // From minui/minui.h. |
| 28 | struct GRSurface; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 29 | |
| 30 | // Implementation of RecoveryUI appropriate for devices with a screen |
| 31 | // (shows an icon + a progress bar, text logging, menu, etc.) |
| 32 | class ScreenRecoveryUI : public RecoveryUI { |
| 33 | public: |
| 34 | ScreenRecoveryUI(); |
| 35 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 36 | bool Init(const std::string& locale) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 37 | |
| 38 | // overall recovery state ("background image") |
| 39 | void SetBackground(Icon icon); |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 40 | void SetSystemUpdateText(bool security_update); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 41 | |
| 42 | // progress indicator |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 43 | void SetProgressType(ProgressType type) override; |
| 44 | void ShowProgress(float portion, float seconds) override; |
| 45 | void SetProgress(float fraction) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 46 | |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 47 | void SetStage(int current, int max) override; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 48 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 49 | // text log |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 50 | void ShowText(bool visible) override; |
| 51 | bool IsTextVisible() override; |
| 52 | bool WasTextEverVisible() override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 53 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 54 | // printing messages |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 55 | void Print(const char* fmt, ...) __printflike(2, 3); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 56 | void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3); |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 57 | void ShowFile(const char* filename); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 58 | |
| 59 | // menu display |
| 60 | void StartMenu(const char* const * headers, const char* const * items, |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 61 | int initial_selection); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 62 | int SelectMenu(int sel); |
| 63 | void EndMenu(); |
| 64 | |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 65 | void KeyLongPress(int); |
| 66 | |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 67 | void Redraw(); |
| 68 | |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 69 | enum UIElement { |
| 70 | HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO |
| 71 | }; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 72 | void SetColor(UIElement e); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 73 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 74 | protected: |
Tao Bao | 4521b70 | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 75 | // The margin that we don't want to use for showing texts (e.g. round screen, or screen with |
| 76 | // rounded corners). |
| 77 | const int kMarginWidth; |
| 78 | const int kMarginHeight; |
| 79 | |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 80 | // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi. |
| 81 | const float density_; |
| 82 | |
Prashant Malani | f7f9e50 | 2016-03-10 03:40:20 +0000 | [diff] [blame] | 83 | Icon currentIcon; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 84 | |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 85 | // The layout to use. |
| 86 | int layout_; |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 87 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 88 | GRSurface* error_icon; |
| 89 | |
| 90 | GRSurface* erasing_text; |
| 91 | GRSurface* error_text; |
| 92 | GRSurface* installing_text; |
| 93 | GRSurface* no_command_text; |
| 94 | |
| 95 | GRSurface** introFrames; |
| 96 | GRSurface** loopFrames; |
| 97 | |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 98 | GRSurface* progressBarEmpty; |
| 99 | GRSurface* progressBarFill; |
| 100 | GRSurface* stageMarkerEmpty; |
| 101 | GRSurface* stageMarkerFill; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 102 | |
| 103 | ProgressType progressBarType; |
| 104 | |
| 105 | float progressScopeStart, progressScopeSize, progress; |
| 106 | double progressScopeTime, progressScopeDuration; |
| 107 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 108 | // true when both graphics pages are the same (except for the progress bar). |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 109 | bool pagesIdentical; |
| 110 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 111 | size_t text_cols_, text_rows_; |
| 112 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 113 | // Log text overlay, displayed when a magic key is pressed. |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 114 | char** text_; |
| 115 | size_t text_col_, text_row_, text_top_; |
| 116 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 117 | bool show_text; |
| 118 | bool show_text_ever; // has show_text ever been true? |
| 119 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 120 | char** menu_; |
| 121 | const char* const* menu_headers_; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 122 | bool show_menu; |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 123 | int menu_items, menu_sel; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 124 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 125 | // An alternate text screen, swapped with 'text_' when we're viewing a log file. |
| 126 | char** file_viewer_text_; |
| 127 | |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 128 | pthread_t progress_thread_; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 129 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 130 | // Number of intro frames and loop frames in the animation. |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 131 | size_t intro_frames; |
| 132 | size_t loop_frames; |
| 133 | |
| 134 | size_t current_frame; |
| 135 | bool intro_done; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 136 | |
| 137 | // Number of frames per sec (default: 30) for both parts of the animation. |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 138 | int animation_fps; |
Doug Zongker | eac881c | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 139 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 140 | int stage, max_stage; |
| 141 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 142 | int char_width_; |
| 143 | int char_height_; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 144 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 145 | pthread_mutex_t updateMutex; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 146 | |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 147 | virtual bool InitTextParams(); |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 148 | |
| 149 | virtual void draw_background_locked(); |
| 150 | virtual void draw_foreground_locked(); |
| 151 | virtual void draw_screen_locked(); |
| 152 | virtual void update_screen_locked(); |
| 153 | virtual void update_progress_locked(); |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 154 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 155 | GRSurface* GetCurrentFrame(); |
| 156 | GRSurface* GetCurrentText(); |
| 157 | |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 158 | static void* ProgressThreadStartRoutine(void* data); |
| 159 | void ProgressThreadLoop(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 160 | |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 161 | virtual void ShowFile(FILE*); |
| 162 | virtual void PrintV(const char*, bool, va_list); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 163 | void PutChar(char); |
| 164 | void ClearText(); |
| 165 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 166 | void LoadAnimation(); |
Prashant Malani | 0ba21cf | 2016-03-10 14:51:25 -0800 | [diff] [blame] | 167 | void LoadBitmap(const char* filename, GRSurface** surface); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 168 | void LoadLocalizedBitmap(const char* filename, GRSurface** surface); |
| 169 | |
Mikhail Lappo | b49767c | 2017-03-23 21:44:26 +0100 | [diff] [blame] | 170 | int PixelsFromDp(int dp) const; |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 171 | virtual int GetAnimationBaseline(); |
| 172 | virtual int GetProgressBaseline(); |
| 173 | virtual int GetTextBaseline(); |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 174 | |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 175 | virtual void DrawHorizontalRule(int* y); |
| 176 | virtual void DrawHighlightBar(int x, int y, int width, int height) const; |
| 177 | virtual void DrawTextLine(int x, int* y, const char* line, bool bold) const; |
Mikhail Lappo | b49767c | 2017-03-23 21:44:26 +0100 | [diff] [blame] | 178 | void DrawTextLines(int x, int* y, const char* const* lines) const; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | #endif // RECOVERY_UI_H |