blob: 3e73fcd0849c6398a34d9b148ab77d0e21e7bc6c [file] [log] [blame]
Luke Song7f386dc2017-07-13 15:10:35 -07001/*
2 * Copyright (C) 2017 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#include <android-base/stringprintf.h>
18#include <batteryservice/BatteryService.h>
19#include <cutils/klog.h>
20
21#include "healthd_draw.h"
22
Yifan Honge3ffd1b2021-10-20 22:18:16 -070023#if !defined(__ANDROID_VNDK__)
24#include "charger.sysprop.h"
25#endif
26
Luke Song7f386dc2017-07-13 15:10:35 -070027#define LOGE(x...) KLOG_ERROR("charger", x);
Todd Poynore5d1b622018-06-01 11:09:58 -070028#define LOGW(x...) KLOG_WARNING("charger", x);
Luke Song7f386dc2017-07-13 15:10:35 -070029#define LOGV(x...) KLOG_DEBUG("charger", x);
30
Yifan Hong97eecdc2019-07-03 11:07:37 -070031static bool get_split_screen() {
Yifan Honge3ffd1b2021-10-20 22:18:16 -070032#if !defined(__ANDROID_VNDK__)
Yifan Hong97eecdc2019-07-03 11:07:37 -070033 return android::sysprop::ChargerProperties::draw_split_screen().value_or(false);
Yifan Honge3ffd1b2021-10-20 22:18:16 -070034#else
35 return false;
36#endif
Yifan Hong97eecdc2019-07-03 11:07:37 -070037}
38
39static int get_split_offset() {
Yifan Honge3ffd1b2021-10-20 22:18:16 -070040#if !defined(__ANDROID_VNDK__)
Yifan Hong97eecdc2019-07-03 11:07:37 -070041 int64_t value = android::sysprop::ChargerProperties::draw_split_offset().value_or(0);
Yifan Honge3ffd1b2021-10-20 22:18:16 -070042#else
43 int64_t value = 0;
44#endif
Yifan Hong97eecdc2019-07-03 11:07:37 -070045 if (value < static_cast<int64_t>(std::numeric_limits<int>::min())) {
46 LOGW("draw_split_offset = %" PRId64 " overflow for an int; resetting to %d.\n", value,
47 std::numeric_limits<int>::min());
48 value = std::numeric_limits<int>::min();
49 }
50 if (value > static_cast<int64_t>(std::numeric_limits<int>::max())) {
51 LOGW("draw_split_offset = %" PRId64 " overflow for an int; resetting to %d.\n", value,
52 std::numeric_limits<int>::max());
53 value = std::numeric_limits<int>::max();
54 }
55 return static_cast<int>(value);
56}
57
Luke Song7f386dc2017-07-13 15:10:35 -070058HealthdDraw::HealthdDraw(animation* anim)
Yifan Hong97eecdc2019-07-03 11:07:37 -070059 : kSplitScreen(get_split_screen()), kSplitOffset(get_split_offset()) {
Todd Poynore5d1b622018-06-01 11:09:58 -070060 graphics_available = true;
61 sys_font = gr_sys_font();
62 if (sys_font == nullptr) {
63 LOGW("No system font, screen fallback text not available\n");
64 } else {
65 gr_font_size(sys_font, &char_width_, &char_height_);
66 }
67
68 screen_width_ = gr_fb_width() / (kSplitScreen ? 2 : 1);
69 screen_height_ = gr_fb_height();
70
71 int res;
72 if (!anim->text_clock.font_file.empty() &&
73 (res = gr_init_font(anim->text_clock.font_file.c_str(), &anim->text_clock.font)) < 0) {
74 LOGE("Could not load time font (%d)\n", res);
75 }
76 if (!anim->text_percent.font_file.empty() &&
77 (res = gr_init_font(anim->text_percent.font_file.c_str(), &anim->text_percent.font)) < 0) {
78 LOGE("Could not load percent font (%d)\n", res);
79 }
Luke Song7f386dc2017-07-13 15:10:35 -070080}
81
82HealthdDraw::~HealthdDraw() {}
83
84void HealthdDraw::redraw_screen(const animation* batt_anim, GRSurface* surf_unknown) {
Todd Poynore5d1b622018-06-01 11:09:58 -070085 if (!graphics_available) return;
86 clear_screen();
Luke Song7f386dc2017-07-13 15:10:35 -070087
Todd Poynore5d1b622018-06-01 11:09:58 -070088 /* try to display *something* */
Ken Tsou6c7ece72019-02-15 10:50:58 +080089 if (batt_anim->cur_status == BATTERY_STATUS_UNKNOWN || batt_anim->cur_level < 0 ||
90 batt_anim->num_frames == 0)
Todd Poynore5d1b622018-06-01 11:09:58 -070091 draw_unknown(surf_unknown);
92 else
93 draw_battery(batt_anim);
94 gr_flip();
Luke Song7f386dc2017-07-13 15:10:35 -070095}
96
Jack Wuc1b17112021-09-29 22:27:56 +080097void HealthdDraw::blank_screen(bool blank, int drm) {
Todd Poynore5d1b622018-06-01 11:09:58 -070098 if (!graphics_available) return;
Jack Wuc1b17112021-09-29 22:27:56 +080099 gr_fb_blank(blank, drm);
Todd Poynore5d1b622018-06-01 11:09:58 -0700100}
Luke Song7f386dc2017-07-13 15:10:35 -0700101
Jack Wu56540a02021-10-22 17:10:37 +0800102/* support screen rotation for foldable phone */
103void HealthdDraw::rotate_screen(int drm) {
104 if (!graphics_available) return;
105 if (drm == 0)
106 gr_rotate(GRRotation::RIGHT /* landscape mode */);
107 else
108 gr_rotate(GRRotation::NONE /* Portrait mode */);
109}
110
Luke Song7f386dc2017-07-13 15:10:35 -0700111void HealthdDraw::clear_screen(void) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700112 if (!graphics_available) return;
113 gr_color(0, 0, 0, 255);
114 gr_clear();
Luke Song7f386dc2017-07-13 15:10:35 -0700115}
116
117int HealthdDraw::draw_surface_centered(GRSurface* surface) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700118 if (!graphics_available) return 0;
Luke Song7f386dc2017-07-13 15:10:35 -0700119
Todd Poynore5d1b622018-06-01 11:09:58 -0700120 int w = gr_get_width(surface);
121 int h = gr_get_height(surface);
122 int x = (screen_width_ - w) / 2 + kSplitOffset;
123 int y = (screen_height_ - h) / 2;
124
Luke Song7f386dc2017-07-13 15:10:35 -0700125 LOGV("drawing surface %dx%d+%d+%d\n", w, h, x, y);
126 gr_blit(surface, 0, 0, w, h, x, y);
Todd Poynore5d1b622018-06-01 11:09:58 -0700127 if (kSplitScreen) {
128 x += screen_width_ - 2 * kSplitOffset;
129 LOGV("drawing surface %dx%d+%d+%d\n", w, h, x, y);
130 gr_blit(surface, 0, 0, w, h, x, y);
131 }
Luke Song7f386dc2017-07-13 15:10:35 -0700132
Todd Poynore5d1b622018-06-01 11:09:58 -0700133 return y + h;
Luke Song7f386dc2017-07-13 15:10:35 -0700134}
135
136int HealthdDraw::draw_text(const GRFont* font, int x, int y, const char* str) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700137 if (!graphics_available) return 0;
138 int str_len_px = gr_measure(font, str);
Luke Song7f386dc2017-07-13 15:10:35 -0700139
Todd Poynore5d1b622018-06-01 11:09:58 -0700140 if (x < 0) x = (screen_width_ - str_len_px) / 2;
141 if (y < 0) y = (screen_height_ - char_height_) / 2;
142 gr_text(font, x + kSplitOffset, y, str, false /* bold */);
143 if (kSplitScreen) gr_text(font, x - kSplitOffset + screen_width_, y, str, false /* bold */);
Luke Song7f386dc2017-07-13 15:10:35 -0700144
Todd Poynore5d1b622018-06-01 11:09:58 -0700145 return y + char_height_;
Luke Song7f386dc2017-07-13 15:10:35 -0700146}
147
148void HealthdDraw::determine_xy(const animation::text_field& field,
149 const int length, int* x, int* y) {
150 *x = field.pos_x;
Jack Wuc1b17112021-09-29 22:27:56 +0800151 screen_width_ = gr_fb_width() / (kSplitScreen ? 2 : 1);
152 screen_height_ = gr_fb_height();
Luke Song7f386dc2017-07-13 15:10:35 -0700153
154 int str_len_px = length * field.font->char_width;
155 if (field.pos_x == CENTER_VAL) {
156 *x = (screen_width_ - str_len_px) / 2;
157 } else if (field.pos_x >= 0) {
158 *x = field.pos_x;
159 } else { // position from max edge
160 *x = screen_width_ + field.pos_x - str_len_px - kSplitOffset;
161 }
162
163 *y = field.pos_y;
164
165 if (field.pos_y == CENTER_VAL) {
166 *y = (screen_height_ - field.font->char_height) / 2;
167 } else if (field.pos_y >= 0) {
168 *y = field.pos_y;
169 } else { // position from max edge
170 *y = screen_height_ + field.pos_y - field.font->char_height;
171 }
172}
173
174void HealthdDraw::draw_clock(const animation* anim) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700175 static constexpr char CLOCK_FORMAT[] = "%H:%M";
176 static constexpr int CLOCK_LENGTH = 6;
Luke Song7f386dc2017-07-13 15:10:35 -0700177
Todd Poynore5d1b622018-06-01 11:09:58 -0700178 const animation::text_field& field = anim->text_clock;
Luke Song7f386dc2017-07-13 15:10:35 -0700179
Todd Poynore5d1b622018-06-01 11:09:58 -0700180 if (!graphics_available || field.font == nullptr || field.font->char_width == 0 ||
181 field.font->char_height == 0)
182 return;
Luke Song7f386dc2017-07-13 15:10:35 -0700183
Todd Poynore5d1b622018-06-01 11:09:58 -0700184 time_t rawtime;
185 time(&rawtime);
186 tm* time_info = localtime(&rawtime);
Luke Song7f386dc2017-07-13 15:10:35 -0700187
Todd Poynore5d1b622018-06-01 11:09:58 -0700188 char clock_str[CLOCK_LENGTH];
189 size_t length = strftime(clock_str, CLOCK_LENGTH, CLOCK_FORMAT, time_info);
190 if (length != CLOCK_LENGTH - 1) {
191 LOGE("Could not format time\n");
192 return;
193 }
Luke Song7f386dc2017-07-13 15:10:35 -0700194
Todd Poynore5d1b622018-06-01 11:09:58 -0700195 int x, y;
196 determine_xy(field, length, &x, &y);
Luke Song7f386dc2017-07-13 15:10:35 -0700197
Todd Poynore5d1b622018-06-01 11:09:58 -0700198 LOGV("drawing clock %s %d %d\n", clock_str, x, y);
199 gr_color(field.color_r, field.color_g, field.color_b, field.color_a);
200 draw_text(field.font, x, y, clock_str);
Luke Song7f386dc2017-07-13 15:10:35 -0700201}
202
203void HealthdDraw::draw_percent(const animation* anim) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700204 if (!graphics_available) return;
205 int cur_level = anim->cur_level;
206 if (anim->cur_status == BATTERY_STATUS_FULL) {
207 cur_level = 100;
208 }
Luke Song7f386dc2017-07-13 15:10:35 -0700209
kentsouba61ea42018-07-17 17:49:34 +0800210 if (cur_level < 0) return;
Luke Song7f386dc2017-07-13 15:10:35 -0700211
Todd Poynore5d1b622018-06-01 11:09:58 -0700212 const animation::text_field& field = anim->text_percent;
213 if (field.font == nullptr || field.font->char_width == 0 || field.font->char_height == 0) {
214 return;
215 }
Luke Song7f386dc2017-07-13 15:10:35 -0700216
Todd Poynore5d1b622018-06-01 11:09:58 -0700217 std::string str = base::StringPrintf("%d%%", cur_level);
Luke Song7f386dc2017-07-13 15:10:35 -0700218
Todd Poynore5d1b622018-06-01 11:09:58 -0700219 int x, y;
220 determine_xy(field, str.size(), &x, &y);
Luke Song7f386dc2017-07-13 15:10:35 -0700221
Todd Poynore5d1b622018-06-01 11:09:58 -0700222 LOGV("drawing percent %s %d %d\n", str.c_str(), x, y);
223 gr_color(field.color_r, field.color_g, field.color_b, field.color_a);
224 draw_text(field.font, x, y, str.c_str());
Luke Song7f386dc2017-07-13 15:10:35 -0700225}
226
227void HealthdDraw::draw_battery(const animation* anim) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700228 if (!graphics_available) return;
229 const animation::frame& frame = anim->frames[anim->cur_frame];
Luke Song7f386dc2017-07-13 15:10:35 -0700230
Todd Poynore5d1b622018-06-01 11:09:58 -0700231 if (anim->num_frames != 0) {
232 draw_surface_centered(frame.surface);
233 LOGV("drawing frame #%d min_cap=%d time=%d\n", anim->cur_frame, frame.min_level,
234 frame.disp_time);
235 }
236 draw_clock(anim);
237 draw_percent(anim);
Luke Song7f386dc2017-07-13 15:10:35 -0700238}
239
240void HealthdDraw::draw_unknown(GRSurface* surf_unknown) {
241 int y;
242 if (surf_unknown) {
Todd Poynore5d1b622018-06-01 11:09:58 -0700243 draw_surface_centered(surf_unknown);
244 } else if (sys_font) {
245 gr_color(0xa4, 0xc6, 0x39, 255);
246 y = draw_text(sys_font, -1, -1, "Charging!");
247 draw_text(sys_font, -1, y + 25, "?\?/100");
Luke Song7f386dc2017-07-13 15:10:35 -0700248 } else {
Todd Poynore5d1b622018-06-01 11:09:58 -0700249 LOGW("Charging, level unknown\n");
Luke Song7f386dc2017-07-13 15:10:35 -0700250 }
251}
Xiaohui Niua40d8722021-08-31 16:22:25 +0800252
253std::unique_ptr<HealthdDraw> HealthdDraw::Create(animation *anim) {
254 if (gr_init() < 0) {
255 LOGE("gr_init failed\n");
256 return nullptr;
257 }
258 return std::unique_ptr<HealthdDraw>(new HealthdDraw(anim));
259}