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