mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
61 lines
2.1 KiB
C
61 lines
2.1 KiB
C
|
#include "../subbrute_i.h"
|
||
|
#include "../subbrute_custom_event.h"
|
||
|
#include "../views/subbrute_main_view.h"
|
||
|
|
||
|
#define TAG "SubBruteSceneStart"
|
||
|
|
||
|
void subbrute_scene_load_select_callback(SubBruteCustomEvent event, void* context) {
|
||
|
furi_assert(context);
|
||
|
|
||
|
SubBruteState* instance = (SubBruteState*)context;
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_D(TAG, "subbrute_scene_load_select_callback");
|
||
|
#endif
|
||
|
view_dispatcher_send_custom_event(instance->view_dispatcher, event);
|
||
|
}
|
||
|
|
||
|
void subbrute_scene_load_select_on_enter(void* context) {
|
||
|
furi_assert(context);
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_I(TAG, "subbrute_scene_load_select_on_enter");
|
||
|
#endif
|
||
|
SubBruteState* instance = (SubBruteState*)context;
|
||
|
SubBruteMainView* view = instance->view_main;
|
||
|
|
||
|
instance->current_view = SubBruteViewMain;
|
||
|
subbrute_main_view_set_callback(view, subbrute_scene_load_select_callback, instance);
|
||
|
subbrute_main_view_set_index(view, 7, true, instance->device->file_key);
|
||
|
|
||
|
view_dispatcher_switch_to_view(instance->view_dispatcher, instance->current_view);
|
||
|
}
|
||
|
|
||
|
void subbrute_scene_load_select_on_exit(void* context) {
|
||
|
UNUSED(context);
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_I(TAG, "subbrute_scene_load_select_on_exit");
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
bool subbrute_scene_load_select_on_event(void* context, SceneManagerEvent event) {
|
||
|
SubBruteState* instance = (SubBruteState*)context;
|
||
|
bool consumed = false;
|
||
|
|
||
|
if(event.type == SceneManagerEventTypeCustom) {
|
||
|
if(event.event == SubBruteCustomEventTypeIndexSelected) {
|
||
|
instance->device->load_index = subbrute_main_view_get_index(instance->view_main);
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_D(TAG, "load_index: %d", instance->device->load_index);
|
||
|
#endif
|
||
|
scene_manager_next_scene(instance->scene_manager, SubBruteSceneSetupAttack);
|
||
|
consumed = true;
|
||
|
}
|
||
|
} else if(event.type == SceneManagerEventTypeBack) {
|
||
|
if(!scene_manager_search_and_switch_to_previous_scene(
|
||
|
instance->scene_manager, SubBruteSceneStart)) {
|
||
|
scene_manager_next_scene(instance->scene_manager, SubBruteSceneStart);
|
||
|
}
|
||
|
consumed = true;
|
||
|
}
|
||
|
|
||
|
return consumed;
|
||
|
}
|