 f11df49468
			
		
	
	
		f11df49468
		
			
		
	
	
	
	
		
			
			* Move DolphinDeedNfcRead * Move DolphinDeedNfcReadSuccess * Move DolphinDeedNfcSave * Move DolphinDeedNfcDetectReader * Move DolphinDeedNfcEmulate * Count DolphinDeedNfcEmulate when launched from file browser * Implement most of the score accounting for NFC * Fully update Nfc icounter handling * Move DolphinDeedSubGhzFrequencyAnalyzer * Update the rest of icounter in SubGHz * Adjust SubGHz icounter handling * Adjust LFRFID icounter handling * Adjust Infrared icounter handling * Don't count renaming RFID tags as saving * Don't count renaming SubGHz signals as saving * Don't count renaming NFC tags as saving * Adjust iButton icounter handling * Minor code refactoring * Correct formatting * Account for emulating iButton keys from file manager/rpc Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../ibutton_i.h"
 | |
| #include "ibutton/scenes/ibutton_scene.h"
 | |
| #include <dolphin/dolphin.h>
 | |
| 
 | |
| enum SubmenuIndex {
 | |
|     SubmenuIndexRead,
 | |
|     SubmenuIndexSaved,
 | |
|     SubmenuIndexAdd,
 | |
| };
 | |
| 
 | |
| void ibutton_scene_start_submenu_callback(void* context, uint32_t index) {
 | |
|     iButton* ibutton = context;
 | |
|     view_dispatcher_send_custom_event(ibutton->view_dispatcher, index);
 | |
| }
 | |
| 
 | |
| void ibutton_scene_start_on_enter(void* context) {
 | |
|     iButton* ibutton = context;
 | |
|     Submenu* submenu = ibutton->submenu;
 | |
| 
 | |
|     submenu_add_item(
 | |
|         submenu, "Read", SubmenuIndexRead, ibutton_scene_start_submenu_callback, ibutton);
 | |
|     submenu_add_item(
 | |
|         submenu, "Saved", SubmenuIndexSaved, ibutton_scene_start_submenu_callback, ibutton);
 | |
|     submenu_add_item(
 | |
|         submenu, "Add Manually", SubmenuIndexAdd, ibutton_scene_start_submenu_callback, ibutton);
 | |
| 
 | |
|     submenu_set_selected_item(
 | |
|         submenu, scene_manager_get_scene_state(ibutton->scene_manager, iButtonSceneStart));
 | |
| 
 | |
|     view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewSubmenu);
 | |
| }
 | |
| 
 | |
| bool ibutton_scene_start_on_event(void* context, SceneManagerEvent event) {
 | |
|     iButton* ibutton = context;
 | |
|     bool consumed = false;
 | |
| 
 | |
|     if(event.type == SceneManagerEventTypeCustom) {
 | |
|         scene_manager_set_scene_state(ibutton->scene_manager, iButtonSceneStart, event.event);
 | |
|         consumed = true;
 | |
|         if(event.event == SubmenuIndexRead) {
 | |
|             scene_manager_next_scene(ibutton->scene_manager, iButtonSceneRead);
 | |
|             DOLPHIN_DEED(DolphinDeedIbuttonRead);
 | |
|         } else if(event.event == SubmenuIndexSaved) {
 | |
|             furi_string_set(ibutton->file_path, IBUTTON_APP_FOLDER);
 | |
|             scene_manager_next_scene(ibutton->scene_manager, iButtonSceneSelectKey);
 | |
|         } else if(event.event == SubmenuIndexAdd) {
 | |
|             scene_manager_next_scene(ibutton->scene_manager, iButtonSceneAddType);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void ibutton_scene_start_on_exit(void* context) {
 | |
|     iButton* ibutton = context;
 | |
|     submenu_reset(ibutton->submenu);
 | |
| }
 |