blob: f4a839923ab3cefc5845c74f21f3eb8e1046d72f [file] [log] [blame]
Tao Bao337db142015-08-20 14:52:57 -07001/*
2 * Copyright (C) 2014 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
Tao Bao736d59c2017-01-03 10:15:33 -080017#include "wear_ui.h"
18
Tao Baocff82692017-08-26 07:56:44 -070019#include <pthread.h>
Tao Bao337db142015-08-20 14:52:57 -070020#include <string.h>
Tao Bao337db142015-08-20 14:52:57 -070021
Tao Bao736d59c2017-01-03 10:15:33 -080022#include <string>
Tao Bao1fe1afe2018-05-01 15:56:05 -070023#include <vector>
Tao Bao337db142015-08-20 14:52:57 -070024
Tao Bao0ecbd762017-01-16 21:16:58 -080025#include <android-base/properties.h>
Tao Baoee8a96a2017-09-01 11:37:50 -070026#include <android-base/strings.h>
Tao Bao0ecbd762017-01-16 21:16:58 -080027#include <minui/minui.h>
28
Tao Bao5d2e3bd2017-06-23 22:23:50 -070029WearRecoveryUI::WearRecoveryUI()
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070030 : ScreenRecoveryUI(true),
31 kProgressBarBaseline(RECOVERY_UI_PROGRESS_BAR_BASELINE),
Tao Baoeea3af32017-08-11 13:50:24 -070032 kMenuUnusableRows(RECOVERY_UI_MENU_UNUSABLE_ROWS) {
33 // TODO: kMenuUnusableRows should be computed based on the lines in draw_screen_locked().
Tao Bao0470cee2017-08-02 17:11:04 -070034
Tao Bao0470cee2017-08-02 17:11:04 -070035 touch_screen_allowed_ = true;
Tao Bao337db142015-08-20 14:52:57 -070036}
37
Tao Bao99b2d772017-06-23 22:47:03 -070038int WearRecoveryUI::GetProgressBaseline() const {
Tao Bao0470cee2017-08-02 17:11:04 -070039 return kProgressBarBaseline;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070040}
41
Tao Bao337db142015-08-20 14:52:57 -070042// Draw background frame on the screen. Does not flip pages.
43// Should only be called with updateMutex locked.
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070044// TODO merge drawing routines with screen_ui
Tao Bao5d2e3bd2017-06-23 22:23:50 -070045void WearRecoveryUI::draw_background_locked() {
46 pagesIdentical = false;
47 gr_color(0, 0, 0, 255);
48 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
Tao Bao337db142015-08-20 14:52:57 -070049
Tao Bao5d2e3bd2017-06-23 22:23:50 -070050 if (currentIcon != NONE) {
Tao Bao79127102017-08-30 15:23:34 -070051 GRSurface* frame = GetCurrentFrame();
52 int frame_width = gr_get_width(frame);
53 int frame_height = gr_get_height(frame);
54 int frame_x = (gr_fb_width() - frame_width) / 2;
55 int frame_y = (gr_fb_height() - frame_height) / 2;
56 gr_blit(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
Tao Bao5d2e3bd2017-06-23 22:23:50 -070057 }
Tao Bao337db142015-08-20 14:52:57 -070058}
59
Tao Bao5d2e3bd2017-06-23 22:23:50 -070060void WearRecoveryUI::draw_screen_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070061 draw_background_locked();
62 if (!show_text) {
63 draw_foreground_locked();
64 } else {
65 SetColor(TEXT_FILL);
66 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
Tao Bao337db142015-08-20 14:52:57 -070067
Tao Bao93e46ad2018-05-02 14:57:21 -070068 // clang-format off
69 static std::vector<std::string> SWIPE_HELP = {
70 "Swipe up/down to move.",
71 "Swipe left/right to select.",
72 "",
73 };
74 // clang-format on
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070075 draw_menu_and_text_buffer_locked(SWIPE_HELP);
Tao Bao5d2e3bd2017-06-23 22:23:50 -070076 }
Tao Bao337db142015-08-20 14:52:57 -070077}
78
Damien Bargiacchiad8b5a62016-09-09 08:18:06 -070079// TODO merge drawing routines with screen_ui
80void WearRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070081 draw_screen_locked();
82 gr_flip();
Tao Bao337db142015-08-20 14:52:57 -070083}
84
Tao Bao99f0d9e2016-10-13 12:46:38 -070085void WearRecoveryUI::SetStage(int /* current */, int /* max */) {}
Tao Bao337db142015-08-20 14:52:57 -070086
Tao Bao1fe1afe2018-05-01 15:56:05 -070087void WearRecoveryUI::StartMenu(const std::vector<std::string>& headers,
88 const std::vector<std::string>& items, size_t initial_selection) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070089 pthread_mutex_lock(&updateMutex);
90 if (text_rows_ > 0 && text_cols_ > 0) {
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070091 menu_ = std::make_unique<Menu>(scrollable_menu_, text_rows_ - kMenuUnusableRows - 1,
Tao Baoe02a5b22018-05-02 15:46:11 -070092 text_cols_ - 1, headers, items, initial_selection);
Tao Bao5d2e3bd2017-06-23 22:23:50 -070093 update_screen_locked();
94 }
95 pthread_mutex_unlock(&updateMutex);
Tao Bao93e46ad2018-05-02 14:57:21 -070096}