Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | /* |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 2 | Copyright 2012 bigbiff/Dees_Troy TeamWin |
| 3 | This file is part of TWRP/TeamWin Recovery Project. |
| 4 | |
| 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 19 | #include <linux/input.h> |
| 20 | #include <pthread.h> |
| 21 | #include <stdarg.h> |
| 22 | #include <stdio.h> |
| 23 | #include <errno.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <fcntl.h> |
| 27 | #include <sys/reboot.h> |
| 28 | #include <sys/stat.h> |
| 29 | #include <sys/time.h> |
| 30 | #include <sys/mman.h> |
| 31 | #include <sys/types.h> |
| 32 | #include <sys/ioctl.h> |
| 33 | #include <sys/mount.h> |
| 34 | #include <time.h> |
| 35 | #include <unistd.h> |
| 36 | #include <stdlib.h> |
| 37 | |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 38 | extern "C" |
| 39 | { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 40 | #include "../twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 41 | #include "../minuitwrp/minui.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 42 | #include <pixelflinger/pixelflinger.h> |
| 43 | } |
| 44 | |
| 45 | #include "rapidxml.hpp" |
| 46 | #include "objects.hpp" |
| 47 | #include "../data.hpp" |
| 48 | #include "../variables.h" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 49 | #include "../partitions.hpp" |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 50 | #include "../twrp-functions.hpp" |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 51 | #include "../openrecoveryscript.hpp" |
| 52 | #include "../orscmd/orscmd.h" |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 53 | #include "blanktimer.hpp" |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 54 | #include "../tw_atomic.hpp" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 55 | |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 56 | // Enable to print render time of each frame to the log file |
| 57 | //#define PRINT_RENDER_TIME 1 |
| 58 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 59 | #ifdef _EVENT_LOGGING |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 60 | #define LOGEVENT(...) LOGERR(__VA_ARGS__) |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 61 | #else |
| 62 | #define LOGEVENT(...) do {} while (0) |
| 63 | #endif |
| 64 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 65 | const static int CURTAIN_FADE = 32; |
| 66 | |
| 67 | using namespace rapidxml; |
| 68 | |
| 69 | // Global values |
| 70 | static gr_surface gCurtain = NULL; |
| 71 | static int gGuiInitialized = 0; |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 72 | static TWAtomicInt gGuiConsoleRunning; |
| 73 | static TWAtomicInt gGuiConsoleTerminate; |
| 74 | static TWAtomicInt gForceRender; |
| 75 | const int gNoAnimation = 1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 76 | blanktimer blankTimer; |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 77 | int ors_read_fd = -1; |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 78 | static float scale_theme_w = 1; |
| 79 | static float scale_theme_h = 1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 80 | |
| 81 | // Needed by pages.cpp too |
| 82 | int gGuiRunning = 0; |
| 83 | |
| 84 | static int gRecorder = -1; |
| 85 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 86 | extern "C" void gr_write_frame_to_file(int fd); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 87 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 88 | void flip(void) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 89 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 90 | if (gRecorder != -1) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 91 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 92 | timespec time; |
| 93 | clock_gettime(CLOCK_MONOTONIC, &time); |
| 94 | write(gRecorder, &time, sizeof(timespec)); |
| 95 | gr_write_frame_to_file(gRecorder); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 96 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 97 | gr_flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 98 | } |
| 99 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 100 | void rapidxml::parse_error_handler(const char *what, void *where) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 101 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 102 | fprintf(stderr, "Parser error: %s\n", what); |
| 103 | fprintf(stderr, " Start of string: %s\n",(char *) where); |
| 104 | LOGERR("Error parsing XML file.\n"); |
| 105 | //abort(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 106 | } |
| 107 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 108 | static void curtainSet() |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 109 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 110 | gr_color(0, 0, 0, 255); |
| 111 | gr_fill(0, 0, gr_fb_width(), gr_fb_height()); |
Ethan Yonker | 751a85e | 2014-12-12 16:59:10 -0600 | [diff] [blame] | 112 | gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), gr_get_height(gCurtain), TW_X_OFFSET, TW_Y_OFFSET); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 113 | gr_flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 114 | } |
| 115 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 116 | static void curtainRaise(gr_surface surface) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 117 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 118 | int sy = 0; |
| 119 | int h = gr_get_height(gCurtain) - 1; |
| 120 | int w = gr_get_width(gCurtain); |
| 121 | int fy = 1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 122 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 123 | int msw = gr_get_width(surface); |
| 124 | int msh = gr_get_height(surface); |
| 125 | int CURTAIN_RATE = msh / 30; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 126 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 127 | if (gNoAnimation == 0) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 128 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 129 | for (; h > 0; h -= CURTAIN_RATE, sy += CURTAIN_RATE, fy += CURTAIN_RATE) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 130 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 131 | gr_blit(surface, 0, 0, msw, msh, 0, 0); |
| 132 | gr_blit(gCurtain, 0, sy, w, h, 0, 0); |
| 133 | gr_flip(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 134 | } |
| 135 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 136 | gr_blit(surface, 0, 0, msw, msh, 0, 0); |
| 137 | flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 138 | } |
| 139 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 140 | void curtainClose() |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 141 | { |
| 142 | #if 0 |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 143 | int w = gr_get_width(gCurtain); |
| 144 | int h = 1; |
| 145 | int sy = gr_get_height(gCurtain) - 1; |
| 146 | int fbh = gr_fb_height(); |
| 147 | int CURTAIN_RATE = fbh / 30; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 148 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 149 | if (gNoAnimation == 0) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 150 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 151 | for (; h < fbh; h += CURTAIN_RATE, sy -= CURTAIN_RATE) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 152 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 153 | gr_blit(gCurtain, 0, sy, w, h, 0, 0); |
| 154 | gr_flip(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 155 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 156 | gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), |
| 157 | gr_get_height(gCurtain), 0, 0); |
| 158 | gr_flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 159 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 160 | if (gRecorder != -1) |
| 161 | close(gRecorder); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 162 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 163 | int fade; |
| 164 | for (fade = 16; fade < 255; fade += CURTAIN_FADE) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 165 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 166 | gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), |
| 167 | gr_get_height(gCurtain), 0, 0); |
| 168 | gr_color(0, 0, 0, fade); |
| 169 | gr_fill(0, 0, gr_fb_width(), gr_fb_height()); |
| 170 | gr_flip(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 171 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 172 | gr_color(0, 0, 0, 255); |
| 173 | gr_fill(0, 0, gr_fb_width(), gr_fb_height()); |
| 174 | gr_flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 175 | } |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 176 | #else |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 177 | gr_blit(gCurtain, 0, 0, gr_get_width(gCurtain), gr_get_height(gCurtain), 0, 0); |
| 178 | gr_flip(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 179 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 180 | } |
| 181 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 182 | class InputHandler |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 183 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 184 | public: |
| 185 | void init() |
that | fb759d4 | 2015-01-11 12:16:53 +0100 | [diff] [blame] | 186 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 187 | // these might be read from DataManager in the future |
| 188 | touch_hold_ms = 500; |
| 189 | touch_repeat_ms = 100; |
| 190 | key_hold_ms = 500; |
| 191 | key_repeat_ms = 100; |
| 192 | touch_status = TS_NONE; |
| 193 | key_status = KS_NONE; |
| 194 | state = AS_NO_ACTION; |
| 195 | x = y = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 196 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 197 | #ifndef TW_NO_SCREEN_TIMEOUT |
| 198 | { |
| 199 | string seconds; |
| 200 | DataManager::GetValue("tw_screen_timeout_secs", seconds); |
| 201 | blankTimer.setTime(atoi(seconds.c_str())); |
| 202 | blankTimer.resetTimerAndUnblank(); |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 203 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 204 | #else |
| 205 | LOGINFO("Skipping screen timeout: TW_NO_SCREEN_TIMEOUT is set\n"); |
| 206 | #endif |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 207 | } |
| 208 | |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 209 | // process input events. returns true if any event was received. |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 210 | bool processInput(int timeout_ms); |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 211 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 212 | void handleDrag(); |
| 213 | |
| 214 | private: |
| 215 | // timeouts for touch/key hold and repeat |
| 216 | int touch_hold_ms; |
| 217 | int touch_repeat_ms; |
| 218 | int key_hold_ms; |
| 219 | int key_repeat_ms; |
| 220 | |
| 221 | enum touch_status_enum { |
| 222 | TS_NONE = 0, |
| 223 | TS_TOUCH_AND_HOLD = 1, |
| 224 | TS_TOUCH_REPEAT = 2, |
| 225 | }; |
| 226 | |
| 227 | enum key_status_enum { |
| 228 | KS_NONE = 0, |
| 229 | KS_KEY_PRESSED = 1, |
| 230 | KS_KEY_REPEAT = 2, |
| 231 | }; |
| 232 | |
| 233 | enum action_state_enum { |
| 234 | AS_IN_ACTION_AREA = 0, // we've touched a spot with an action |
| 235 | AS_NO_ACTION = 1, // we've touched in an empty area (no action) and ignore remaining events until touch release |
| 236 | }; |
| 237 | touch_status_enum touch_status; |
| 238 | key_status_enum key_status; |
| 239 | action_state_enum state; |
| 240 | int x, y; // x and y coordinates of last touch |
| 241 | struct timeval touchStart; // used to track time for long press / key repeat |
| 242 | |
| 243 | void processHoldAndRepeat(); |
| 244 | void process_EV_REL(input_event& ev); |
| 245 | void process_EV_ABS(input_event& ev); |
| 246 | void process_EV_KEY(input_event& ev); |
| 247 | |
| 248 | void doTouchStart(); |
| 249 | }; |
| 250 | |
| 251 | InputHandler input_handler; |
| 252 | |
| 253 | |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 254 | bool InputHandler::processInput(int timeout_ms) |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 255 | { |
| 256 | input_event ev; |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 257 | int ret = ev_get(&ev, timeout_ms); |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 258 | |
| 259 | if (ret < 0) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 260 | { |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 261 | // This path means that we did not get any new touch data, but |
| 262 | // we do not get new touch data if you press and hold on either |
| 263 | // the screen or on a keyboard key or mouse button |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 264 | if (touch_status || key_status) |
| 265 | processHoldAndRepeat(); |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 266 | return (ret != -2); // -2 means no more events in the queue |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 267 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 268 | |
| 269 | switch (ev.type) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 270 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 271 | case EV_ABS: |
| 272 | process_EV_ABS(ev); |
| 273 | break; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 274 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 275 | case EV_REL: |
| 276 | process_EV_REL(ev); |
| 277 | break; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 278 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 279 | case EV_KEY: |
| 280 | process_EV_KEY(ev); |
| 281 | break; |
| 282 | } |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 283 | |
| 284 | blankTimer.resetTimerAndUnblank(); |
| 285 | return true; // we got an event, so there might be more in the queue |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | void InputHandler::processHoldAndRepeat() |
| 289 | { |
| 290 | HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); |
| 291 | |
| 292 | // touch and key repeat section |
| 293 | struct timeval curTime; |
| 294 | gettimeofday(&curTime, NULL); |
| 295 | long seconds = curTime.tv_sec - touchStart.tv_sec; |
| 296 | long useconds = curTime.tv_usec - touchStart.tv_usec; |
| 297 | long mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5; |
| 298 | |
| 299 | if (touch_status == TS_TOUCH_AND_HOLD && mtime > touch_hold_ms) |
| 300 | { |
| 301 | touch_status = TS_TOUCH_REPEAT; |
| 302 | gettimeofday(&touchStart, NULL); |
| 303 | LOGEVENT("TOUCH_HOLD: %d,%d\n", x, y); |
| 304 | PageManager::NotifyTouch(TOUCH_HOLD, x, y); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 305 | } |
| 306 | else if (touch_status == TS_TOUCH_REPEAT && mtime > touch_repeat_ms) |
| 307 | { |
| 308 | LOGEVENT("TOUCH_REPEAT: %d,%d\n", x, y); |
| 309 | gettimeofday(&touchStart, NULL); |
| 310 | PageManager::NotifyTouch(TOUCH_REPEAT, x, y); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 311 | } |
| 312 | else if (key_status == KS_KEY_PRESSED && mtime > key_hold_ms) |
| 313 | { |
| 314 | LOGEVENT("KEY_HOLD: %d,%d\n", x, y); |
| 315 | gettimeofday(&touchStart, NULL); |
| 316 | key_status = KS_KEY_REPEAT; |
| 317 | kb->KeyRepeat(); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 318 | } |
| 319 | else if (key_status == KS_KEY_REPEAT && mtime > key_repeat_ms) |
| 320 | { |
| 321 | LOGEVENT("KEY_REPEAT: %d,%d\n", x, y); |
| 322 | gettimeofday(&touchStart, NULL); |
| 323 | kb->KeyRepeat(); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
| 327 | void InputHandler::doTouchStart() |
| 328 | { |
| 329 | LOGEVENT("TOUCH_START: %d,%d\n", x, y); |
| 330 | if (PageManager::NotifyTouch(TOUCH_START, x, y) > 0) |
| 331 | state = AS_NO_ACTION; |
| 332 | else |
| 333 | state = AS_IN_ACTION_AREA; |
| 334 | touch_status = TS_TOUCH_AND_HOLD; |
| 335 | gettimeofday(&touchStart, NULL); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | void InputHandler::process_EV_ABS(input_event& ev) |
| 339 | { |
| 340 | x = ev.value >> 16; |
| 341 | y = ev.value & 0xFFFF; |
| 342 | |
| 343 | if (ev.code == 0) |
| 344 | { |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 345 | #ifndef TW_USE_KEY_CODE_TOUCH_SYNC |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 346 | if (state == AS_IN_ACTION_AREA) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 347 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 348 | LOGEVENT("TOUCH_RELEASE: %d,%d\n", x, y); |
| 349 | PageManager::NotifyTouch(TOUCH_RELEASE, x, y); |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 350 | } |
| 351 | touch_status = TS_NONE; |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 352 | #endif |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 353 | } |
| 354 | else |
| 355 | { |
| 356 | if (!touch_status) |
| 357 | { |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 358 | #ifndef TW_USE_KEY_CODE_TOUCH_SYNC |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 359 | doTouchStart(); |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 360 | #endif |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 361 | } |
| 362 | else |
| 363 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 364 | if (state == AS_IN_ACTION_AREA) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 365 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 366 | LOGEVENT("TOUCH_DRAG: %d,%d\n", x, y); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 367 | } |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 368 | } |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 369 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | void InputHandler::process_EV_KEY(input_event& ev) |
| 373 | { |
| 374 | HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); |
| 375 | |
| 376 | // Handle key-press here |
| 377 | LOGEVENT("TOUCH_KEY: %d\n", ev.code); |
| 378 | // Left mouse button is treated as a touch |
| 379 | if(ev.code == BTN_LEFT) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 380 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 381 | MouseCursor *cursor = PageManager::GetMouseCursor(); |
| 382 | if(ev.value == 1) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 383 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 384 | cursor->GetPos(x, y); |
| 385 | doTouchStart(); |
| 386 | } |
| 387 | else if(touch_status) |
| 388 | { |
| 389 | // Left mouse button was previously pressed and now is |
| 390 | // being released so send a TOUCH_RELEASE |
| 391 | if (state == AS_IN_ACTION_AREA) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 392 | { |
| 393 | cursor->GetPos(x, y); |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 394 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 395 | LOGEVENT("Mouse TOUCH_RELEASE: %d,%d\n", x, y); |
| 396 | PageManager::NotifyTouch(TOUCH_RELEASE, x, y); |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 397 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 398 | touch_status = TS_NONE; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 399 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 400 | } |
| 401 | // side mouse button, often used for "back" function |
| 402 | else if(ev.code == BTN_SIDE) |
| 403 | { |
| 404 | if(ev.value == 1) |
| 405 | kb->KeyDown(KEY_BACK); |
| 406 | else |
| 407 | kb->KeyUp(KEY_BACK); |
| 408 | } else if (ev.value != 0) { |
| 409 | // This is a key press |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 410 | #ifdef TW_USE_KEY_CODE_TOUCH_SYNC |
| 411 | if (ev.code == TW_USE_KEY_CODE_TOUCH_SYNC) { |
| 412 | LOGEVENT("key code %i key press == touch start %i %i\n", TW_USE_KEY_CODE_TOUCH_SYNC, x, y); |
| 413 | doTouchStart(); |
| 414 | return; |
| 415 | } |
| 416 | #endif |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 417 | if (kb->KeyDown(ev.code)) { |
| 418 | // Key repeat is enabled for this key |
| 419 | key_status = KS_KEY_PRESSED; |
| 420 | touch_status = TS_NONE; |
| 421 | gettimeofday(&touchStart, NULL); |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 422 | } else { |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 423 | key_status = KS_NONE; |
| 424 | touch_status = TS_NONE; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 425 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 426 | } else { |
| 427 | // This is a key release |
| 428 | kb->KeyUp(ev.code); |
| 429 | key_status = KS_NONE; |
| 430 | touch_status = TS_NONE; |
Ethan Yonker | 30fa335 | 2015-03-09 13:57:21 -0500 | [diff] [blame] | 431 | #ifdef TW_USE_KEY_CODE_TOUCH_SYNC |
| 432 | if (ev.code == TW_USE_KEY_CODE_TOUCH_SYNC) { |
| 433 | LOGEVENT("key code %i key release == touch release %i %i\n", TW_USE_KEY_CODE_TOUCH_SYNC, x, y); |
| 434 | PageManager::NotifyTouch(TOUCH_RELEASE, x, y); |
| 435 | } |
| 436 | #endif |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 437 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 438 | } |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 439 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 440 | void InputHandler::process_EV_REL(input_event& ev) |
| 441 | { |
| 442 | // Mouse movement |
| 443 | MouseCursor *cursor = PageManager::GetMouseCursor(); |
| 444 | LOGEVENT("EV_REL %d %d\n", ev.code, ev.value); |
| 445 | if(ev.code == REL_X) |
| 446 | cursor->Move(ev.value, 0); |
| 447 | else if(ev.code == REL_Y) |
| 448 | cursor->Move(0, ev.value); |
| 449 | |
| 450 | if(touch_status) { |
| 451 | cursor->GetPos(x, y); |
| 452 | LOGEVENT("Mouse TOUCH_DRAG: %d, %d\n", x, y); |
| 453 | key_status = KS_NONE; |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 454 | } |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | void InputHandler::handleDrag() |
| 458 | { |
| 459 | // This allows us to only send one NotifyTouch event per render |
| 460 | // cycle to reduce overhead and perceived input latency. |
| 461 | static int prevx = 0, prevy = 0; // these track where the last drag notice was so that we don't send duplicate drag notices |
| 462 | if (touch_status && (x != prevx || y != prevy)) { |
| 463 | prevx = x; |
| 464 | prevy = y; |
| 465 | if (PageManager::NotifyTouch(TOUCH_DRAG, x, y) > 0) |
| 466 | state = AS_NO_ACTION; |
| 467 | else |
| 468 | state = AS_IN_ACTION_AREA; |
| 469 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 470 | } |
| 471 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 472 | static void setup_ors_command() |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 473 | { |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 474 | ors_read_fd = -1; |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 475 | |
| 476 | unlink(ORS_INPUT_FILE); |
| 477 | if (mkfifo(ORS_INPUT_FILE, 06660) != 0) { |
| 478 | LOGINFO("Unable to mkfifo %s\n", ORS_INPUT_FILE); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 479 | return; |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 480 | } |
| 481 | unlink(ORS_OUTPUT_FILE); |
| 482 | if (mkfifo(ORS_OUTPUT_FILE, 06666) != 0) { |
| 483 | LOGINFO("Unable to mkfifo %s\n", ORS_OUTPUT_FILE); |
| 484 | unlink(ORS_INPUT_FILE); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 485 | return; |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 486 | } |
| 487 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 488 | ors_read_fd = open(ORS_INPUT_FILE, O_RDONLY | O_NONBLOCK); |
| 489 | if (ors_read_fd < 0) { |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 490 | LOGINFO("Unable to open %s\n", ORS_INPUT_FILE); |
| 491 | unlink(ORS_INPUT_FILE); |
| 492 | unlink(ORS_OUTPUT_FILE); |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 493 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 494 | } |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 495 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 496 | static void ors_command_read() |
| 497 | { |
| 498 | FILE* orsout; |
| 499 | char command[1024], result[512]; |
| 500 | int set_page_done = 0, read_ret = 0; |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 501 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 502 | if ((read_ret = read(ors_read_fd, &command, sizeof(command))) > 0) { |
| 503 | command[1022] = '\n'; |
| 504 | command[1023] = '\0'; |
| 505 | LOGINFO("Command '%s' received\n", command); |
| 506 | orsout = fopen(ORS_OUTPUT_FILE, "w"); |
| 507 | if (!orsout) { |
| 508 | close(ors_read_fd); |
| 509 | ors_read_fd = -1; |
| 510 | LOGINFO("Unable to fopen %s\n", ORS_OUTPUT_FILE); |
| 511 | unlink(ORS_INPUT_FILE); |
| 512 | unlink(ORS_OUTPUT_FILE); |
| 513 | return; |
| 514 | } |
| 515 | if (DataManager::GetIntValue("tw_busy") != 0) { |
| 516 | strcpy(result, "Failed, operation in progress\n"); |
| 517 | fprintf(orsout, "%s", result); |
| 518 | LOGINFO("Command cannot be performed, operation in progress.\n"); |
| 519 | } else { |
| 520 | if (gui_console_only() == 0) { |
| 521 | LOGINFO("Console started successfully\n"); |
| 522 | gui_set_FILE(orsout); |
| 523 | if (strlen(command) > 11 && strncmp(command, "runscript", 9) == 0) { |
| 524 | char* filename = command + 11; |
| 525 | if (OpenRecoveryScript::copy_script_file(filename) == 0) { |
| 526 | LOGERR("Unable to copy script file\n"); |
| 527 | } else { |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 528 | OpenRecoveryScript::run_script_file(); |
| 529 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 530 | } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) { |
| 531 | char* varname = command + 4; |
| 532 | string temp; |
| 533 | DataManager::GetValue(varname, temp); |
| 534 | gui_print("%s = %s\n", varname, temp.c_str()); |
| 535 | } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) { |
| 536 | char* pass = command + 8; |
| 537 | gui_print("Attempting to decrypt data partition via command line.\n"); |
| 538 | if (PartitionManager.Decrypt_Device(pass) == 0) { |
| 539 | set_page_done = 1; |
| 540 | } |
| 541 | } else if (OpenRecoveryScript::Insert_ORS_Command(command)) { |
| 542 | OpenRecoveryScript::run_script_file(); |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 543 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 544 | gui_set_FILE(NULL); |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 545 | gGuiConsoleTerminate.set_value(1); |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 546 | } |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 547 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 548 | fclose(orsout); |
| 549 | LOGINFO("Done reading ORS command from command line\n"); |
| 550 | if (set_page_done) { |
| 551 | DataManager::SetValue("tw_page_done", 1); |
| 552 | } else { |
| 553 | // The select function will return ready to read and the |
| 554 | // read function will return errno 19 no such device unless |
| 555 | // we set everything up all over again. |
| 556 | close(ors_read_fd); |
| 557 | setup_ors_command(); |
| 558 | } |
| 559 | } else { |
| 560 | LOGINFO("ORS command line read returned an error: %i, %i, %s\n", read_ret, errno, strerror(errno)); |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 561 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 562 | return; |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 563 | } |
| 564 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 565 | // This special function will return immediately the first time, but then |
| 566 | // always returns 1/30th of a second (or immediately if called later) from |
| 567 | // the last time it was called |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 568 | static void loopTimer(int input_timeout_ms) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 569 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 570 | static timespec lastCall; |
| 571 | static int initialized = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 572 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 573 | if (!initialized) |
Dees_Troy | c8b199c | 2012-09-24 11:55:07 -0400 | [diff] [blame] | 574 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 575 | clock_gettime(CLOCK_MONOTONIC, &lastCall); |
| 576 | initialized = 1; |
| 577 | return; |
Dees_Troy | c8b199c | 2012-09-24 11:55:07 -0400 | [diff] [blame] | 578 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 579 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 580 | do |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 581 | { |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 582 | bool got_event = input_handler.processInput(input_timeout_ms); // get inputs but don't send drag notices |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 583 | timespec curTime; |
| 584 | clock_gettime(CLOCK_MONOTONIC, &curTime); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 585 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 586 | timespec diff = TWFunc::timespec_diff(lastCall, curTime); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 587 | |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 588 | // This is really 2 or 30 times per second |
| 589 | // As long as we get events, increase the timeout so we can catch up with input |
| 590 | long timeout = got_event ? 500000000 : 33333333; |
| 591 | |
| 592 | if (diff.tv_sec || diff.tv_nsec > timeout) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 593 | { |
that | c5837f3 | 2015-02-01 01:59:43 +0100 | [diff] [blame] | 594 | // int32_t input_time = TWFunc::timespec_diff_ms(lastCall, curTime); |
| 595 | // LOGINFO("loopTimer(): %u ms, count: %u\n", input_time, count); |
| 596 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 597 | lastCall = curTime; |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 598 | input_handler.handleDrag(); // send only drag notices if needed |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 599 | return; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 600 | } |
| 601 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 602 | // We need to sleep some period time microseconds |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 603 | //unsigned int sleepTime = 33333 -(diff.tv_nsec / 1000); |
| 604 | //usleep(sleepTime); // removed so we can scan for input |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 605 | input_timeout_ms = 0; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 606 | } while (1); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 607 | } |
| 608 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 609 | static int runPages(const char *page_name, const int stop_on_page_done) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 610 | { |
Ethan Yonker | 3f15be4 | 2015-02-09 09:39:47 -0600 | [diff] [blame] | 611 | DataManager::SetValue("tw_page_done", 0); |
| 612 | DataManager::SetValue("tw_gui_done", 0); |
| 613 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 614 | if (page_name) |
| 615 | gui_changePage(page_name); |
| 616 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 617 | // Raise the curtain |
| 618 | if (gCurtain != NULL) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 619 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 620 | gr_surface surface; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 621 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 622 | PageManager::Render(); |
| 623 | gr_get_surface(&surface); |
| 624 | curtainRaise(surface); |
| 625 | gr_free_surface(surface); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 626 | } |
| 627 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 628 | gGuiRunning = 1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 629 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 630 | DataManager::SetValue("tw_loaded", 1); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 631 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 632 | #ifndef TW_OEM_BUILD |
| 633 | struct timeval timeout; |
| 634 | fd_set fdset; |
| 635 | int has_data = 0; |
| 636 | #endif |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 637 | |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 638 | int input_timeout_ms = 0; |
| 639 | int idle_frames = 0; |
| 640 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 641 | for (;;) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 642 | { |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 643 | loopTimer(input_timeout_ms); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 644 | #ifndef TW_OEM_BUILD |
| 645 | if (ors_read_fd > 0) { |
| 646 | FD_ZERO(&fdset); |
| 647 | FD_SET(ors_read_fd, &fdset); |
| 648 | timeout.tv_sec = 0; |
| 649 | timeout.tv_usec = 1; |
| 650 | has_data = select(ors_read_fd+1, &fdset, NULL, NULL, &timeout); |
| 651 | if (has_data > 0) { |
| 652 | ors_command_read(); |
| 653 | } |
| 654 | } |
| 655 | #endif |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 656 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 657 | if (gGuiConsoleRunning.get_value()) { |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 658 | continue; |
| 659 | } |
| 660 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 661 | if (!gForceRender.get_value()) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 662 | { |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 663 | int ret = PageManager::Update(); |
| 664 | if (ret == 0) |
| 665 | ++idle_frames; |
| 666 | else |
| 667 | idle_frames = 0; |
| 668 | // due to possible animation objects, we need to delay activating the input timeout |
| 669 | input_timeout_ms = idle_frames > 15 ? 1000 : 0; |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 670 | |
| 671 | #ifndef PRINT_RENDER_TIME |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 672 | if (ret > 1) |
| 673 | PageManager::Render(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 674 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 675 | if (ret > 0) |
| 676 | flip(); |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 677 | #else |
| 678 | if (ret > 1) |
| 679 | { |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 680 | timespec start, end; |
| 681 | int32_t render_t, flip_t; |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 682 | clock_gettime(CLOCK_MONOTONIC, &start); |
| 683 | PageManager::Render(); |
| 684 | clock_gettime(CLOCK_MONOTONIC, &end); |
| 685 | render_t = TWFunc::timespec_diff_ms(start, end); |
| 686 | |
| 687 | flip(); |
| 688 | clock_gettime(CLOCK_MONOTONIC, &start); |
| 689 | flip_t = TWFunc::timespec_diff_ms(end, start); |
| 690 | |
| 691 | LOGINFO("Render(): %u ms, flip(): %u ms, total: %u ms\n", render_t, flip_t, render_t+flip_t); |
| 692 | } |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 693 | else if (ret > 0) |
Vojtech Bocek | e5ffcd1 | 2014-02-06 21:17:32 +0100 | [diff] [blame] | 694 | flip(); |
| 695 | #endif |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 696 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 697 | else |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 698 | { |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 699 | gForceRender.set_value(0); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 700 | PageManager::Render(); |
| 701 | flip(); |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 702 | input_timeout_ms = 0; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 703 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 704 | |
that | fb759d4 | 2015-01-11 12:16:53 +0100 | [diff] [blame] | 705 | blankTimer.checkForTimeout(); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 706 | if (stop_on_page_done && DataManager::GetIntValue("tw_page_done") != 0) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 707 | { |
| 708 | gui_changePage("main"); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 709 | break; |
| 710 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 711 | if (DataManager::GetIntValue("tw_gui_done") != 0) |
| 712 | break; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 713 | } |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 714 | if (ors_read_fd > 0) |
| 715 | close(ors_read_fd); |
| 716 | ors_read_fd = -1; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 717 | gGuiRunning = 0; |
| 718 | return 0; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 719 | } |
| 720 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 721 | int gui_forceRender(void) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 722 | { |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 723 | gForceRender.set_value(1); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 724 | return 0; |
| 725 | } |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 726 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 727 | int gui_changePage(std::string newPage) |
| 728 | { |
| 729 | LOGINFO("Set page: '%s'\n", newPage.c_str()); |
| 730 | PageManager::ChangePage(newPage); |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 731 | gForceRender.set_value(1); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | int gui_changeOverlay(std::string overlay) |
| 736 | { |
Ethan Yonker | 1c27331 | 2015-03-16 12:18:56 -0500 | [diff] [blame] | 737 | LOGINFO("Set overlay: '%s'\n", overlay.c_str()); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 738 | PageManager::ChangeOverlay(overlay); |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 739 | gForceRender.set_value(1); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | int gui_changePackage(std::string newPackage) |
| 744 | { |
| 745 | PageManager::SelectPackage(newPackage); |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 746 | gForceRender.set_value(1); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 747 | return 0; |
| 748 | } |
| 749 | |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 750 | std::string gui_parse_text(std::string str) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 751 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 752 | // This function parses text for DataManager values encompassed by %value% in the XML |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 753 | // and string resources (%@resource_name%) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 754 | size_t pos = 0; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 755 | |
| 756 | while (1) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 757 | { |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 758 | size_t next = str.find('%', pos); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 759 | if (next == std::string::npos) |
| 760 | return str; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 761 | |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 762 | size_t end = str.find('%', next + 1); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 763 | if (end == std::string::npos) |
| 764 | return str; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 765 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 766 | // We have a block of data |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 767 | std::string var = str.substr(next + 1, (end - next) - 1); |
| 768 | str.erase(next, (end - next) + 1); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 769 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 770 | if (next + 1 == end) |
| 771 | str.insert(next, 1, '%'); |
| 772 | else |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 773 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 774 | std::string value; |
that | b2e8f67 | 2015-03-05 20:25:39 +0100 | [diff] [blame] | 775 | if (var.size() > 0 && var[0] == '@') { |
| 776 | // this is a string resource ("%@string_name%") |
| 777 | value = PageManager::GetResources()->FindString(var.substr(1)); |
| 778 | str.insert(next, value); |
| 779 | } |
| 780 | else if (DataManager::GetValue(var, value) == 0) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 781 | str.insert(next, value); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 782 | } |
| 783 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 784 | pos = next + 1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 785 | } |
| 786 | } |
| 787 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 788 | extern "C" int gui_init(void) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 789 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 790 | gr_init(); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 791 | std::string curtain_path = TWRES "images/curtain.jpg"; |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 792 | gr_surface source_Surface = NULL; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 793 | |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 794 | if (res_create_surface(curtain_path.c_str(), &source_Surface)) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 795 | { |
Ethan Yonker | 591b920 | 2015-03-11 11:17:15 -0500 | [diff] [blame] | 796 | printf("Unable to locate '%s'\nDid you set a TW_THEME in your config files?\n", curtain_path.c_str()); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 797 | return -1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 798 | } |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 799 | if (gr_get_width(source_Surface) != gr_fb_width() || gr_get_height(source_Surface) != gr_fb_height()) { |
| 800 | // We need to scale the curtain to fit the screen |
| 801 | float scale_w = (float)gr_fb_width() / (float)gr_get_width(source_Surface); |
| 802 | float scale_h = (float)gr_fb_height() / (float)gr_get_height(source_Surface); |
| 803 | if (res_scale_surface(source_Surface, &gCurtain, scale_w, scale_h)) { |
| 804 | LOGINFO("Failed to scale curtain\n"); |
| 805 | gCurtain = source_Surface; |
| 806 | } else { |
| 807 | LOGINFO("Scaling the curtain width %fx and height %fx\n", scale_w, scale_h); |
| 808 | } |
| 809 | } else { |
| 810 | gCurtain = source_Surface; |
| 811 | } |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 812 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 813 | curtainSet(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 814 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 815 | ev_init(); |
| 816 | return 0; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 817 | } |
| 818 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 819 | extern "C" int gui_loadResources(void) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 820 | { |
Ethan Yonker | 83e8257 | 2014-04-04 10:59:28 -0500 | [diff] [blame] | 821 | #ifndef TW_OEM_BUILD |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 822 | int check = 0; |
| 823 | DataManager::GetValue(TW_IS_ENCRYPTED, check); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 824 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 825 | if (check) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 826 | { |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 827 | if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "decrypt")) |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 828 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 829 | LOGERR("Failed to load base packages.\n"); |
| 830 | goto error; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 831 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 832 | else |
| 833 | check = 1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 834 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 835 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 836 | if (check == 0 && PageManager::LoadPackage("TWRP", "/script/ui.xml", "main")) |
| 837 | { |
| 838 | std::string theme_path; |
| 839 | |
| 840 | theme_path = DataManager::GetSettingsStoragePath(); |
| 841 | if (!PartitionManager.Mount_Settings_Storage(false)) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 842 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 843 | int retry_count = 5; |
| 844 | while (retry_count > 0 && !PartitionManager.Mount_Settings_Storage(false)) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 845 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 846 | usleep(500000); |
| 847 | retry_count--; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 848 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 849 | |
| 850 | if (!PartitionManager.Mount_Settings_Storage(false)) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 851 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 852 | LOGERR("Unable to mount %s during GUI startup.\n", |
| 853 | theme_path.c_str()); |
| 854 | check = 1; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 855 | } |
| 856 | } |
| 857 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 858 | theme_path += "/TWRP/theme/ui.zip"; |
| 859 | if (check || PageManager::LoadPackage("TWRP", theme_path, "main")) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 860 | { |
Ethan Yonker | 83e8257 | 2014-04-04 10:59:28 -0500 | [diff] [blame] | 861 | #endif // ifndef TW_OEM_BUILD |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 862 | if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "main")) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 863 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 864 | LOGERR("Failed to load base packages.\n"); |
| 865 | goto error; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 866 | } |
Ethan Yonker | 83e8257 | 2014-04-04 10:59:28 -0500 | [diff] [blame] | 867 | #ifndef TW_OEM_BUILD |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 868 | } |
| 869 | } |
Ethan Yonker | 83e8257 | 2014-04-04 10:59:28 -0500 | [diff] [blame] | 870 | #endif // ifndef TW_OEM_BUILD |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 871 | // Set the default package |
| 872 | PageManager::SelectPackage("TWRP"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 873 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 874 | gGuiInitialized = 1; |
| 875 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 876 | |
| 877 | error: |
Ethan Yonker | 83e8257 | 2014-04-04 10:59:28 -0500 | [diff] [blame] | 878 | LOGERR("An internal error has occurred: unable to load theme.\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 879 | gGuiInitialized = 0; |
| 880 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 881 | } |
| 882 | |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 883 | extern "C" int gui_loadCustomResources(void) |
| 884 | { |
| 885 | #ifndef TW_OEM_BUILD |
| 886 | if (!PartitionManager.Mount_Settings_Storage(false)) { |
| 887 | LOGERR("Unable to mount settings storage during GUI startup.\n"); |
| 888 | return -1; |
| 889 | } |
| 890 | |
| 891 | std::string theme_path = DataManager::GetSettingsStoragePath(); |
| 892 | theme_path += "/TWRP/theme/ui.zip"; |
| 893 | // Check for a custom theme |
| 894 | if (TWFunc::Path_Exists(theme_path)) { |
| 895 | // There is a custom theme, try to load it |
| 896 | if (PageManager::ReloadPackage("TWRP", theme_path)) { |
| 897 | // Custom theme failed to load, try to load stock theme |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 898 | if (PageManager::ReloadPackage("TWRP", TWRES "ui.xml")) { |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 899 | LOGERR("Failed to load base packages.\n"); |
| 900 | goto error; |
| 901 | } |
| 902 | } |
| 903 | } |
| 904 | // Set the default package |
| 905 | PageManager::SelectPackage("TWRP"); |
| 906 | #endif |
| 907 | return 0; |
| 908 | |
| 909 | error: |
| 910 | LOGERR("An internal error has occurred: unable to load theme.\n"); |
| 911 | gGuiInitialized = 0; |
| 912 | return -1; |
| 913 | } |
| 914 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 915 | extern "C" int gui_start(void) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 916 | { |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 917 | return gui_startPage(NULL, 1, 0); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 918 | } |
| 919 | |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 920 | extern "C" int gui_startPage(const char *page_name, const int allow_commands, int stop_on_page_done) |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 921 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 922 | if (!gGuiInitialized) |
| 923 | return -1; |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 924 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 925 | gGuiConsoleTerminate.set_value(1); |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 926 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 927 | while (gGuiConsoleRunning.get_value()) |
Ethan Yonker | e13fa63 | 2015-01-27 11:30:03 -0600 | [diff] [blame] | 928 | usleep(10000); |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 929 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 930 | // Set the default package |
| 931 | PageManager::SelectPackage("TWRP"); |
| 932 | |
that | 9fa5153 | 2015-01-29 02:04:47 +0100 | [diff] [blame] | 933 | input_handler.init(); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 934 | #ifndef TW_OEM_BUILD |
| 935 | if (allow_commands) |
| 936 | { |
| 937 | if (ors_read_fd < 0) |
| 938 | setup_ors_command(); |
| 939 | } else { |
| 940 | if (ors_read_fd >= 0) { |
| 941 | close(ors_read_fd); |
| 942 | ors_read_fd = -1; |
| 943 | } |
| 944 | } |
| 945 | #endif |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 946 | return runPages(page_name, stop_on_page_done); |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 947 | } |
| 948 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 949 | static void * console_thread(void *cookie) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 950 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 951 | PageManager::SwitchToConsole(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 952 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 953 | while (!gGuiConsoleTerminate.get_value()) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 954 | { |
that | de72b6d | 2015-02-08 08:55:00 +0100 | [diff] [blame] | 955 | loopTimer(0); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 956 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 957 | if (!gForceRender.get_value()) |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 958 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 959 | int ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 960 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 961 | ret = PageManager::Update(); |
| 962 | if (ret > 1) |
| 963 | PageManager::Render(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 964 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 965 | if (ret > 0) |
| 966 | flip(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 967 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 968 | if (ret < 0) |
| 969 | LOGERR("An update request has failed.\n"); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 970 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 971 | else |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 972 | { |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 973 | gForceRender.set_value(0); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 974 | PageManager::Render(); |
| 975 | flip(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 976 | } |
| 977 | } |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 978 | gGuiConsoleRunning.set_value(0); |
| 979 | gForceRender.set_value(1); // this will kickstart the GUI to render again |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 980 | PageManager::EndConsole(); |
| 981 | LOGINFO("Console stopping\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 982 | return NULL; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 983 | } |
| 984 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 985 | extern "C" int gui_console_only(void) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 986 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 987 | if (!gGuiInitialized) |
| 988 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 989 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 990 | gGuiConsoleTerminate.set_value(0); |
Ethan Yonker | ffbd6ff | 2014-10-22 10:40:40 -0500 | [diff] [blame] | 991 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 992 | if (gGuiConsoleRunning.get_value()) |
Ethan Yonker | ffbd6ff | 2014-10-22 10:40:40 -0500 | [diff] [blame] | 993 | return 0; |
| 994 | |
Ethan Yonker | 0453695 | 2015-01-27 08:41:28 -0600 | [diff] [blame] | 995 | gGuiConsoleRunning.set_value(1); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 996 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 997 | // Start by spinning off an input handler. |
| 998 | pthread_t t; |
| 999 | pthread_create(&t, NULL, console_thread, NULL); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1000 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1001 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1002 | } |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 1003 | |
| 1004 | extern "C" void set_scale_values(float w, float h) |
| 1005 | { |
| 1006 | scale_theme_w = w; |
| 1007 | scale_theme_h = h; |
| 1008 | } |
| 1009 | |
| 1010 | extern "C" int scale_theme_x(int initial_x) |
| 1011 | { |
| 1012 | if (scale_theme_w != 1) { |
that | ba75a0e | 2015-02-14 21:20:10 +0100 | [diff] [blame] | 1013 | int scaled = (float)initial_x * scale_theme_w; |
| 1014 | if (scaled == 0 && initial_x > 0) |
| 1015 | return 1; |
| 1016 | return scaled; |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 1017 | } |
| 1018 | return initial_x; |
| 1019 | } |
| 1020 | |
| 1021 | extern "C" int scale_theme_y(int initial_y) |
| 1022 | { |
| 1023 | if (scale_theme_h != 1) { |
that | ba75a0e | 2015-02-14 21:20:10 +0100 | [diff] [blame] | 1024 | int scaled = (float)initial_y * scale_theme_h; |
| 1025 | if (scaled == 0 && initial_y > 0) |
| 1026 | return 1; |
| 1027 | return scaled; |
Ethan Yonker | 63e414f | 2015-02-06 15:44:39 -0600 | [diff] [blame] | 1028 | } |
| 1029 | return initial_y; |
| 1030 | } |
| 1031 | |
| 1032 | extern "C" int scale_theme_min(int initial_value) |
| 1033 | { |
| 1034 | if (scale_theme_w != 1 || scale_theme_h != 1) { |
| 1035 | if (scale_theme_w < scale_theme_h) |
| 1036 | return scale_theme_x(initial_value); |
| 1037 | else |
| 1038 | return scale_theme_y(initial_value); |
| 1039 | } |
| 1040 | return initial_value; |
| 1041 | } |
| 1042 | |
| 1043 | extern "C" float get_scale_w() |
| 1044 | { |
| 1045 | return scale_theme_w; |
| 1046 | } |
| 1047 | |
| 1048 | extern "C" float get_scale_h() |
| 1049 | { |
| 1050 | return scale_theme_h; |
| 1051 | } |