2023-10-30 16:20:35 +00:00
|
|
|
#include "../infrared_app_i.h"
|
2023-08-02 03:43:36 +00:00
|
|
|
|
2024-03-11 17:35:51 +00:00
|
|
|
static int32_t infrared_scene_edit_move_task_callback(void* context) {
|
|
|
|
InfraredApp* infrared = context;
|
2024-09-06 09:52:00 +00:00
|
|
|
const InfraredErrorCode error = infrared_remote_move_signal(
|
2024-03-11 17:35:51 +00:00
|
|
|
infrared->remote,
|
|
|
|
infrared->app_state.prev_button_index,
|
|
|
|
infrared->app_state.current_button_index);
|
|
|
|
view_dispatcher_send_custom_event(
|
|
|
|
infrared->view_dispatcher, InfraredCustomEventTypeTaskFinished);
|
|
|
|
|
2024-09-06 09:52:00 +00:00
|
|
|
return error;
|
2024-03-11 17:35:51 +00:00
|
|
|
}
|
|
|
|
|
2023-10-30 16:20:35 +00:00
|
|
|
static void infrared_scene_edit_move_button_callback(
|
|
|
|
uint32_t index_old,
|
|
|
|
uint32_t index_new,
|
|
|
|
void* context) {
|
|
|
|
InfraredApp* infrared = context;
|
|
|
|
furi_assert(infrared);
|
|
|
|
|
|
|
|
infrared->app_state.prev_button_index = index_old;
|
|
|
|
infrared->app_state.current_button_index = index_new;
|
2023-08-07 09:18:46 +00:00
|
|
|
|
2023-10-30 16:20:35 +00:00
|
|
|
view_dispatcher_send_custom_event(
|
|
|
|
infrared->view_dispatcher, InfraredCustomEventTypeButtonSelected);
|
2023-08-02 03:43:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void infrared_scene_edit_move_on_enter(void* context) {
|
2023-10-30 16:20:35 +00:00
|
|
|
InfraredApp* infrared = context;
|
2023-08-02 03:43:36 +00:00
|
|
|
InfraredRemote* remote = infrared->remote;
|
|
|
|
|
2023-10-30 16:20:35 +00:00
|
|
|
for(size_t i = 0; i < infrared_remote_get_signal_count(remote); ++i) {
|
|
|
|
infrared_move_view_add_item(
|
|
|
|
infrared->move_view, infrared_remote_get_signal_name(remote, i));
|
|
|
|
}
|
|
|
|
|
|
|
|
infrared_move_view_set_callback(
|
|
|
|
infrared->move_view, infrared_scene_edit_move_button_callback, infrared);
|
2023-08-02 03:43:36 +00:00
|
|
|
|
2024-03-20 14:54:07 +00:00
|
|
|
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewMove);
|
2023-08-02 03:43:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool infrared_scene_edit_move_on_event(void* context, SceneManagerEvent event) {
|
2023-10-30 16:20:35 +00:00
|
|
|
InfraredApp* infrared = context;
|
2023-08-02 03:43:36 +00:00
|
|
|
bool consumed = false;
|
|
|
|
|
2023-10-30 16:20:35 +00:00
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
if(event.event == InfraredCustomEventTypeButtonSelected) {
|
2024-03-11 17:35:51 +00:00
|
|
|
// Move the button in a separate thread
|
|
|
|
infrared_blocking_task_start(infrared, infrared_scene_edit_move_task_callback);
|
|
|
|
|
|
|
|
} else if(event.event == InfraredCustomEventTypeTaskFinished) {
|
2024-09-06 09:52:00 +00:00
|
|
|
const InfraredErrorCode task_error = infrared_blocking_task_finalize(infrared);
|
|
|
|
|
|
|
|
if(INFRARED_ERROR_PRESENT(task_error)) {
|
|
|
|
const char* format = "Failed to move\n\"%s\"";
|
|
|
|
uint8_t signal_index = infrared->app_state.prev_button_index;
|
|
|
|
|
|
|
|
if(INFRARED_ERROR_CHECK(
|
|
|
|
task_error, InfraredErrorCodeSignalRawUnableToReadTooLongData)) {
|
|
|
|
signal_index = INFRARED_ERROR_GET_INDEX(task_error);
|
|
|
|
format = "Failed to move\n\"%s\" is too long.\nTry to edit file from pc";
|
|
|
|
}
|
|
|
|
furi_assert(format);
|
|
|
|
|
|
|
|
const char* signal_name =
|
|
|
|
infrared_remote_get_signal_name(infrared->remote, signal_index);
|
|
|
|
infrared_show_error_message(infrared, format, signal_name);
|
|
|
|
|
|
|
|
const uint32_t possible_scenes[] = {InfraredSceneRemoteList, InfraredSceneRemote};
|
|
|
|
scene_manager_search_and_switch_to_previous_scene_one_of(
|
|
|
|
infrared->scene_manager, possible_scenes, COUNT_OF(possible_scenes));
|
2024-03-20 14:54:07 +00:00
|
|
|
} else {
|
|
|
|
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewMove);
|
2023-10-30 16:20:35 +00:00
|
|
|
}
|
|
|
|
}
|
2024-03-11 17:35:51 +00:00
|
|
|
consumed = true;
|
2023-10-30 16:20:35 +00:00
|
|
|
}
|
2023-08-02 03:43:36 +00:00
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void infrared_scene_edit_move_on_exit(void* context) {
|
2023-10-30 16:20:35 +00:00
|
|
|
InfraredApp* infrared = context;
|
|
|
|
infrared_move_view_reset(infrared->move_view);
|
2023-08-02 03:43:36 +00:00
|
|
|
}
|