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