mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-22 04:41:36 +03:00
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
#include "../nfc_maker.h"
|
|
|
|
enum TextInputResult {
|
|
TextInputResultOk,
|
|
};
|
|
|
|
static void nfc_maker_scene_name_text_input_callback(void* context) {
|
|
NfcMaker* app = context;
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, TextInputResultOk);
|
|
}
|
|
|
|
void nfc_maker_scene_name_on_enter(void* context) {
|
|
NfcMaker* app = context;
|
|
TextInput* text_input = app->text_input;
|
|
|
|
text_input_set_header_text(text_input, "Name the NFC tag:");
|
|
|
|
set_random_name(app->name_buf, TEXT_INPUT_LEN);
|
|
|
|
text_input_set_result_callback(
|
|
text_input,
|
|
nfc_maker_scene_name_text_input_callback,
|
|
app,
|
|
app->name_buf,
|
|
TEXT_INPUT_LEN,
|
|
true);
|
|
|
|
ValidatorIsFile* validator_is_file =
|
|
validator_is_file_alloc_init(NFC_APP_FOLDER, NFC_APP_EXTENSION, NULL);
|
|
text_input_set_validator(text_input, validator_is_file_callback, validator_is_file);
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, NfcMakerViewTextInput);
|
|
}
|
|
|
|
bool nfc_maker_scene_name_on_event(void* context, SceneManagerEvent event) {
|
|
NfcMaker* app = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
consumed = true;
|
|
switch(event.event) {
|
|
case TextInputResultOk:
|
|
scene_manager_next_scene(app->scene_manager, NfcMakerSceneResult);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void nfc_maker_scene_name_on_exit(void* context) {
|
|
NfcMaker* app = context;
|
|
text_input_reset(app->text_input);
|
|
}
|