forked from Tasssadar/multirom
-
Notifications
You must be signed in to change notification settings - Fork 14
/
multirom_ui.c
875 lines (733 loc) · 24.2 KB
/
multirom_ui.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
/*
* This file is part of MultiROM.
*
* MultiROM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MultiROM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MultiROM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <pthread.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
#include "lib/framebuffer.h"
#include "lib/input.h"
#include "lib/log.h"
#include "lib/listview.h"
#include "lib/util.h"
#include "lib/button.h"
#include "lib/progressdots.h"
#include "lib/workers.h"
#include "lib/containers.h"
#include "lib/animation.h"
#include "lib/notification_card.h"
#include "lib/tabview.h"
#include "lib/colors.h"
#include "multirom_ui.h"
#include "multirom_ui_themes.h"
#include "hooks.h"
#include "version.h"
#include "pong.h"
#ifdef MR_NO_KEXEC
#include "no_kexec.h"
#endif
static struct multirom_status *mrom_status = NULL;
static struct multirom_rom *selected_rom = NULL;
static volatile int exit_ui_code = -1;
static volatile int loop_act = 0;
static multirom_themes_info *themes_info = NULL;
static multirom_theme *cur_theme = NULL;
static pthread_mutex_t exit_code_mutex = PTHREAD_MUTEX_INITIALIZER;
static struct auto_boot_data
{
ncard_builder *b;
int seconds;
int destroy;
pthread_mutex_t mutex;
} auto_boot_data = {
.b = NULL,
.seconds = 0,
.destroy = 0,
.mutex = PTHREAD_MUTEX_INITIALIZER,
};
uint32_t CLR_PRIMARY = LBLUE;
uint32_t CLR_SECONDARY = LBLUE2;
#define LOOP_UPDATE_USB 0x01
#define LOOP_START_PONG 0x02
#define LOOP_CHANGE_CLR 0x04
static void list_block(char *path, int rec)
{
ERROR("Listing %s", path);
DIR *d = opendir(path);
if(!d)
{
ERROR("Failed to open %s", path);
return;
}
struct dirent *dr;
struct stat info;
while((dr = readdir(d)))
{
if(dr->d_name[0] == '.')
continue;
ERROR("%s/%s (%d)", path, dr->d_name, dr->d_type);
if(dr->d_type == 4 && rec)
{
char name[256];
sprintf(name, "%s/%s", path, dr->d_name);
list_block(name, 1);
}
}
closedir(d);
}
static void reveal_rect_alpha_step(void *data, float interpolated)
{
fb_rect *r = data;
interpolated = 1.f - interpolated;
r->color = (r->color & ~(0xFF << 24)) | (((int)(0xFF*interpolated)) << 24);
fb_request_draw();
}
#ifdef MR_NO_KEXEC
static void nokexec_multirom_ui_use_kexec(UNUSED void *data)
{
pthread_mutex_lock(&exit_code_mutex);
nokexec()->selected_method = NO_KEXEC_BOOT_NORMAL;
exit_ui_code = UI_EXIT_BOOT_ROM;
pthread_mutex_unlock(&exit_code_mutex);
}
static void nokexec_multirom_ui_use_nokexec(UNUSED void *data)
{
pthread_mutex_lock(&exit_code_mutex);
nokexec()->selected_method = NO_KEXEC_BOOT_NOKEXEC;
exit_ui_code = UI_EXIT_BOOT_ROM;
pthread_mutex_unlock(&exit_code_mutex);
}
void nokexec_multirom_ui_ask_confirm(void)
{
ncard_builder *b = ncard_create_builder();
char buff[256];
ncard_set_pos(b, NCARD_POS_CENTER);
ncard_set_cancelable(b, 1);
ncard_set_title(b, "Confirm boot method");
ncard_add_btn(b, BTN_NEGATIVE, "Cancel", ncard_hide_callback, NULL);
ncard_add_btn(b, BTN_POSITIVE, "OK", nokexec_multirom_ui_use_nokexec, NULL);
snprintf(buff, sizeof(buff), "\nYour kernel does not support kexec-hardboot, you can still boot\n\n"
"<i>%s</i>\n\n"
" <b>using no-kexec workaround</b>", selected_rom->name);
ncard_set_text(b, buff);
ncard_show(b, 1);
}
void nokexec_multirom_ui_ask_choice(void)
{
ncard_builder *b = ncard_create_builder();
char buff[256];
ncard_set_pos(b, NCARD_POS_CENTER);
ncard_set_cancelable(b, 1);
ncard_set_title(b, "Choose boot method");
snprintf(buff, sizeof(buff), "\nYour kernel supports kexec-hardboot, but you have "
"set the option to ask which boot method to use.\n\n\n"
"How would you like to boot\n\n"
"<i>%s</i>\n\n", selected_rom->name);
ncard_set_text(b, buff);
ncard_add_btn(b, BTN_NEGATIVE, "[no-kexec workaround]", nokexec_multirom_ui_use_nokexec, NULL);
ncard_add_btn(b, BTN_POSITIVE, "[kexec]", nokexec_multirom_ui_use_kexec, NULL);
ncard_show(b, 1);
}
#endif //MR_NO_KEXEC
int multirom_ui(struct multirom_status *s, struct multirom_rom **to_boot)
{
if(s->auto_boot_rom && (s->auto_boot_type & AUTOBOOT_CHECK_KEYS))
{
start_input_thread_wait(1);
int res = is_any_key_pressed() || get_last_key() != -1;
stop_input_thread();
if(!res)
{
*to_boot = s->auto_boot_rom;
return UI_EXIT_BOOT_ROM;
}
}
if(multirom_init_fb(s->rotation) < 0)
return UI_EXIT_BOOT_ROM;
fb_freeze(1);
mrom_status = s;
exit_ui_code = -1;
selected_rom = NULL;
colors_select(s->colors);
themes_info = multirom_ui_init_themes();
if((cur_theme = multirom_ui_select_theme(themes_info, fb_width, fb_height)) == NULL)
{
fb_freeze(0);
ERROR("Couldn't find theme for resolution %dx%d!\n", fb_width, fb_height);
fb_add_text(0, 0, WHITE, SIZE_SMALL, "Couldn't find theme for resolution %dx%d!\nPress POWER to reboot.", fb_width, fb_height);
fb_force_draw();
start_input_thread();
while(wait_for_key() != KEY_POWER);
stop_input_thread();
fb_clear();
fb_close();
return UI_EXIT_REBOOT;
}
workers_start();
anim_init(s->anim_duration_coef);
multirom_ui_init_theme(TAB_INTERNAL);
start_input_thread();
keyaction_enable(1);
fb_set_brightness(s->brightness);
if(s->auto_boot_rom && s->auto_boot_seconds > 0 && (s->auto_boot_type & AUTOBOOT_CHECK_KEYS) == 0)
multirom_ui_auto_boot();
else
{
fb_rect *r = fb_add_rect_lvl(1000, 0, 0, fb_width, fb_height, BLACK);
call_anim *a = call_anim_create(r, reveal_rect_alpha_step, 500, INTERPOLATOR_ACCELERATE);
a->on_finished_call = fb_remove_item;
a->on_finished_data = r;
call_anim_add(a);
}
fb_freeze(0);
fb_request_draw();
#ifdef MR_NO_KEXEC
nokexec()->selected_method = NO_KEXEC_BOOT_NONE; // let multirom_ui return the method
#endif
while(1)
{
pthread_mutex_lock(&exit_code_mutex);
#ifdef MR_NO_KEXEC
if(exit_ui_code == UI_EXIT_BOOT_ROM && nokexec()->selected_method == NO_KEXEC_BOOT_NONE)
{
if(selected_rom->type == ROM_DEFAULT)
{
nokexec()->selected_method = NO_KEXEC_BOOT_NORMAL; // normal
}
else if(!multirom_has_kexec())
{
if(nokexec()->is_ask_confirm || nokexec()->is_ask_choice)
{
exit_ui_code = -1;
nokexec_multirom_ui_ask_confirm(); // also ask for confirmation
}
else
nokexec()->selected_method = NO_KEXEC_BOOT_NOKEXEC; // only when needed
}
else
{
if(nokexec()->is_ask_choice)
{
exit_ui_code = -1;
nokexec_multirom_ui_ask_choice(); // ask which method to use
}
else if(nokexec()->is_forced)
nokexec()->selected_method = NO_KEXEC_BOOT_NOKEXEC; // always use no-kexec
else
nokexec()->selected_method = NO_KEXEC_BOOT_NORMAL; // normal
}
}
#endif
if(exit_ui_code != -1)
{
pthread_mutex_unlock(&exit_code_mutex);
break;
}
if(loop_act & LOOP_UPDATE_USB && !ncard_is_moving())
{
multirom_find_usb_roms(mrom_status);
multirom_ui_tab_rom_update_usb();
loop_act &= ~(LOOP_UPDATE_USB);
}
if(loop_act & LOOP_START_PONG)
{
loop_act &= ~(LOOP_START_PONG);
keyaction_enable(0);
input_push_context();
anim_push_context();
fb_push_context();
pong();
fb_pop_context();
anim_pop_context();
input_pop_context();
keyaction_enable(1);
}
if(loop_act & LOOP_CHANGE_CLR)
{
pthread_mutex_unlock(&exit_code_mutex);
fb_freeze(1);
multirom_ui_destroy_theme();
colors_select(s->colors);
multirom_ui_init_theme(TAB_MISC);
fb_freeze(0);
fb_request_draw();
pthread_mutex_lock(&exit_code_mutex);
loop_act &= ~(LOOP_CHANGE_CLR);
}
pthread_mutex_unlock(&exit_code_mutex);
usleep(100000);
}
keyaction_enable(0);
keyaction_clear();
ncard_builder *b = ncard_create_builder();
ncard_set_pos(b, NCARD_POS_CENTER);
switch(exit_ui_code)
{
case UI_EXIT_BOOT_ROM:
{
*to_boot = selected_rom;
ncard_set_title(b, "Booting...");
char buff[64];
snprintf(buff, sizeof(buff), "<i>%s</i>", selected_rom->name);
#ifdef MR_NO_KEXEC
if (nokexec()->selected_method == NO_KEXEC_BOOT_NOKEXEC)
snprintf(buff, sizeof(buff), "<i>%s</i>\n\n(using no-kexec workaround)", selected_rom->name);
#endif
ncard_set_text(b, buff);
break;
}
case UI_EXIT_REBOOT:
ncard_set_text(b, "\nRebooting...\n\n");
break;
case UI_EXIT_REBOOT_RECOVERY:
ncard_set_text(b, "\nRebooting to recovery...\n\n");
break;
case UI_EXIT_REBOOT_BOOTLOADER:
ncard_set_text(b, "\nRebooting to bootloader...\n\n");
break;
case UI_EXIT_SHUTDOWN:
ncard_set_text(b, "\nShutting down...\n\n");
break;
}
ncard_show(b, 1);
#ifdef MR_NO_KEXEC
// sleep 2 seconds so we can see the boot notification card
sleep(2);
#endif
anim_stop(1);
fb_freeze(1);
fb_force_draw();
multirom_ui_destroy_theme();
multirom_ui_free_themes(themes_info);
themes_info = NULL;
stop_input_thread();
workers_stop();
#if MR_DEVICE_HOOKS >= 2
mrom_hook_before_fb_close();
#endif
fb_close();
return exit_ui_code;
}
void multirom_ui_init_theme(int tab)
{
memset(themes_info->data, 0, sizeof(multirom_theme_data));
themes_info->data->selected_tab = -1;
multirom_ui_init_header();
fb_set_background(C_BACKGROUND);
themes_info->data->tabs->on_page_changed_by_swipe = multirom_ui_switch;
themes_info->data->tabs->on_pos_changed = multirom_ui_change_header_selector_pos;
int i;
for(i = 0; i < TAB_COUNT; ++i)
{
tabview_add_page(themes_info->data->tabs, -1);
switch(i)
{
#ifndef MR_UNIFIED_TABS
case TAB_USB:
#endif
case TAB_INTERNAL:
themes_info->data->tab_data[i] = multirom_ui_tab_rom_init(i);
break;
case TAB_MISC:
themes_info->data->tab_data[i] = multirom_ui_tab_misc_init();
break;
}
}
add_touch_handler(&tabview_touch_handler, themes_info->data->tabs);
tabview_update_positions(themes_info->data->tabs);
multirom_ui_switch(tab);
}
void multirom_ui_destroy_theme(void)
{
cur_theme->destroy(themes_info->data);
tabview_destroy(themes_info->data->tabs);
themes_info->data->tabs = NULL;
int i;
for(i = 0; i < TAB_COUNT; ++i)
{
button_destroy(themes_info->data->tab_btns[i]);
themes_info->data->tab_btns[i] = NULL;
multirom_ui_destroy_tab(i);
}
fb_clear();
}
void multirom_ui_init_header(void)
{
cur_theme->init_header(themes_info->data);
}
void multirom_ui_change_header_selector_pos(float pos)
{
cur_theme->header_set_tab_selector_pos(themes_info->data, pos);
}
void multirom_ui_destroy_tab(int tab)
{
switch(tab)
{
case -1:
break;
#ifndef MR_UNIFIED_TABS
case TAB_USB:
#endif
case TAB_INTERNAL:
multirom_ui_tab_rom_destroy(themes_info->data->tab_data[tab]);
break;
case TAB_MISC:
multirom_ui_tab_misc_destroy(themes_info->data->tab_data[tab]);
break;
default:
assert(0);
break;
}
themes_info->data->tab_data[tab] = NULL;
}
void multirom_ui_switch_btn(void *data)
{
multirom_ui_switch(*((int*)data));
}
void multirom_ui_switch(int tab)
{
if(tab == themes_info->data->selected_tab)
return;
tabview_set_active_page(themes_info->data->tabs, tab,
themes_info->data->selected_tab == -1 ? 0 : 200);
themes_info->data->selected_tab = tab;
}
int multirom_ui_fill_rom_list(listview *view, int mask)
{
int i;
int ret = 0;
struct multirom_rom *rom;
void *data;
char part_desc[64];
for(i = 0; mrom_status->roms && mrom_status->roms[i]; ++i)
{
rom = mrom_status->roms[i];
if(!(M(rom->type) & mask))
continue;
if(rom->partition)
sprintf(part_desc, "%s (%s)", rom->partition->name, rom->partition->fs);
if(rom->type == ROM_DEFAULT && mrom_status->hide_internal)
continue;
data = rom_item_create(rom->name, rom->partition ? part_desc : NULL, rom->icon_path);
listview_add_item(view, rom->id, data);
ret |= M(rom->type);
}
return ret;
}
static void multirom_ui_destroy_auto_boot_data(void)
{
if(auto_boot_data.b)
{
ncard_destroy_builder(auto_boot_data.b);
auto_boot_data.b = NULL;
}
auto_boot_data.destroy = 1;
}
static void multirom_ui_auto_boot_hidden(UNUSED void *data)
{
pthread_mutex_lock(&auto_boot_data.mutex);
multirom_ui_destroy_auto_boot_data();
pthread_mutex_unlock(&auto_boot_data.mutex);
}
static void multirom_ui_auto_boot_now(void *data)
{
multirom_ui_auto_boot_hidden(data);
pthread_mutex_lock(&exit_code_mutex);
selected_rom = mrom_status->auto_boot_rom;
exit_ui_code = UI_EXIT_BOOT_ROM;
pthread_mutex_unlock(&exit_code_mutex);
}
static void multirom_ui_auto_boot_tick(UNUSED void *data)
{
char buff[128];
pthread_mutex_lock(&auto_boot_data.mutex);
if(auto_boot_data.destroy)
{
pthread_mutex_unlock(&auto_boot_data.mutex);
return;
}
if(--auto_boot_data.seconds == 0)
{
multirom_ui_destroy_auto_boot_data();
pthread_mutex_unlock(&auto_boot_data.mutex);
pthread_mutex_lock(&exit_code_mutex);
selected_rom = mrom_status->auto_boot_rom;
exit_ui_code = UI_EXIT_BOOT_ROM;
pthread_mutex_unlock(&exit_code_mutex);
}
else
{
call_anim *a = call_anim_create(NULL, NULL, 1000, INTERPOLATOR_LINEAR);
a->duration = 1000; // in call_anim_create, duration is multiplied by coef - we don't want that here
a->on_finished_call = multirom_ui_auto_boot_tick;
call_anim_add(a);
snprintf(buff, sizeof(buff), "\n<b>ROM:</b> <y>%s</y>\n\nBooting in %d second%s.",
mrom_status->auto_boot_rom->name, auto_boot_data.seconds, auto_boot_data.seconds != 1 ? "s" : "");
ncard_set_text(auto_boot_data.b, buff);
ncard_show(auto_boot_data.b, 0);
}
pthread_mutex_unlock(&auto_boot_data.mutex);
}
void multirom_ui_auto_boot(void)
{
ncard_builder *b = ncard_create_builder();
auto_boot_data.b = b;
auto_boot_data.seconds = mrom_status->auto_boot_seconds + 1;
auto_boot_data.destroy = 0;
ncard_set_pos(b, NCARD_POS_CENTER);
ncard_set_cancelable(b, 1);
ncard_set_title(b, "Auto-boot");
ncard_add_btn(b, BTN_NEGATIVE, "Cancel", ncard_hide_callback, NULL);
ncard_add_btn(b, BTN_POSITIVE, "Boot now", multirom_ui_auto_boot_now, NULL);
ncard_set_on_hidden(b, multirom_ui_auto_boot_hidden, NULL);
ncard_set_from_black(b, 1);
multirom_ui_auto_boot_tick(NULL);
}
void multirom_ui_refresh_usb_handler(void)
{
pthread_mutex_lock(&exit_code_mutex);
loop_act |= LOOP_UPDATE_USB;
pthread_mutex_unlock(&exit_code_mutex);
}
void multirom_ui_start_pong(UNUSED void *data)
{
pthread_mutex_lock(&exit_code_mutex);
loop_act |= LOOP_START_PONG;
pthread_mutex_unlock(&exit_code_mutex);
}
void *multirom_ui_tab_rom_init(int tab_type)
{
tab_data_roms *t = mzalloc(sizeof(tab_data_roms));
themes_info->data->tab_data[tab_type] = t;
t->list = mzalloc(sizeof(listview));
t->list->item_draw = &rom_item_draw;
t->list->item_hide = &rom_item_hide;
t->list->item_height = &rom_item_height;
t->list->item_destroy = &rom_item_destroy;
t->list->item_confirmed = &multirom_ui_tab_rom_confirmed;
cur_theme->tab_rom_init(themes_info->data, t, tab_type);
listview_init_ui(t->list);
tabview_add_item(themes_info->data->tabs, tab_type, t->list);
int masks;
#ifdef MR_UNIFIED_TABS
masks = multirom_ui_fill_rom_list(t->list, MASK_INTERNAL | MASK_USB_ROMS);
#else
if (tab_type == TAB_INTERNAL) {
masks = multirom_ui_fill_rom_list(t->list, MASK_INTERNAL);
} else {
masks = multirom_ui_fill_rom_list(t->list, MASK_USB_ROMS);
}
#endif
listview_update_ui(t->list);
#ifdef MR_UNIFIED_TABS
int has_roms = ((masks & MASK_USB_ROMS) == 0);
#else
int has_roms = (int)(t->list->items == NULL);
#endif
multirom_ui_tab_rom_set_empty((void*)t, has_roms);
if (tab_type == TAB_USB)
{
multirom_set_usb_refresh_handler(&multirom_ui_refresh_usb_handler);
multirom_set_usb_refresh_thread(mrom_status, 1);
}
return t;
}
void multirom_ui_tab_rom_destroy(void *data)
{
multirom_set_usb_refresh_thread(mrom_status, 0);
pthread_mutex_lock(&exit_code_mutex);
loop_act &= ~(LOOP_UPDATE_USB);
pthread_mutex_unlock(&exit_code_mutex);
tab_data_roms *t = (tab_data_roms*)data;
list_clear(&t->buttons, &button_destroy);
list_clear(&t->ui_elements, &fb_remove_item);
listview_destroy(t->list);
if(t->usb_prog)
progdots_destroy(t->usb_prog);
free(t);
}
void multirom_ui_tab_rom_confirmed(UNUSED listview_item *it)
{
multirom_ui_tab_rom_boot();
}
void multirom_ui_tab_rom_boot(void)
{
int cur_tab = themes_info->data->selected_tab;
if(!themes_info->data->tab_data[cur_tab])
return;
tab_data_roms *t = themes_info->data->tab_data[cur_tab];
if(!t->list->selected)
return;
struct multirom_rom *rom = multirom_get_rom_by_id(mrom_status, t->list->selected->id);
if(!rom)
return;
int error = 0;
ncard_builder *b = ncard_create_builder();
ncard_set_pos(b, NCARD_POS_CENTER);
ncard_add_btn(b, BTN_NEGATIVE, "ok", ncard_hide_callback, NULL);
ncard_set_cancelable(b, 1);
ncard_set_title(b, "Error");
int m = M(rom->type);
if(m & MASK_UNSUPPORTED)
{
ncard_set_text(b, "Unsupported ROM type, see XDA thread for more info!");
error = 1;
}
else if (((m & MASK_KEXEC) || ((m & MASK_ANDROID) && rom->has_bootimg)) &&
!multirom_has_kexec())
{
#ifndef MR_NO_KEXEC
ncard_set_text(b, "Kexec-hardboot support is required to boot this ROM.\n\n"
"Install kernel with kexec-hardboot support to your Internal ROM!");
error = 1;
#else
if (nokexec()->is_disabled)
{
ncard_set_text(b, "Kexec-hardboot support is required to boot this ROM.\n\n"
"<i>You can either:</i>\n"
"1) Install kernel with kexec-hardboot support to your Internal ROM.\n"
"\n"
"2) Enable No-KEXEC Workaround in TWRP MultiROM Settings.");
error = 1;
}
else
error = 0;
#endif
}
else if((m & MASK_KEXEC) && strchr(rom->name, ' '))
{
ncard_set_text(b, "ROM's name contains spaces. Please remove spaces from this ROM's name");
error = 1;
}
if(error)
{
ncard_show(b, 1);
return;
}
else
ncard_destroy_builder(b);
pthread_mutex_lock(&exit_code_mutex);
selected_rom = rom;
exit_ui_code = UI_EXIT_BOOT_ROM;
pthread_mutex_unlock(&exit_code_mutex);
}
void multirom_ui_tab_rom_update_usb(void)
{
tab_data_roms *t = (tab_data_roms*)themes_info->data->tab_data[TAB_USB];
listview_clear(t->list);
int masks;
#ifdef MR_UNIFIED_TABS
masks = multirom_ui_fill_rom_list(t->list, MASK_INTERNAL | MASK_USB_ROMS);
#else
masks = multirom_ui_fill_rom_list(t->list, MASK_USB_ROMS);
#endif
listview_update_ui(t->list);
#ifdef MR_UNIFIED_TABS
multirom_ui_tab_rom_set_empty(t, (masks & MASK_USB_ROMS) == 0);
#else
multirom_ui_tab_rom_set_empty(t, (int)(t->list->items == NULL));
#endif
fb_request_draw();
}
void multirom_ui_tab_rom_refresh_usb(UNUSED int action)
{
multirom_update_partitions(mrom_status);
}
void multirom_ui_tab_rom_set_empty(void *data, int empty)
{
assert(empty == 0 || empty == 1);
tab_data_roms *t = (tab_data_roms*)data;
int it_count;
if(t->boot_btn)
button_enable(t->boot_btn, !empty);
if(empty && !t->usb_text)
{
fb_text_proto *p = fb_text_create(0, 0, C_TEXT, SIZE_NORMAL, "This list is refreshed automagically, just plug in an external storage and wait.");
p->wrap_w = t->list->w - 100*DPI_MUL;
p->justify = JUSTIFY_CENTER;
t->usb_text = fb_text_finalize(p);
list_add(&t->ui_elements, t->usb_text);
tabview_add_item(themes_info->data->tabs, TAB_USB, t->usb_text);
center_text(t->usb_text, t->list->x, -1, t->list->w, -1);
it_count = list_item_count(t->list->items);
#ifdef MR_UNIFIED_TABS
t->usb_text->y = t->list->y + (it_count + 0.3) * t->list->item_height(t);
#else
t->usb_text->y = t->list->y + t->list->h*0.2;
#endif
int x = t->list->x + ((t->list->w/2) - (PROGDOTS_W/2));
t->usb_prog = progdots_create(x, t->usb_text->y+100*DPI_MUL);
tabview_add_item(themes_info->data->tabs, TAB_USB, t->usb_prog->rect);
tabview_add_item(themes_info->data->tabs, TAB_USB, t->usb_prog);
}
else if(!empty && t->usb_text)
{
tabview_rm_item(themes_info->data->tabs, TAB_USB, t->usb_prog->rect);
tabview_rm_item(themes_info->data->tabs, TAB_USB, t->usb_prog);
progdots_destroy(t->usb_prog);
t->usb_prog = NULL;
tabview_rm_item(themes_info->data->tabs, TAB_USB, t->usb_text);
list_rm(&t->ui_elements, t->usb_text, &fb_remove_item);
t->usb_text = NULL;
}
}
void *multirom_ui_tab_misc_init(void)
{
tab_data_misc *t = mzalloc(sizeof(tab_data_misc));
cur_theme->tab_misc_init(themes_info->data, t, mrom_status->colors);
return t;
}
void multirom_ui_tab_misc_destroy(void *data)
{
tab_data_misc *t = (tab_data_misc*)data;
list_clear(&t->ui_elements, &fb_remove_item);
list_clear(&t->buttons, &button_destroy);
free(t);
}
void multirom_ui_tab_misc_change_clr(void *data)
{
int clr = *((int*)data);
if((loop_act & LOOP_CHANGE_CLR) || mrom_status->colors == clr)
return;
pthread_mutex_lock(&exit_code_mutex);
mrom_status->colors = clr;
loop_act |= LOOP_CHANGE_CLR;
pthread_mutex_unlock(&exit_code_mutex);
}
void multirom_ui_reboot_btn(void *data)
{
int action = *((int*)data);
pthread_mutex_lock(&exit_code_mutex);
exit_ui_code = action;
pthread_mutex_unlock(&exit_code_mutex);
}
void multirom_ui_tab_misc_copy_log(UNUSED void *data)
{
multirom_dump_status(mrom_status);
int res = multirom_copy_log(NULL, "../multirom_log.txt");
static const char *text[] = { "Failed to copy log to sdcard!", "Error log was saved to:\n\n<s>/sdcard/multirom_log.txt</s>" };
ncard_builder *b = ncard_create_builder();
ncard_set_pos(b, NCARD_POS_CENTER);
ncard_add_btn(b, BTN_NEGATIVE, "ok", ncard_hide_callback, NULL);
ncard_set_title(b, "Save error log");
ncard_set_text(b, text[res+1]);
ncard_set_cancelable(b, 1);
ncard_show(b, 1);
}