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 | |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 20 | #include <stdio.h> |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 21 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 22 | #include <atomic> |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 23 | #include <functional> |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 24 | #include <memory> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 25 | #include <string> |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 26 | #include <thread> |
Tao Bao | e15d7a5 | 2017-09-07 13:38:51 -0700 | [diff] [blame] | 27 | #include <vector> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 28 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 29 | #include "ui.h" |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 30 | |
| 31 | // From minui/minui.h. |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 32 | class GRSurface; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 33 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 34 | enum class UIElement { |
| 35 | HEADER, |
| 36 | MENU, |
| 37 | MENU_SEL_BG, |
| 38 | MENU_SEL_BG_ACTIVE, |
| 39 | MENU_SEL_FG, |
| 40 | LOG, |
| 41 | TEXT_FILL, |
| 42 | INFO |
| 43 | }; |
| 44 | |
| 45 | // Interface to draw the UI elements on the screen. |
| 46 | class DrawInterface { |
| 47 | public: |
| 48 | virtual ~DrawInterface() = default; |
| 49 | |
| 50 | // Sets the color to the predefined value for |element|. |
| 51 | virtual void SetColor(UIElement element) const = 0; |
| 52 | |
| 53 | // Draws a highlight bar at (x, y) - (x + width, y + height). |
| 54 | virtual void DrawHighlightBar(int x, int y, int width, int height) const = 0; |
| 55 | |
| 56 | // Draws a horizontal rule at Y. Returns the offset it should be moving along Y-axis. |
| 57 | virtual int DrawHorizontalRule(int y) const = 0; |
| 58 | |
| 59 | // Draws a line of text. Returns the offset it should be moving along Y-axis. |
| 60 | virtual int DrawTextLine(int x, int y, const std::string& line, bool bold) const = 0; |
| 61 | |
| 62 | // Draws surface portion (sx, sy, w, h) at screen location (dx, dy). |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 63 | virtual void DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 64 | int dy) const = 0; |
| 65 | |
| 66 | // Draws rectangle at (x, y) - (x + w, y + h). |
| 67 | virtual void DrawFill(int x, int y, int w, int h) const = 0; |
| 68 | |
| 69 | // Draws given surface (surface->pixel_bytes = 1) as text at (x, y). |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 70 | virtual void DrawTextIcon(int x, int y, const GRSurface* surface) const = 0; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 71 | |
| 72 | // Draws multiple text lines. Returns the offset it should be moving along Y-axis. |
| 73 | virtual int DrawTextLines(int x, int y, const std::vector<std::string>& lines) const = 0; |
| 74 | |
| 75 | // Similar to DrawTextLines() to draw multiple text lines, but additionally wraps long lines. It |
| 76 | // keeps symmetrical margins of 'x' at each end of a line. Returns the offset it should be moving |
| 77 | // along Y-axis. |
| 78 | virtual int DrawWrappedTextLines(int x, int y, const std::vector<std::string>& lines) const = 0; |
| 79 | }; |
| 80 | |
| 81 | // Interface for classes that maintain the menu selection and display. |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 82 | class Menu { |
| 83 | public: |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 84 | virtual ~Menu() = default; |
| 85 | // Returns the current menu selection. |
| 86 | size_t selection() const; |
| 87 | // Sets the current selection to |sel|. Handle the overflow cases depending on if the menu is |
| 88 | // scrollable. |
| 89 | virtual int Select(int sel) = 0; |
| 90 | // Displays the menu headers on the screen at offset x, y |
| 91 | virtual int DrawHeader(int x, int y) const = 0; |
| 92 | // Iterates over the menu items and displays each of them at offset x, y. |
| 93 | virtual int DrawItems(int x, int y, int screen_width, bool long_press) const = 0; |
| 94 | |
| 95 | protected: |
| 96 | Menu(size_t initial_selection, const DrawInterface& draw_func); |
| 97 | // Current menu selection. |
| 98 | size_t selection_; |
| 99 | // Reference to the class that implements all the draw functions. |
| 100 | const DrawInterface& draw_funcs_; |
| 101 | }; |
| 102 | |
| 103 | // This class uses strings as the menu header and items. |
| 104 | class TextMenu : public Menu { |
| 105 | public: |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 106 | // Constructs a Menu instance with the given |headers|, |items| and properties. Sets the initial |
| 107 | // selection to |initial_selection|. |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 108 | TextMenu(bool scrollable, size_t max_items, size_t max_length, |
| 109 | const std::vector<std::string>& headers, const std::vector<std::string>& items, |
| 110 | size_t initial_selection, int char_height, const DrawInterface& draw_funcs); |
| 111 | |
| 112 | int Select(int sel) override; |
| 113 | int DrawHeader(int x, int y) const override; |
| 114 | int DrawItems(int x, int y, int screen_width, bool long_press) const override; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 115 | |
| 116 | bool scrollable() const { |
| 117 | return scrollable_; |
| 118 | } |
| 119 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 120 | // Returns count of menu items. |
| 121 | size_t ItemsCount() const; |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 122 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 123 | // Returns the index of the first menu item. |
| 124 | size_t MenuStart() const; |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 125 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 126 | // Returns the index of the last menu item + 1. |
| 127 | size_t MenuEnd() const; |
| 128 | |
| 129 | // Menu example: |
| 130 | // info: Android Recovery |
| 131 | // .... |
| 132 | // help messages: Swipe up/down to move |
| 133 | // Swipe left/right to select |
| 134 | // empty line (horizontal rule): |
| 135 | // menu headers: Select file to view |
| 136 | // menu items: /cache/recovery/last_log |
| 137 | // /cache/recovery/last_log.1 |
| 138 | // /cache/recovery/last_log.2 |
| 139 | // ... |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 140 | const std::vector<std::string>& text_headers() const; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 141 | std::string TextItem(size_t index) const; |
| 142 | |
| 143 | // Checks if the menu items fit vertically on the screen. Returns true and set the |
| 144 | // |cur_selection_str| if the items exceed the screen limit. |
| 145 | bool ItemsOverflow(std::string* cur_selection_str) const; |
| 146 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 147 | private: |
| 148 | // The menu is scrollable to display more items. Used on wear devices who have smaller screens. |
| 149 | const bool scrollable_; |
| 150 | // The max number of menu items to fit vertically on a screen. |
| 151 | const size_t max_display_items_; |
| 152 | // The length of each item to fit horizontally on a screen. |
| 153 | const size_t max_item_length_; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 154 | // The menu headers. |
| 155 | std::vector<std::string> text_headers_; |
| 156 | // The actual menu items trimmed to fit the given properties. |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 157 | std::vector<std::string> text_items_; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 158 | // The first item to display on the screen. |
| 159 | size_t menu_start_; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 160 | |
| 161 | // Height in pixels of each character. |
| 162 | int char_height_; |
| 163 | }; |
| 164 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 165 | // This class uses GRSurface's as the menu header and items. |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 166 | class GraphicMenu : public Menu { |
| 167 | public: |
| 168 | // Constructs a Menu instance with the given |headers|, |items| and properties. Sets the initial |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 169 | // selection to |initial_selection|. |headers| and |items| will be made local copies. |
| 170 | GraphicMenu(const GRSurface* graphic_headers, const std::vector<const GRSurface*>& graphic_items, |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 171 | size_t initial_selection, const DrawInterface& draw_funcs); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 172 | |
| 173 | int Select(int sel) override; |
| 174 | int DrawHeader(int x, int y) const override; |
| 175 | int DrawItems(int x, int y, int screen_width, bool long_press) const override; |
| 176 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 177 | // Checks if all the header and items are valid GRSurface's; and that they can fit in the area |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 178 | // defined by |max_width| and |max_height|. |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 179 | static bool Validate(size_t max_width, size_t max_height, const GRSurface* graphic_headers, |
| 180 | const std::vector<const GRSurface*>& graphic_items); |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 181 | |
| 182 | // Returns true if |surface| fits on the screen with a vertical offset |y|. |
| 183 | static bool ValidateGraphicSurface(size_t max_width, size_t max_height, int y, |
| 184 | const GRSurface* surface); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 185 | |
| 186 | private: |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 187 | // Menu headers and items in graphic icons. These are the copies owned by the class instance. |
| 188 | std::unique_ptr<GRSurface> graphic_headers_; |
| 189 | std::vector<std::unique_ptr<GRSurface>> graphic_items_; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 190 | }; |
| 191 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 192 | // Implementation of RecoveryUI appropriate for devices with a screen |
| 193 | // (shows an icon + a progress bar, text logging, menu, etc.) |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 194 | class ScreenRecoveryUI : public RecoveryUI, public DrawInterface { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 195 | public: |
| 196 | ScreenRecoveryUI(); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 197 | explicit ScreenRecoveryUI(bool scrollable_menu); |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 198 | ~ScreenRecoveryUI() override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 199 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 200 | bool Init(const std::string& locale) override; |
Tao Bao | 551d2c3 | 2018-05-09 20:53:13 -0700 | [diff] [blame] | 201 | std::string GetLocale() const override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 202 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 203 | // overall recovery state ("background image") |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 204 | void SetBackground(Icon icon) override; |
| 205 | void SetSystemUpdateText(bool security_update) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 206 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 207 | // progress indicator |
| 208 | void SetProgressType(ProgressType type) override; |
| 209 | void ShowProgress(float portion, float seconds) override; |
| 210 | void SetProgress(float fraction) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 211 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 212 | void SetStage(int current, int max) override; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 213 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 214 | // text log |
| 215 | void ShowText(bool visible) override; |
| 216 | bool IsTextVisible() override; |
| 217 | bool WasTextEverVisible() override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 218 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 219 | // printing messages |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 220 | void Print(const char* fmt, ...) override __printflike(2, 3); |
| 221 | void PrintOnScreenOnly(const char* fmt, ...) override __printflike(2, 3); |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 222 | void ShowFile(const std::string& filename) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 223 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 224 | // menu display |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 225 | size_t ShowMenu(const std::vector<std::string>& headers, const std::vector<std::string>& items, |
| 226 | size_t initial_selection, bool menu_only, |
| 227 | const std::function<int(int, bool)>& key_handler) override; |
Jerry Zhang | 0e577ee | 2018-05-07 11:21:10 -0700 | [diff] [blame] | 228 | void SetTitle(const std::vector<std::string>& lines) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 229 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 230 | void KeyLongPress(int) override; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 231 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 232 | void Redraw(); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 233 | |
Tao Bao | 39c4918 | 2018-05-07 22:50:33 -0700 | [diff] [blame] | 234 | // Checks the background text image, for debugging purpose. It iterates the locales embedded in |
| 235 | // the on-device resource files and shows the localized text, for manual inspection. |
| 236 | void CheckBackgroundTextImages(); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 237 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 238 | // Displays the localized wipe data menu. |
| 239 | size_t ShowPromptWipeDataMenu(const std::vector<std::string>& backup_headers, |
| 240 | const std::vector<std::string>& backup_items, |
| 241 | const std::function<int(int, bool)>& key_handler) override; |
| 242 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 243 | protected: |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 244 | static constexpr int kMenuIndent = 4; |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 245 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 246 | // The margin that we don't want to use for showing texts (e.g. round screen, or screen with |
| 247 | // rounded corners). |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 248 | const int margin_width_; |
| 249 | const int margin_height_; |
Tao Bao | 4521b70 | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 250 | |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 251 | // Number of frames per sec (default: 30) for both parts of the animation. |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 252 | const int animation_fps_; |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 253 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 254 | // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi. |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 255 | const float density_; |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 256 | |
| 257 | virtual bool InitTextParams(); |
| 258 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 259 | virtual bool LoadWipeDataMenuText(); |
| 260 | |
| 261 | // Creates a GraphicMenu with |graphic_header| and |graphic_items|. If the GraphicMenu isn't |
| 262 | // valid or it doesn't fit on the screen; falls back to create a TextMenu instead. If succeeds, |
| 263 | // returns a unique pointer to the created menu; otherwise returns nullptr. |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 264 | virtual std::unique_ptr<Menu> CreateMenu(const GRSurface* graphic_header, |
| 265 | const std::vector<const GRSurface*>& graphic_items, |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 266 | const std::vector<std::string>& text_headers, |
| 267 | const std::vector<std::string>& text_items, |
| 268 | size_t initial_selection) const; |
| 269 | |
| 270 | // Creates a TextMenu with |text_headers| and |text_items|; and sets the menu selection to |
| 271 | // |initial_selection|. |
| 272 | virtual std::unique_ptr<Menu> CreateMenu(const std::vector<std::string>& text_headers, |
| 273 | const std::vector<std::string>& text_items, |
| 274 | size_t initial_selection) const; |
| 275 | |
| 276 | // Takes the ownership of |menu| and displays it. |
| 277 | virtual size_t ShowMenu(std::unique_ptr<Menu>&& menu, bool menu_only, |
| 278 | const std::function<int(int, bool)>& key_handler); |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 279 | |
| 280 | // Sets the menu highlight to the given index, wrapping if necessary. Returns the actual item |
| 281 | // selected. |
| 282 | virtual int SelectMenu(int sel); |
| 283 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 284 | virtual void draw_background_locked(); |
| 285 | virtual void draw_foreground_locked(); |
| 286 | virtual void draw_screen_locked(); |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 287 | virtual void draw_menu_and_text_buffer_locked(const std::vector<std::string>& help_message); |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 288 | virtual void update_screen_locked(); |
| 289 | virtual void update_progress_locked(); |
| 290 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 291 | const GRSurface* GetCurrentFrame() const; |
| 292 | const GRSurface* GetCurrentText() const; |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 293 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 294 | void ProgressThreadLoop(); |
| 295 | |
| 296 | virtual void ShowFile(FILE*); |
| 297 | virtual void PrintV(const char*, bool, va_list); |
| 298 | void PutChar(char); |
| 299 | void ClearText(); |
| 300 | |
| 301 | void LoadAnimation(); |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 302 | std::unique_ptr<GRSurface> LoadBitmap(const std::string& filename); |
| 303 | std::unique_ptr<GRSurface> LoadLocalizedBitmap(const std::string& filename); |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 304 | |
| 305 | int PixelsFromDp(int dp) const; |
| 306 | virtual int GetAnimationBaseline() const; |
| 307 | virtual int GetProgressBaseline() const; |
| 308 | virtual int GetTextBaseline() const; |
| 309 | |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 310 | // Returns pixel width of draw buffer. |
| 311 | virtual int ScreenWidth() const; |
| 312 | // Returns pixel height of draw buffer. |
| 313 | virtual int ScreenHeight() const; |
| 314 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 315 | // Implementation of the draw functions in DrawInterface. |
| 316 | void SetColor(UIElement e) const override; |
| 317 | void DrawHighlightBar(int x, int y, int width, int height) const override; |
| 318 | int DrawHorizontalRule(int y) const override; |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 319 | void DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, |
| 320 | int dy) const override; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 321 | void DrawFill(int x, int y, int w, int h) const override; |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 322 | void DrawTextIcon(int x, int y, const GRSurface* surface) const override; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 323 | int DrawTextLine(int x, int y, const std::string& line, bool bold) const override; |
| 324 | int DrawTextLines(int x, int y, const std::vector<std::string>& lines) const override; |
| 325 | int DrawWrappedTextLines(int x, int y, const std::vector<std::string>& lines) const override; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 326 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 327 | // The layout to use. |
| 328 | int layout_; |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 329 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 330 | // The images that contain localized texts. |
| 331 | std::unique_ptr<GRSurface> erasing_text_; |
| 332 | std::unique_ptr<GRSurface> error_text_; |
| 333 | std::unique_ptr<GRSurface> installing_text_; |
| 334 | std::unique_ptr<GRSurface> no_command_text_; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 335 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 336 | // Localized text images for the wipe data menu. |
| 337 | std::unique_ptr<GRSurface> wipe_data_menu_header_text_; |
| 338 | std::unique_ptr<GRSurface> try_again_text_; |
| 339 | std::unique_ptr<GRSurface> factory_data_reset_text_; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 340 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 341 | // current_icon_ points to one of the frames in intro_frames_ or loop_frames_, indexed by |
| 342 | // current_frame_, or error_icon_. |
| 343 | Icon current_icon_; |
| 344 | std::unique_ptr<GRSurface> error_icon_; |
| 345 | std::vector<std::unique_ptr<GRSurface>> intro_frames_; |
| 346 | std::vector<std::unique_ptr<GRSurface>> loop_frames_; |
| 347 | size_t current_frame_; |
| 348 | bool intro_done_; |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 349 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 350 | // progress_bar and stage_marker images. |
| 351 | std::unique_ptr<GRSurface> progress_bar_empty_; |
| 352 | std::unique_ptr<GRSurface> progress_bar_fill_; |
| 353 | std::unique_ptr<GRSurface> stage_marker_empty_; |
| 354 | std::unique_ptr<GRSurface> stage_marker_fill_; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 355 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 356 | ProgressType progressBarType; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 357 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 358 | float progressScopeStart, progressScopeSize, progress; |
| 359 | double progressScopeTime, progressScopeDuration; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 360 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 361 | // true when both graphics pages are the same (except for the progress bar). |
| 362 | bool pagesIdentical; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 363 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 364 | size_t text_cols_, text_rows_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 365 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 366 | // Log text overlay, displayed when a magic key is pressed. |
| 367 | char** text_; |
Tao Bao | cb5524c | 2017-09-08 21:25:32 -0700 | [diff] [blame] | 368 | size_t text_col_, text_row_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 369 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 370 | bool show_text; |
| 371 | bool show_text_ever; // has show_text ever been true? |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 372 | |
Jerry Zhang | 0e577ee | 2018-05-07 11:21:10 -0700 | [diff] [blame] | 373 | std::vector<std::string> title_lines_; |
| 374 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 375 | bool scrollable_menu_; |
| 376 | std::unique_ptr<Menu> menu_; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 377 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 378 | // An alternate text screen, swapped with 'text_' when we're viewing a log file. |
| 379 | char** file_viewer_text_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 380 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 381 | std::thread progress_thread_; |
| 382 | std::atomic<bool> progress_thread_stopped_{ false }; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 383 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 384 | int stage, max_stage; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 385 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 386 | int char_width_; |
| 387 | int char_height_; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 388 | |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 389 | // The locale that's used to show the rendered texts. |
| 390 | std::string locale_; |
| 391 | bool rtl_locale_; |
| 392 | |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 393 | std::mutex updateMutex; |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 394 | |
| 395 | private: |
| 396 | void SetLocale(const std::string&); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 397 | |
| 398 | // Display the background texts for "erasing", "error", "no_command" and "installing" for the |
| 399 | // selected locale. |
| 400 | void SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries, size_t sel); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 401 | }; |
| 402 | |
| 403 | #endif // RECOVERY_UI_H |