| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #pragma once
- #include <furi.h>
- #include <api-hal.h>
- #include <generic-scene.hpp>
- #include <scene-controller.hpp>
- #include <view-controller.hpp>
- #include <record-controller.hpp>
- #include <text-store.h>
- #include <view-modules/submenu-vm.h>
- #include <view-modules/popup-vm.h>
- #include <view-modules/dialog-ex-vm.h>
- #include <view-modules/text-input-vm.h>
- #include <view-modules/byte-input-vm.h>
- #include "view/container-vm.h"
- #include <notification/notification-messages.h>
- #include "helpers/rfid-worker.h"
- class LfRfidApp {
- public:
- enum class EventType : uint8_t {
- GENERIC_EVENT_ENUM_VALUES,
- Next,
- MenuSelected,
- };
- enum class SceneType : uint8_t {
- GENERIC_SCENE_ENUM_VALUES,
- Read,
- ReadSuccess,
- ReadedMenu,
- Write,
- WriteSuccess,
- Emulate,
- SaveName,
- SaveSuccess,
- SelectKey,
- SavedKeyMenu,
- SaveData,
- SaveType,
- SavedInfo,
- DeleteConfirm,
- DeleteSuccess,
- };
- class Event {
- public:
- union {
- int32_t menu_index;
- } payload;
- EventType type;
- };
- SceneController<GenericScene<LfRfidApp>, LfRfidApp> scene_controller;
- ViewController<LfRfidApp, SubmenuVM, PopupVM, DialogExVM, TextInputVM, ByteInputVM, ContainerVM>
- view_controller;
- ~LfRfidApp();
- LfRfidApp();
- RecordController<NotificationApp> notification;
- RfidWorker worker;
- TextStore text_store;
- void run(void* args);
- static const char* app_folder;
- static const char* app_extension;
- bool save_key(RfidKey* key);
- bool load_key_from_file_select(bool need_restore);
- bool delete_key(RfidKey* key);
- bool load_key_data(const char* path, RfidKey* key);
- bool save_key_data(const char* path, RfidKey* key);
- void make_app_folder();
- };
|