blob: 369b6b897d399e545b059ff2c16cef59bf8b3e3f [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
Dees Troy3be70a82013-10-22 14:25:12 +00002 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_Troy51a0e822012-09-05 15:24:24 -040018
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 bigbiff8a68c312013-02-10 14:28:30 -050038extern "C"
39{
Dees_Troy2673cec2013-04-02 20:22:16 +000040#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040041#include <pixelflinger/pixelflinger.h>
42}
Ethan Yonkerfbb43532015-12-28 21:54:50 +010043#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040044
45#include "rapidxml.hpp"
46#include "objects.hpp"
47#include "../data.hpp"
48#include "../variables.h"
Dees_Troy5bf43922012-09-07 16:07:55 -040049#include "../partitions.hpp"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050050#include "../twrp-functions.hpp"
Ethan Yonker03a42f62014-08-08 11:03:51 -050051#include "../openrecoveryscript.hpp"
52#include "../orscmd/orscmd.h"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050053#include "blanktimer.hpp"
Ethan Yonker04536952015-01-27 08:41:28 -060054#include "../tw_atomic.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040055
Vojtech Boceke5ffcd12014-02-06 21:17:32 +010056// Enable to print render time of each frame to the log file
57//#define PRINT_RENDER_TIME 1
58
that9fa51532015-01-29 02:04:47 +010059#ifdef _EVENT_LOGGING
thatc5837f32015-02-01 01:59:43 +010060#define LOGEVENT(...) LOGERR(__VA_ARGS__)
that9fa51532015-01-29 02:04:47 +010061#else
62#define LOGEVENT(...) do {} while (0)
63#endif
64
Dees_Troy51a0e822012-09-05 15:24:24 -040065using namespace rapidxml;
66
67// Global values
Dees_Troy51a0e822012-09-05 15:24:24 -040068static int gGuiInitialized = 0;
Ethan Yonker04536952015-01-27 08:41:28 -060069static TWAtomicInt gForceRender;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050070blanktimer blankTimer;
Ethan Yonkerfd0439e2015-01-14 11:08:13 -060071int ors_read_fd = -1;
that10ae24f2015-12-26 20:53:51 +010072static FILE* orsout = NULL;
Ethan Yonker63e414f2015-02-06 15:44:39 -060073static float scale_theme_w = 1;
74static float scale_theme_h = 1;
Dees_Troy51a0e822012-09-05 15:24:24 -040075
76// Needed by pages.cpp too
77int gGuiRunning = 0;
78
that1964d192016-01-07 00:41:03 +010079int g_pty_fd = -1; // set by terminal on init
80void terminal_pty_read();
81
Dees_Troy51a0e822012-09-05 15:24:24 -040082static int gRecorder = -1;
83
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020084extern "C" void gr_write_frame_to_file(int fd);
Dees_Troy51a0e822012-09-05 15:24:24 -040085
Matt Mowerb68bff02017-01-11 15:46:26 -060086static void flip(void)
Dees_Troy51a0e822012-09-05 15:24:24 -040087{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020088 if (gRecorder != -1)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050089 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020090 timespec time;
91 clock_gettime(CLOCK_MONOTONIC, &time);
92 write(gRecorder, &time, sizeof(timespec));
93 gr_write_frame_to_file(gRecorder);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050094 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020095 gr_flip();
Dees_Troy51a0e822012-09-05 15:24:24 -040096}
97
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020098void rapidxml::parse_error_handler(const char *what, void *where)
Dees_Troy51a0e822012-09-05 15:24:24 -040099{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200100 fprintf(stderr, "Parser error: %s\n", what);
101 fprintf(stderr, " Start of string: %s\n",(char *) where);
102 LOGERR("Error parsing XML file.\n");
103 //abort();
Dees_Troy51a0e822012-09-05 15:24:24 -0400104}
105
that9fa51532015-01-29 02:04:47 +0100106class InputHandler
Dees_Troy51a0e822012-09-05 15:24:24 -0400107{
that9fa51532015-01-29 02:04:47 +0100108public:
109 void init()
thatfb759d42015-01-11 12:16:53 +0100110 {
that9fa51532015-01-29 02:04:47 +0100111 // these might be read from DataManager in the future
112 touch_hold_ms = 500;
113 touch_repeat_ms = 100;
114 key_hold_ms = 500;
115 key_repeat_ms = 100;
116 touch_status = TS_NONE;
117 key_status = KS_NONE;
118 state = AS_NO_ACTION;
119 x = y = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400120
that9fa51532015-01-29 02:04:47 +0100121#ifndef TW_NO_SCREEN_TIMEOUT
122 {
123 string seconds;
124 DataManager::GetValue("tw_screen_timeout_secs", seconds);
125 blankTimer.setTime(atoi(seconds.c_str()));
126 blankTimer.resetTimerAndUnblank();
Ethan Yonkere13fa632015-01-27 11:30:03 -0600127 }
that9fa51532015-01-29 02:04:47 +0100128#else
129 LOGINFO("Skipping screen timeout: TW_NO_SCREEN_TIMEOUT is set\n");
130#endif
Ethan Yonkere13fa632015-01-27 11:30:03 -0600131 }
132
thatc5837f32015-02-01 01:59:43 +0100133 // process input events. returns true if any event was received.
thatde72b6d2015-02-08 08:55:00 +0100134 bool processInput(int timeout_ms);
thatc5837f32015-02-01 01:59:43 +0100135
that9fa51532015-01-29 02:04:47 +0100136 void handleDrag();
137
138private:
139 // timeouts for touch/key hold and repeat
140 int touch_hold_ms;
141 int touch_repeat_ms;
142 int key_hold_ms;
143 int key_repeat_ms;
144
145 enum touch_status_enum {
146 TS_NONE = 0,
147 TS_TOUCH_AND_HOLD = 1,
148 TS_TOUCH_REPEAT = 2,
149 };
150
151 enum key_status_enum {
152 KS_NONE = 0,
153 KS_KEY_PRESSED = 1,
154 KS_KEY_REPEAT = 2,
155 };
156
157 enum action_state_enum {
158 AS_IN_ACTION_AREA = 0, // we've touched a spot with an action
159 AS_NO_ACTION = 1, // we've touched in an empty area (no action) and ignore remaining events until touch release
160 };
161 touch_status_enum touch_status;
162 key_status_enum key_status;
163 action_state_enum state;
164 int x, y; // x and y coordinates of last touch
165 struct timeval touchStart; // used to track time for long press / key repeat
166
167 void processHoldAndRepeat();
168 void process_EV_REL(input_event& ev);
169 void process_EV_ABS(input_event& ev);
170 void process_EV_KEY(input_event& ev);
171
172 void doTouchStart();
173};
174
175InputHandler input_handler;
176
177
thatde72b6d2015-02-08 08:55:00 +0100178bool InputHandler::processInput(int timeout_ms)
that9fa51532015-01-29 02:04:47 +0100179{
180 input_event ev;
thatde72b6d2015-02-08 08:55:00 +0100181 int ret = ev_get(&ev, timeout_ms);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600182
183 if (ret < 0)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500184 {
Ethan Yonkere13fa632015-01-27 11:30:03 -0600185 // This path means that we did not get any new touch data, but
186 // we do not get new touch data if you press and hold on either
187 // the screen or on a keyboard key or mouse button
that9fa51532015-01-29 02:04:47 +0100188 if (touch_status || key_status)
189 processHoldAndRepeat();
thatc5837f32015-02-01 01:59:43 +0100190 return (ret != -2); // -2 means no more events in the queue
Ethan Yonkere13fa632015-01-27 11:30:03 -0600191 }
that9fa51532015-01-29 02:04:47 +0100192
193 switch (ev.type)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600194 {
that9fa51532015-01-29 02:04:47 +0100195 case EV_ABS:
196 process_EV_ABS(ev);
197 break;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600198
that9fa51532015-01-29 02:04:47 +0100199 case EV_REL:
200 process_EV_REL(ev);
201 break;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600202
that9fa51532015-01-29 02:04:47 +0100203 case EV_KEY:
204 process_EV_KEY(ev);
205 break;
206 }
thatc5837f32015-02-01 01:59:43 +0100207
Matt Mower9472ba12016-01-20 18:12:47 -0600208 if (ev.code != KEY_POWER && ev.code > KEY_RESERVED)
209 blankTimer.resetTimerAndUnblank();
210
thatc5837f32015-02-01 01:59:43 +0100211 return true; // we got an event, so there might be more in the queue
that9fa51532015-01-29 02:04:47 +0100212}
213
214void InputHandler::processHoldAndRepeat()
215{
216 HardwareKeyboard *kb = PageManager::GetHardwareKeyboard();
217
218 // touch and key repeat section
219 struct timeval curTime;
220 gettimeofday(&curTime, NULL);
221 long seconds = curTime.tv_sec - touchStart.tv_sec;
222 long useconds = curTime.tv_usec - touchStart.tv_usec;
223 long mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5;
224
225 if (touch_status == TS_TOUCH_AND_HOLD && mtime > touch_hold_ms)
226 {
227 touch_status = TS_TOUCH_REPEAT;
228 gettimeofday(&touchStart, NULL);
229 LOGEVENT("TOUCH_HOLD: %d,%d\n", x, y);
230 PageManager::NotifyTouch(TOUCH_HOLD, x, y);
that9fa51532015-01-29 02:04:47 +0100231 }
232 else if (touch_status == TS_TOUCH_REPEAT && mtime > touch_repeat_ms)
233 {
234 LOGEVENT("TOUCH_REPEAT: %d,%d\n", x, y);
235 gettimeofday(&touchStart, NULL);
236 PageManager::NotifyTouch(TOUCH_REPEAT, x, y);
that9fa51532015-01-29 02:04:47 +0100237 }
238 else if (key_status == KS_KEY_PRESSED && mtime > key_hold_ms)
239 {
240 LOGEVENT("KEY_HOLD: %d,%d\n", x, y);
241 gettimeofday(&touchStart, NULL);
242 key_status = KS_KEY_REPEAT;
243 kb->KeyRepeat();
that9fa51532015-01-29 02:04:47 +0100244 }
245 else if (key_status == KS_KEY_REPEAT && mtime > key_repeat_ms)
246 {
247 LOGEVENT("KEY_REPEAT: %d,%d\n", x, y);
248 gettimeofday(&touchStart, NULL);
249 kb->KeyRepeat();
that9fa51532015-01-29 02:04:47 +0100250 }
251}
252
253void InputHandler::doTouchStart()
254{
255 LOGEVENT("TOUCH_START: %d,%d\n", x, y);
256 if (PageManager::NotifyTouch(TOUCH_START, x, y) > 0)
257 state = AS_NO_ACTION;
258 else
259 state = AS_IN_ACTION_AREA;
260 touch_status = TS_TOUCH_AND_HOLD;
261 gettimeofday(&touchStart, NULL);
that9fa51532015-01-29 02:04:47 +0100262}
263
264void InputHandler::process_EV_ABS(input_event& ev)
265{
266 x = ev.value >> 16;
267 y = ev.value & 0xFFFF;
268
269 if (ev.code == 0)
270 {
Ethan Yonker30fa3352015-03-09 13:57:21 -0500271#ifndef TW_USE_KEY_CODE_TOUCH_SYNC
that9fa51532015-01-29 02:04:47 +0100272 if (state == AS_IN_ACTION_AREA)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500273 {
that9fa51532015-01-29 02:04:47 +0100274 LOGEVENT("TOUCH_RELEASE: %d,%d\n", x, y);
275 PageManager::NotifyTouch(TOUCH_RELEASE, x, y);
that9fa51532015-01-29 02:04:47 +0100276 }
277 touch_status = TS_NONE;
Ethan Yonker30fa3352015-03-09 13:57:21 -0500278#endif
that9fa51532015-01-29 02:04:47 +0100279 }
280 else
281 {
282 if (!touch_status)
283 {
Ethan Yonker30fa3352015-03-09 13:57:21 -0500284#ifndef TW_USE_KEY_CODE_TOUCH_SYNC
that9fa51532015-01-29 02:04:47 +0100285 doTouchStart();
Ethan Yonker30fa3352015-03-09 13:57:21 -0500286#endif
Ethan Yonkere13fa632015-01-27 11:30:03 -0600287 }
288 else
289 {
that9fa51532015-01-29 02:04:47 +0100290 if (state == AS_IN_ACTION_AREA)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600291 {
that9fa51532015-01-29 02:04:47 +0100292 LOGEVENT("TOUCH_DRAG: %d,%d\n", x, y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400293 }
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500294 }
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500295 }
that9fa51532015-01-29 02:04:47 +0100296}
297
298void InputHandler::process_EV_KEY(input_event& ev)
299{
300 HardwareKeyboard *kb = PageManager::GetHardwareKeyboard();
301
302 // Handle key-press here
303 LOGEVENT("TOUCH_KEY: %d\n", ev.code);
304 // Left mouse button is treated as a touch
Matt Mowera8a89d12016-12-30 18:10:37 -0600305 if (ev.code == BTN_LEFT)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600306 {
that9fa51532015-01-29 02:04:47 +0100307 MouseCursor *cursor = PageManager::GetMouseCursor();
Matt Mowera8a89d12016-12-30 18:10:37 -0600308 if (ev.value == 1)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600309 {
that9fa51532015-01-29 02:04:47 +0100310 cursor->GetPos(x, y);
311 doTouchStart();
312 }
Matt Mowera8a89d12016-12-30 18:10:37 -0600313 else if (touch_status)
that9fa51532015-01-29 02:04:47 +0100314 {
315 // Left mouse button was previously pressed and now is
316 // being released so send a TOUCH_RELEASE
317 if (state == AS_IN_ACTION_AREA)
Ethan Yonkere13fa632015-01-27 11:30:03 -0600318 {
319 cursor->GetPos(x, y);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600320
that9fa51532015-01-29 02:04:47 +0100321 LOGEVENT("Mouse TOUCH_RELEASE: %d,%d\n", x, y);
322 PageManager::NotifyTouch(TOUCH_RELEASE, x, y);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600323 }
that9fa51532015-01-29 02:04:47 +0100324 touch_status = TS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600325 }
that9fa51532015-01-29 02:04:47 +0100326 }
327 // side mouse button, often used for "back" function
Matt Mowera8a89d12016-12-30 18:10:37 -0600328 else if (ev.code == BTN_SIDE)
that9fa51532015-01-29 02:04:47 +0100329 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600330 if (ev.value == 1)
that9fa51532015-01-29 02:04:47 +0100331 kb->KeyDown(KEY_BACK);
332 else
333 kb->KeyUp(KEY_BACK);
334 } else if (ev.value != 0) {
335 // This is a key press
Ethan Yonker30fa3352015-03-09 13:57:21 -0500336#ifdef TW_USE_KEY_CODE_TOUCH_SYNC
337 if (ev.code == TW_USE_KEY_CODE_TOUCH_SYNC) {
338 LOGEVENT("key code %i key press == touch start %i %i\n", TW_USE_KEY_CODE_TOUCH_SYNC, x, y);
339 doTouchStart();
340 return;
341 }
342#endif
that9fa51532015-01-29 02:04:47 +0100343 if (kb->KeyDown(ev.code)) {
344 // Key repeat is enabled for this key
345 key_status = KS_KEY_PRESSED;
346 touch_status = TS_NONE;
347 gettimeofday(&touchStart, NULL);
Ethan Yonkere13fa632015-01-27 11:30:03 -0600348 } else {
Ethan Yonkere13fa632015-01-27 11:30:03 -0600349 key_status = KS_NONE;
350 touch_status = TS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600351 }
that9fa51532015-01-29 02:04:47 +0100352 } else {
353 // This is a key release
354 kb->KeyUp(ev.code);
355 key_status = KS_NONE;
356 touch_status = TS_NONE;
Ethan Yonker30fa3352015-03-09 13:57:21 -0500357#ifdef TW_USE_KEY_CODE_TOUCH_SYNC
358 if (ev.code == TW_USE_KEY_CODE_TOUCH_SYNC) {
359 LOGEVENT("key code %i key release == touch release %i %i\n", TW_USE_KEY_CODE_TOUCH_SYNC, x, y);
360 PageManager::NotifyTouch(TOUCH_RELEASE, x, y);
361 }
362#endif
Ethan Yonkere13fa632015-01-27 11:30:03 -0600363 }
that9fa51532015-01-29 02:04:47 +0100364}
Ethan Yonkere13fa632015-01-27 11:30:03 -0600365
that9fa51532015-01-29 02:04:47 +0100366void InputHandler::process_EV_REL(input_event& ev)
367{
368 // Mouse movement
369 MouseCursor *cursor = PageManager::GetMouseCursor();
370 LOGEVENT("EV_REL %d %d\n", ev.code, ev.value);
Matt Mowera8a89d12016-12-30 18:10:37 -0600371 if (ev.code == REL_X)
that9fa51532015-01-29 02:04:47 +0100372 cursor->Move(ev.value, 0);
Matt Mowera8a89d12016-12-30 18:10:37 -0600373 else if (ev.code == REL_Y)
that9fa51532015-01-29 02:04:47 +0100374 cursor->Move(0, ev.value);
375
Matt Mowera8a89d12016-12-30 18:10:37 -0600376 if (touch_status) {
that9fa51532015-01-29 02:04:47 +0100377 cursor->GetPos(x, y);
378 LOGEVENT("Mouse TOUCH_DRAG: %d, %d\n", x, y);
379 key_status = KS_NONE;
Ethan Yonkere13fa632015-01-27 11:30:03 -0600380 }
that9fa51532015-01-29 02:04:47 +0100381}
382
383void InputHandler::handleDrag()
384{
385 // This allows us to only send one NotifyTouch event per render
386 // cycle to reduce overhead and perceived input latency.
387 static int prevx = 0, prevy = 0; // these track where the last drag notice was so that we don't send duplicate drag notices
388 if (touch_status && (x != prevx || y != prevy)) {
389 prevx = x;
390 prevy = y;
391 if (PageManager::NotifyTouch(TOUCH_DRAG, x, y) > 0)
392 state = AS_NO_ACTION;
393 else
394 state = AS_IN_ACTION_AREA;
395 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400396}
397
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600398static void setup_ors_command()
Ethan Yonker03a42f62014-08-08 11:03:51 -0500399{
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600400 ors_read_fd = -1;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500401
402 unlink(ORS_INPUT_FILE);
403 if (mkfifo(ORS_INPUT_FILE, 06660) != 0) {
404 LOGINFO("Unable to mkfifo %s\n", ORS_INPUT_FILE);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600405 return;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500406 }
407 unlink(ORS_OUTPUT_FILE);
408 if (mkfifo(ORS_OUTPUT_FILE, 06666) != 0) {
409 LOGINFO("Unable to mkfifo %s\n", ORS_OUTPUT_FILE);
410 unlink(ORS_INPUT_FILE);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600411 return;
Ethan Yonker03a42f62014-08-08 11:03:51 -0500412 }
413
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600414 ors_read_fd = open(ORS_INPUT_FILE, O_RDONLY | O_NONBLOCK);
415 if (ors_read_fd < 0) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500416 LOGINFO("Unable to open %s\n", ORS_INPUT_FILE);
417 unlink(ORS_INPUT_FILE);
418 unlink(ORS_OUTPUT_FILE);
Ethan Yonker03a42f62014-08-08 11:03:51 -0500419 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600420}
Ethan Yonker03a42f62014-08-08 11:03:51 -0500421
that10ae24f2015-12-26 20:53:51 +0100422// callback called after a CLI command was executed
423static void ors_command_done()
424{
425 gui_set_FILE(NULL);
426 fclose(orsout);
427 orsout = NULL;
428
429 if (DataManager::GetIntValue("tw_page_done") == 0) {
430 // The select function will return ready to read and the
431 // read function will return errno 19 no such device unless
432 // we set everything up all over again.
433 close(ors_read_fd);
434 setup_ors_command();
435 }
436}
437
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600438static void ors_command_read()
439{
that10ae24f2015-12-26 20:53:51 +0100440 char command[1024];
441 int read_ret = read(ors_read_fd, &command, sizeof(command));
Ethan Yonker03a42f62014-08-08 11:03:51 -0500442
that10ae24f2015-12-26 20:53:51 +0100443 if (read_ret > 0) {
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600444 command[1022] = '\n';
445 command[1023] = '\0';
446 LOGINFO("Command '%s' received\n", command);
447 orsout = fopen(ORS_OUTPUT_FILE, "w");
448 if (!orsout) {
449 close(ors_read_fd);
450 ors_read_fd = -1;
451 LOGINFO("Unable to fopen %s\n", ORS_OUTPUT_FILE);
452 unlink(ORS_INPUT_FILE);
453 unlink(ORS_OUTPUT_FILE);
454 return;
455 }
456 if (DataManager::GetIntValue("tw_busy") != 0) {
that10ae24f2015-12-26 20:53:51 +0100457 fputs("Failed, operation in progress\n", orsout);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600458 LOGINFO("Command cannot be performed, operation in progress.\n");
that10ae24f2015-12-26 20:53:51 +0100459 fclose(orsout);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600460 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500461 if (strlen(command) == 11 && strncmp(command, "dumpstrings", 11) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500462 gui_set_FILE(orsout);
463 PageManager::GetResources()->DumpStrings();
that10ae24f2015-12-26 20:53:51 +0100464 ors_command_done();
bigbiffce8f83c2015-12-12 18:30:21 -0500465 //check to see if we should show backup page for parsing adbbackup partitions
466 } else if (strlen(command) == 23 && strncmp(command, "adbbackup", 9) == 0) {
467 gui_set_FILE(orsout);
468 DataManager::SetValue("tw_action", "twcmd");
469 DataManager::SetValue("tw_action_param", command);
470 DataManager::SetValue("tw_enable_adb_backup", 1);
471 gui_changePage("backup");
472 ors_command_done();
that10ae24f2015-12-26 20:53:51 +0100473 } else {
474 // mirror output messages
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600475 gui_set_FILE(orsout);
that10ae24f2015-12-26 20:53:51 +0100476 // close orsout and restart listener after command is done
477 OpenRecoveryScript::Call_After_CLI_Command(ors_command_done);
478 // run the command in a threaded action...
479 DataManager::SetValue("tw_action", "twcmd");
480 DataManager::SetValue("tw_action_param", command);
481 // ...and switch back to the current page when finished
482 std::string currentPage = PageManager::GetCurrentPage();
483 DataManager::SetValue("tw_has_action2", "1");
484 DataManager::SetValue("tw_action2", "page");
485 DataManager::SetValue("tw_action2_param", currentPage);
486 DataManager::SetValue("tw_action_text1", gui_lookup("running_recovery_commands", "Running Recovery Commands"));
487 DataManager::SetValue("tw_action_text2", "");
488 gui_changePage("singleaction_page");
489 // now immediately return to the GUI main loop (the action runs in the background thread)
490 // put all things that need to be done after the command is finished into ors_command_done, not here
Ethan Yonker03a42f62014-08-08 11:03:51 -0500491 }
Ethan Yonker03a42f62014-08-08 11:03:51 -0500492 }
493 }
Ethan Yonker03a42f62014-08-08 11:03:51 -0500494}
495
that10ae24f2015-12-26 20:53:51 +0100496// Get and dispatch input events until it's time to draw the next frame
Dees_Troy51a0e822012-09-05 15:24:24 -0400497// This special function will return immediately the first time, but then
498// always returns 1/30th of a second (or immediately if called later) from
499// the last time it was called
thatde72b6d2015-02-08 08:55:00 +0100500static void loopTimer(int input_timeout_ms)
Dees_Troy51a0e822012-09-05 15:24:24 -0400501{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200502 static timespec lastCall;
503 static int initialized = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400504
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200505 if (!initialized)
Dees_Troyc8b199c2012-09-24 11:55:07 -0400506 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200507 clock_gettime(CLOCK_MONOTONIC, &lastCall);
508 initialized = 1;
509 return;
Dees_Troyc8b199c2012-09-24 11:55:07 -0400510 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400511
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200512 do
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500513 {
thatde72b6d2015-02-08 08:55:00 +0100514 bool got_event = input_handler.processInput(input_timeout_ms); // get inputs but don't send drag notices
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200515 timespec curTime;
516 clock_gettime(CLOCK_MONOTONIC, &curTime);
Dees_Troy51a0e822012-09-05 15:24:24 -0400517
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200518 timespec diff = TWFunc::timespec_diff(lastCall, curTime);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500519
thatc5837f32015-02-01 01:59:43 +0100520 // This is really 2 or 30 times per second
521 // As long as we get events, increase the timeout so we can catch up with input
522 long timeout = got_event ? 500000000 : 33333333;
523
524 if (diff.tv_sec || diff.tv_nsec > timeout)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500525 {
thatc5837f32015-02-01 01:59:43 +0100526 // int32_t input_time = TWFunc::timespec_diff_ms(lastCall, curTime);
527 // LOGINFO("loopTimer(): %u ms, count: %u\n", input_time, count);
528
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200529 lastCall = curTime;
that9fa51532015-01-29 02:04:47 +0100530 input_handler.handleDrag(); // send only drag notices if needed
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200531 return;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500532 }
533
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200534 // We need to sleep some period time microseconds
Ethan Yonkere13fa632015-01-27 11:30:03 -0600535 //unsigned int sleepTime = 33333 -(diff.tv_nsec / 1000);
536 //usleep(sleepTime); // removed so we can scan for input
thatde72b6d2015-02-08 08:55:00 +0100537 input_timeout_ms = 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200538 } while (1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400539}
540
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600541static int runPages(const char *page_name, const int stop_on_page_done)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500542{
Ethan Yonker3f15be42015-02-09 09:39:47 -0600543 DataManager::SetValue("tw_page_done", 0);
544 DataManager::SetValue("tw_gui_done", 0);
545
Ethan Yonkerafde0982016-01-23 08:55:35 -0600546 if (page_name) {
547 PageManager::SetStartPage(page_name);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600548 gui_changePage(page_name);
Ethan Yonkerafde0982016-01-23 08:55:35 -0600549 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600550
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200551 gGuiRunning = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500552
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200553 DataManager::SetValue("tw_loaded", 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500554
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600555 struct timeval timeout;
556 fd_set fdset;
557 int has_data = 0;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100558
thatde72b6d2015-02-08 08:55:00 +0100559 int input_timeout_ms = 0;
560 int idle_frames = 0;
561
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200562 for (;;)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500563 {
thatde72b6d2015-02-08 08:55:00 +0100564 loopTimer(input_timeout_ms);
that1964d192016-01-07 00:41:03 +0100565 if (g_pty_fd > 0) {
566 // TODO: this is not nice, we should have one central select for input, pty, and ors
567 FD_ZERO(&fdset);
568 FD_SET(g_pty_fd, &fdset);
569 timeout.tv_sec = 0;
570 timeout.tv_usec = 1;
571 has_data = select(g_pty_fd+1, &fdset, NULL, NULL, &timeout);
572 if (has_data > 0) {
573 terminal_pty_read();
574 }
575 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600576#ifndef TW_OEM_BUILD
that10ae24f2015-12-26 20:53:51 +0100577 if (ors_read_fd > 0 && !orsout) { // orsout is non-NULL if a command is still running
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600578 FD_ZERO(&fdset);
579 FD_SET(ors_read_fd, &fdset);
580 timeout.tv_sec = 0;
581 timeout.tv_usec = 1;
582 has_data = select(ors_read_fd+1, &fdset, NULL, NULL, &timeout);
583 if (has_data > 0) {
584 ors_command_read();
585 }
586 }
587#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500588
Ethan Yonker04536952015-01-27 08:41:28 -0600589 if (!gForceRender.get_value())
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500590 {
thatde72b6d2015-02-08 08:55:00 +0100591 int ret = PageManager::Update();
592 if (ret == 0)
593 ++idle_frames;
Ethan Yonkere0f1f3b2015-10-27 09:49:01 -0500594 else if (ret == -2)
595 break; // Theme reload failure
thatde72b6d2015-02-08 08:55:00 +0100596 else
597 idle_frames = 0;
598 // due to possible animation objects, we need to delay activating the input timeout
599 input_timeout_ms = idle_frames > 15 ? 1000 : 0;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100600
601#ifndef PRINT_RENDER_TIME
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200602 if (ret > 1)
603 PageManager::Render();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500604
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200605 if (ret > 0)
606 flip();
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100607#else
608 if (ret > 1)
609 {
that9fa51532015-01-29 02:04:47 +0100610 timespec start, end;
611 int32_t render_t, flip_t;
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100612 clock_gettime(CLOCK_MONOTONIC, &start);
613 PageManager::Render();
614 clock_gettime(CLOCK_MONOTONIC, &end);
615 render_t = TWFunc::timespec_diff_ms(start, end);
616
617 flip();
618 clock_gettime(CLOCK_MONOTONIC, &start);
619 flip_t = TWFunc::timespec_diff_ms(end, start);
620
621 LOGINFO("Render(): %u ms, flip(): %u ms, total: %u ms\n", render_t, flip_t, render_t+flip_t);
622 }
thatde72b6d2015-02-08 08:55:00 +0100623 else if (ret > 0)
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100624 flip();
625#endif
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500626 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200627 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500628 {
Ethan Yonker04536952015-01-27 08:41:28 -0600629 gForceRender.set_value(0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200630 PageManager::Render();
631 flip();
thatde72b6d2015-02-08 08:55:00 +0100632 input_timeout_ms = 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500633 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200634
thatfb759d42015-01-11 12:16:53 +0100635 blankTimer.checkForTimeout();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600636 if (stop_on_page_done && DataManager::GetIntValue("tw_page_done") != 0)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200637 {
638 gui_changePage("main");
Dees_Troy6ef66352013-02-21 08:26:57 -0600639 break;
640 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600641 if (DataManager::GetIntValue("tw_gui_done") != 0)
642 break;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500643 }
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600644 if (ors_read_fd > 0)
645 close(ors_read_fd);
646 ors_read_fd = -1;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200647 gGuiRunning = 0;
648 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500649}
650
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200651int gui_forceRender(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500652{
Ethan Yonker04536952015-01-27 08:41:28 -0600653 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200654 return 0;
655}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500656
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200657int gui_changePage(std::string newPage)
658{
659 LOGINFO("Set page: '%s'\n", newPage.c_str());
660 PageManager::ChangePage(newPage);
Ethan Yonker04536952015-01-27 08:41:28 -0600661 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200662 return 0;
663}
664
665int gui_changeOverlay(std::string overlay)
666{
Ethan Yonker1c273312015-03-16 12:18:56 -0500667 LOGINFO("Set overlay: '%s'\n", overlay.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200668 PageManager::ChangeOverlay(overlay);
Ethan Yonker04536952015-01-27 08:41:28 -0600669 gForceRender.set_value(1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200670 return 0;
671}
672
thatb2e8f672015-03-05 20:25:39 +0100673std::string gui_parse_text(std::string str)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200674{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200675 // This function parses text for DataManager values encompassed by %value% in the XML
thatb2e8f672015-03-05 20:25:39 +0100676 // and string resources (%@resource_name%)
Ethan Yonker74db1572015-10-28 12:44:49 -0500677 size_t pos = 0, next, end;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200678
679 while (1)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500680 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500681 next = str.find("{@", pos);
682 if (next == std::string::npos)
683 break;
684
685 end = str.find('}', next + 1);
686 if (end == std::string::npos)
687 break;
688
689 std::string var = str.substr(next + 2, (end - next) - 2);
690 str.erase(next, (end - next) + 1);
691
692 size_t default_loc = var.find('=', 0);
693 std::string lookup;
694 if (default_loc == std::string::npos) {
695 str.insert(next, PageManager::GetResources()->FindString(var));
696 } else {
697 lookup = var.substr(0, default_loc);
698 std::string default_string = var.substr(default_loc + 1, var.size() - default_loc - 1);
699 str.insert(next, PageManager::GetResources()->FindString(lookup, default_string));
700 }
701 }
702 pos = 0;
703 while (1)
704 {
705 next = str.find('%', pos);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200706 if (next == std::string::npos)
707 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500708
Ethan Yonker74db1572015-10-28 12:44:49 -0500709 end = str.find('%', next + 1);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200710 if (end == std::string::npos)
711 return str;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500712
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200713 // We have a block of data
thatb2e8f672015-03-05 20:25:39 +0100714 std::string var = str.substr(next + 1, (end - next) - 1);
715 str.erase(next, (end - next) + 1);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500716
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200717 if (next + 1 == end)
718 str.insert(next, 1, '%');
719 else
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500720 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200721 std::string value;
thatb2e8f672015-03-05 20:25:39 +0100722 if (var.size() > 0 && var[0] == '@') {
723 // this is a string resource ("%@string_name%")
724 value = PageManager::GetResources()->FindString(var.substr(1));
725 str.insert(next, value);
726 }
727 else if (DataManager::GetValue(var, value) == 0)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200728 str.insert(next, value);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500729 }
730
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200731 pos = next + 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500732 }
733}
734
Ethan Yonker74db1572015-10-28 12:44:49 -0500735std::string gui_lookup(const std::string& resource_name, const std::string& default_value) {
736 return PageManager::GetResources()->FindString(resource_name, default_value);
737}
738
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200739extern "C" int gui_init(void)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500740{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200741 gr_init();
Matt Mowerb26c1162016-02-03 21:05:57 -0600742 TWFunc::Set_Brightness(DataManager::GetStrValue("tw_brightness"));
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500743
that235c6482016-01-24 21:59:00 +0100744 // load and show splash screen
745 if (PageManager::LoadPackage("splash", TWRES "splash.xml", "splash")) {
746 LOGERR("Failed to load splash screen XML.\n");
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500747 }
that235c6482016-01-24 21:59:00 +0100748 else {
749 PageManager::SelectPackage("splash");
750 PageManager::Render();
751 flip();
752 PageManager::ReleasePackage("splash");
Ethan Yonker63e414f2015-02-06 15:44:39 -0600753 }
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500754
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200755 ev_init();
756 return 0;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500757}
758
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200759extern "C" int gui_loadResources(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400760{
Ethan Yonker83e82572014-04-04 10:59:28 -0500761#ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200762 int check = 0;
763 DataManager::GetValue(TW_IS_ENCRYPTED, check);
Dees Troy3454ade2015-01-20 19:21:04 +0000764
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200765 if (check)
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500766 {
Dees Troy3454ade2015-01-20 19:21:04 +0000767 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "decrypt"))
Dees_Troy5bf43922012-09-07 16:07:55 -0400768 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500769 gui_err("base_pkg_err=Failed to load base packages.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200770 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400771 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200772 else
773 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500774 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400775
Ethan Yonker86404bd2016-03-31 08:01:05 -0500776 if (check == 0)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200777 {
778 std::string theme_path;
779
780 theme_path = DataManager::GetSettingsStoragePath();
781 if (!PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400782 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200783 int retry_count = 5;
784 while (retry_count > 0 && !PartitionManager.Mount_Settings_Storage(false))
Dees_Troy51a0e822012-09-05 15:24:24 -0400785 {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200786 usleep(500000);
787 retry_count--;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500788 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200789
Ethan Yonker74db1572015-10-28 12:44:49 -0500790 if (!PartitionManager.Mount_Settings_Storage(true))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500791 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500792 LOGINFO("Unable to mount %s during GUI startup.\n", theme_path.c_str());
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200793 check = 1;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500794 }
795 }
796
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200797 theme_path += "/TWRP/theme/ui.zip";
798 if (check || PageManager::LoadPackage("TWRP", theme_path, "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500799 {
Ethan Yonker83e82572014-04-04 10:59:28 -0500800#endif // ifndef TW_OEM_BUILD
Dees Troy3454ade2015-01-20 19:21:04 +0000801 if (PageManager::LoadPackage("TWRP", TWRES "ui.xml", "main"))
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500802 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500803 gui_err("base_pkg_err=Failed to load base packages.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200804 goto error;
Dees_Troy51a0e822012-09-05 15:24:24 -0400805 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500806#ifndef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -0400807 }
808 }
Ethan Yonker83e82572014-04-04 10:59:28 -0500809#endif // ifndef TW_OEM_BUILD
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200810 // Set the default package
811 PageManager::SelectPackage("TWRP");
Dees_Troy51a0e822012-09-05 15:24:24 -0400812
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200813 gGuiInitialized = 1;
814 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400815
816error:
Ethan Yonker83e82572014-04-04 10:59:28 -0500817 LOGERR("An internal error has occurred: unable to load theme.\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200818 gGuiInitialized = 0;
819 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400820}
821
Ethan Yonkercf50da52015-01-12 21:59:07 -0600822extern "C" int gui_loadCustomResources(void)
823{
824#ifndef TW_OEM_BUILD
825 if (!PartitionManager.Mount_Settings_Storage(false)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500826 LOGINFO("Unable to mount settings storage during GUI startup.\n");
Ethan Yonkercf50da52015-01-12 21:59:07 -0600827 return -1;
828 }
829
830 std::string theme_path = DataManager::GetSettingsStoragePath();
831 theme_path += "/TWRP/theme/ui.zip";
832 // Check for a custom theme
833 if (TWFunc::Path_Exists(theme_path)) {
834 // There is a custom theme, try to load it
835 if (PageManager::ReloadPackage("TWRP", theme_path)) {
836 // Custom theme failed to load, try to load stock theme
Dees Troy3454ade2015-01-20 19:21:04 +0000837 if (PageManager::ReloadPackage("TWRP", TWRES "ui.xml")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500838 gui_err("base_pkg_err=Failed to load base packages.");
Ethan Yonkercf50da52015-01-12 21:59:07 -0600839 goto error;
840 }
841 }
842 }
843 // Set the default package
844 PageManager::SelectPackage("TWRP");
845#endif
846 return 0;
847
848error:
849 LOGERR("An internal error has occurred: unable to load theme.\n");
850 gGuiInitialized = 0;
851 return -1;
852}
853
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200854extern "C" int gui_start(void)
Dees_Troy51a0e822012-09-05 15:24:24 -0400855{
Ethan Yonkerafde0982016-01-23 08:55:35 -0600856 return gui_startPage("main", 1, 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400857}
858
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600859extern "C" int gui_startPage(const char *page_name, const int allow_commands, int stop_on_page_done)
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000860{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200861 if (!gGuiInitialized)
862 return -1;
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000863
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200864 // Set the default package
865 PageManager::SelectPackage("TWRP");
866
that9fa51532015-01-29 02:04:47 +0100867 input_handler.init();
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600868#ifndef TW_OEM_BUILD
869 if (allow_commands)
870 {
871 if (ors_read_fd < 0)
872 setup_ors_command();
873 } else {
874 if (ors_read_fd >= 0) {
875 close(ors_read_fd);
876 ors_read_fd = -1;
877 }
878 }
879#endif
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600880 return runPages(page_name, stop_on_page_done);
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000881}
882
Ethan Yonker63e414f2015-02-06 15:44:39 -0600883
884extern "C" void set_scale_values(float w, float h)
885{
886 scale_theme_w = w;
887 scale_theme_h = h;
888}
889
890extern "C" int scale_theme_x(int initial_x)
891{
892 if (scale_theme_w != 1) {
thatba75a0e2015-02-14 21:20:10 +0100893 int scaled = (float)initial_x * scale_theme_w;
894 if (scaled == 0 && initial_x > 0)
895 return 1;
896 return scaled;
Ethan Yonker63e414f2015-02-06 15:44:39 -0600897 }
898 return initial_x;
899}
900
901extern "C" int scale_theme_y(int initial_y)
902{
903 if (scale_theme_h != 1) {
thatba75a0e2015-02-14 21:20:10 +0100904 int scaled = (float)initial_y * scale_theme_h;
905 if (scaled == 0 && initial_y > 0)
906 return 1;
907 return scaled;
Ethan Yonker63e414f2015-02-06 15:44:39 -0600908 }
909 return initial_y;
910}
911
912extern "C" int scale_theme_min(int initial_value)
913{
914 if (scale_theme_w != 1 || scale_theme_h != 1) {
915 if (scale_theme_w < scale_theme_h)
916 return scale_theme_x(initial_value);
917 else
918 return scale_theme_y(initial_value);
919 }
920 return initial_value;
921}
922
923extern "C" float get_scale_w()
924{
925 return scale_theme_w;
926}
927
928extern "C" float get_scale_h()
929{
930 return scale_theme_h;
931}