2022-07-04 13:09:46 +00:00
|
|
|
#include "lfrfid_app_scene_rpc.h"
|
2022-07-20 10:56:33 +00:00
|
|
|
#include <core/common_defines.h>
|
2022-07-04 13:09:46 +00:00
|
|
|
#include <dolphin/dolphin.h>
|
2022-08-02 12:54:12 +00:00
|
|
|
#include <rpc/rpc_app.h>
|
2022-07-04 13:09:46 +00:00
|
|
|
|
|
|
|
void LfRfidAppSceneRpc::on_enter(LfRfidApp* app, bool /* need_restore */) {
|
|
|
|
auto popup = app->view_controller.get<PopupVM>();
|
|
|
|
|
2022-08-11 15:37:23 +00:00
|
|
|
popup->set_header("LF RFID", 89, 42, AlignCenter, AlignBottom);
|
|
|
|
popup->set_text("RPC mode", 89, 44, AlignCenter, AlignTop);
|
|
|
|
popup->set_icon(0, 12, &I_RFIDDolphinSend_97x61);
|
2022-07-04 13:09:46 +00:00
|
|
|
|
|
|
|
app->view_controller.switch_to<PopupVM>();
|
|
|
|
|
|
|
|
notification_message(app->notification, &sequence_display_backlight_on);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidAppSceneRpc::on_event(LfRfidApp* app, LfRfidApp::Event* event) {
|
|
|
|
UNUSED(app);
|
|
|
|
UNUSED(event);
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event->type == LfRfidApp::EventType::Exit) {
|
|
|
|
consumed = true;
|
|
|
|
LfRfidApp::Event view_event;
|
|
|
|
view_event.type = LfRfidApp::EventType::Back;
|
|
|
|
app->view_controller.send_event(&view_event);
|
2022-08-02 12:54:12 +00:00
|
|
|
rpc_system_app_confirm(app->rpc_ctx, RpcAppEventAppExit, true);
|
|
|
|
} else if(event->type == LfRfidApp::EventType::RpcSessionClose) {
|
|
|
|
consumed = true;
|
|
|
|
LfRfidApp::Event view_event;
|
|
|
|
view_event.type = LfRfidApp::EventType::Back;
|
|
|
|
app->view_controller.send_event(&view_event);
|
|
|
|
} else if(event->type == LfRfidApp::EventType::RpcLoadFile) {
|
|
|
|
const char* arg = rpc_system_app_get_data(app->rpc_ctx);
|
2022-08-11 15:37:23 +00:00
|
|
|
consumed = true;
|
2022-08-02 12:54:12 +00:00
|
|
|
bool result = false;
|
2022-08-11 15:37:23 +00:00
|
|
|
if(arg && !emulating) {
|
2022-08-02 12:54:12 +00:00
|
|
|
string_set_str(app->file_path, arg);
|
|
|
|
if(app->load_key_data(app->file_path, &(app->worker.key), false)) {
|
|
|
|
app->worker.start_emulate();
|
2022-08-11 15:37:23 +00:00
|
|
|
emulating = true;
|
|
|
|
|
|
|
|
auto popup = app->view_controller.get<PopupVM>();
|
|
|
|
app->text_store.set("emulating\n%s", app->worker.key.get_name());
|
|
|
|
popup->set_text(app->text_store.text, 89, 44, AlignCenter, AlignTop);
|
|
|
|
|
|
|
|
notification_message(app->notification, &sequence_blink_start_magenta);
|
2022-08-02 12:54:12 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rpc_system_app_confirm(app->rpc_ctx, RpcAppEventLoadFile, result);
|
2022-07-04 13:09:46 +00:00
|
|
|
}
|
2022-08-02 12:54:12 +00:00
|
|
|
|
2022-07-04 13:09:46 +00:00
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LfRfidAppSceneRpc::on_exit(LfRfidApp* app) {
|
|
|
|
if(emulating) {
|
|
|
|
app->worker.stop_emulate();
|
2022-07-25 14:16:45 +00:00
|
|
|
notification_message(app->notification, &sequence_blink_stop);
|
2022-07-04 13:09:46 +00:00
|
|
|
}
|
|
|
|
app->view_controller.get<PopupVM>()->clean();
|
|
|
|
}
|