unleashed-firmware/applications/main/lfrfid/scenes/lfrfid_scene_saved_info.c
Georgii Surkov 64bd2f9c84
[FL-3677, FL-3798] RFID Improvements (#3524)
* 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>
2024-03-29 12:32:43 +09:00

55 lines
1.8 KiB
C

#include "../lfrfid_i.h"
void lfrfid_scene_saved_info_on_enter(void* context) {
LfRfid* app = context;
Widget* widget = app->widget;
FuriString* display_text = furi_string_alloc();
furi_string_printf(display_text, "Name: %s\n", furi_string_get_cstr(app->file_name));
const char* protocol = protocol_dict_get_name(app->dict, app->protocol_id);
const char* manufacturer = protocol_dict_get_manufacturer(app->dict, app->protocol_id);
if(strcasecmp(protocol, manufacturer) != 0 && strcasecmp(manufacturer, "N/A") != 0) {
furi_string_cat_printf(display_text, "\e#%s %s", manufacturer, protocol);
} else {
furi_string_cat_printf(display_text, "\e#%s", protocol);
}
furi_string_cat(display_text, "\nHex: ");
const size_t data_size = protocol_dict_get_data_size(app->dict, app->protocol_id);
uint8_t* data = malloc(data_size);
protocol_dict_get_data(app->dict, app->protocol_id, data, data_size);
for(size_t i = 0; i < data_size; i++) {
furi_string_cat_printf(display_text, "%s%02X", i != 0 ? " " : "", data[i]);
}
free(data);
FuriString* rendered_data;
rendered_data = furi_string_alloc();
protocol_dict_render_data(app->dict, rendered_data, app->protocol_id);
furi_string_cat_printf(display_text, "\n%s", furi_string_get_cstr(rendered_data));
furi_string_free(rendered_data);
widget_add_text_scroll_element(widget, 0, 0, 128, 64, furi_string_get_cstr(display_text));
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewWidget);
furi_string_free(display_text);
}
bool lfrfid_scene_saved_info_on_event(void* context, SceneManagerEvent event) {
UNUSED(context);
UNUSED(event);
bool consumed = false;
return consumed;
}
void lfrfid_scene_saved_info_on_exit(void* context) {
LfRfid* app = context;
widget_reset(app->widget);
}