2019-06-30 01:03:00 +00:00
/*
2023-02-11 21:59:30 +00:00
* Copyright ( c ) 2018 - 2023 CTCaer
2019-06-30 01:03:00 +00:00
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms and conditions of the GNU General Public License ,
* version 2 , as published by the Free Software Foundation .
*
* This program is distributed in the hope 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 this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# include <stdlib.h>
2022-01-15 22:04:34 +00:00
# include <bdk.h>
2019-06-30 01:03:00 +00:00
# include "gui.h"
# include "gui_emummc_tools.h"
# include "gui_tools.h"
# include "gui_info.h"
2019-09-10 20:35:17 +00:00
# include "gui_options.h"
2020-06-14 13:45:45 +00:00
# include <libs/lvgl/lv_themes/lv_theme_hekate.h>
# include <libs/lvgl/lvgl.h>
2019-06-30 01:03:00 +00:00
# include "../gfx/logos-gui.h"
2020-06-14 13:45:45 +00:00
# include "../config.h"
# include <libs/fatfs/ff.h>
2019-06-30 01:03:00 +00:00
extern hekate_config h_cfg ;
2020-04-30 01:04:24 +00:00
extern nyx_config n_cfg ;
2019-06-30 01:03:00 +00:00
extern volatile boot_cfg_t * b_cfg ;
2020-04-30 01:04:24 +00:00
extern volatile nyx_storage_t * nyx_str ;
2019-06-30 01:03:00 +00:00
extern lv_res_t launch_payload ( lv_obj_t * list ) ;
static bool disp_init_done = false ;
2019-07-06 19:40:39 +00:00
static bool do_reload = false ;
2019-06-30 01:03:00 +00:00
2020-05-08 22:32:44 +00:00
lv_style_t hint_small_style ;
lv_style_t hint_small_style_white ;
lv_style_t monospace_text ;
lv_obj_t * payload_list ;
lv_obj_t * autorcm_btn ;
lv_obj_t * close_btn ;
lv_img_dsc_t * icon_switch ;
lv_img_dsc_t * icon_payload ;
lv_img_dsc_t * icon_lakka ;
lv_img_dsc_t * hekate_bg ;
lv_style_t btn_transp_rel , btn_transp_pr , btn_transp_tgl_rel , btn_transp_tgl_pr ;
lv_style_t ddlist_transp_bg , ddlist_transp_sel ;
lv_style_t tabview_btn_pr , tabview_btn_tgl_pr ;
lv_style_t mbox_darken ;
char * text_color ;
2020-04-30 10:16:30 +00:00
typedef struct _jc_lv_driver_t
{
lv_indev_t * indev ;
bool centering_done ;
u16 cx_max ;
u16 cx_min ;
u16 cy_max ;
u16 cy_min ;
s16 pos_x ;
s16 pos_y ;
s16 pos_last_x ;
s16 pos_last_y ;
lv_obj_t * cursor ;
u32 cursor_timeout ;
bool cursor_hidden ;
u32 console_timeout ;
} jc_lv_driver_t ;
static jc_lv_driver_t jc_drv_ctx ;
2022-05-13 00:49:32 +00:00
gui_status_bar_ctx status_bar ;
2019-06-30 01:03:00 +00:00
static void _nyx_disp_init ( )
{
2022-10-11 03:51:33 +00:00
vic_surface_t vic_sfc ;
vic_sfc . src_buf = NYX_FB2_ADDRESS ;
vic_sfc . dst_buf = NYX_FB_ADDRESS ;
vic_sfc . width = 1280 ;
vic_sfc . height = 720 ;
vic_sfc . pix_fmt = VIC_PIX_FORMAT_X8R8G8B8 ;
vic_sfc . rotation = VIC_ROTATION_270 ;
// Set hardware rotation via VIC.
vic_init ( ) ;
vic_set_surface ( & vic_sfc ) ;
// Turn off backlight to hide the transition.
2019-06-30 01:03:00 +00:00
display_backlight_brightness ( 0 , 1000 ) ;
2022-10-11 03:51:33 +00:00
// Rotate and copy the first frame.
vic_compose ( ) ;
// Switch to new window configuration.
display_init_framebuffer_pitch_vic ( ) ;
// Enable logging on window D.
2020-04-30 11:07:26 +00:00
display_init_framebuffer_log ( ) ;
2022-10-11 03:51:33 +00:00
// Switch back the backlight.
2019-06-30 01:03:00 +00:00
display_backlight_brightness ( h_cfg . backlight - 20 , 1000 ) ;
}
2020-06-14 10:02:54 +00:00
static void _save_log_to_bmp ( char * fname )
2020-04-30 11:09:11 +00:00
{
2020-06-14 10:02:54 +00:00
u32 * fb_ptr = ( u32 * ) LOG_FB_ADDRESS ;
// Check if there's log written.
bool log_changed = false ;
for ( u32 i = 0 ; i < 0xCD000 ; i + + )
{
if ( fb_ptr [ i ] ! = 0 )
{
log_changed = true ;
break ;
}
}
if ( ! log_changed )
return ;
2022-10-11 03:51:33 +00:00
const u32 file_size = LOG_FB_SZ + 0x36 ;
2020-04-30 11:09:11 +00:00
u8 * bitmap = malloc ( file_size ) ;
2022-10-11 03:51:33 +00:00
// Reconstruct FB for bottom-top, landscape bmp. Rotation: 656x1280 -> 1280x656.
u32 * fb = malloc ( LOG_FB_SZ ) ;
2020-04-30 11:09:11 +00:00
for ( int x = 1279 ; x > - 1 ; x - - )
{
for ( int y = 655 ; y > - 1 ; y - - )
fb [ y * 1280 + x ] = * fb_ptr + + ;
}
manual_system_maintenance ( true ) ;
2022-10-11 03:51:33 +00:00
memcpy ( bitmap + 0x36 , fb , LOG_FB_SZ ) ;
2020-04-30 11:09:11 +00:00
typedef struct _bmp_t
{
u16 magic ;
u32 size ;
u32 rsvd ;
u32 data_off ;
u32 hdr_size ;
u32 width ;
u32 height ;
u16 planes ;
u16 pxl_bits ;
u32 comp ;
u32 img_size ;
u32 res_h ;
u32 res_v ;
u64 rsvd2 ;
} __attribute__ ( ( packed ) ) bmp_t ;
bmp_t * bmp = ( bmp_t * ) bitmap ;
bmp - > magic = 0x4D42 ;
bmp - > size = file_size ;
bmp - > rsvd = 0 ;
bmp - > data_off = 0x36 ;
bmp - > hdr_size = 40 ;
bmp - > width = 1280 ;
bmp - > height = 656 ;
bmp - > planes = 1 ;
bmp - > pxl_bits = 32 ;
bmp - > comp = 0 ;
2022-10-11 03:51:33 +00:00
bmp - > img_size = LOG_FB_SZ ;
2020-04-30 11:09:11 +00:00
bmp - > res_h = 2834 ;
bmp - > res_v = 2834 ;
bmp - > rsvd2 = 0 ;
char path [ 0x80 ] ;
strcpy ( path , " bootloader/screenshots " ) ;
2020-06-14 10:02:54 +00:00
s_printf ( path + strlen ( path ) , " /nyx%s_log.bmp " , fname ) ;
2020-04-30 11:09:11 +00:00
sd_save_to_file ( bitmap , file_size , path ) ;
free ( bitmap ) ;
free ( fb ) ;
}
2019-06-30 01:03:00 +00:00
static void _save_fb_to_bmp ( )
{
2020-07-14 18:12:09 +00:00
// Disallow screenshots if less than 2s passed.
static u32 timer = 0 ;
if ( get_tmr_ms ( ) < timer )
return ;
2019-07-06 19:40:39 +00:00
if ( do_reload )
return ;
2022-10-11 03:51:33 +00:00
// Invalidate data.
bpmp_mmu_maintenance ( BPMP_MMU_MAINT_INVALID_WAY , false ) ;
const u32 file_size = NYX_FB_SZ + 0x36 ;
2019-06-30 01:03:00 +00:00
u8 * bitmap = malloc ( file_size ) ;
2022-10-11 03:51:33 +00:00
u32 * fb = malloc ( NYX_FB_SZ ) ;
u32 * fb_ptr = ( u32 * ) NYX_FB2_ADDRESS ;
u32 line_bytes = 1280 * sizeof ( u32 ) ;
2019-06-30 01:03:00 +00:00
2022-10-11 03:51:33 +00:00
// Reconstruct FB for bottom-top, landscape bmp. No rotation.
for ( int y = 719 ; y > - 1 ; y - - )
2019-06-30 01:03:00 +00:00
{
2022-10-11 03:51:33 +00:00
memcpy ( & fb [ y * 1280 ] , fb_ptr , line_bytes ) ;
fb_ptr + = line_bytes / sizeof ( u32 ) ;
2019-06-30 01:03:00 +00:00
}
// Create notification box.
lv_obj_t * mbox = lv_mbox_create ( lv_layer_top ( ) , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_mbox_set_text ( mbox , SYMBOL_CAMERA " #FFDD00 Saving screenshot...# " ) ;
lv_obj_set_width ( mbox , LV_DPI * 4 ) ;
lv_obj_set_top ( mbox , true ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_IN_TOP_LEFT , 0 , 0 ) ;
2020-04-30 11:08:25 +00:00
// Capture effect.
display_backlight_brightness ( 255 , 100 ) ;
msleep ( 150 ) ;
display_backlight_brightness ( h_cfg . backlight - 20 , 100 ) ;
2019-06-30 01:03:00 +00:00
manual_system_maintenance ( true ) ;
2022-10-11 03:51:33 +00:00
memcpy ( bitmap + 0x36 , fb , NYX_FB_SZ ) ;
2019-06-30 01:03:00 +00:00
typedef struct _bmp_t
{
u16 magic ;
u32 size ;
u32 rsvd ;
u32 data_off ;
u32 hdr_size ;
u32 width ;
u32 height ;
u16 planes ;
u16 pxl_bits ;
u32 comp ;
u32 img_size ;
u32 res_h ;
u32 res_v ;
u64 rsvd2 ;
} __attribute__ ( ( packed ) ) bmp_t ;
bmp_t * bmp = ( bmp_t * ) bitmap ;
bmp - > magic = 0x4D42 ;
bmp - > size = file_size ;
bmp - > rsvd = 0 ;
bmp - > data_off = 0x36 ;
bmp - > hdr_size = 40 ;
bmp - > width = 1280 ;
bmp - > height = 720 ;
bmp - > planes = 1 ;
bmp - > pxl_bits = 32 ;
bmp - > comp = 0 ;
2022-10-11 03:51:33 +00:00
bmp - > img_size = NYX_FB_SZ ;
2019-06-30 01:03:00 +00:00
bmp - > res_h = 2834 ;
bmp - > res_v = 2834 ;
bmp - > rsvd2 = 0 ;
sd_mount ( ) ;
char path [ 0x80 ] ;
2020-11-15 11:47:47 +00:00
strcpy ( path , " bootloader " ) ;
f_mkdir ( path ) ;
strcat ( path , " /screenshots " ) ;
2019-06-30 01:03:00 +00:00
f_mkdir ( path ) ;
2020-06-14 10:02:54 +00:00
// Create date/time name.
char fname [ 32 ] ;
rtc_time_t time ;
max77620_rtc_get_time ( & time ) ;
if ( n_cfg . timeoff )
{
u32 epoch = max77620_rtc_date_to_epoch ( & time ) + ( s32 ) n_cfg . timeoff ;
max77620_rtc_epoch_to_date ( epoch , & time ) ;
}
s_printf ( fname , " %04d%02d%02d_%02d%02d%02d " , time . year , time . month , time . day , time . hour , time . min , time . sec ) ;
s_printf ( path + strlen ( path ) , " /nyx%s.bmp " , fname ) ;
2020-04-30 11:09:11 +00:00
2020-11-15 11:47:47 +00:00
// Save screenshot and log.
int res = sd_save_to_file ( bitmap , file_size , path ) ;
if ( ! res )
_save_log_to_bmp ( fname ) ;
2020-04-30 11:09:11 +00:00
2020-06-13 15:32:40 +00:00
sd_unmount ( ) ;
2019-06-30 01:03:00 +00:00
free ( bitmap ) ;
free ( fb ) ;
2020-11-15 11:47:47 +00:00
if ( ! res )
lv_mbox_set_text ( mbox , SYMBOL_CAMERA " #96FF00 Screenshot saved!# " ) ;
else
lv_mbox_set_text ( mbox , SYMBOL_WARNING " #FFDD00 Screenshot failed!# " ) ;
2019-06-30 01:03:00 +00:00
manual_system_maintenance ( true ) ;
lv_mbox_start_auto_close ( mbox , 4000 ) ;
2020-07-14 18:12:09 +00:00
// Set timer to 2s.
timer = get_tmr_ms ( ) + 2000 ;
2019-06-30 01:03:00 +00:00
}
static void _disp_fb_flush ( int32_t x1 , int32_t y1 , int32_t x2 , int32_t y2 , const lv_color_t * color_p )
{
2022-10-11 03:51:33 +00:00
// Draw to intermediate non-rotated framebuffer.
gfx_set_rect_pitch ( ( u32 * ) NYX_FB2_ADDRESS , ( u32 * ) color_p , 1280 , x1 , y1 , x2 , y2 ) ;
// Rotate and copy to visible framebuffer.
if ( disp_init_done )
vic_compose ( ) ;
2019-06-30 01:03:00 +00:00
// Check if display init was done. If it's the first big draw, init.
if ( ! disp_init_done & & ( ( x2 - x1 + 1 ) > 600 ) )
{
disp_init_done = true ;
_nyx_disp_init ( ) ;
}
lv_flush_ready ( ) ;
}
2019-08-27 23:20:48 +00:00
static touch_event touchpad ;
2020-06-16 21:41:37 +00:00
static bool touch_enabled ;
2020-04-30 11:07:26 +00:00
static bool console_enabled = false ;
2019-06-30 01:03:00 +00:00
2019-12-04 19:31:39 +00:00
static bool _fts_touch_read ( lv_indev_data_t * data )
2019-06-30 01:03:00 +00:00
{
2020-06-16 21:41:37 +00:00
if ( touch_enabled )
touch_poll ( & touchpad ) ;
else
return false ;
2019-06-30 01:03:00 +00:00
2019-08-27 23:20:48 +00:00
// Take a screenshot if 3 fingers.
2019-06-30 01:03:00 +00:00
if ( touchpad . fingers > 2 )
2019-08-27 23:20:48 +00:00
{
2020-07-14 18:12:09 +00:00
_save_fb_to_bmp ( ) ;
2020-04-30 11:08:06 +00:00
data - > state = LV_INDEV_STATE_REL ;
return false ;
2019-08-27 23:20:48 +00:00
}
2020-04-30 11:07:26 +00:00
if ( console_enabled )
{
2022-05-16 10:28:38 +00:00
// Print input debugging in console.
2020-04-30 11:07:26 +00:00
gfx_con_getpos ( & gfx_con . savedx , & gfx_con . savedy ) ;
gfx_con_setpos ( 32 , 638 ) ;
gfx_con . fntsz = 8 ;
gfx_printf ( " x: %4d, y: %4d | z: %3d | " , touchpad . x , touchpad . y , touchpad . z ) ;
gfx_printf ( " 1: %02x, 2: %02x, 3: %02x, " , touchpad . raw [ 1 ] , touchpad . raw [ 2 ] , touchpad . raw [ 3 ] ) ;
gfx_printf ( " 4: %02X, 5: %02x, 6: %02x, 7: %02x " ,
touchpad . raw [ 4 ] , touchpad . raw [ 5 ] , touchpad . raw [ 6 ] , touchpad . raw [ 7 ] ) ;
gfx_con_setpos ( gfx_con . savedx , gfx_con . savedy ) ;
gfx_con . fntsz = 16 ;
return false ;
}
2019-08-27 23:20:48 +00:00
// Always set touch points.
data - > point . x = touchpad . x ;
data - > point . y = touchpad . y ;
2019-10-18 15:02:06 +00:00
2019-08-27 23:20:48 +00:00
// Decide touch enable.
2019-10-18 15:02:06 +00:00
switch ( touchpad . type & STMFTS_MASK_EVENT_ID )
2019-06-30 01:03:00 +00:00
{
case STMFTS_EV_MULTI_TOUCH_ENTER :
case STMFTS_EV_MULTI_TOUCH_MOTION :
data - > state = LV_INDEV_STATE_PR ;
break ;
case STMFTS_EV_MULTI_TOUCH_LEAVE :
data - > state = LV_INDEV_STATE_REL ;
break ;
case STMFTS_EV_NO_EVENT :
default :
if ( touchpad . touch )
data - > state = LV_INDEV_STATE_PR ;
else
data - > state = LV_INDEV_STATE_REL ;
break ;
}
return false ; // No buffering so no more data read.
}
2020-04-30 10:16:30 +00:00
static bool _jc_virt_mouse_read ( lv_indev_data_t * data )
{
// Poll Joy-Con.
jc_gamepad_rpt_t * jc_pad = joycon_poll ( ) ;
if ( ! jc_pad )
{
data - > state = LV_INDEV_STATE_REL ;
return false ;
}
// Take a screenshot if Capture button is pressed.
if ( jc_pad - > cap )
{
_save_fb_to_bmp ( ) ;
2020-07-14 18:12:09 +00:00
data - > state = LV_INDEV_STATE_REL ;
return false ;
2020-04-30 10:16:30 +00:00
}
// Calibrate left stick.
if ( ! jc_drv_ctx . centering_done )
{
2022-03-22 22:49:47 +00:00
if ( n_cfg . jc_force_right )
{
if ( jc_pad - > conn_r
& & jc_pad - > rstick_x > 0x400 & & jc_pad - > rstick_y > 0x400
& & jc_pad - > rstick_x < 0xC00 & & jc_pad - > rstick_y < 0xC00 )
{
jc_drv_ctx . cx_max = jc_pad - > rstick_x + 0x96 ;
jc_drv_ctx . cx_min = jc_pad - > rstick_x - 0x96 ;
jc_drv_ctx . cy_max = jc_pad - > rstick_y + 0x96 ;
jc_drv_ctx . cy_min = jc_pad - > rstick_y - 0x96 ;
jc_drv_ctx . centering_done = true ;
jc_drv_ctx . cursor_timeout = 0 ;
}
}
else if ( jc_pad - > conn_l
& & jc_pad - > lstick_x > 0x400 & & jc_pad - > lstick_y > 0x400
& & jc_pad - > lstick_x < 0xC00 & & jc_pad - > lstick_y < 0xC00 )
2020-04-30 10:16:30 +00:00
{
2020-06-15 12:04:46 +00:00
jc_drv_ctx . cx_max = jc_pad - > lstick_x + 0x96 ;
jc_drv_ctx . cx_min = jc_pad - > lstick_x - 0x96 ;
jc_drv_ctx . cy_max = jc_pad - > lstick_y + 0x96 ;
jc_drv_ctx . cy_min = jc_pad - > lstick_y - 0x96 ;
2020-04-30 10:16:30 +00:00
jc_drv_ctx . centering_done = true ;
jc_drv_ctx . cursor_timeout = 0 ;
}
else
{
data - > state = LV_INDEV_STATE_REL ;
return false ;
}
}
// Re-calibrate on disconnection.
2022-03-22 22:49:47 +00:00
if ( n_cfg . jc_force_right )
{
if ( ! jc_pad - > conn_r )
jc_drv_ctx . centering_done = 0 ;
}
else if ( ! jc_pad - > conn_l )
2020-04-30 10:16:30 +00:00
jc_drv_ctx . centering_done = 0 ;
// Set button presses.
if ( jc_pad - > a | | jc_pad - > zl | | jc_pad - > zr )
data - > state = LV_INDEV_STATE_PR ;
else
data - > state = LV_INDEV_STATE_REL ;
2020-04-30 11:07:26 +00:00
// Enable console.
if ( jc_pad - > plus | | jc_pad - > minus )
{
if ( ( ( u32 ) get_tmr_ms ( ) - jc_drv_ctx . console_timeout ) > 1000 )
{
if ( ! console_enabled )
{
display_activate_console ( ) ;
console_enabled = true ;
gfx_con_getpos ( & gfx_con . savedx , & gfx_con . savedy ) ;
gfx_con_setpos ( 964 , 630 ) ;
gfx_printf ( " Press -/+ to close " ) ;
gfx_con_setpos ( gfx_con . savedx , gfx_con . savedy ) ;
}
else
{
display_deactivate_console ( ) ;
console_enabled = false ;
}
jc_drv_ctx . console_timeout = get_tmr_ms ( ) ;
}
data - > state = LV_INDEV_STATE_REL ;
return false ;
}
if ( console_enabled )
{
2022-05-16 10:28:38 +00:00
// Print input debugging in console.
2020-04-30 11:07:26 +00:00
gfx_con_getpos ( & gfx_con . savedx , & gfx_con . savedy ) ;
gfx_con_setpos ( 32 , 630 ) ;
gfx_con . fntsz = 8 ;
2022-05-09 03:13:10 +00:00
gfx_printf ( " x: %4X, y: %4X | b: %06X | bt: %d %d | cx: %03X - %03x, cy: %03X - %03x " ,
2020-04-30 11:07:26 +00:00
jc_pad - > lstick_x , jc_pad - > lstick_y , jc_pad - > buttons ,
jc_pad - > batt_info_l , jc_pad - > batt_info_r ,
jc_drv_ctx . cx_min , jc_drv_ctx . cx_max , jc_drv_ctx . cy_min , jc_drv_ctx . cy_max ) ;
gfx_con_setpos ( gfx_con . savedx , gfx_con . savedy ) ;
gfx_con . fntsz = 16 ;
data - > state = LV_INDEV_STATE_REL ;
return false ;
}
2020-04-30 10:16:30 +00:00
// Calculate new cursor position.
2022-03-22 22:49:47 +00:00
if ( ! n_cfg . jc_force_right )
{
2022-05-16 10:28:38 +00:00
// Left stick X.
2022-03-22 22:49:47 +00:00
if ( jc_pad - > lstick_x < = jc_drv_ctx . cx_max & & jc_pad - > lstick_x > = jc_drv_ctx . cx_min )
jc_drv_ctx . pos_x + = 0 ;
else if ( jc_pad - > lstick_x > jc_drv_ctx . cx_max )
jc_drv_ctx . pos_x + = ( ( jc_pad - > lstick_x - jc_drv_ctx . cx_max ) / 30 ) ;
else
jc_drv_ctx . pos_x - = ( ( jc_drv_ctx . cx_min - jc_pad - > lstick_x ) / 30 ) ;
2020-04-30 10:16:30 +00:00
2022-05-16 10:28:38 +00:00
// Left stick Y.
2022-03-22 22:49:47 +00:00
if ( jc_pad - > lstick_y < = jc_drv_ctx . cy_max & & jc_pad - > lstick_y > = jc_drv_ctx . cy_min )
jc_drv_ctx . pos_y + = 0 ;
else if ( jc_pad - > lstick_y > jc_drv_ctx . cy_max )
2022-05-09 03:13:10 +00:00
{
s16 val = ( jc_pad - > lstick_y - jc_drv_ctx . cy_max ) / 30 ;
// Hoag has inverted Y axis.
if ( jc_pad - > sio_mode )
val * = - 1 ;
jc_drv_ctx . pos_y - = val ;
}
2022-03-22 22:49:47 +00:00
else
2022-05-09 03:13:10 +00:00
{
s16 val = ( jc_drv_ctx . cy_min - jc_pad - > lstick_y ) / 30 ;
// Hoag has inverted Y axis.
if ( jc_pad - > sio_mode )
val * = - 1 ;
jc_drv_ctx . pos_y + = val ;
}
2022-03-22 22:49:47 +00:00
}
2020-04-30 10:16:30 +00:00
else
2022-03-22 22:49:47 +00:00
{
2022-05-16 10:28:38 +00:00
// Right stick X.
2022-03-22 22:49:47 +00:00
if ( jc_pad - > rstick_x < = jc_drv_ctx . cx_max & & jc_pad - > rstick_x > = jc_drv_ctx . cx_min )
jc_drv_ctx . pos_x + = 0 ;
else if ( jc_pad - > rstick_x > jc_drv_ctx . cx_max )
jc_drv_ctx . pos_x + = ( ( jc_pad - > rstick_x - jc_drv_ctx . cx_max ) / 30 ) ;
else
jc_drv_ctx . pos_x - = ( ( jc_drv_ctx . cx_min - jc_pad - > rstick_x ) / 30 ) ;
2022-05-16 10:28:38 +00:00
// Right stick Y.
2022-03-22 22:49:47 +00:00
if ( jc_pad - > rstick_y < = jc_drv_ctx . cy_max & & jc_pad - > rstick_y > = jc_drv_ctx . cy_min )
jc_drv_ctx . pos_y + = 0 ;
else if ( jc_pad - > rstick_y > jc_drv_ctx . cy_max )
2022-05-09 03:13:10 +00:00
{
s16 val = ( jc_pad - > rstick_y - jc_drv_ctx . cy_max ) / 30 ;
// Hoag has inverted Y axis.
if ( jc_pad - > sio_mode )
val * = - 1 ;
jc_drv_ctx . pos_y - = val ;
}
2022-03-22 22:49:47 +00:00
else
2022-05-09 03:13:10 +00:00
{
s16 val = ( jc_drv_ctx . cy_min - jc_pad - > rstick_y ) / 30 ;
// Hoag has inverted Y axis.
if ( jc_pad - > sio_mode )
val * = - 1 ;
jc_drv_ctx . pos_y + = val ;
}
2022-03-22 22:49:47 +00:00
}
2020-04-30 10:16:30 +00:00
// Ensure value inside screen limits.
if ( jc_drv_ctx . pos_x < 0 )
jc_drv_ctx . pos_x = 0 ;
else if ( jc_drv_ctx . pos_x > 1279 )
jc_drv_ctx . pos_x = 1279 ;
if ( jc_drv_ctx . pos_y < 0 )
jc_drv_ctx . pos_y = 0 ;
else if ( jc_drv_ctx . pos_y > 719 )
jc_drv_ctx . pos_y = 719 ;
// Set cursor position.
data - > point . x = jc_drv_ctx . pos_x ;
data - > point . y = jc_drv_ctx . pos_y ;
// Auto hide cursor.
if ( jc_drv_ctx . pos_x ! = jc_drv_ctx . pos_last_x | | jc_drv_ctx . pos_y ! = jc_drv_ctx . pos_last_y )
{
jc_drv_ctx . pos_last_x = jc_drv_ctx . pos_x ;
jc_drv_ctx . pos_last_y = jc_drv_ctx . pos_y ;
jc_drv_ctx . cursor_hidden = false ;
jc_drv_ctx . cursor_timeout = get_tmr_ms ( ) ;
lv_indev_set_cursor ( jc_drv_ctx . indev , jc_drv_ctx . cursor ) ;
// Un hide cursor.
lv_obj_set_opa_scale_enable ( jc_drv_ctx . cursor , false ) ;
}
else
{
if ( ! jc_drv_ctx . cursor_hidden )
{
if ( ( ( u32 ) get_tmr_ms ( ) - jc_drv_ctx . cursor_timeout ) > 3000 )
{
// Remove cursor and hide it.
lv_indev_set_cursor ( jc_drv_ctx . indev , NULL ) ;
lv_obj_set_opa_scale_enable ( jc_drv_ctx . cursor , true ) ;
lv_obj_set_opa_scale ( jc_drv_ctx . cursor , LV_OPA_TRANSP ) ;
jc_drv_ctx . cursor_hidden = true ;
}
}
else
data - > state = LV_INDEV_STATE_REL ; // Ensure that no clicks are allowed.
}
if ( jc_pad - > b & & close_btn )
{
lv_action_t close_btn_action = lv_btn_get_action ( close_btn , LV_BTN_ACTION_CLICK ) ;
close_btn_action ( close_btn ) ;
close_btn = NULL ;
}
return false ; // No buffering so no more data read.
}
2019-06-30 01:03:00 +00:00
typedef struct _system_maintenance_tasks_t
{
union
{
lv_task_t * tasks [ 2 ] ;
struct
{
lv_task_t * status_bar ;
lv_task_t * dram_periodic_comp ;
} task ;
} ;
} system_maintenance_tasks_t ;
static system_maintenance_tasks_t system_tasks ;
void manual_system_maintenance ( bool refresh )
{
for ( u32 task_idx = 0 ; task_idx < ( sizeof ( system_maintenance_tasks_t ) / sizeof ( lv_task_t * ) ) ; task_idx + + )
{
lv_task_t * task = system_tasks . tasks [ task_idx ] ;
2023-02-11 21:51:43 +00:00
if ( task & & ( lv_tick_elaps ( task - > last_run ) > = task - > period ) )
2019-06-30 01:03:00 +00:00
{
task - > last_run = lv_tick_get ( ) ;
task - > task ( task - > param ) ;
}
}
if ( refresh )
lv_refr_now ( ) ;
}
lv_img_dsc_t * bmp_to_lvimg_obj ( const char * path )
{
2020-06-14 10:04:13 +00:00
u32 fsize ;
u8 * bitmap = sd_file_read ( path , & fsize ) ;
2019-06-30 01:03:00 +00:00
if ( ! bitmap )
return NULL ;
struct _bmp_data
{
u32 size ;
u32 size_x ;
u32 size_y ;
u32 offset ;
} ;
struct _bmp_data bmpData ;
// Get values manually to avoid unaligned access.
bmpData . size = bitmap [ 2 ] | bitmap [ 3 ] < < 8 |
bitmap [ 4 ] < < 16 | bitmap [ 5 ] < < 24 ;
bmpData . offset = bitmap [ 10 ] | bitmap [ 11 ] < < 8 |
bitmap [ 12 ] < < 16 | bitmap [ 13 ] < < 24 ;
bmpData . size_x = bitmap [ 18 ] | bitmap [ 19 ] < < 8 |
bitmap [ 20 ] < < 16 | bitmap [ 21 ] < < 24 ;
bmpData . size_y = bitmap [ 22 ] | bitmap [ 23 ] < < 8 |
bitmap [ 24 ] < < 16 | bitmap [ 25 ] < < 24 ;
// Sanity check.
if ( bitmap [ 0 ] = = ' B ' & &
bitmap [ 1 ] = = ' M ' & &
2020-06-14 10:04:13 +00:00
bitmap [ 28 ] = = 32 & & // Only 32 bit BMPs allowed.
bmpData . size < = fsize )
2019-06-30 01:03:00 +00:00
{
// Check if non-default Bottom-Top.
bool flipped = false ;
if ( bmpData . size_y & 0x80000000 )
{
bmpData . size_y = ~ ( bmpData . size_y ) + 1 ;
flipped = true ;
}
lv_img_dsc_t * img_desc = ( lv_img_dsc_t * ) bitmap ;
u32 offset_copy = ALIGN ( ( u32 ) bitmap + sizeof ( lv_img_dsc_t ) , 0x10 ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
img_desc - > header . always_zero = 0 ;
img_desc - > header . w = bmpData . size_x ;
img_desc - > header . h = bmpData . size_y ;
img_desc - > header . cf = ( bitmap [ 28 ] = = 32 ) ? LV_IMG_CF_TRUE_COLOR_ALPHA : LV_IMG_CF_TRUE_COLOR ;
img_desc - > data_size = bmpData . size - bmpData . offset ;
img_desc - > data = ( u8 * ) offset_copy ;
u32 * tmp = malloc ( bmpData . size ) ;
u32 * tmp2 = ( u32 * ) offset_copy ;
// Copy the unaligned data to an aligned buffer.
memcpy ( ( u8 * ) tmp , bitmap + bmpData . offset , img_desc - > data_size ) ;
u32 j = 0 ;
if ( ! flipped )
{
for ( u32 y = 0 ; y < bmpData . size_y ; y + + )
{
for ( u32 x = 0 ; x < bmpData . size_x ; x + + )
tmp2 [ j + + ] = tmp [ ( bmpData . size_y - 1 - y ) * bmpData . size_x + x ] ;
}
}
else
{
for ( u32 y = 0 ; y < bmpData . size_y ; y + + )
{
for ( u32 x = 0 ; x < bmpData . size_x ; x + + )
tmp2 [ j + + ] = tmp [ y * bmpData . size_x + x ] ;
}
}
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
free ( tmp ) ;
}
else
{
free ( bitmap ) ;
return NULL ;
}
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
return ( lv_img_dsc_t * ) bitmap ;
}
lv_res_t nyx_generic_onoff_toggle ( lv_obj_t * btn )
{
lv_obj_t * label_btn = lv_obj_get_child ( btn , NULL ) ;
lv_obj_t * label_btn2 = lv_obj_get_child ( btn , label_btn ) ;
char label_text [ 64 ] ;
if ( ! label_btn2 )
{
strcpy ( label_text , lv_label_get_text ( label_btn ) ) ;
label_text [ strlen ( label_text ) - 15 ] = 0 ;
if ( ! ( lv_btn_get_state ( btn ) & LV_BTN_STATE_TGL_REL ) )
{
strcat ( label_text , " #D0D0D0 OFF# " ) ;
2020-03-09 06:37:41 +00:00
lv_label_set_text ( label_btn , label_text ) ;
2019-06-30 01:03:00 +00:00
}
else
{
2020-04-30 01:04:24 +00:00
s_printf ( label_text , " %s%s%s " , label_text , text_color , " ON # " ) ;
2020-03-09 06:37:41 +00:00
lv_label_set_text ( label_btn , label_text ) ;
2019-06-30 01:03:00 +00:00
}
}
else
{
if ( ! ( lv_btn_get_state ( btn ) & LV_BTN_STATE_TGL_REL ) )
2020-04-27 05:47:00 +00:00
lv_label_set_text ( label_btn , " #D0D0D0 OFF# " ) ;
2019-06-30 01:03:00 +00:00
else
2020-04-30 01:04:24 +00:00
{
s_printf ( label_text , " %s%s " , text_color , " ON # " ) ;
lv_label_set_text ( label_btn , label_text ) ;
}
2019-06-30 01:03:00 +00:00
}
return LV_RES_OK ;
}
lv_res_t mbox_action ( lv_obj_t * btns , const char * txt )
{
lv_obj_t * mbox = lv_mbox_get_from_btn ( btns ) ;
lv_obj_t * dark_bg = lv_obj_get_parent ( mbox ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_obj_del ( dark_bg ) ; // Deletes children also (mbox).
return LV_RES_INV ;
}
2020-04-30 00:59:16 +00:00
bool nyx_emmc_check_battery_enough ( )
{
2021-01-04 00:58:07 +00:00
if ( fuse_read_hw_state ( ) = = FUSE_NX_HW_STATE_DEV )
return true ;
int batt_volt = 0 ;
2020-04-30 00:59:16 +00:00
max17050_get_property ( MAX17050_VCELL , & batt_volt ) ;
2021-01-04 00:58:07 +00:00
if ( batt_volt & & batt_volt < 3650 )
2020-04-30 00:59:16 +00:00
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
2022-10-11 01:32:53 +00:00
static const char * mbox_btn_map [ ] = { " \251 " , " \222 OK " , " \251 " , " " } ;
2020-04-30 00:59:16 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_mbox_set_text ( mbox ,
" #FF8000 Battery Check# \n \n "
" #FFDD00 Battery is not enough to carry on# \n "
" #FFDD00 with selected operation!# \n \n "
" Charge to at least #C7EA46 3650 mV#, and try again! " ) ;
lv_mbox_add_btns ( mbox , mbox_btn_map , mbox_action ) ;
lv_obj_set_width ( mbox , LV_HOR_RES / 9 * 5 ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
return false ;
}
return true ;
}
2022-01-20 12:00:45 +00:00
static void _nyx_sd_card_issues ( void * param )
2020-04-29 22:05:22 +00:00
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
2022-10-11 01:32:53 +00:00
static const char * mbox_btn_map [ ] = { " \251 " , " \222 OK " , " \251 " , " " } ;
2020-04-29 22:05:22 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_mbox_set_text ( mbox ,
" #FF8000 SD Card Issues Check# \n \n "
2021-01-11 19:39:44 +00:00
" #FFDD00 The SD Card is initialized in 1-bit mode!# \n "
2020-04-29 22:05:22 +00:00
" #FFDD00 This might mean detached or broken connector!# \n \n "
2022-01-20 12:00:45 +00:00
" You might want to check \n #C7EA46 Console Info# -> #C7EA46 microSD# " ) ;
2020-04-29 22:05:22 +00:00
lv_mbox_add_btns ( mbox , mbox_btn_map , mbox_action ) ;
lv_obj_set_width ( mbox , LV_HOR_RES / 9 * 5 ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
}
2019-06-30 01:03:00 +00:00
void nyx_window_toggle_buttons ( lv_obj_t * win , bool disable )
{
lv_win_ext_t * ext = lv_obj_get_ext_attr ( win ) ;
lv_obj_t * hbtn ;
hbtn = lv_obj_get_child_back ( ext - > header , NULL ) ;
hbtn = lv_obj_get_child_back ( ext - > header , hbtn ) ; // Skip the title.
if ( disable )
{
while ( hbtn ! = NULL )
{
lv_obj_set_opa_scale ( hbtn , LV_OPA_40 ) ;
lv_obj_set_opa_scale_enable ( hbtn , true ) ;
lv_obj_set_click ( hbtn , false ) ;
hbtn = lv_obj_get_child_back ( ext - > header , hbtn ) ;
}
}
else
{
while ( hbtn ! = NULL )
{
lv_obj_set_opa_scale ( hbtn , LV_OPA_COVER ) ;
lv_obj_set_click ( hbtn , true ) ;
hbtn = lv_obj_get_child_back ( ext - > header , hbtn ) ;
}
}
}
2020-04-30 01:32:55 +00:00
lv_res_t lv_win_close_action_custom ( lv_obj_t * btn )
{
2022-10-11 03:51:33 +00:00
close_btn = NULL ;
2020-04-30 01:32:55 +00:00
2022-10-11 03:51:33 +00:00
return lv_win_close_action ( btn ) ;
2020-04-30 01:32:55 +00:00
}
2019-06-30 01:03:00 +00:00
lv_obj_t * nyx_create_standard_window ( const char * win_title )
{
static lv_style_t win_bg_style ;
lv_style_copy ( & win_bg_style , & lv_style_plain ) ;
2020-04-30 00:57:10 +00:00
win_bg_style . body . main_color = lv_theme_get_current ( ) - > bg - > body . main_color ;
2019-06-30 01:03:00 +00:00
win_bg_style . body . grad_color = win_bg_style . body . main_color ;
lv_obj_t * win = lv_win_create ( lv_scr_act ( ) , NULL ) ;
lv_win_set_title ( win , win_title ) ;
lv_win_set_style ( win , LV_WIN_STYLE_BG , & win_bg_style ) ;
lv_obj_set_size ( win , LV_HOR_RES , LV_VER_RES ) ;
2020-04-30 01:32:55 +00:00
close_btn = lv_win_add_btn ( win , NULL , SYMBOL_CLOSE " Close " , lv_win_close_action_custom ) ;
2019-06-30 01:03:00 +00:00
return win ;
}
2020-04-27 06:13:22 +00:00
lv_obj_t * nyx_create_window_custom_close_btn ( const char * win_title , lv_action_t rel_action )
{
static lv_style_t win_bg_style ;
lv_style_copy ( & win_bg_style , & lv_style_plain ) ;
2020-04-30 00:57:10 +00:00
win_bg_style . body . main_color = lv_theme_get_current ( ) - > bg - > body . main_color ;
2020-04-27 06:13:22 +00:00
win_bg_style . body . grad_color = win_bg_style . body . main_color ;
lv_obj_t * win = lv_win_create ( lv_scr_act ( ) , NULL ) ;
lv_win_set_title ( win , win_title ) ;
lv_win_set_style ( win , LV_WIN_STYLE_BG , & win_bg_style ) ;
lv_obj_set_size ( win , LV_HOR_RES , LV_VER_RES ) ;
2020-04-30 01:25:51 +00:00
close_btn = lv_win_add_btn ( win , NULL , SYMBOL_CLOSE " Close " , rel_action ) ;
2020-04-27 06:13:22 +00:00
return win ;
}
2019-07-06 19:34:03 +00:00
static bool launch_logs_enable = false ;
2019-06-30 01:03:00 +00:00
static void _launch_hos ( u8 autoboot , u8 autoboot_list )
{
b_cfg - > boot_cfg = BOOT_CFG_AUTOBOOT_EN ;
2019-07-06 19:34:03 +00:00
if ( launch_logs_enable )
b_cfg - > boot_cfg | = BOOT_CFG_FROM_LAUNCH ;
2021-01-03 12:46:42 +00:00
b_cfg - > autoboot = autoboot ;
2019-06-30 01:03:00 +00:00
b_cfg - > autoboot_list = autoboot_list ;
void ( * main_ptr ) ( ) = ( void * ) nyx_str - > hekate ;
2020-06-13 15:32:40 +00:00
sd_end ( ) ;
2019-06-30 01:03:00 +00:00
2020-07-17 15:08:27 +00:00
hw_reinit_workaround ( false , 0 ) ;
2019-06-30 01:03:00 +00:00
( * main_ptr ) ( ) ;
}
2020-04-30 01:25:51 +00:00
void reload_nyx ( )
2019-06-30 01:03:00 +00:00
{
b_cfg - > boot_cfg = BOOT_CFG_AUTOBOOT_EN ;
b_cfg - > autoboot = 0 ;
b_cfg - > autoboot_list = 0 ;
b_cfg - > extra_cfg = 0 ;
void ( * main_ptr ) ( ) = ( void * ) nyx_str - > hekate ;
2020-06-13 15:32:40 +00:00
sd_end ( ) ;
2019-06-30 01:03:00 +00:00
2020-07-17 15:08:27 +00:00
hw_reinit_workaround ( false , 0 ) ;
2019-06-30 01:03:00 +00:00
2019-08-27 23:39:43 +00:00
// Some cards (Sandisk U1), do not like a fast power cycle. Wait min 100ms.
sdmmc_storage_init_wait_sd ( ) ;
2019-06-30 01:03:00 +00:00
( * main_ptr ) ( ) ;
}
static lv_res_t reload_action ( lv_obj_t * btns , const char * txt )
{
if ( ! lv_btnm_get_pressed ( btns ) )
2020-04-30 01:25:51 +00:00
reload_nyx ( ) ;
2019-06-30 01:03:00 +00:00
return mbox_action ( btns , txt ) ;
}
2019-07-06 19:40:39 +00:00
static lv_res_t _removed_sd_action ( lv_obj_t * btns , const char * txt )
{
u32 btnidx = lv_btnm_get_pressed ( btns ) ;
switch ( btnidx )
{
case 0 :
2020-12-02 20:27:22 +00:00
if ( h_cfg . rcm_patched )
2020-12-15 17:33:46 +00:00
power_set_state ( POWER_OFF_REBOOT ) ;
2020-12-01 23:45:12 +00:00
else
2020-12-15 17:33:46 +00:00
power_set_state ( REBOOT_RCM ) ;
2019-07-06 19:40:39 +00:00
break ;
case 1 :
2020-12-15 17:37:52 +00:00
power_set_state ( POWER_OFF_RESET ) ;
2019-07-06 19:40:39 +00:00
break ;
2020-08-15 09:21:25 +00:00
case 2 :
sd_end ( ) ;
do_reload = false ;
break ;
2019-07-06 19:40:39 +00:00
}
return mbox_action ( btns , txt ) ;
}
2019-06-30 01:03:00 +00:00
static void _check_sd_card_removed ( void * params )
{
2019-07-06 19:08:37 +00:00
// The following checks if SDMMC_1 is initialized.
2019-06-30 01:03:00 +00:00
// If yes and card was removed, shows a message box,
// that will reload Nyx, when the card is inserted again.
2020-04-29 20:20:18 +00:00
if ( ! do_reload & & sd_get_card_removed ( ) )
2019-06-30 01:03:00 +00:00
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
2020-08-15 09:21:25 +00:00
static const char * mbox_btn_map [ ] = { " \221 Reboot (RCM) " , " \221 Power Off " , " \221 Do not reload " , " " } ;
2021-09-26 09:53:34 +00:00
static const char * mbox_btn_map_rcm_patched [ ] = { " \221 Reboot " , " \221 Power Off " , " \221 Do not reload " , " " } ;
2019-06-30 01:03:00 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
2020-08-15 09:21:25 +00:00
lv_obj_set_width ( mbox , LV_HOR_RES * 6 / 9 ) ;
2019-06-30 01:03:00 +00:00
2022-10-11 05:32:32 +00:00
lv_mbox_set_text ( mbox , " \n #FF8000 SD card was removed!# \n \n #96FF00 Nyx will reload after inserting it.# \n \n Reminder that you can use UMS instead of removing it. \n " ) ;
2021-09-26 09:53:34 +00:00
lv_mbox_add_btns ( mbox , h_cfg . rcm_patched ? mbox_btn_map_rcm_patched : mbox_btn_map , _removed_sd_action ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
do_reload = true ;
}
// If in reload state and card was inserted, reload nyx.
2020-04-29 20:20:18 +00:00
if ( do_reload & & ! sd_get_card_removed ( ) )
2020-04-30 01:25:51 +00:00
reload_nyx ( ) ;
2019-06-30 01:03:00 +00:00
}
2022-01-20 12:00:45 +00:00
lv_task_t * task_emmc_errors ;
static void _nyx_emmc_issues ( void * params )
{
if ( emmc_get_mode ( ) < EMMC_MMC_HS400 )
{
// Remove task.
lv_task_del ( task_emmc_errors ) ;
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
2022-10-11 01:32:53 +00:00
static const char * mbox_btn_map [ ] = { " \251 " , " \222 OK " , " \251 " , " " } ;
2022-01-20 12:00:45 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_mbox_set_text ( mbox ,
" #FF8000 eMMC Issues Check# \n \n "
" #FFDD00 Your eMMC is initialized in slower mode!# \n "
" #FFDD00 This might mean hardware issues!# \n \n "
" You might want to check \n #C7EA46 Console Info# -> #C7EA46 eMMC# " ) ;
lv_mbox_add_btns ( mbox , mbox_btn_map , mbox_action ) ;
lv_obj_set_width ( mbox , LV_HOR_RES / 9 * 5 ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
}
}
2019-06-30 01:03:00 +00:00
static lv_res_t _reboot_action ( lv_obj_t * btns , const char * txt )
{
u32 btnidx = lv_btnm_get_pressed ( btns ) ;
switch ( btnidx )
{
case 0 :
2021-01-11 20:18:36 +00:00
power_set_state ( REBOOT_BYPASS_FUSES ) ;
2019-06-30 01:03:00 +00:00
break ;
case 1 :
2020-12-02 20:27:22 +00:00
if ( h_cfg . rcm_patched )
2021-01-11 20:18:36 +00:00
power_set_state ( POWER_OFF_REBOOT ) ;
else
power_set_state ( REBOOT_RCM ) ;
2019-06-30 01:03:00 +00:00
break ;
}
return mbox_action ( btns , txt ) ;
}
static lv_res_t _poweroff_action ( lv_obj_t * btns , const char * txt )
{
if ( ! lv_btnm_get_pressed ( btns ) )
2020-12-15 17:37:52 +00:00
power_set_state ( POWER_OFF_RESET ) ;
2019-06-30 01:03:00 +00:00
return mbox_action ( btns , txt ) ;
}
static lv_res_t _create_mbox_reload ( lv_obj_t * btn )
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
static const char * mbox_btn_map [ ] = { " \221 Reload " , " \221 Cancel " , " " } ;
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_obj_set_width ( mbox , LV_HOR_RES * 4 / 10 ) ;
2021-09-17 20:34:16 +00:00
lv_mbox_set_text ( mbox , " #FF8000 Do you really want# \n #FF8000 to reload hekate & Nyx?# \n \n "
" This also checks \n #96FF00 bootloader/update.bin# \n for hekate updates " ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_mbox_add_btns ( mbox , mbox_btn_map , reload_action ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
return LV_RES_OK ;
}
static lv_res_t _create_mbox_reboot ( lv_obj_t * btn )
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
static const char * mbox_btn_map [ ] = { " \221 OFW " , " \221 RCM " , " \221 Cancel " , " " } ;
2023-02-11 21:59:30 +00:00
static const char * mbox_btn_map_autorcm [ ] = { " \261 OFW " , " \221 RCM " , " \221 Cancel " , " " } ;
2021-01-11 20:18:36 +00:00
static const char * mbox_btn_map_patched [ ] = { " \221 OFW " , " \221 Normal " , " \221 Cancel " , " " } ;
2019-06-30 01:03:00 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_obj_set_width ( mbox , LV_HOR_RES / 2 ) ;
lv_mbox_set_text ( mbox , " #FF8000 Choose where to reboot:# " ) ;
2023-02-11 21:59:30 +00:00
if ( h_cfg . rcm_patched )
lv_mbox_add_btns ( mbox , mbox_btn_map_patched , _reboot_action ) ;
else
lv_mbox_add_btns ( mbox , ! h_cfg . autorcm_enabled ? mbox_btn_map : mbox_btn_map_autorcm , _reboot_action ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
return LV_RES_OK ;
}
static lv_res_t _create_mbox_poweroff ( lv_obj_t * btn )
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
static const char * mbox_btn_map [ ] = { " \221 Power Off " , " \221 Cancel " , " " } ;
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_obj_set_width ( mbox , LV_HOR_RES * 4 / 10 ) ;
lv_mbox_set_text ( mbox , " #FF8000 Do you really want# \n #FF8000 to power off?# " ) ;
lv_mbox_add_btns ( mbox , mbox_btn_map , _poweroff_action ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
return LV_RES_OK ;
}
void nyx_create_onoff_button ( lv_theme_t * th , lv_obj_t * parent , lv_obj_t * btn , const char * btn_name , lv_action_t action , bool transparent )
{
// Create buttons that are flat and text, plus On/Off switch.
static lv_style_t btn_onoff_rel_hos_style , btn_onoff_pr_hos_style ;
lv_style_copy ( & btn_onoff_rel_hos_style , th - > btn . rel ) ;
btn_onoff_rel_hos_style . body . shadow . width = 0 ;
btn_onoff_rel_hos_style . body . border . width = 0 ;
btn_onoff_rel_hos_style . body . padding . hor = 0 ;
btn_onoff_rel_hos_style . body . radius = 0 ;
btn_onoff_rel_hos_style . body . empty = 1 ;
lv_style_copy ( & btn_onoff_pr_hos_style , & btn_onoff_rel_hos_style ) ;
if ( transparent )
{
btn_onoff_pr_hos_style . body . main_color = LV_COLOR_HEX ( 0xFFFFFF ) ;
btn_onoff_pr_hos_style . body . opa = 35 ;
}
else
2022-10-11 05:32:32 +00:00
btn_onoff_pr_hos_style . body . main_color = LV_COLOR_HEX ( theme_bg_color ? ( theme_bg_color + 0x101010 ) : 0x2D2D2D ) ;
2019-06-30 01:03:00 +00:00
btn_onoff_pr_hos_style . body . grad_color = btn_onoff_pr_hos_style . body . main_color ;
btn_onoff_pr_hos_style . text . color = th - > btn . pr - > text . color ;
btn_onoff_pr_hos_style . body . empty = 0 ;
lv_obj_t * label_btn = lv_label_create ( btn , NULL ) ;
lv_obj_t * label_btnsw = NULL ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_label_set_recolor ( label_btn , true ) ;
label_btnsw = lv_label_create ( btn , NULL ) ;
lv_label_set_recolor ( label_btnsw , true ) ;
lv_btn_set_layout ( btn , LV_LAYOUT_OFF ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_REL , & btn_onoff_rel_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_PR , & btn_onoff_pr_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_TGL_REL , & btn_onoff_rel_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_TGL_PR , & btn_onoff_pr_hos_style ) ;
lv_btn_set_fit ( btn , false , true ) ;
lv_obj_set_width ( btn , lv_obj_get_width ( parent ) ) ;
lv_btn_set_toggle ( btn , true ) ;
lv_label_set_text ( label_btn , btn_name ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( label_btnsw , " #D0D0D0 OFF# " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( label_btn , btn , LV_ALIGN_IN_LEFT_MID , LV_DPI / 4 , 0 ) ;
lv_obj_align ( label_btnsw , btn , LV_ALIGN_IN_RIGHT_MID , - LV_DPI / 4 , - LV_DPI / 10 ) ;
if ( action )
lv_btn_set_action ( btn , LV_BTN_ACTION_CLICK , action ) ;
}
static void _create_text_button ( lv_theme_t * th , lv_obj_t * parent , lv_obj_t * btn , const char * btn_name , lv_action_t action )
{
// Create buttons that are flat and only have a text label.
static lv_style_t btn_onoff_rel_hos_style , btn_onoff_pr_hos_style ;
lv_style_copy ( & btn_onoff_rel_hos_style , th - > btn . rel ) ;
btn_onoff_rel_hos_style . body . shadow . width = 0 ;
btn_onoff_rel_hos_style . body . border . width = 0 ;
btn_onoff_rel_hos_style . body . radius = 0 ;
btn_onoff_rel_hos_style . body . padding . hor = LV_DPI / 4 ;
btn_onoff_rel_hos_style . body . empty = 1 ;
lv_style_copy ( & btn_onoff_pr_hos_style , & btn_onoff_rel_hos_style ) ;
if ( hekate_bg )
{
btn_onoff_pr_hos_style . body . main_color = LV_COLOR_HEX ( 0xFFFFFF ) ;
btn_onoff_pr_hos_style . body . opa = 35 ;
}
else
2022-10-11 05:32:32 +00:00
btn_onoff_pr_hos_style . body . main_color = LV_COLOR_HEX ( theme_bg_color ? ( theme_bg_color + 0x101010 ) : 0x2D2D2D ) ;
2019-06-30 01:03:00 +00:00
btn_onoff_pr_hos_style . body . grad_color = btn_onoff_pr_hos_style . body . main_color ;
btn_onoff_pr_hos_style . text . color = th - > btn . pr - > text . color ;
btn_onoff_pr_hos_style . body . empty = 0 ;
lv_obj_t * label_btn = lv_label_create ( btn , NULL ) ;
lv_label_set_recolor ( label_btn , true ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_REL , & btn_onoff_rel_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_PR , & btn_onoff_pr_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_TGL_REL , & btn_onoff_rel_hos_style ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_TGL_PR , & btn_onoff_pr_hos_style ) ;
lv_btn_set_fit ( btn , true , true ) ;
lv_label_set_text ( label_btn , btn_name ) ;
if ( action )
lv_btn_set_action ( btn , LV_BTN_ACTION_CLICK , action ) ;
}
static void _create_tab_about ( lv_theme_t * th , lv_obj_t * parent )
{
lv_obj_t * lbl_credits = lv_label_create ( parent , NULL ) ;
lv_obj_align ( lbl_credits , NULL , LV_ALIGN_IN_TOP_LEFT , LV_DPI / 2 , LV_DPI / 2 ) ;
2020-04-29 22:33:14 +00:00
lv_label_set_style ( lbl_credits , & monospace_text ) ;
2019-06-30 01:03:00 +00:00
lv_label_set_recolor ( lbl_credits , true ) ;
lv_label_set_static_text ( lbl_credits ,
2020-04-30 11:10:08 +00:00
" #C7EA46 hekate# (c) 2018, #C7EA46 naehrwert#, #C7EA46 st4rk# \n "
2022-01-28 23:43:35 +00:00
" (c) 2018-2022, #C7EA46 CTCaer# \n "
2020-04-30 11:10:08 +00:00
" \n "
2022-01-28 23:43:35 +00:00
" #C7EA46 Nyx GUI# (c) 2019-2022, #C7EA46 CTCaer# \n "
2019-06-30 01:03:00 +00:00
" \n "
" Thanks to: #00CCFF derrek, nedwill, plutoo, # \n "
" #00CCFF shuffle2, smea, thexyz, yellows8 # \n "
" \n "
" Greetings to: fincs, hexkyz, SciresM, \n "
" Shiny Quagsire, WinterMute \n "
" \n "
" Open source and free packages used: \n \n "
" - FatFs R0.13c, \n "
" Copyright (c) 2018, ChaN \n \n "
" - bcl-1.2.0, \n "
" Copyright (c) 2003-2006, Marcus Geelnard \n \n "
2019-12-04 15:18:16 +00:00
" - Atmosphere (Exosphere types/panic, proc id patches), \n "
" Copyright (c) 2018-2019, Atmosphere-NX \n \n "
2019-06-30 01:03:00 +00:00
" - elfload, \n "
" Copyright (c) 2014, Owen Shepherd \n "
" Copyright (c) 2018, M4xw \n \n "
" - Littlev Graphics Library, \n "
" Copyright (c) 2016 Gabor Kiss-Vamosi "
) ;
lv_obj_t * lbl_octopus = lv_label_create ( parent , NULL ) ;
2019-12-11 22:20:14 +00:00
lv_obj_align ( lbl_octopus , lbl_credits , LV_ALIGN_OUT_RIGHT_TOP , - LV_DPI / 10 , 0 ) ;
2020-04-29 22:33:14 +00:00
lv_label_set_style ( lbl_octopus , & monospace_text ) ;
2019-06-30 01:03:00 +00:00
lv_label_set_recolor ( lbl_octopus , true ) ;
lv_label_set_static_text ( lbl_octopus ,
" \n #00CCFF ___# \n "
" #00CCFF .-' `'.# \n "
" #00CCFF / \\ # \n "
" #00CCFF | ;# \n "
" #00CCFF | | ___.--,# \n "
" #00CCFF _.._ |0) = (0) | _.---'`__.-( (_.# \n "
" #00CCFF __.--'`_.. '.__. \\ '--. \\ _.-' ,.--'` ` \" \" `# \n "
" #00CCFF ( ,.--'` ',__ /./; ;, '.__.'` __# \n "
" #00CCFF _`) ) .---.__.' / | | \\ \\ __..-- \" \" \" \" \" --.,_# \n "
" #00CCFF `---' .'.''-._.-'`_./ / \\ '. \\ _.--''````'''--._`-.__.'# \n "
" #00CCFF | | .' _.-' | | \\ \\ '. `----`# \n "
" #00CCFF \\ \\ / .' \\ \\ '. '-._)# \n "
" #00CCFF \\ / / \\ \\ `=.__`'-.# \n "
" #00CCFF / / \\ `) ) / / ` \" \" .` \\ # \n "
" #00CCFF , _.-'.' \\ \\ / / ( ( / /# \n "
" #00CCFF `--'` ) ) .-'.' '.'. | (# \n "
" #00CCFF (/` ( (` ) ) '-; ##00FFCC [switchbrew]# \n "
" #00CCFF ` '-; (-'# "
) ;
lv_obj_t * hekate_img = lv_img_create ( parent , NULL ) ;
lv_img_set_src ( hekate_img , & hekate_logo ) ;
lv_obj_align ( hekate_img , lbl_octopus , LV_ALIGN_OUT_BOTTOM_LEFT , 0 , LV_DPI * 2 / 3 ) ;
lv_obj_t * ctcaer_img = lv_img_create ( parent , NULL ) ;
lv_img_set_src ( ctcaer_img , & ctcaer_logo ) ;
lv_obj_align ( ctcaer_img , lbl_octopus , LV_ALIGN_OUT_BOTTOM_RIGHT , 0 , LV_DPI * 2 / 3 ) ;
char version [ 32 ] ;
2019-12-11 09:22:11 +00:00
s_printf ( version , " Nyx v%d.%d.%d " , NYX_VER_MJ , NYX_VER_MN , NYX_VER_HF ) ;
2019-06-30 01:03:00 +00:00
lv_obj_t * lbl_ver = lv_label_create ( parent , NULL ) ;
lv_obj_align ( lbl_ver , ctcaer_img , LV_ALIGN_OUT_BOTTOM_RIGHT , - LV_DPI / 20 , LV_DPI / 4 ) ;
2020-04-29 22:33:14 +00:00
lv_label_set_style ( lbl_ver , & monospace_text ) ;
2019-06-30 01:03:00 +00:00
lv_label_set_text ( lbl_ver , version ) ;
}
static void _update_status_bar ( void * params )
{
2021-10-26 07:55:11 +00:00
static char * label = NULL ;
2019-06-30 01:03:00 +00:00
2020-04-30 00:25:22 +00:00
u16 soc_temp = 0 ;
u32 batt_percent = 0 ;
int charge_status = 0 ;
int batt_volt = 0 ;
int batt_curr = 0 ;
2019-06-30 01:03:00 +00:00
rtc_time_t time ;
// Get sensor data.
max77620_rtc_get_time ( & time ) ;
2020-04-30 11:51:48 +00:00
if ( n_cfg . timeoff )
{
2020-05-05 16:20:04 +00:00
u32 epoch = max77620_rtc_date_to_epoch ( & time ) + ( s32 ) n_cfg . timeoff ;
2020-04-30 11:51:48 +00:00
max77620_rtc_epoch_to_date ( epoch , & time ) ;
}
2019-06-30 01:03:00 +00:00
soc_temp = tmp451_get_soc_temp ( false ) ;
bq24193_get_property ( BQ24193_ChargeStatus , & charge_status ) ;
max17050_get_property ( MAX17050_RepSOC , ( int * ) & batt_percent ) ;
max17050_get_property ( MAX17050_VCELL , & batt_volt ) ;
max17050_get_property ( MAX17050_Current , & batt_curr ) ;
2020-03-03 02:37:59 +00:00
// Enable fan if more than 46 oC.
2019-12-07 23:26:26 +00:00
u32 soc_temp_dec = ( soc_temp > > 8 ) ;
2020-03-03 02:37:59 +00:00
if ( soc_temp_dec > 51 )
set_fan_duty ( 102 ) ;
else if ( soc_temp_dec > 46 )
set_fan_duty ( 51 ) ;
else if ( soc_temp_dec < 40 )
2019-12-07 23:26:26 +00:00
set_fan_duty ( 0 ) ;
2021-10-26 07:55:11 +00:00
if ( ! label )
label = ( char * ) malloc ( 512 ) ;
2019-06-30 01:03:00 +00:00
// Set time and SoC temperature.
s_printf ( label , " %02d:%02d " SYMBOL_DOT " " SYMBOL_TEMPERATURE " %02d.%d " ,
2019-12-07 23:26:26 +00:00
time . hour , time . min , soc_temp_dec , ( soc_temp & 0xFF ) / 10 ) ;
2019-06-30 01:03:00 +00:00
2020-03-09 06:37:41 +00:00
lv_label_set_text ( status_bar . time_temp , label ) ;
2019-06-30 01:03:00 +00:00
lv_obj_realign ( status_bar . temp_symbol ) ;
lv_obj_realign ( status_bar . temp_degrees ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
// Set battery percent and charging symbol.
s_printf ( label , " " SYMBOL_DOT " %d.%d%% " , ( batt_percent > > 8 ) & 0xFF , ( batt_percent & 0xFF ) / 26 ) ;
u8 batt_level = ( batt_percent > > 8 ) & 0xFF ;
if ( batt_level > 80 )
2020-07-14 19:26:40 +00:00
strcat ( label , SYMBOL_BATTERY_FULL ) ;
2019-06-30 01:03:00 +00:00
else if ( batt_level > 60 )
2020-07-14 19:26:40 +00:00
strcat ( label , SYMBOL_BATTERY_3 ) ;
2019-06-30 01:03:00 +00:00
else if ( batt_level > 40 )
2020-07-14 19:26:40 +00:00
strcat ( label , SYMBOL_BATTERY_2 ) ;
2019-06-30 01:03:00 +00:00
else if ( batt_level > 15 )
2020-07-14 19:26:40 +00:00
strcat ( label , SYMBOL_BATTERY_1 ) ;
2019-06-30 01:03:00 +00:00
else
2020-07-14 19:26:40 +00:00
strcat ( label , " #FF3C28 " SYMBOL_BATTERY_EMPTY " # " ) ;
2019-06-30 01:03:00 +00:00
2021-06-08 02:51:52 +00:00
// Set charging symbol.
2019-06-30 01:03:00 +00:00
if ( charge_status )
2020-07-14 19:26:40 +00:00
strcat ( label , " #FFDD00 " SYMBOL_CHARGE " # " ) ;
2019-06-30 01:03:00 +00:00
2020-03-09 06:37:41 +00:00
lv_label_set_text ( status_bar . battery , label ) ;
2019-06-30 01:03:00 +00:00
lv_obj_realign ( status_bar . battery ) ;
// Set battery current draw and voltage.
2022-05-08 02:32:21 +00:00
s_printf ( label , " #%s%d " , batt_curr > = 0 ? " 96FF00 + " : " FF3C28 " , batt_curr / 1000 ) ;
2019-10-18 15:02:06 +00:00
2019-12-07 23:32:26 +00:00
bool voltage_empty = batt_volt < 3200 ;
s_printf ( label + strlen ( label ) , " mA# (%s%d mV%s) " ,
2020-03-03 02:11:13 +00:00
voltage_empty ? " #FF8000 " : " " , batt_volt , voltage_empty ? " " SYMBOL_WARNING " # " : " " ) ;
2019-06-30 01:03:00 +00:00
2020-03-09 06:37:41 +00:00
lv_label_set_text ( status_bar . battery_more , label ) ;
2019-06-30 01:03:00 +00:00
lv_obj_realign ( status_bar . battery_more ) ;
}
static lv_res_t _create_mbox_payloads ( lv_obj_t * btn )
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
2022-10-11 01:32:53 +00:00
static const char * mbox_btn_map [ ] = { " \251 " , " \222 Cancel " , " \251 " , " " } ;
2019-06-30 01:03:00 +00:00
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_obj_set_width ( mbox , LV_HOR_RES * 5 / 9 ) ;
lv_mbox_set_text ( mbox , " Select a payload to launch: " ) ;
// Create a list with all found payloads.
//! TODO: SHould that be tabs with buttons? + Icon support?
lv_obj_t * list = lv_list_create ( mbox , NULL ) ;
payload_list = list ;
lv_obj_set_size ( list , LV_HOR_RES * 3 / 7 , LV_VER_RES * 3 / 7 ) ;
lv_list_set_single_mode ( list , true ) ;
if ( ! sd_mount ( ) )
{
lv_mbox_set_text ( mbox , " #FFDD00 Failed to init SD!# " ) ;
goto out_end ;
}
2022-05-19 12:14:05 +00:00
char * filelist = dirlist ( " bootloader/payloads " , NULL , false , false ) ;
2020-06-13 15:32:40 +00:00
sd_unmount ( ) ;
2019-06-30 01:03:00 +00:00
u32 i = 0 ;
if ( filelist )
{
while ( true )
{
if ( ! filelist [ i * 256 ] )
break ;
lv_list_add ( list , NULL , & filelist [ i * 256 ] , launch_payload ) ;
i + + ;
}
2022-05-19 12:14:05 +00:00
free ( filelist ) ;
2019-06-30 01:03:00 +00:00
}
out_end :
lv_mbox_add_btns ( mbox , mbox_btn_map , mbox_action ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
return LV_RES_OK ;
}
2021-08-28 15:07:32 +00:00
typedef struct _launch_menu_entries_t
{
2022-05-13 00:49:32 +00:00
lv_obj_t * btn [ 20 ] ;
lv_obj_t * label [ 20 ] ;
2021-08-28 15:07:32 +00:00
} launch_menu_entries_t ;
2019-06-30 01:03:00 +00:00
2021-08-28 15:07:32 +00:00
static launch_menu_entries_t launch_ctxt ;
2020-04-30 11:49:28 +00:00
static lv_obj_t * launch_bg = NULL ;
static bool launch_bg_done = false ;
2019-06-30 01:03:00 +00:00
static lv_res_t _launch_more_cfg_action ( lv_obj_t * btn )
{
lv_btn_ext_t * ext = lv_obj_get_ext_attr ( btn ) ;
_launch_hos ( ext - > idx , 1 ) ;
return LV_RES_OK ;
}
static lv_res_t _win_launch_close_action ( lv_obj_t * btn )
{
// Cleanup icons.
2020-04-30 00:51:13 +00:00
for ( u32 i = 0 ; i < 8 ; i + + )
2019-06-30 01:03:00 +00:00
{
2021-08-28 15:07:32 +00:00
lv_obj_t * btn = launch_ctxt . btn [ i ] ;
2020-04-30 00:51:13 +00:00
lv_btn_ext_t * ext = lv_obj_get_ext_attr ( btn ) ;
2019-06-30 01:03:00 +00:00
if ( ext - > idx )
{
2020-04-30 00:51:13 +00:00
// This gets latest object, which is the button overlay. So iterate 2 times.
lv_obj_t * img = lv_obj_get_child ( btn , NULL ) ;
img = lv_obj_get_child ( btn , img ) ;
lv_img_dsc_t * src = ( lv_img_dsc_t * ) lv_img_get_src ( img ) ;
2019-06-30 01:03:00 +00:00
// Avoid freeing base icons.
2020-05-05 16:01:08 +00:00
if ( ( src ! = icon_switch ) & & ( src ! = icon_payload ) )
2020-04-30 00:51:13 +00:00
free ( src ) ;
2019-06-30 01:03:00 +00:00
}
}
lv_obj_t * win = lv_win_get_from_btn ( btn ) ;
lv_obj_del ( win ) ;
2020-04-30 11:49:28 +00:00
if ( n_cfg . home_screen & & ! launch_bg_done & & hekate_bg )
{
lv_obj_set_opa_scale_enable ( launch_bg , true ) ;
lv_obj_set_opa_scale ( launch_bg , LV_OPA_TRANSP ) ;
//if (launch_bg)
// lv_obj_del(launch_bg); //! TODO: Find why it hangs.
launch_bg_done = true ;
}
2020-08-15 09:22:01 +00:00
close_btn = NULL ;
2019-06-30 01:03:00 +00:00
return LV_RES_INV ;
}
2020-04-30 11:49:28 +00:00
static lv_obj_t * create_window_launch ( const char * win_title )
2019-06-30 01:03:00 +00:00
{
2020-04-30 11:49:28 +00:00
static lv_style_t win_bg_style , win_header ;
2019-06-30 01:03:00 +00:00
lv_style_copy ( & win_bg_style , & lv_style_plain ) ;
2020-04-30 00:57:10 +00:00
win_bg_style . body . main_color = lv_theme_get_current ( ) - > bg - > body . main_color ;
2019-06-30 01:03:00 +00:00
win_bg_style . body . grad_color = win_bg_style . body . main_color ;
2020-04-30 11:49:28 +00:00
if ( n_cfg . home_screen & & ! launch_bg_done & & hekate_bg )
{
lv_obj_t * img = lv_img_create ( lv_scr_act ( ) , NULL ) ;
lv_img_set_src ( img , hekate_bg ) ;
launch_bg = img ;
}
2019-06-30 01:03:00 +00:00
lv_obj_t * win = lv_win_create ( lv_scr_act ( ) , NULL ) ;
lv_win_set_title ( win , win_title ) ;
2020-04-30 11:49:28 +00:00
2019-06-30 01:03:00 +00:00
lv_obj_set_size ( win , LV_HOR_RES , LV_VER_RES ) ;
2020-04-30 11:49:28 +00:00
if ( n_cfg . home_screen & & ! launch_bg_done & & hekate_bg )
{
lv_style_copy ( & win_header , lv_theme_get_current ( ) - > win . header ) ;
win_header . body . opa = LV_OPA_TRANSP ;
win_bg_style . body . opa = LV_OPA_TRANSP ;
lv_win_set_style ( win , LV_WIN_STYLE_HEADER , & win_header ) ;
}
lv_win_set_style ( win , LV_WIN_STYLE_BG , & win_bg_style ) ;
2020-04-30 01:25:51 +00:00
close_btn = lv_win_add_btn ( win , NULL , SYMBOL_CLOSE " Close " , _win_launch_close_action ) ;
2019-06-30 01:03:00 +00:00
return win ;
}
static lv_res_t _launch_action ( lv_obj_t * btn )
{
lv_btn_ext_t * ext = lv_obj_get_ext_attr ( btn ) ;
_launch_hos ( ext - > idx , 0 ) ;
return LV_RES_OK ;
}
2019-07-06 19:34:03 +00:00
static lv_res_t logs_onoff_toggle ( lv_obj_t * btn )
{
launch_logs_enable = ! launch_logs_enable ;
lv_obj_t * label_btn = lv_obj_get_child ( btn , NULL ) ;
char label_text [ 64 ] ;
strcpy ( label_text , lv_label_get_text ( label_btn ) ) ;
label_text [ strlen ( label_text ) - 12 ] = 0 ;
if ( ! launch_logs_enable )
{
strcat ( label_text , " #D0D0D0 OFF# " ) ;
2020-03-09 06:37:41 +00:00
lv_label_set_text ( label_btn , label_text ) ;
2019-07-06 19:34:03 +00:00
}
else
{
2020-04-30 01:04:24 +00:00
s_printf ( label_text , " %s%s%s " , label_text , text_color , " ON # " ) ;
2020-03-09 06:37:41 +00:00
lv_label_set_text ( label_btn , label_text ) ;
2019-07-06 19:34:03 +00:00
}
return LV_RES_OK ;
}
2019-07-06 19:08:37 +00:00
typedef struct _launch_button_pos_t
{
u16 btn_x ;
u16 btn_y ;
u16 lbl_x ;
u16 lbl_y ;
} launch_button_pos_t ;
2022-05-13 00:49:32 +00:00
static const launch_button_pos_t launch_button_pos8 [ 8 ] = {
// First row.
2019-07-06 19:08:37 +00:00
{ 19 , 36 , 0 , 245 } ,
{ 340 , 36 , 321 , 245 } ,
{ 661 , 36 , 642 , 245 } ,
{ 982 , 36 , 963 , 245 } ,
2022-05-13 00:49:32 +00:00
// Second row.
2019-07-06 19:08:37 +00:00
{ 19 , 313 , 0 , 522 } ,
{ 340 , 313 , 321 , 522 } ,
{ 661 , 313 , 642 , 522 } ,
{ 982 , 313 , 963 , 522 }
} ;
2022-05-13 00:49:32 +00:00
static const launch_button_pos_t launch_button_pos10 [ 10 ] = {
// First row.
{ 19 , 36 , 0 , 245 } ,
{ 260 , 36 , 241 , 245 } ,
{ 501 , 36 , 482 , 245 } ,
{ 742 , 36 , 723 , 245 } ,
{ 983 , 36 , 964 , 245 } ,
// Second row.
{ 19 , 313 , 0 , 522 } ,
{ 260 , 313 , 241 , 522 } ,
{ 501 , 313 , 482 , 522 } ,
{ 742 , 313 , 723 , 522 } ,
{ 983 , 313 , 964 , 522 }
} ;
2019-06-30 01:03:00 +00:00
static lv_res_t _create_window_home_launch ( lv_obj_t * btn )
{
2022-10-11 03:24:52 +00:00
const u32 max_entries = n_cfg . entries_5_col ? 10 : 8 ;
const launch_button_pos_t * launch_button_pos = n_cfg . entries_5_col ? launch_button_pos10 : launch_button_pos8 ;
2022-05-13 00:49:32 +00:00
2019-06-30 01:03:00 +00:00
char * icon_path ;
2022-05-13 00:49:32 +00:00
static lv_style_t btn_home_noborder_rel ;
lv_style_copy ( & btn_home_noborder_rel , lv_theme_get_current ( ) - > btn . rel ) ;
btn_home_noborder_rel . body . opa = LV_OPA_0 ;
btn_home_noborder_rel . body . border . width = 4 ;
btn_home_noborder_rel . body . border . opa = LV_OPA_0 ;
2019-06-30 01:03:00 +00:00
static lv_style_t btn_home_transp_rel ;
lv_style_copy ( & btn_home_transp_rel , lv_theme_get_current ( ) - > btn . rel ) ;
btn_home_transp_rel . body . opa = LV_OPA_0 ;
2019-07-06 19:08:37 +00:00
btn_home_transp_rel . body . border . width = 4 ;
2019-06-30 01:03:00 +00:00
static lv_style_t btn_home_transp_pr ;
lv_style_copy ( & btn_home_transp_pr , lv_theme_get_current ( ) - > btn . pr ) ;
btn_home_transp_pr . body . main_color = LV_COLOR_HEX ( 0xFFFFFF ) ;
btn_home_transp_pr . body . grad_color = btn_home_transp_pr . body . main_color ;
btn_home_transp_pr . body . opa = LV_OPA_30 ;
2019-09-12 20:20:38 +00:00
static lv_style_t btn_label_home_transp ;
lv_style_copy ( & btn_label_home_transp , lv_theme_get_current ( ) - > cont ) ;
btn_label_home_transp . body . opa = LV_OPA_TRANSP ;
2019-06-30 01:03:00 +00:00
lv_obj_t * win ;
bool more_cfg = false ;
2020-04-30 11:49:28 +00:00
bool combined_cfg = false ;
if ( btn )
{
if ( strcmp ( lv_label_get_text ( lv_obj_get_child ( btn , NULL ) ) + 8 , " Launch# " ) )
more_cfg = true ;
}
else
{
switch ( n_cfg . home_screen )
{
case 1 : // All configs.
combined_cfg = true ;
break ;
case 3 : // More configs
more_cfg = true ;
break ;
}
}
2019-06-30 01:03:00 +00:00
2020-04-30 11:49:28 +00:00
if ( ! btn )
win = create_window_launch ( SYMBOL_GPS " hekate - Launch " ) ;
else if ( ! more_cfg )
2019-06-30 01:03:00 +00:00
win = create_window_launch ( SYMBOL_GPS " Launch " ) ;
else
win = create_window_launch ( SYMBOL_GPS " More Configurations " ) ;
2019-07-06 19:34:03 +00:00
lv_win_add_btn ( win , NULL , SYMBOL_LIST " Logs #D0D0D0 OFF# " , logs_onoff_toggle ) ;
launch_logs_enable = false ;
2019-06-30 01:03:00 +00:00
lv_cont_set_fit ( lv_page_get_scrl ( lv_win_get_content ( win ) ) , false , false ) ;
lv_page_set_scrl_height ( lv_win_get_content ( win ) , 572 ) ;
2022-05-13 00:49:32 +00:00
lv_btn_ext_t * ext ;
2019-06-30 01:03:00 +00:00
lv_obj_t * btn_boot_entry ;
lv_obj_t * boot_entry_lbl_cont ;
lv_obj_t * boot_entry_label ;
bool no_boot_entries = false ;
// Create CFW buttons.
// Buttons are 200 x 200 with 4 pixel borders.
// Icons must be <= 192 x 192.
2019-07-06 19:08:37 +00:00
// Create first Button.
btn_boot_entry = lv_btn_create ( win , NULL ) ;
2021-08-28 15:07:32 +00:00
launch_ctxt . btn [ 0 ] = btn_boot_entry ;
2019-06-30 01:03:00 +00:00
lv_obj_set_size ( btn_boot_entry , 200 , 200 ) ;
2019-07-06 19:08:37 +00:00
lv_obj_set_pos ( btn_boot_entry , launch_button_pos [ 0 ] . btn_x , launch_button_pos [ 0 ] . btn_y ) ;
2019-06-30 01:03:00 +00:00
lv_obj_set_opa_scale ( btn_boot_entry , LV_OPA_0 ) ;
lv_obj_set_opa_scale_enable ( btn_boot_entry , true ) ;
lv_btn_set_layout ( btn_boot_entry , LV_LAYOUT_OFF ) ;
boot_entry_lbl_cont = lv_cont_create ( win , NULL ) ;
boot_entry_label = lv_label_create ( boot_entry_lbl_cont , NULL ) ;
lv_obj_set_style ( boot_entry_label , & hint_small_style_white ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( boot_entry_label , " " ) ;
2021-08-28 15:07:32 +00:00
launch_ctxt . label [ 0 ] = boot_entry_label ;
2019-06-30 01:03:00 +00:00
lv_cont_set_fit ( boot_entry_lbl_cont , false , false ) ;
lv_cont_set_layout ( boot_entry_lbl_cont , LV_LAYOUT_CENTER ) ;
lv_obj_set_size ( boot_entry_lbl_cont , 238 , 20 ) ;
2019-07-06 19:08:37 +00:00
lv_obj_set_pos ( boot_entry_lbl_cont , launch_button_pos [ 0 ] . lbl_x , launch_button_pos [ 0 ] . lbl_y ) ;
2019-09-12 20:20:38 +00:00
lv_obj_set_style ( boot_entry_lbl_cont , & btn_label_home_transp ) ;
2019-07-06 19:08:37 +00:00
// Create the rest of the buttons.
2022-10-11 03:24:52 +00:00
for ( u32 btn_idx = 1 ; btn_idx < ( n_cfg . entries_5_col ? 10 : 8 ) ; btn_idx + + )
2019-07-06 19:08:37 +00:00
{
btn_boot_entry = lv_btn_create ( win , btn_boot_entry ) ;
2021-08-28 15:07:32 +00:00
launch_ctxt . btn [ btn_idx ] = btn_boot_entry ;
lv_obj_set_pos ( btn_boot_entry , launch_button_pos [ btn_idx ] . btn_x , launch_button_pos [ btn_idx ] . btn_y ) ;
2019-07-06 19:08:37 +00:00
boot_entry_lbl_cont = lv_cont_create ( win , boot_entry_lbl_cont ) ;
boot_entry_label = lv_label_create ( boot_entry_lbl_cont , boot_entry_label ) ;
2021-08-28 15:07:32 +00:00
lv_obj_set_pos ( boot_entry_lbl_cont , launch_button_pos [ btn_idx ] . lbl_x , launch_button_pos [ btn_idx ] . lbl_y ) ;
launch_ctxt . label [ btn_idx ] = boot_entry_label ;
2019-07-06 19:08:37 +00:00
}
2019-06-30 01:03:00 +00:00
2022-10-11 03:24:52 +00:00
// Create colorized icon style based on its parent style.
2020-05-02 22:57:15 +00:00
static lv_style_t img_style ;
lv_style_copy ( & img_style , & lv_style_plain ) ;
2022-05-13 00:49:32 +00:00
img_style . image . color = lv_color_hsv_to_rgb ( n_cfg . theme_color , 100 , 100 ) ;
2020-05-02 22:57:15 +00:00
img_style . image . intense = LV_OPA_COVER ;
2019-06-30 01:03:00 +00:00
// Parse ini boot entries and set buttons/icons.
2020-04-30 00:25:22 +00:00
char * tmp_path = malloc ( 1024 ) ;
2020-04-30 11:49:28 +00:00
u32 curr_btn_idx = 0 ; // Active buttons.
2019-06-30 01:03:00 +00:00
LIST_INIT ( ini_sections ) ;
2020-04-30 11:49:28 +00:00
2022-01-28 23:23:40 +00:00
if ( ! sd_mount ( ) )
goto failed_sd_mount ;
// Check if we use custom system icons.
bool icon_sw_custom = ! f_stat ( " bootloader/res/icon_switch_custom.bmp " , NULL ) ;
bool icon_pl_custom = ! f_stat ( " bootloader/res/icon_payload_custom.bmp " , NULL ) ;
// Choose what to parse.
bool ini_parse_success = false ;
if ( ! more_cfg )
ini_parse_success = ini_parse ( & ini_sections , " bootloader/hekate_ipl.ini " , false ) ;
else
ini_parse_success = ini_parse ( & ini_sections , " bootloader/ini " , true ) ;
if ( combined_cfg & & ! ini_parse_success )
2019-06-30 01:03:00 +00:00
{
2022-01-28 23:23:40 +00:00
ini_parsing :
2022-05-19 12:14:05 +00:00
list_init ( & ini_sections ) ;
2022-01-28 23:23:40 +00:00
ini_parse_success = ini_parse ( & ini_sections , " bootloader/ini " , true ) ;
more_cfg = true ;
}
2020-05-02 22:57:15 +00:00
2022-01-28 23:23:40 +00:00
if ( ! ini_parse_success )
goto ini_parse_failed ;
// Iterate to all boot entries and load icons.
u32 entry_idx = 1 ;
LIST_FOREACH_ENTRY ( ini_sec_t , ini_sec , & ini_sections , link )
{
if ( ! strcmp ( ini_sec - > name , " config " ) | | ( ini_sec - > type ! = INI_CHOICE ) )
continue ;
2019-06-30 01:03:00 +00:00
2022-01-28 23:23:40 +00:00
icon_path = NULL ;
bool payload = false ;
bool img_colorize = false ;
2022-05-13 00:49:32 +00:00
bool img_noborder = false ;
2022-01-28 23:23:40 +00:00
lv_img_dsc_t * bmp = NULL ;
lv_obj_t * img = NULL ;
// Check for icons.
LIST_FOREACH_ENTRY ( ini_kv_t , kv , & ini_sec - > kvs , link )
2020-04-30 11:49:28 +00:00
{
2022-01-28 23:23:40 +00:00
if ( ! strcmp ( " icon " , kv - > key ) )
icon_path = kv - > val ;
else if ( ! strcmp ( " payload " , kv - > key ) )
payload = true ;
2020-04-30 11:49:28 +00:00
}
2022-01-28 23:23:40 +00:00
// If icon not found, check res folder for section_name.bmp.
// If not, use defaults.
if ( ! icon_path )
2019-06-30 01:03:00 +00:00
{
2022-01-28 23:23:40 +00:00
s_printf ( tmp_path , " bootloader/res/%s.bmp " , ini_sec - > name ) ;
bmp = bmp_to_lvimg_obj ( tmp_path ) ;
if ( ! bmp )
2019-06-30 01:03:00 +00:00
{
2022-12-19 03:53:31 +00:00
s_printf ( tmp_path , " bootloader/res/%s_hue_nobox.bmp " , ini_sec - > name ) ;
2022-05-13 00:49:32 +00:00
bmp = bmp_to_lvimg_obj ( tmp_path ) ;
if ( bmp )
2022-12-19 03:53:31 +00:00
{
2022-05-13 00:49:32 +00:00
img_noborder = true ;
2022-12-19 03:53:31 +00:00
img_colorize = true ;
}
if ( ! bmp )
{
s_printf ( tmp_path , " bootloader/res/%s_hue.bmp " , ini_sec - > name ) ;
bmp = bmp_to_lvimg_obj ( tmp_path ) ;
if ( bmp )
img_colorize = true ;
}
if ( ! bmp )
{
s_printf ( tmp_path , " bootloader/res/%s_nobox.bmp " , ini_sec - > name ) ;
bmp = bmp_to_lvimg_obj ( tmp_path ) ;
if ( bmp )
img_noborder = true ;
}
2022-01-28 23:23:40 +00:00
}
if ( ! bmp & & payload )
{
bmp = icon_payload ;
if ( ! icon_pl_custom )
img_colorize = true ;
2019-06-30 01:03:00 +00:00
}
}
2022-01-28 23:23:40 +00:00
else
{
bmp = bmp_to_lvimg_obj ( icon_path ) ;
2022-12-19 03:53:31 +00:00
// Check if both colorization and border are enabled.
if ( bmp & & strlen ( icon_path ) > 14 & & ! memcmp ( icon_path + strlen ( icon_path ) - 14 , " _hue_nobox " , 10 ) )
{
2022-01-28 23:23:40 +00:00
img_colorize = true ;
2022-05-13 00:49:32 +00:00
img_noborder = true ;
2022-12-19 03:53:31 +00:00
}
else
{
// Check if colorization is enabled.
if ( bmp & & strlen ( icon_path ) > 8 & & ! memcmp ( icon_path + strlen ( icon_path ) - 8 , " _hue " , 4 ) )
img_colorize = true ;
// Check if no border is enabled.
if ( bmp & & strlen ( icon_path ) > 10 & & ! memcmp ( icon_path + strlen ( icon_path ) - 10 , " _nobox " , 6 ) )
img_noborder = true ;
}
2022-01-28 23:23:40 +00:00
}
// Enable button.
lv_obj_set_opa_scale ( launch_ctxt . btn [ curr_btn_idx ] , LV_OPA_COVER ) ;
// Default to switch logo if no icon found at all.
if ( ! bmp )
{
bmp = icon_switch ;
if ( ! icon_sw_custom )
img_colorize = true ;
}
//Set icon.
if ( bmp )
{
img = lv_img_create ( launch_ctxt . btn [ curr_btn_idx ] , NULL ) ;
if ( img_colorize )
lv_img_set_style ( img , & img_style ) ;
lv_img_set_src ( img , bmp ) ;
}
// Add button mask/radius and align icon.
lv_obj_t * btn = lv_btn_create ( launch_ctxt . btn [ curr_btn_idx ] , NULL ) ;
2022-05-13 00:49:32 +00:00
u32 btn_width = 200 ;
u32 btn_height = 200 ;
if ( img_noborder )
{
btn_width = bmp - > header . w + 4 ;
btn_height = bmp - > header . h + 4 ;
if ( btn_width > 200 )
btn_width = 200 ;
if ( btn_height > 200 )
btn_height = 200 ;
lv_btn_set_style ( launch_ctxt . btn [ curr_btn_idx ] , LV_BTN_STYLE_REL , & btn_home_noborder_rel ) ;
lv_btn_set_style ( launch_ctxt . btn [ curr_btn_idx ] , LV_BTN_STYLE_PR , & btn_home_noborder_rel ) ;
}
lv_obj_set_size ( btn , btn_width , btn_height ) ;
lv_btn_set_style ( btn , LV_BTN_STYLE_REL , img_noborder ? & btn_home_noborder_rel : & btn_home_transp_rel ) ;
2022-01-28 23:23:40 +00:00
lv_btn_set_style ( btn , LV_BTN_STYLE_PR , & btn_home_transp_pr ) ;
if ( img )
lv_obj_align ( img , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
2022-05-13 00:49:32 +00:00
if ( img_noborder )
lv_obj_align ( btn , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
2022-01-28 23:23:40 +00:00
// Set autoboot index.
ext = lv_obj_get_ext_attr ( btn ) ;
ext - > idx = entry_idx ;
ext = lv_obj_get_ext_attr ( launch_ctxt . btn [ curr_btn_idx ] ) ; // Redundancy.
ext - > idx = entry_idx ;
// Set action.
if ( ! more_cfg )
lv_btn_set_action ( btn , LV_BTN_ACTION_CLICK , _launch_action ) ;
else
lv_btn_set_action ( btn , LV_BTN_ACTION_CLICK , _launch_more_cfg_action ) ;
// Set button's label text.
lv_label_set_text ( launch_ctxt . label [ curr_btn_idx ] , ini_sec - > name ) ;
lv_obj_set_opa_scale ( launch_ctxt . label [ curr_btn_idx ] , LV_OPA_COVER ) ;
// Set rolling text if name is big.
if ( strlen ( ini_sec - > name ) > 22 )
lv_label_set_long_mode ( launch_ctxt . label [ curr_btn_idx ] , LV_LABEL_LONG_ROLL ) ;
entry_idx + + ;
curr_btn_idx + + ;
// Check if we exceed max buttons.
if ( curr_btn_idx > = max_entries )
break ;
2019-06-30 01:03:00 +00:00
}
2020-04-30 11:49:28 +00:00
2022-05-19 12:14:05 +00:00
ini_free ( & ini_sections ) ;
2022-01-28 23:23:40 +00:00
ini_parse_failed :
// Reiterate the loop with more cfgs if combined.
2022-10-11 03:24:52 +00:00
if ( combined_cfg & & ( curr_btn_idx < ( n_cfg . entries_5_col ? 10 : 8 ) ) & & ! more_cfg )
2022-01-28 23:23:40 +00:00
goto ini_parsing ;
failed_sd_mount :
2021-08-28 15:07:32 +00:00
if ( curr_btn_idx < 1 )
2019-06-30 01:03:00 +00:00
no_boot_entries = true ;
2019-09-12 20:08:38 +00:00
2020-06-13 15:32:40 +00:00
sd_unmount ( ) ;
2019-06-30 01:03:00 +00:00
free ( tmp_path ) ;
// No boot entries found.
if ( no_boot_entries )
{
lv_obj_t * label_error = lv_label_create ( win , NULL ) ;
lv_label_set_recolor ( label_error , true ) ;
if ( ! more_cfg )
{
lv_label_set_static_text ( label_error ,
2019-09-10 14:05:52 +00:00
" #FFDD00 No main boot entries found...# \n "
2021-02-06 02:47:23 +00:00
" Check that #96FF00 bootloader/hekate_ipl.ini# has boot entries \n "
2019-06-30 01:03:00 +00:00
" or use #C7EA46 More configs# button for more boot entries. " ) ;
}
else
{
lv_label_set_static_text ( label_error ,
2019-09-10 14:05:52 +00:00
" #FFDD00 No .ini or boot entries found...# \n "
2021-02-06 02:47:23 +00:00
" Check that a .ini file exists in #96FF00 bootloader/ini/# \n "
2019-06-30 01:03:00 +00:00
" and that it contains at least one entry. " ) ;
}
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_obj_set_pos ( label_error , 19 , 0 ) ;
}
return LV_RES_OK ;
}
static void _create_tab_home ( lv_theme_t * th , lv_obj_t * parent )
{
lv_page_set_scrl_layout ( parent , LV_LAYOUT_OFF ) ;
lv_page_set_scrl_fit ( parent , false , false ) ;
lv_page_set_scrl_height ( parent , 592 ) ;
2020-04-30 01:04:24 +00:00
char btn_colored_text [ 64 ] ;
2019-06-30 01:03:00 +00:00
// Set brand label.
lv_obj_t * label_brand = lv_label_create ( parent , NULL ) ;
lv_label_set_recolor ( label_brand , true ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " hekate# " ) ;
lv_label_set_text ( label_brand , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_obj_set_pos ( label_brand , 50 , 48 ) ;
// Set tagline label.
lv_obj_t * label_tagline = lv_label_create ( parent , NULL ) ;
lv_obj_set_style ( label_tagline , & hint_small_style_white ) ;
lv_label_set_static_text ( label_tagline , " THE ALL IN ONE BOOTLOADER FOR ALL YOUR NEEDS " ) ;
lv_obj_set_pos ( label_tagline , 50 , 82 ) ;
static lv_style_t icons ;
lv_style_copy ( & icons , th - > label . prim ) ;
icons . text . font = & hekate_symbol_120 ;
// Launch button.
lv_obj_t * btn_launch = lv_btn_create ( parent , NULL ) ;
if ( hekate_bg )
{
lv_btn_set_style ( btn_launch , LV_BTN_STYLE_REL , & btn_transp_rel ) ;
lv_btn_set_style ( btn_launch , LV_BTN_STYLE_PR , & btn_transp_pr ) ;
}
lv_obj_t * label_btn = lv_label_create ( btn_launch , NULL ) ;
lv_label_set_recolor ( label_btn , true ) ;
lv_obj_set_style ( label_btn , & icons ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " " SYMBOL_DOT " # " ) ;
lv_label_set_text ( label_btn , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_btn_set_action ( btn_launch , LV_BTN_ACTION_CLICK , _create_window_home_launch ) ;
lv_obj_set_size ( btn_launch , 256 , 256 ) ;
lv_obj_set_pos ( btn_launch , 50 , 160 ) ;
lv_btn_set_layout ( btn_launch , LV_LAYOUT_OFF ) ;
lv_obj_align ( label_btn , NULL , LV_ALIGN_CENTER , 0 , - 28 ) ;
lv_obj_t * label_btn2 = lv_label_create ( btn_launch , NULL ) ;
lv_label_set_recolor ( label_btn2 , true ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " Launch# " ) ;
lv_label_set_text ( label_btn2 , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( label_btn2 , NULL , LV_ALIGN_IN_TOP_MID , 0 , 174 ) ;
// More Configs button.
lv_obj_t * btn_more_cfg = lv_btn_create ( parent , btn_launch ) ;
label_btn = lv_label_create ( btn_more_cfg , label_btn ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " " SYMBOL_CLOCK " # " ) ;
lv_label_set_text ( label_btn , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_btn_set_action ( btn_more_cfg , LV_BTN_ACTION_CLICK , _create_window_home_launch ) ;
lv_btn_set_layout ( btn_more_cfg , LV_LAYOUT_OFF ) ;
lv_obj_align ( label_btn , NULL , LV_ALIGN_CENTER , 0 , - 28 ) ;
label_btn2 = lv_label_create ( btn_more_cfg , label_btn2 ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " More Configs# " ) ;
lv_label_set_text ( label_btn2 , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_obj_set_pos ( btn_more_cfg , 341 , 160 ) ;
lv_obj_align ( label_btn2 , NULL , LV_ALIGN_IN_TOP_MID , 0 , 174 ) ;
// Quick Launch button.
// lv_obj_t *btn_quick_launch = lv_btn_create(parent, NULL);
2020-06-15 12:04:46 +00:00
// lv_obj_t *label_quick_launch = lv_label_create(btn_quick_launch, NULL);
// lv_label_set_static_text(label_quick_launch, SYMBOL_EDIT" Quick Launch");
2019-06-30 01:03:00 +00:00
// lv_obj_set_width(btn_quick_launch, 256);
// lv_obj_set_pos(btn_quick_launch, 343, 448);
// lv_btn_set_action(btn_quick_launch, LV_BTN_ACTION_CLICK, NULL);
2020-04-30 11:55:15 +00:00
lv_obj_t * btn_nyx_options = lv_btn_create ( parent , NULL ) ;
2022-10-11 03:27:50 +00:00
_create_text_button ( th , NULL , btn_nyx_options , SYMBOL_SETTINGS " Nyx Settings " , NULL ) ;
2020-04-30 11:55:15 +00:00
//lv_obj_set_width(btn_nyx_options, 256);
lv_btn_set_action ( btn_nyx_options , LV_BTN_ACTION_CLICK , create_win_nyx_options ) ;
lv_obj_align ( btn_nyx_options , NULL , LV_ALIGN_IN_BOTTOM_LEFT , LV_DPI / 4 , - LV_DPI / 12 ) ;
2019-06-30 01:03:00 +00:00
// Payloads button.
lv_obj_t * btn_payloads = lv_btn_create ( parent , btn_launch ) ;
label_btn = lv_label_create ( btn_payloads , label_btn ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " " SYMBOL_OK " # " ) ;
lv_label_set_text ( label_btn , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_btn_set_action ( btn_payloads , LV_BTN_ACTION_CLICK , _create_mbox_payloads ) ;
lv_btn_set_layout ( btn_payloads , LV_LAYOUT_OFF ) ;
lv_obj_align ( label_btn , NULL , LV_ALIGN_CENTER , 0 , - 28 ) ;
label_btn2 = lv_label_create ( btn_payloads , label_btn2 ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " Payloads# " ) ;
lv_label_set_text ( label_btn2 , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_obj_set_pos ( btn_payloads , 632 , 160 ) ;
lv_obj_align ( label_btn2 , NULL , LV_ALIGN_IN_TOP_MID , 0 , 174 ) ;
lv_obj_t * line_sep = lv_line_create ( parent , NULL ) ;
static const lv_point_t line_pp [ ] = { { 0 , 0 } , { 0 , LV_DPI * 3 } } ;
lv_line_set_points ( line_sep , line_pp , 2 ) ;
lv_line_set_style ( line_sep , th - > line . decor ) ;
lv_obj_align ( line_sep , btn_payloads , LV_ALIGN_OUT_RIGHT_MID , 35 , 0 ) ;
// emuMMC manage button.
lv_obj_t * btn_emummc = lv_btn_create ( parent , btn_launch ) ;
label_btn = lv_label_create ( btn_emummc , label_btn ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " " SYMBOL_LIST " # " ) ;
lv_label_set_text ( label_btn , btn_colored_text ) ;
2021-08-28 14:53:14 +00:00
lv_btn_set_action ( btn_emummc , LV_BTN_ACTION_CLICK , create_win_emummc_tools ) ;
2019-06-30 01:03:00 +00:00
lv_btn_set_layout ( btn_emummc , LV_LAYOUT_OFF ) ;
lv_obj_align ( label_btn , NULL , LV_ALIGN_CENTER , 0 , - 28 ) ;
lv_obj_set_pos ( btn_emummc , 959 , 160 ) ;
label_btn2 = lv_label_create ( btn_emummc , label_btn2 ) ;
2020-04-30 01:04:24 +00:00
s_printf ( btn_colored_text , " %s%s " , text_color , " emuMMC# " ) ;
lv_label_set_text ( label_btn2 , btn_colored_text ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( label_btn2 , NULL , LV_ALIGN_IN_TOP_MID , 0 , 174 ) ;
// Create bottom right power buttons.
lv_obj_t * btn_reboot = lv_btn_create ( parent , NULL ) ;
lv_obj_t * btn_power_off = lv_btn_create ( parent , NULL ) ;
lv_obj_t * btn_reload = lv_btn_create ( parent , NULL ) ;
_create_text_button ( th , NULL , btn_power_off , SYMBOL_POWER " Power Off " , _create_mbox_poweroff ) ;
lv_obj_align ( btn_power_off , NULL , LV_ALIGN_IN_BOTTOM_RIGHT , - LV_DPI / 4 , - LV_DPI / 12 ) ;
_create_text_button ( th , NULL , btn_reboot , SYMBOL_REBOOT " Reboot " , _create_mbox_reboot ) ;
lv_obj_align ( btn_reboot , btn_power_off , LV_ALIGN_OUT_LEFT_MID , 0 , 0 ) ;
_create_text_button ( th , NULL , btn_reload , SYMBOL_REFRESH " Reload " , _create_mbox_reload ) ;
lv_obj_align ( btn_reload , btn_reboot , LV_ALIGN_OUT_LEFT_MID , 0 , 0 ) ;
}
static lv_res_t _save_options_action ( lv_obj_t * btn )
{
2022-10-11 01:32:53 +00:00
static const char * mbox_btn_map [ ] = { " \251 " , " \222 OK! " , " \251 " , " " } ;
2019-06-30 01:03:00 +00:00
lv_obj_t * mbox = lv_mbox_create ( lv_scr_act ( ) , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
int res = ! create_config_entry ( ) ;
if ( res )
lv_mbox_set_text ( mbox , " #FF8000 hekate Configuration# \n \n #96FF00 The configuration was saved to sd card!# " ) ;
else
lv_mbox_set_text ( mbox , " #FF8000 hekate Configuration# \n \n #FFDD00 Failed to save the configuration# \n #FFDD00 to sd card!# " ) ;
lv_mbox_add_btns ( mbox , mbox_btn_map , NULL ) ;
lv_obj_set_top ( mbox , true ) ;
2020-05-05 16:19:12 +00:00
nyx_options_clear_ini_changes_made ( ) ;
2019-06-30 01:03:00 +00:00
return LV_RES_OK ;
}
static void _create_status_bar ( lv_theme_t * th )
{
static lv_obj_t * status_bar_bg ;
status_bar_bg = lv_cont_create ( lv_layer_top ( ) , NULL ) ;
static lv_style_t status_bar_style ;
lv_style_copy ( & status_bar_style , & lv_style_plain_color ) ;
status_bar_style . body . opa = LV_OPA_0 ;
status_bar_style . body . shadow . width = 0 ;
lv_obj_set_style ( status_bar_bg , & status_bar_style ) ;
lv_obj_set_size ( status_bar_bg , LV_HOR_RES , LV_DPI * 9 / 14 ) ;
lv_obj_align ( status_bar_bg , NULL , LV_ALIGN_IN_BOTTOM_LEFT , 0 , 0 ) ;
// Battery percentages.
lv_obj_t * lbl_battery = lv_label_create ( status_bar_bg , NULL ) ;
lv_label_set_recolor ( lbl_battery , true ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_battery , " " SYMBOL_DOT " 00.0% " SYMBOL_BATTERY_1 " #FFDD00 " SYMBOL_CHARGE " # " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_battery , NULL , LV_ALIGN_IN_RIGHT_MID , - LV_DPI * 6 / 11 , 0 ) ;
status_bar . battery = lbl_battery ;
// Amperages, voltages.
lbl_battery = lv_label_create ( status_bar_bg , lbl_battery ) ;
lv_obj_set_style ( lbl_battery , & hint_small_style_white ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_battery , " #96FF00 +0 mA# (0 mV) " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_battery , status_bar . battery , LV_ALIGN_OUT_LEFT_MID , - LV_DPI / 25 , - 1 ) ;
status_bar . battery_more = lbl_battery ;
lv_obj_t * lbl_left = lv_label_create ( status_bar_bg , NULL ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_left , SYMBOL_CLOCK " " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_left , NULL , LV_ALIGN_IN_LEFT_MID , LV_DPI * 6 / 11 , 0 ) ;
// Time, temperature.
lv_obj_t * lbl_time_temp = lv_label_create ( status_bar_bg , NULL ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_time_temp , " 00:00 " SYMBOL_DOT " " SYMBOL_TEMPERATURE " 00.0 " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_time_temp , lbl_left , LV_ALIGN_OUT_RIGHT_MID , 0 , 0 ) ;
status_bar . time_temp = lbl_time_temp ;
lbl_left = lv_label_create ( status_bar_bg , NULL ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_left , " " SYMBOL_DOT ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_left , lbl_time_temp , LV_ALIGN_OUT_RIGHT_MID , 0 , - LV_DPI / 14 ) ;
status_bar . temp_symbol = lbl_left ;
lv_obj_t * lbl_degrees = lv_label_create ( status_bar_bg , NULL ) ;
2020-04-27 05:47:00 +00:00
lv_label_set_text ( lbl_degrees , " C " ) ;
2019-06-30 01:03:00 +00:00
lv_obj_align ( lbl_degrees , lbl_left , LV_ALIGN_OUT_RIGHT_MID , LV_DPI / 50 , LV_DPI / 14 ) ;
status_bar . temp_degrees = lbl_degrees ;
// Middle button.
//! TODO: Utilize it for more.
lv_obj_t * btn_mid = lv_btn_create ( status_bar_bg , NULL ) ;
lv_obj_t * lbl_mid = lv_label_create ( btn_mid , NULL ) ;
lv_label_set_static_text ( lbl_mid , " Save Options " ) ;
lv_obj_set_size ( btn_mid , LV_DPI * 5 / 2 , LV_DPI / 2 ) ;
lv_obj_align ( btn_mid , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
status_bar . mid = btn_mid ;
lv_obj_set_opa_scale ( status_bar . mid , LV_OPA_0 ) ;
lv_obj_set_opa_scale_enable ( status_bar . mid , true ) ;
lv_obj_set_click ( status_bar . mid , false ) ;
lv_btn_set_action ( btn_mid , LV_BTN_ACTION_CLICK , _save_options_action ) ;
}
2020-05-05 16:19:12 +00:00
static lv_res_t _create_mbox_save_changes_action ( lv_obj_t * btns , const char * txt )
{
int btn_idx = lv_btnm_get_pressed ( btns ) ;
mbox_action ( btns , txt ) ;
if ( ! btn_idx )
_save_options_action ( NULL ) ;
return LV_RES_INV ;
}
void nyx_check_ini_changes ( )
{
if ( nyx_options_get_ini_changes_made ( ) )
{
lv_obj_t * dark_bg = lv_obj_create ( lv_scr_act ( ) , NULL ) ;
lv_obj_set_style ( dark_bg , & mbox_darken ) ;
lv_obj_set_size ( dark_bg , LV_HOR_RES , LV_VER_RES ) ;
static const char * mbox_btn_map [ ] = { " \222 Save " , " \222 Cancel " , " " } ;
lv_obj_t * mbox = lv_mbox_create ( dark_bg , NULL ) ;
lv_mbox_set_recolor_text ( mbox , true ) ;
lv_mbox_set_text ( mbox ,
" #FF8000 Main configuration# \n \n "
2021-01-11 19:39:44 +00:00
" You changed the configuration! \n \n "
2020-05-05 16:19:12 +00:00
" Do you want to save it? " ) ;
lv_mbox_add_btns ( mbox , mbox_btn_map , _create_mbox_save_changes_action ) ;
lv_obj_set_width ( mbox , LV_HOR_RES / 9 * 5 ) ;
lv_obj_align ( mbox , NULL , LV_ALIGN_CENTER , 0 , 0 ) ;
lv_obj_set_top ( mbox , true ) ;
nyx_options_clear_ini_changes_made ( ) ;
}
}
2019-06-30 01:03:00 +00:00
static lv_res_t _show_hide_save_button ( lv_obj_t * tv , uint16_t tab_idx )
{
if ( tab_idx = = 4 ) // Options.
{
2022-05-13 00:49:32 +00:00
lv_btn_set_action ( status_bar . mid , LV_BTN_ACTION_CLICK , _save_options_action ) ;
2019-06-30 01:03:00 +00:00
lv_obj_set_opa_scale ( status_bar . mid , LV_OPA_COVER ) ;
lv_obj_set_click ( status_bar . mid , true ) ;
}
else
{
lv_obj_set_opa_scale ( status_bar . mid , LV_OPA_0 ) ;
lv_obj_set_click ( status_bar . mid , false ) ;
}
2019-10-18 15:02:06 +00:00
2020-05-05 16:19:12 +00:00
nyx_check_ini_changes ( ) ;
2019-06-30 01:03:00 +00:00
return LV_RES_OK ;
}
static void _nyx_set_default_styles ( lv_theme_t * th )
{
lv_style_copy ( & mbox_darken , & lv_style_plain ) ;
mbox_darken . body . main_color = LV_COLOR_BLACK ;
mbox_darken . body . grad_color = mbox_darken . body . main_color ;
mbox_darken . body . opa = LV_OPA_30 ;
lv_style_copy ( & hint_small_style , th - > label . hint ) ;
hint_small_style . text . letter_space = 1 ;
hint_small_style . text . font = & interui_20 ;
lv_style_copy ( & hint_small_style_white , th - > label . prim ) ;
hint_small_style_white . text . letter_space = 1 ;
hint_small_style_white . text . font = & interui_20 ;
lv_style_copy ( & monospace_text , & lv_style_plain ) ;
2020-04-30 00:25:22 +00:00
monospace_text . body . main_color = LV_COLOR_HEX ( 0x1B1B1B ) ;
monospace_text . body . grad_color = LV_COLOR_HEX ( 0x1B1B1B ) ;
monospace_text . body . border . color = LV_COLOR_HEX ( 0x1B1B1B ) ;
2019-06-30 01:03:00 +00:00
monospace_text . body . border . width = 0 ;
monospace_text . body . opa = LV_OPA_TRANSP ;
monospace_text . text . color = LV_COLOR_HEX ( 0xD8D8D8 ) ;
monospace_text . text . font = & ubuntu_mono ;
monospace_text . text . letter_space = 0 ;
monospace_text . text . line_space = 0 ;
lv_style_copy ( & btn_transp_rel , th - > btn . rel ) ;
btn_transp_rel . body . main_color = LV_COLOR_HEX ( 0x444444 ) ;
btn_transp_rel . body . grad_color = btn_transp_rel . body . main_color ;
btn_transp_rel . body . opa = LV_OPA_50 ;
lv_style_copy ( & btn_transp_pr , th - > btn . pr ) ;
btn_transp_pr . body . main_color = LV_COLOR_HEX ( 0x888888 ) ;
btn_transp_pr . body . grad_color = btn_transp_pr . body . main_color ;
btn_transp_pr . body . opa = LV_OPA_50 ;
lv_style_copy ( & btn_transp_tgl_rel , th - > btn . tgl_rel ) ;
btn_transp_tgl_rel . body . main_color = LV_COLOR_HEX ( 0x444444 ) ;
btn_transp_tgl_rel . body . grad_color = btn_transp_tgl_rel . body . main_color ;
btn_transp_tgl_rel . body . opa = LV_OPA_50 ;
lv_style_copy ( & btn_transp_tgl_pr , th - > btn . tgl_pr ) ;
btn_transp_tgl_pr . body . main_color = LV_COLOR_HEX ( 0x888888 ) ;
btn_transp_tgl_pr . body . grad_color = btn_transp_tgl_pr . body . main_color ;
btn_transp_tgl_pr . body . opa = LV_OPA_50 ;
lv_style_copy ( & ddlist_transp_bg , th - > ddlist . bg ) ;
ddlist_transp_bg . body . main_color = LV_COLOR_HEX ( 0x2D2D2D ) ;
ddlist_transp_bg . body . grad_color = ddlist_transp_bg . body . main_color ;
ddlist_transp_bg . body . opa = 180 ;
lv_style_copy ( & ddlist_transp_sel , th - > ddlist . sel ) ;
ddlist_transp_sel . body . main_color = LV_COLOR_HEX ( 0x4D4D4D ) ;
ddlist_transp_sel . body . grad_color = ddlist_transp_sel . body . main_color ;
ddlist_transp_sel . body . opa = 180 ;
lv_style_copy ( & tabview_btn_pr , th - > tabview . btn . pr ) ;
tabview_btn_pr . body . main_color = LV_COLOR_HEX ( 0xFFFFFF ) ;
tabview_btn_pr . body . grad_color = tabview_btn_pr . body . main_color ;
tabview_btn_pr . body . opa = 35 ;
lv_style_copy ( & tabview_btn_tgl_pr , th - > tabview . btn . tgl_pr ) ;
tabview_btn_tgl_pr . body . main_color = LV_COLOR_HEX ( 0xFFFFFF ) ;
tabview_btn_tgl_pr . body . grad_color = tabview_btn_tgl_pr . body . main_color ;
tabview_btn_tgl_pr . body . opa = 35 ;
2020-04-30 01:04:24 +00:00
2022-05-13 00:49:32 +00:00
lv_color_t tmp_color = lv_color_hsv_to_rgb ( n_cfg . theme_color , 100 , 100 ) ;
2020-04-30 01:04:24 +00:00
text_color = malloc ( 32 ) ;
2022-05-12 13:43:18 +00:00
s_printf ( text_color , " #%06X " , ( u32 ) ( tmp_color . full & 0xFFFFFF ) ) ;
2019-06-30 01:03:00 +00:00
}
2021-05-11 06:32:38 +00:00
lv_task_t * task_bpmp_clock ;
void first_time_bpmp_clock ( void * param )
{
2022-01-20 12:00:45 +00:00
// Remove task.
lv_task_del ( task_bpmp_clock ) ;
2021-05-11 06:32:38 +00:00
n_cfg . bpmp_clock = 1 ;
create_nyx_config_entry ( false ) ;
}
2019-06-30 01:03:00 +00:00
static void _nyx_main_menu ( lv_theme_t * th )
{
static lv_style_t no_padding ;
lv_style_copy ( & no_padding , & lv_style_transp ) ;
no_padding . body . padding . hor = 0 ;
// Initialize global styles.
_nyx_set_default_styles ( th ) ;
// Create screen container.
lv_obj_t * scr = lv_cont_create ( NULL , NULL ) ;
lv_scr_load ( scr ) ;
lv_cont_set_style ( scr , th - > bg ) ;
// Create base background and add a custom one if exists.
lv_obj_t * cnr = lv_cont_create ( scr , NULL ) ;
static lv_style_t base_bg_style ;
lv_style_copy ( & base_bg_style , & lv_style_plain_color ) ;
2020-04-30 00:57:10 +00:00
base_bg_style . body . main_color = th - > bg - > body . main_color ;
base_bg_style . body . grad_color = base_bg_style . body . main_color ;
2019-06-30 01:03:00 +00:00
lv_cont_set_style ( cnr , & base_bg_style ) ;
lv_obj_set_size ( cnr , LV_HOR_RES , LV_VER_RES ) ;
if ( hekate_bg )
{
lv_obj_t * img = lv_img_create ( cnr , NULL ) ;
lv_img_set_src ( img , hekate_bg ) ;
}
// Add tabview page to screen.
lv_obj_t * tv = lv_tabview_create ( scr , NULL ) ;
if ( hekate_bg )
{
lv_tabview_set_style ( tv , LV_TABVIEW_STYLE_BTN_PR , & tabview_btn_pr ) ;
lv_tabview_set_style ( tv , LV_TABVIEW_STYLE_BTN_TGL_PR , & tabview_btn_tgl_pr ) ;
}
lv_tabview_set_sliding ( tv , false ) ;
lv_obj_set_size ( tv , LV_HOR_RES , LV_VER_RES ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
// Add all tabs content.
char version [ 32 ] ;
s_printf ( version , " hekate v%d.%d.%d " , nyx_str - > version & 0xFF , ( nyx_str - > version > > 8 ) & 0xFF , ( nyx_str - > version > > 16 ) & 0xFF ) ;
lv_obj_t * tab_about = lv_tabview_add_tab ( tv , version ) ;
lv_obj_t * tab_home = lv_tabview_add_tab ( tv , SYMBOL_HOME " Home " ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_obj_t * tab_tools = lv_tabview_add_tab ( tv , SYMBOL_TOOLS " Tools " ) ;
lv_page_set_style ( tab_tools , LV_PAGE_STYLE_BG , & no_padding ) ;
lv_page_set_style ( tab_tools , LV_PAGE_STYLE_SCRL , & no_padding ) ;
lv_obj_t * tab_info = lv_tabview_add_tab ( tv , SYMBOL_INFO " Console Info " ) ;
lv_page_set_style ( tab_info , LV_PAGE_STYLE_BG , & no_padding ) ;
lv_page_set_style ( tab_info , LV_PAGE_STYLE_SCRL , & no_padding ) ;
lv_obj_t * tab_options = lv_tabview_add_tab ( tv , SYMBOL_SETTINGS " Options " ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
_create_tab_about ( th , tab_about ) ;
_create_tab_home ( th , tab_home ) ;
create_tab_tools ( th , tab_tools ) ;
create_tab_info ( th , tab_info ) ;
2019-09-10 20:35:17 +00:00
create_tab_options ( th , tab_options ) ;
2019-06-30 01:03:00 +00:00
lv_tabview_set_tab_act ( tv , 1 , false ) ;
// Create status bar.
_create_status_bar ( th ) ;
// Create tasks.
2019-08-27 23:20:48 +00:00
system_tasks . task . dram_periodic_comp = lv_task_create ( minerva_periodic_training , EMC_PERIODIC_TRAIN_MS , LV_TASK_PRIO_HIGHEST , NULL ) ;
2019-08-19 13:27:30 +00:00
lv_task_ready ( system_tasks . task . dram_periodic_comp ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
system_tasks . task . status_bar = lv_task_create ( _update_status_bar , 5000 , LV_TASK_PRIO_LOW , NULL ) ;
lv_task_ready ( system_tasks . task . status_bar ) ;
2019-10-18 15:02:06 +00:00
2019-06-30 01:03:00 +00:00
lv_task_create ( _check_sd_card_removed , 2000 , LV_TASK_PRIO_LOWEST , NULL ) ;
2022-01-20 12:00:45 +00:00
task_emmc_errors = lv_task_create ( _nyx_emmc_issues , 2000 , LV_TASK_PRIO_LOWEST , NULL ) ;
lv_task_ready ( task_emmc_errors ) ;
2019-06-30 01:03:00 +00:00
// Create top level global line separators.
lv_obj_t * line = lv_cont_create ( lv_layer_top ( ) , NULL ) ;
static lv_style_t line_style ;
lv_style_copy ( & line_style , & lv_style_plain_color ) ;
2019-12-04 19:31:39 +00:00
line_style . body . main_color = LV_COLOR_HEX ( 0xDDDDDD ) ; // 0x505050
2019-06-30 01:03:00 +00:00
line_style . body . grad_color = line_style . body . main_color ;
line_style . body . shadow . width = 0 ;
lv_cont_set_style ( line , & line_style ) ;
lv_obj_set_size ( line , LV_HOR_RES - LV_DPI * 3 / 5 , 1 ) ;
lv_obj_set_pos ( line , LV_DPI * 3 / 10 , 63 ) ;
lv_obj_set_top ( line , true ) ;
line = lv_cont_create ( lv_layer_top ( ) , line ) ;
lv_obj_set_pos ( line , LV_DPI * 3 / 10 , 656 ) ;
lv_obj_set_top ( line , true ) ;
// Option save button.
lv_tabview_set_tab_load_action ( tv , _show_hide_save_button ) ;
2021-08-28 14:53:14 +00:00
// Check if Nyx was launched with a function set.
if ( nyx_str - > cfg & NYX_CFG_UMS )
2020-04-30 11:44:27 +00:00
{
nyx_str - > cfg & = ~ ( NYX_CFG_UMS ) ;
2021-08-28 17:08:08 +00:00
lv_task_t * task_run_ums = lv_task_create ( nyx_run_ums , LV_TASK_ONESHOT , LV_TASK_PRIO_LOWEST , ( void * ) & nyx_str - > cfg ) ;
2020-04-30 11:44:27 +00:00
lv_task_once ( task_run_ums ) ;
}
2020-04-30 11:49:28 +00:00
else if ( n_cfg . home_screen )
_create_window_home_launch ( NULL ) ;
2020-06-14 10:04:13 +00:00
if ( ! n_cfg . timeoff )
{
lv_task_t * task_run_clock = lv_task_create ( first_time_clock_edit , LV_TASK_ONESHOT , LV_TASK_PRIO_MID , NULL ) ;
lv_task_once ( task_run_clock ) ;
}
2020-12-02 00:07:31 +00:00
2021-05-11 06:32:38 +00:00
if ( ! n_cfg . bpmp_clock )
2023-02-11 21:56:16 +00:00
task_bpmp_clock = lv_task_create ( first_time_bpmp_clock , 10000 , LV_TASK_PRIO_LOWEST , NULL ) ;
2020-12-02 00:07:31 +00:00
}
2019-06-30 01:03:00 +00:00
void nyx_load_and_run ( )
{
memset ( & system_tasks , 0 , sizeof ( system_maintenance_tasks_t ) ) ;
lv_init ( ) ;
gfx_con . fillbg = 1 ;
// Initialize framebuffer drawing functions.
lv_disp_drv_t disp_drv ;
lv_disp_drv_init ( & disp_drv ) ;
disp_drv . disp_flush = _disp_fb_flush ;
lv_disp_drv_register ( & disp_drv ) ;
2020-04-30 10:16:30 +00:00
// Initialize Joy-Con.
2020-10-20 07:21:48 +00:00
if ( ! n_cfg . jc_disable )
{
lv_task_t * task_jc_init_hw = lv_task_create ( jc_init_hw , LV_TASK_ONESHOT , LV_TASK_PRIO_LOWEST , NULL ) ;
lv_task_once ( task_jc_init_hw ) ;
}
2020-04-30 10:16:30 +00:00
lv_indev_drv_t indev_drv_jc ;
lv_indev_drv_init ( & indev_drv_jc ) ;
indev_drv_jc . type = LV_INDEV_TYPE_POINTER ;
indev_drv_jc . read = _jc_virt_mouse_read ;
memset ( & jc_drv_ctx , 0 , sizeof ( jc_lv_driver_t ) ) ;
jc_drv_ctx . indev = lv_indev_drv_register ( & indev_drv_jc ) ;
close_btn = NULL ;
2019-06-30 01:03:00 +00:00
// Initialize touch.
2020-06-16 21:41:37 +00:00
touch_enabled = touch_power_on ( ) ;
2019-08-27 23:20:48 +00:00
lv_indev_drv_t indev_drv_touch ;
lv_indev_drv_init ( & indev_drv_touch ) ;
indev_drv_touch . type = LV_INDEV_TYPE_POINTER ;
indev_drv_touch . read = _fts_touch_read ;
lv_indev_drv_register ( & indev_drv_touch ) ;
2019-06-30 01:03:00 +00:00
touchpad . touch = false ;
2019-07-06 19:40:39 +00:00
// Initialize temperature sensor.
tmp451_init ( ) ;
2020-04-30 01:04:24 +00:00
// Set hekate theme based on chosen hue.
2022-10-11 05:32:32 +00:00
lv_theme_t * th = lv_theme_hekate_init ( n_cfg . theme_bg , n_cfg . theme_color , NULL ) ;
2019-06-30 01:03:00 +00:00
lv_theme_set_current ( th ) ;
2019-08-27 23:20:48 +00:00
// Create main menu
2019-06-30 01:03:00 +00:00
_nyx_main_menu ( th ) ;
2020-04-30 10:16:30 +00:00
jc_drv_ctx . cursor = lv_img_create ( lv_scr_act ( ) , NULL ) ;
lv_img_set_src ( jc_drv_ctx . cursor , & touch_cursor ) ;
lv_obj_set_opa_scale ( jc_drv_ctx . cursor , LV_OPA_TRANSP ) ;
lv_obj_set_opa_scale_enable ( jc_drv_ctx . cursor , true ) ;
2020-04-29 22:05:22 +00:00
// Check if sd card issues.
if ( sd_get_mode ( ) = = SD_1BIT_HS25 )
{
2022-01-20 12:00:45 +00:00
lv_task_t * task_run_sd_errors = lv_task_create ( _nyx_sd_card_issues , LV_TASK_ONESHOT , LV_TASK_PRIO_LOWEST , NULL ) ;
2020-04-29 22:05:22 +00:00
lv_task_once ( task_run_sd_errors ) ;
}
2020-12-02 00:07:31 +00:00
// Gui loop.
if ( h_cfg . t210b01 )
2020-04-30 13:27:40 +00:00
{
2020-12-02 00:07:31 +00:00
// Minerva not supported on T210B01 yet. No power saving.
while ( true )
lv_task_handler ( ) ;
2020-04-30 13:27:40 +00:00
}
2020-12-02 00:07:31 +00:00
else
2021-05-11 06:32:38 +00:00
{
// Alternate DRAM frequencies. Saves 280 mW.
while ( true )
{
minerva_change_freq ( FREQ_1600 ) ; // Takes 295 us.
lv_task_handler ( ) ;
minerva_change_freq ( FREQ_800 ) ; // Takes 80 us.
}
}
2019-06-30 01:03:00 +00:00
}