mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +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>
73 lines
2.5 KiB
C
73 lines
2.5 KiB
C
#include "../lfrfid_i.h"
|
|
|
|
#define LFRFID_SCENE_DELETE_MAX_HEX_WIDTH (7UL)
|
|
|
|
void lfrfid_scene_delete_confirm_on_enter(void* context) {
|
|
LfRfid* app = context;
|
|
Widget* widget = app->widget;
|
|
|
|
FuriString* display_text = furi_string_alloc_printf(
|
|
"\e#Delete %s?\e#\n"
|
|
"Hex: ",
|
|
furi_string_get_cstr(app->file_name));
|
|
|
|
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++) {
|
|
if(i == LFRFID_SCENE_DELETE_MAX_HEX_WIDTH) {
|
|
furi_string_cat(display_text, " ...");
|
|
break;
|
|
}
|
|
|
|
furi_string_cat_printf(display_text, "%s%02X", i != 0 ? " " : "", data[i]);
|
|
}
|
|
|
|
furi_string_push_back(display_text, '\n');
|
|
|
|
free(data);
|
|
|
|
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, "%s ", manufacturer);
|
|
}
|
|
|
|
furi_string_cat(display_text, protocol);
|
|
|
|
widget_add_text_box_element(
|
|
widget, 0, 0, 128, 64, AlignCenter, AlignTop, furi_string_get_cstr(display_text), true);
|
|
widget_add_button_element(widget, GuiButtonTypeLeft, "Cancel", lfrfid_widget_callback, app);
|
|
widget_add_button_element(widget, GuiButtonTypeRight, "Delete", lfrfid_widget_callback, app);
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewWidget);
|
|
furi_string_free(display_text);
|
|
}
|
|
|
|
bool lfrfid_scene_delete_confirm_on_event(void* context, SceneManagerEvent event) {
|
|
LfRfid* app = context;
|
|
SceneManager* scene_manager = app->scene_manager;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeBack) {
|
|
consumed = true; // Ignore Back button presses
|
|
} else if(event.type == SceneManagerEventTypeCustom) {
|
|
consumed = true;
|
|
if(event.event == GuiButtonTypeLeft) {
|
|
scene_manager_previous_scene(scene_manager);
|
|
} else if(event.event == GuiButtonTypeRight) {
|
|
lfrfid_delete_key(app);
|
|
scene_manager_next_scene(scene_manager, LfRfidSceneDeleteSuccess);
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void lfrfid_scene_delete_confirm_on_exit(void* context) {
|
|
LfRfid* app = context;
|
|
widget_reset(app->widget);
|
|
}
|