9ffcc52ada
* mifare ultralight auth prototype * it works! * Reference source * use countof * rework everything * oops forgot scenes * build: revert changes in manifest, stack size * build: fix buid, format sources * nfc: update unlock ultralight GUI * nfc: fix byte input header * nfc: add new scenes for locked ultralight * nfc: add data read to ultralights * nfc: add unlock option in mf ultralight menu * nfc: add data read init in ultralight generation * nfc: lin sources, fix unlocked save * nfc: format python sources * nfc: clean up Co-authored-by: gornekich <n.gorbadey@gmail.com>
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
#include "../nfc_i.h"
|
|
|
|
enum SubmenuIndex {
|
|
SubmenuIndexMfClassicKeys,
|
|
SubmenuIndexMfUltralightUnlock,
|
|
};
|
|
|
|
void nfc_scene_extra_actions_submenu_callback(void* context, uint32_t index) {
|
|
Nfc* nfc = context;
|
|
|
|
view_dispatcher_send_custom_event(nfc->view_dispatcher, index);
|
|
}
|
|
|
|
void nfc_scene_extra_actions_on_enter(void* context) {
|
|
Nfc* nfc = context;
|
|
Submenu* submenu = nfc->submenu;
|
|
|
|
submenu_add_item(
|
|
submenu,
|
|
"Mf Classic Keys",
|
|
SubmenuIndexMfClassicKeys,
|
|
nfc_scene_extra_actions_submenu_callback,
|
|
nfc);
|
|
submenu_add_item(
|
|
submenu,
|
|
"Unlock NTAG/Ultralight",
|
|
SubmenuIndexMfUltralightUnlock,
|
|
nfc_scene_extra_actions_submenu_callback,
|
|
nfc);
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewMenu);
|
|
}
|
|
|
|
bool nfc_scene_extra_actions_on_event(void* context, SceneManagerEvent event) {
|
|
Nfc* nfc = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == SubmenuIndexMfClassicKeys) {
|
|
if(mf_classic_dict_check_presence(MfClassicDictTypeFlipper)) {
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneMfClassicKeys);
|
|
} else {
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneDictNotFound);
|
|
}
|
|
consumed = true;
|
|
} else if(event.event == SubmenuIndexMfUltralightUnlock) {
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneMfUltralightUnlockMenu);
|
|
}
|
|
scene_manager_set_scene_state(nfc->scene_manager, NfcSceneExtraActions, event.event);
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void nfc_scene_extra_actions_on_exit(void* context) {
|
|
Nfc* nfc = context;
|
|
|
|
submenu_reset(nfc->submenu);
|
|
}
|