mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-16 09:12:39 +03:00
88 lines
2.8 KiB
C
88 lines
2.8 KiB
C
#include "../dtmf_dolphin_i.h"
|
|
|
|
static void dtmf_dolphin_scene_start_main_menu_enter_callback(void* context, uint32_t index) {
|
|
DTMFDolphinApp* app = context;
|
|
uint8_t cust_event = 255;
|
|
switch(index) {
|
|
case 0:
|
|
cust_event = DTMFDolphinEventStartDialer;
|
|
break;
|
|
case 1:
|
|
cust_event = DTMFDolphinEventStartBluebox;
|
|
break;
|
|
case 2:
|
|
cust_event = DTMFDolphinEventStartRedboxUS;
|
|
break;
|
|
case 3:
|
|
cust_event = DTMFDolphinEventStartRedboxUK;
|
|
break;
|
|
case 4:
|
|
cust_event = DTMFDolphinEventStartMisc;
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, cust_event);
|
|
}
|
|
|
|
void dtmf_dolphin_scene_start_on_enter(void* context) {
|
|
DTMFDolphinApp* app = context;
|
|
VariableItemList* var_item_list = app->main_menu_list;
|
|
|
|
// VariableItem* item;
|
|
variable_item_list_set_enter_callback(
|
|
var_item_list, dtmf_dolphin_scene_start_main_menu_enter_callback, app);
|
|
|
|
variable_item_list_add(var_item_list, "Dialer", 0, NULL, context);
|
|
variable_item_list_add(var_item_list, "Bluebox", 0, NULL, context);
|
|
variable_item_list_add(var_item_list, "Redbox (US)", 0, NULL, context);
|
|
variable_item_list_add(var_item_list, "Redbox (UK)", 0, NULL, context);
|
|
variable_item_list_add(var_item_list, "Misc", 0, NULL, context);
|
|
|
|
variable_item_list_set_selected_item(
|
|
var_item_list, scene_manager_get_scene_state(app->scene_manager, DTMFDolphinSceneStart));
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, DTMFDolphinViewMainMenu);
|
|
}
|
|
|
|
bool dtmf_dolphin_scene_start_on_event(void* context, SceneManagerEvent event) {
|
|
DTMFDolphinApp* app = context;
|
|
UNUSED(app);
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
uint8_t sc_state;
|
|
|
|
switch(event.event) {
|
|
case DTMFDolphinEventStartDialer:
|
|
sc_state = DTMFDolphinSceneStateDialer;
|
|
break;
|
|
case DTMFDolphinEventStartBluebox:
|
|
sc_state = DTMFDolphinSceneStateBluebox;
|
|
break;
|
|
case DTMFDolphinEventStartRedboxUS:
|
|
sc_state = DTMFDolphinSceneStateRedboxUS;
|
|
break;
|
|
case DTMFDolphinEventStartRedboxUK:
|
|
sc_state = DTMFDolphinSceneStateRedboxUK;
|
|
break;
|
|
case DTMFDolphinEventStartMisc:
|
|
sc_state = DTMFDolphinSceneStateMisc;
|
|
break;
|
|
default:
|
|
return consumed;
|
|
}
|
|
scene_manager_set_scene_state(app->scene_manager, DTMFDolphinSceneDialer, sc_state);
|
|
scene_manager_next_scene(app->scene_manager, DTMFDolphinSceneDialer);
|
|
|
|
consumed = true;
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void dtmf_dolphin_scene_start_on_exit(void* context) {
|
|
DTMFDolphinApp* app = context;
|
|
variable_item_list_reset(app->main_menu_list);
|
|
}
|