-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save picopass as picopass or, for 26bit, as lfrfid
- Loading branch information
Showing
11 changed files
with
409 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
#include "../picopass_i.h" | ||
|
||
enum SubmenuIndex { | ||
SubmenuIndexSave, | ||
SubmenuIndexSaveAsLF, | ||
}; | ||
|
||
void picopass_scene_card_menu_submenu_callback(void* context, uint32_t index) { | ||
Picopass* picopass = context; | ||
|
||
view_dispatcher_send_custom_event(picopass->view_dispatcher, index); | ||
} | ||
|
||
void picopass_scene_card_menu_on_enter(void* context) { | ||
Picopass* picopass = context; | ||
Submenu* submenu = picopass->submenu; | ||
|
||
submenu_add_item( | ||
submenu, "Save", SubmenuIndexSave, picopass_scene_card_menu_submenu_callback, picopass); | ||
if(picopass->dev->dev_data.pacs.record.valid) { | ||
submenu_add_item( | ||
submenu, | ||
"Save as LF", | ||
SubmenuIndexSaveAsLF, | ||
picopass_scene_card_menu_submenu_callback, | ||
picopass); | ||
} | ||
submenu_set_selected_item( | ||
picopass->submenu, | ||
scene_manager_get_scene_state(picopass->scene_manager, PicopassSceneCardMenu)); | ||
|
||
view_dispatcher_switch_to_view(picopass->view_dispatcher, PicopassViewMenu); | ||
} | ||
|
||
bool picopass_scene_card_menu_on_event(void* context, SceneManagerEvent event) { | ||
Picopass* picopass = context; | ||
bool consumed = false; | ||
|
||
if(event.type == SceneManagerEventTypeCustom) { | ||
if(event.event == SubmenuIndexSave) { | ||
scene_manager_set_scene_state( | ||
picopass->scene_manager, PicopassSceneCardMenu, SubmenuIndexSave); | ||
scene_manager_next_scene(picopass->scene_manager, PicopassSceneSaveName); | ||
picopass->dev->format = PicopassDeviceSaveFormatHF; | ||
consumed = true; | ||
} else if(event.event == SubmenuIndexSaveAsLF) { | ||
scene_manager_set_scene_state( | ||
picopass->scene_manager, PicopassSceneCardMenu, SubmenuIndexSaveAsLF); | ||
picopass->dev->format = PicopassDeviceSaveFormatLF; | ||
scene_manager_next_scene(picopass->scene_manager, PicopassSceneSaveName); | ||
consumed = true; | ||
} | ||
} else if(event.type == SceneManagerEventTypeBack) { | ||
consumed = scene_manager_search_and_switch_to_previous_scene( | ||
picopass->scene_manager, PicopassSceneStart); | ||
} | ||
|
||
return consumed; | ||
} | ||
|
||
void picopass_scene_card_menu_on_exit(void* context) { | ||
Picopass* picopass = context; | ||
|
||
submenu_reset(picopass->submenu); | ||
} |
Oops, something went wrong.