mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
64bd2f9c84
* Update saved_info and read_success scenes * Update EM4100 rendering * Update HIDExt rendering * Update Gallagher rendering * Update HidProx rendering * Update IOProx rendering * Update H10301 rendering * Update PAC/Stanley rendering * Add strcasecmp() to API, better manufacturer/name handling * Update Viking rendering * Update FDX-A rendering * Update Pyramid rendering * Update Indala26 rendering * Update Idteck rendering * Update Keri rendering * Update Nexwatch rendering * Update Jablotron rendering * Update Paradox rendering * Truncate long Hex string on scene_read_suceess * Fix formatting * Update AWID rendering * Update FDX-B rendering * Tweak string formatting in various screens * More read_success view tweaks * Fix formatting * Fix Pyramid brief rendering * Reset saved key menu when going back * Reset other menus on back where applicable * Update confirmation scenes * Update emulation scene * Update delete scene * Update raw read info screen * Update raw read scene, fix crash * Update raw read success scene * Update write scene * Always return to SceneSelectKey after saving * Update SceneWriteSuccess and SceneDeleteSuccess * Replace closing parens with dots * FL-3798: Fix special formatting in text_box * Simplify SceneReadSuccess * Fix crash when having a trailing newline in text_box * Bump API symbols version * Make PVS happy * Format sources Co-authored-by: あく <alleteam@gmail.com>
42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
#include "../lfrfid_i.h"
|
|
|
|
void lfrfid_scene_emulate_on_enter(void* context) {
|
|
LfRfid* app = context;
|
|
Widget* widget = app->widget;
|
|
|
|
FuriString* display_text = furi_string_alloc_set("\e#Emulating\e#\n");
|
|
|
|
if(furi_string_empty(app->file_name)) {
|
|
furi_string_cat(display_text, "Unsaved\n");
|
|
furi_string_cat(display_text, protocol_dict_get_name(app->dict, app->protocol_id));
|
|
} else {
|
|
furi_string_cat(display_text, app->file_name);
|
|
}
|
|
|
|
widget_add_icon_element(widget, 0, 0, &I_NFC_dolphin_emulation_51x64);
|
|
widget_add_text_box_element(
|
|
widget, 55, 16, 67, 48, AlignCenter, AlignTop, furi_string_get_cstr(display_text), true);
|
|
|
|
furi_string_free(display_text);
|
|
|
|
lfrfid_worker_start_thread(app->lfworker);
|
|
lfrfid_worker_emulate_start(app->lfworker, (LFRFIDProtocol)app->protocol_id);
|
|
notification_message(app->notifications, &sequence_blink_start_magenta);
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewWidget);
|
|
}
|
|
|
|
bool lfrfid_scene_emulate_on_event(void* context, SceneManagerEvent event) {
|
|
UNUSED(context);
|
|
UNUSED(event);
|
|
bool consumed = false;
|
|
return consumed;
|
|
}
|
|
|
|
void lfrfid_scene_emulate_on_exit(void* context) {
|
|
LfRfid* app = context;
|
|
notification_message(app->notifications, &sequence_blink_stop);
|
|
widget_reset(app->widget);
|
|
lfrfid_worker_stop(app->lfworker);
|
|
lfrfid_worker_stop_thread(app->lfworker);
|
|
}
|