| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- //
- // VB Lab Migration Assistant for Flipper Zero
- // Copyright (C) 2022 cyanic
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- #pragma once
- #include <furi.h>
- #include <gui/gui.h>
- #include <gui/view_dispatcher.h>
- #include <gui/scene_manager.h>
- #include <gui/modules/popup.h>
- #include <gui/modules/submenu.h>
- #include <gui/modules/widget.h>
- #include <gui/modules/text_input.h>
- // #include <gui/modules/dialog_ex.h>
- #include "gui/modules/file_select.h"
- #include <gui/modules/loading.h>
- #include "gui/modules/variable_item_list_ex.h"
- #include <notification/notification.h>
- #include <dialogs/dialogs.h>
- #include "lib/nfc/nfc_worker.h"
- #include "vb_migrate.h"
- #include "scenes/vb_migrate_scene.h"
- #include "vb_tag.h"
- #include "vb_migrate_icons.h"
- #define VB_MIGRATE_TEMPLATE_NAME "template" NFC_APP_EXTENSION
- #define VB_MIGRATE_CAPTURE_FORMAT "%03d%s"
- #define VB_MIGRATE_MAX_DEV_NAME_LENGTH (30)
- struct VbMigrate {
- Gui* gui;
- Storage* storage;
- DialogsApp* dialogs;
- NotificationApp* notifications;
- ViewDispatcher* view_dispatcher;
- SceneManager* scene_manager;
- Submenu* submenu;
- Popup* popup;
- Widget* widget;
- // DialogEx* dialog_ex;
- FileSelect* file_select;
- TextInput* text_input;
- Loading* loading;
- VariableItemListEx* variable_list;
- NfcWorker* worker;
- NfcDevice* nfc_dev;
- char text_store[128];
- uint8_t captured_pwd[4];
- uint8_t captured_uid[7];
- bool clear_account_id;
- int num_captured;
- int next_id;
- int num_sent;
- VbTagType orig_type;
- VbTagType override_type;
- const VbTagProduct* orig_product;
- };
- typedef enum {
- VbMigrateViewMenu,
- VbMigrateViewPopup,
- VbMigrateViewWidget,
- VbMigrateViewTextInput,
- // VbMigrateViewDialogEx,
- VbMigrateViewFileSelect,
- VbMigrateViewLoading,
- VbMigrateViewVariableItemList,
- } VbMigrateView;
- typedef enum {
- VbMigrateBgTypeNone,
- VbMigrateBgTypeLeftButton = 1 << 0,
- VbMigrateBgTypeRightButton = 1 << 1,
- } VbMigrateBgType;
- void vb_migrate_blink_read(VbMigrate* inst);
- void vb_migrate_blink_emulate(VbMigrate* inst);
- void vb_migrate_blink_stop(VbMigrate* inst);
- void vb_migrate_text_store_set(VbMigrate* inst, const char* text, ...);
- void vb_migrate_text_store_clear(VbMigrate* inst);
- bool vb_migrate_save_nfc(VbMigrate* inst, const char* dev_name, const char* file_name);
- bool vb_migrate_load_nfc(VbMigrate* inst, const char* dev_name, const char* file_name);
- int vb_migrate_count_captured_mons(VbMigrate* inst, const char* dev_name);
- bool vb_migrate_delete(VbMigrate* inst, const char* dev_name, bool whole_vb);
- int vb_migrate_get_next_id(VbMigrate* inst, const char* dev_name, int i, bool is_load);
- void vb_migrate_show_loading_popup(VbMigrate* inst, bool show);
- void vb_migrate_add_bg(Widget* widget, VbMigrateBgType type);
|