2021-07-08 20:41:34 +00:00
|
|
|
#include "../nfc_i.h"
|
|
|
|
|
|
|
|
enum SubmenuIndex {
|
|
|
|
SubmenuIndexSave,
|
|
|
|
SubmenuIndexEmulate,
|
|
|
|
};
|
|
|
|
|
|
|
|
void nfc_scene_mifare_ul_menu_submenu_callback(void* context, uint32_t index) {
|
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
2021-07-22 06:05:07 +00:00
|
|
|
view_dispatcher_send_custom_event(nfc->view_dispatcher, index);
|
2021-07-08 20:41:34 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_mifare_ul_menu_on_enter(void* context) {
|
2021-07-08 20:41:34 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
Submenu* submenu = nfc->submenu;
|
|
|
|
|
|
|
|
submenu_add_item(
|
|
|
|
submenu, "Name and save", SubmenuIndexSave, nfc_scene_mifare_ul_menu_submenu_callback, nfc);
|
|
|
|
submenu_add_item(
|
|
|
|
submenu, "Emulate", SubmenuIndexEmulate, nfc_scene_mifare_ul_menu_submenu_callback, nfc);
|
2021-07-12 18:56:14 +00:00
|
|
|
submenu_set_selected_item(
|
|
|
|
nfc->submenu, scene_manager_get_scene_state(nfc->scene_manager, NfcSceneMifareUlMenu));
|
2021-07-08 20:41:34 +00:00
|
|
|
|
2021-07-22 06:05:07 +00:00
|
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewMenu);
|
2021-07-08 20:41:34 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
bool nfc_scene_mifare_ul_menu_on_event(void* context, SceneManagerEvent event) {
|
2021-07-08 20:41:34 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
if(event.event == SubmenuIndexSave) {
|
|
|
|
scene_manager_set_scene_state(
|
|
|
|
nfc->scene_manager, NfcSceneMifareUlMenu, SubmenuIndexSave);
|
2021-07-22 06:05:07 +00:00
|
|
|
nfc->dev.format = NfcDeviceSaveFormatMifareUl;
|
2021-10-05 05:14:19 +00:00
|
|
|
// Clear device name
|
|
|
|
nfc_device_set_name(&nfc->dev, "");
|
2021-07-22 06:05:07 +00:00
|
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneSaveName);
|
2021-07-12 18:56:14 +00:00
|
|
|
return true;
|
|
|
|
} else if(event.event == SubmenuIndexEmulate) {
|
|
|
|
scene_manager_set_scene_state(
|
|
|
|
nfc->scene_manager, NfcSceneMifareUlMenu, SubmenuIndexEmulate);
|
2021-08-16 21:45:04 +00:00
|
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneEmulateMifareUl);
|
2021-07-12 18:56:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-07-28 14:52:00 +00:00
|
|
|
} else if(event.type == SceneManagerEventTypeBack) {
|
|
|
|
return scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
nfc->scene_manager, NfcSceneStart);
|
2021-07-08 20:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_mifare_ul_menu_on_exit(void* context) {
|
2021-07-08 20:41:34 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
submenu_clean(nfc->submenu);
|
|
|
|
}
|