mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-18 04:34:45 -07:00
* feat: app chaining * add `launch_current_app_after_deferred`, remove `get_referring_application` * fix naming * new api * fix f18 * Added new function which enqueues external app from nfc app * Added path to MFKey32 app * Button "Crack nonces in MFKey32" added to ReadMenu scene * SaveConfirm scene adjusted to move to different scenes depending on state * SaveSuccess scene now moves to different scenes depending on SaveConfirm scene state * MfKeyComplete scene shows different text when MFKey.fap present on the device * Now MfKeyClassic scene can run external app * fix deferred launches after errors Co-authored-by: Anna Antonenko <portasynthinca3@gmail.com> Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: hedger <hedger@nanode.su>
52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
#include "../nfc_app_i.h"
|
|
|
|
void nfc_scene_save_confirm_dialog_callback(DialogExResult result, void* context) {
|
|
NfcApp* nfc = context;
|
|
|
|
view_dispatcher_send_custom_event(nfc->view_dispatcher, result);
|
|
}
|
|
|
|
void nfc_scene_save_confirm_on_enter(void* context) {
|
|
NfcApp* nfc = context;
|
|
DialogEx* dialog_ex = nfc->dialog_ex;
|
|
|
|
dialog_ex_set_left_button_text(dialog_ex, "Skip");
|
|
dialog_ex_set_right_button_text(dialog_ex, "Save");
|
|
dialog_ex_set_header(dialog_ex, "Save the Key?", 64, 0, AlignCenter, AlignTop);
|
|
dialog_ex_set_text(dialog_ex, "All unsaved data will be lost", 64, 12, AlignCenter, AlignTop);
|
|
dialog_ex_set_context(dialog_ex, nfc);
|
|
dialog_ex_set_result_callback(dialog_ex, nfc_scene_save_confirm_dialog_callback);
|
|
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewDialogEx);
|
|
}
|
|
|
|
bool nfc_scene_save_confirm_on_event(void* context, SceneManagerEvent event) {
|
|
NfcApp* nfc = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == DialogExResultRight) {
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneSaveName);
|
|
consumed = true;
|
|
} else if(event.event == DialogExResultLeft) {
|
|
NfcSceneSaveConfirmState scene_state =
|
|
scene_manager_get_scene_state(nfc->scene_manager, NfcSceneSaveConfirm);
|
|
|
|
NfcScene scene = scene_state == NfcSceneSaveConfirmStateCrackNonces ?
|
|
NfcSceneMfClassicMfkeyComplete :
|
|
NfcSceneMfClassicDetectReader;
|
|
|
|
scene_manager_next_scene(nfc->scene_manager, scene);
|
|
consumed = true;
|
|
}
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void nfc_scene_save_confirm_on_exit(void* context) {
|
|
NfcApp* nfc = context;
|
|
|
|
// Clean view
|
|
dialog_ex_reset(nfc->dialog_ex);
|
|
}
|