forked from flipperdevices/flipperzero-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SubGhz: Refactoring Read RAW (flipperdevices#791)
* SubGhz: rename save_raw -> read_raw * SubGhz: add manually saving files to read_raw, confirming that saving is unnecessary, refactoring * Format sources * SubGhz: fix runglish Co-authored-by: あく <[email protected]>
- Loading branch information
Showing
22 changed files
with
632 additions
and
450 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#include "../subghz_i.h" | ||
#include "../helpers/subghz_custom_event.h" | ||
|
||
void subghz_scene_need_saving_callback(GuiButtonType result, InputType type, void* context) { | ||
furi_assert(context); | ||
SubGhz* subghz = context; | ||
|
||
if((result == GuiButtonTypeRight) && (type == InputTypeShort)) { | ||
view_dispatcher_send_custom_event( | ||
subghz->view_dispatcher, SubghzCustomEventSceneNeedSavingYes); | ||
} else if((result == GuiButtonTypeLeft) && (type == InputTypeShort)) { | ||
view_dispatcher_send_custom_event( | ||
subghz->view_dispatcher, SubghzCustomEventSceneNeedSavingNo); | ||
} | ||
} | ||
|
||
void subghz_scene_need_saving_on_enter(void* context) { | ||
SubGhz* subghz = context; | ||
|
||
widget_add_string_multiline_element( | ||
subghz->widget, | ||
64, | ||
25, | ||
AlignCenter, | ||
AlignCenter, | ||
FontSecondary, | ||
"There is an unsaved data.\nDo you want to save it?"); | ||
|
||
widget_add_button_element( | ||
subghz->widget, GuiButtonTypeRight, "Save", subghz_scene_need_saving_callback, subghz); | ||
widget_add_button_element( | ||
subghz->widget, GuiButtonTypeLeft, "Delete", subghz_scene_need_saving_callback, subghz); | ||
|
||
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewWidget); | ||
} | ||
|
||
bool subghz_scene_need_saving_on_event(void* context, SceneManagerEvent event) { | ||
SubGhz* subghz = context; | ||
if(event.type == SceneManagerEventTypeCustom) { | ||
if(event.event == SubghzCustomEventSceneNeedSavingYes) { | ||
subghz->txrx->rx_key_state = SubGhzRxKeyStateNeedSave; | ||
scene_manager_previous_scene(subghz->scene_manager); | ||
return true; | ||
} else if(event.event == SubghzCustomEventSceneNeedSavingNo) { | ||
if(subghz->txrx->rx_key_state == SubGhzRxKeyStateExit) { | ||
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE; | ||
scene_manager_search_and_switch_to_previous_scene( | ||
subghz->scene_manager, SubGhzSceneStart); | ||
} else { | ||
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE; | ||
scene_manager_previous_scene(subghz->scene_manager); | ||
} | ||
|
||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
void subghz_scene_need_saving_on_exit(void* context) { | ||
SubGhz* subghz = context; | ||
widget_clear(subghz->widget); | ||
} |
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,72 @@ | ||
#include "../subghz_i.h" | ||
|
||
enum SubmenuIndex { | ||
SubmenuIndexEmulate, | ||
SubmenuIndexEdit, | ||
SubmenuIndexDelete, | ||
}; | ||
|
||
void subghz_scene_read_raw_menu_submenu_callback(void* context, uint32_t index) { | ||
SubGhz* subghz = context; | ||
view_dispatcher_send_custom_event(subghz->view_dispatcher, index); | ||
} | ||
|
||
void subghz_scene_read_raw_menu_on_enter(void* context) { | ||
SubGhz* subghz = context; | ||
submenu_add_item( | ||
subghz->submenu, | ||
"Emulate", | ||
SubmenuIndexEmulate, | ||
subghz_scene_read_raw_menu_submenu_callback, | ||
subghz); | ||
|
||
submenu_add_item( | ||
subghz->submenu, | ||
"Save", | ||
SubmenuIndexEdit, | ||
subghz_scene_read_raw_menu_submenu_callback, | ||
subghz); | ||
|
||
submenu_add_item( | ||
subghz->submenu, | ||
"Delete", | ||
SubmenuIndexDelete, | ||
subghz_scene_read_raw_menu_submenu_callback, | ||
subghz); | ||
|
||
submenu_set_selected_item( | ||
subghz->submenu, | ||
scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneSavedMenu)); | ||
|
||
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewMenu); | ||
} | ||
|
||
bool subghz_scene_read_raw_menu_on_event(void* context, SceneManagerEvent event) { | ||
SubGhz* subghz = context; | ||
|
||
if(event.type == SceneManagerEventTypeCustom) { | ||
if(event.event == SubmenuIndexEmulate) { | ||
scene_manager_set_scene_state( | ||
subghz->scene_manager, SubGhzSceneReadRAWMenu, SubmenuIndexEmulate); | ||
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneTransmitter); | ||
return true; | ||
} else if(event.event == SubmenuIndexDelete) { | ||
scene_manager_set_scene_state( | ||
subghz->scene_manager, SubGhzSceneReadRAWMenu, SubmenuIndexDelete); | ||
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneDelete); | ||
return true; | ||
} else if(event.event == SubmenuIndexEdit) { | ||
scene_manager_set_scene_state( | ||
subghz->scene_manager, SubGhzSceneReadRAWMenu, SubghzCustomEventManagerSet); | ||
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneSaveName); | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
void subghz_scene_read_raw_menu_on_exit(void* context) { | ||
SubGhz* subghz = context; | ||
submenu_clean(subghz->submenu); | ||
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE; | ||
} |
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
Oops, something went wrong.