a0e1e42f2d
* view: add custom event callback * nfc: rework nfc worker * gui: introduce view navigator * nfc_scences: introduce nfc scenes * nfc: add start scene * lib: add C application scene template * nfc: move nfc views to separate directory * view_dispatcher: add support for view_navigator * nfc views: rework nfc views * nfc scenes: add nfc application scenes * nfc: rework nfc main thread * view_dispatcher: add separate event for search back scene * nfc: set worker result address at worker start * nfc: update read nfc scenes * view_navigator: rework with M-LIB container * view_dispatcher: check that all views were freed * nfc: add debug menu with all functions * nfc read scene: add notification on success * api-hal-nfc: add API for UID emulation * nfc: add nfc emulation UID scene * assets: add NFC assets * nfc: update read and emulate scenes UI * nfc: fix memory leak * rfal: set custom analog configuration
92 lines
3.2 KiB
C
92 lines
3.2 KiB
C
#include "nfc_scene_start.h"
|
|
#include "../nfc_i.h"
|
|
|
|
#include <furi.h>
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/view_dispatcher.h>
|
|
|
|
typedef enum {
|
|
SubmenuIndexRead,
|
|
SubmenuIndexRunScript,
|
|
SubmenuIndexSaved,
|
|
SubmenuIndexAddManualy,
|
|
SubmenuIndexDebug,
|
|
} SubmenuIndex;
|
|
|
|
void nfc_scene_start_submenu_callback(void* context, uint32_t index) {
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
view_dispatcher_send_custom_event(nfc->nfc_common.view_dispatcher, index);
|
|
}
|
|
|
|
const void nfc_scene_start_on_enter(void* context) {
|
|
Nfc* nfc = (Nfc*)context;
|
|
Submenu* submenu = nfc->submenu;
|
|
|
|
submenu_add_item(
|
|
submenu, "Read card", SubmenuIndexRead, nfc_scene_start_submenu_callback, nfc);
|
|
submenu_add_item(
|
|
submenu,
|
|
"Run special action",
|
|
SubmenuIndexRunScript,
|
|
nfc_scene_start_submenu_callback,
|
|
nfc);
|
|
submenu_add_item(
|
|
submenu, "Saved cards", SubmenuIndexSaved, nfc_scene_start_submenu_callback, nfc);
|
|
submenu_add_item(
|
|
submenu, "Add manualy", SubmenuIndexAddManualy, nfc_scene_start_submenu_callback, nfc);
|
|
submenu_add_item(submenu, "Debug", SubmenuIndexDebug, nfc_scene_start_submenu_callback, nfc);
|
|
|
|
view_dispatcher_switch_to_view(nfc->nfc_common.view_dispatcher, NfcViewMenu);
|
|
}
|
|
|
|
const bool nfc_scene_start_on_event(void* context, uint32_t event) {
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
if(event == SubmenuIndexRead) {
|
|
view_dispatcher_add_scene(nfc->nfc_common.view_dispatcher, nfc->scene_read_card);
|
|
view_dispatcher_send_navigation_event(
|
|
nfc->nfc_common.view_dispatcher, ViewNavigatorEventNext);
|
|
return true;
|
|
} else if(event == SubmenuIndexRunScript) {
|
|
view_dispatcher_add_scene(nfc->nfc_common.view_dispatcher, nfc->scene_not_implemented);
|
|
view_dispatcher_send_navigation_event(
|
|
nfc->nfc_common.view_dispatcher, ViewNavigatorEventNext);
|
|
return true;
|
|
} else if(event == SubmenuIndexSaved) {
|
|
view_dispatcher_add_scene(nfc->nfc_common.view_dispatcher, nfc->scene_not_implemented);
|
|
view_dispatcher_send_navigation_event(
|
|
nfc->nfc_common.view_dispatcher, ViewNavigatorEventNext);
|
|
return true;
|
|
} else if(event == SubmenuIndexAddManualy) {
|
|
view_dispatcher_add_scene(nfc->nfc_common.view_dispatcher, nfc->scene_not_implemented);
|
|
view_dispatcher_send_navigation_event(
|
|
nfc->nfc_common.view_dispatcher, ViewNavigatorEventNext);
|
|
return true;
|
|
} else if(event == SubmenuIndexDebug) {
|
|
view_dispatcher_add_scene(nfc->nfc_common.view_dispatcher, nfc->scene_debug_menu);
|
|
view_dispatcher_send_navigation_event(
|
|
nfc->nfc_common.view_dispatcher, ViewNavigatorEventNext);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const void nfc_scene_start_on_exit(void* context) {
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
submenu_clean(nfc->submenu);
|
|
}
|
|
|
|
AppScene* nfc_scene_start_alloc() {
|
|
AppScene* scene = furi_alloc(sizeof(AppScene));
|
|
scene->id = NfcSceneStart;
|
|
scene->on_enter = nfc_scene_start_on_enter;
|
|
scene->on_event = nfc_scene_start_on_event;
|
|
scene->on_exit = nfc_scene_start_on_exit;
|
|
|
|
return scene;
|
|
}
|
|
|
|
void nfc_scene_start_free(AppScene* scene) {
|
|
free(scene);
|
|
} |