bf8fd71c00
* nfc magic: introduce nfc app to work with magic cards * nfc: add nfc device functions to API * nfc magic: add bacis scenes * nfc magic: add wrong card and write confirm scenes * nfc magic: introduce magic lib * nfc magic: write magic lib * nfc magic: add write commands to magic lib * nfc magic: work on worker * furi_hal_nfc: add bits data exchage method to API * nfc magic: rework with new API * nfc magic: add check and wipe scenes * nfc magic: add icons, gui fixes * nfc: format python src Co-authored-by: あく <alleteam@gmail.com>
78 lines
1.7 KiB
C
78 lines
1.7 KiB
C
#pragma once
|
|
|
|
#include "nfc_magic.h"
|
|
#include "nfc_magic_worker.h"
|
|
|
|
#include "lib/magic/magic.h"
|
|
|
|
#include <furi.h>
|
|
#include <gui/gui.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
#include <notification/notification_messages.h>
|
|
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/modules/popup.h>
|
|
#include <gui/modules/loading.h>
|
|
#include <gui/modules/text_input.h>
|
|
#include <gui/modules/widget.h>
|
|
|
|
#include <input/input.h>
|
|
|
|
#include "scenes/nfc_magic_scene.h"
|
|
|
|
#include <storage/storage.h>
|
|
#include <lib/toolbox/path.h>
|
|
|
|
#include <lib/nfc/nfc_device.h>
|
|
#include "nfc_magic_icons.h"
|
|
|
|
enum NfcMagicCustomEvent {
|
|
// Reserve first 100 events for button types and indexes, starting from 0
|
|
NfcMagicCustomEventReserved = 100,
|
|
|
|
NfcMagicCustomEventViewExit,
|
|
NfcMagicCustomEventWorkerExit,
|
|
NfcMagicCustomEventByteInputDone,
|
|
NfcMagicCustomEventTextInputDone,
|
|
};
|
|
|
|
struct NfcMagic {
|
|
NfcMagicWorker* worker;
|
|
ViewDispatcher* view_dispatcher;
|
|
Gui* gui;
|
|
NotificationApp* notifications;
|
|
SceneManager* scene_manager;
|
|
// NfcMagicDevice* dev;
|
|
NfcDevice* nfc_dev;
|
|
|
|
FuriString* text_box_store;
|
|
|
|
// Common Views
|
|
Submenu* submenu;
|
|
Popup* popup;
|
|
Loading* loading;
|
|
TextInput* text_input;
|
|
Widget* widget;
|
|
};
|
|
|
|
typedef enum {
|
|
NfcMagicViewMenu,
|
|
NfcMagicViewPopup,
|
|
NfcMagicViewLoading,
|
|
NfcMagicViewTextInput,
|
|
NfcMagicViewWidget,
|
|
} NfcMagicView;
|
|
|
|
NfcMagic* nfc_magic_alloc();
|
|
|
|
void nfc_magic_text_store_set(NfcMagic* nfc_magic, const char* text, ...);
|
|
|
|
void nfc_magic_text_store_clear(NfcMagic* nfc_magic);
|
|
|
|
void nfc_magic_blink_start(NfcMagic* nfc_magic);
|
|
|
|
void nfc_magic_blink_stop(NfcMagic* nfc_magic);
|
|
|
|
void nfc_magic_show_loading_popup(void* context, bool show);
|