Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Emulate scene UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyweiss committed Jan 26, 2023
1 parent ee15eb7 commit c489477
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion helpers/mag_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define MAG_VERSION_APP "0.01"
#define MAG_DEVELOPER "Zachary Weiss"
#define MAG_GITHUB "https://github.com/zacharyweiss/magspoof_flipper"
#define MAG_GITHUB "github.com/zacharyweiss/magspoof_flipper"

typedef enum {
MagViewSubmenu,
Expand Down
40 changes: 24 additions & 16 deletions scenes/mag_scene_emulate.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,30 @@ void mag_scene_emulate_on_enter(void* context) {
// Use strlcpy instead perhaps, to truncate to screen width, then add ellipses if needed?
furi_string_printf(tmp_str, "%s\r\n", mag->mag_dev->dev_name);

// TODO: Display other relevant config settings (namely RFID vs GPIO)?

widget_add_icon_element(widget, 1, 1, &I_mag_10px);
widget_add_string_element(
widget, 13, 2, AlignLeft, AlignTop, FontPrimary, furi_string_get_cstr(tmp_str));
furi_string_reset(tmp_str);

furi_string_printf(tmp_str, furi_string_get_cstr(mag->mag_dev->dev_data.track[1].str));
widget_add_string_multiline_element(
widget, 0, 15, AlignLeft, AlignTop, FontSecondary, furi_string_get_cstr(tmp_str));
for(uint8_t i = 0; i < MAG_DEV_TRACKS; i++) {
FuriString* trackstr = mag->mag_dev->dev_data.track[i].str;
// there's definitely a better way to do this...
bool is_active_one = (mag->setting->track == MagTrackStateOne) & (i == 0);
bool is_active_two = (mag->setting->track == MagTrackStateTwo) & (i == 1);
bool is_active_both = (mag->setting->track == MagTrackStateAll);

if(is_active_one | is_active_two | is_active_both) {
furi_string_cat_printf(
tmp_str,
"Track %d:\n%s\n\n",
(i + 1),
furi_string_empty(trackstr) ? "< empty >" : furi_string_get_cstr(trackstr));
}
}

widget_add_text_scroll_element(widget, 0, 15, 128, 49, furi_string_get_cstr(tmp_str));

widget_add_button_element(widget, GuiButtonTypeLeft, "Config", mag_widget_callback, mag);
widget_add_button_element(widget, GuiButtonTypeRight, "Send", mag_widget_callback, mag);
Expand All @@ -33,25 +49,17 @@ bool mag_scene_emulate_on_event(void* context, SceneManagerEvent event) {
bool consumed = false;

if(event.type == SceneManagerEventTypeCustom) {
if(event.event == GuiButtonTypeLeft) {
switch(event.event) {
case GuiButtonTypeLeft:
consumed = true;

scene_manager_next_scene(scene_manager, MagSceneEmulateConfig);
} else if(event.event == GuiButtonTypeRight) {
break;
case GuiButtonTypeRight:
consumed = true;

//FuriString* tmp_str;
//tmp_str = furi_string_alloc_set_str(
// furi_string_get_cstr(mag->mag_dev->dev_data.track[1].str));

// Assumes track 2 for temporary testing.
// Will overhaul alongside file format and config system
notification_message(mag->notifications, &sequence_blink_start_cyan);
mag_spoof(mag);
//mag_spoof_single_track_rfid(tmp_str, 1);
notification_message(mag->notifications, &sequence_blink_stop);

//furi_string_free(tmp_str);
break;
}
}

Expand Down
2 changes: 1 addition & 1 deletion scenes/mag_scene_saved_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void mag_scene_saved_info_on_enter(void* context) {

widget_add_text_scroll_element(widget, 0, 15, 128, 49, furi_string_get_cstr(tmp_str));

// widget_add_button_element(widget, GuiButtonTypeLeft, "Back", mag_widget_callback, mag);
//widget_add_button_element(widget, GuiButtonTypeLeft, "Back", mag_widget_callback, mag);

view_dispatcher_switch_to_view(mag->view_dispatcher, MagViewWidget);
furi_string_free(tmp_str);
Expand Down

0 comments on commit c489477

Please sign in to comment.