2022-02-10 18:17:41 +00:00
|
|
|
#include "applications.h"
|
[FL-2183] [FL-2209] Dolphin Deeds, Level up, assets generation, refactoring (#965)
* Desktop: cleanup headers
* Get loader pubsub via record
* [FL-2183] Dolphin refactoring 2022.01
* Restruct animations assets structure
* Rename assets
* Cleanup headers
* Update Recording animation
* Add BadBattery animation
* Provide loader's pubsub via record
* Fix load/unload animations
* Scripts: add flipper format support, initial dolphin packager rework. Assets: internal and external dolphin.
* Sync internal meta.txt and manifest.txt
* Reorder, rename dolphin assets
* Split essential generated assets
* Add ReadMe for dolphin assets
* Separate essential blocking animations
* Scripts: full dolphin validation before packaging
* Assets, Scripts: dolphin external resources packer
* Github: update codeowners
* Scripts: proper slots handling in dolphin animation meta
* Scripts: correct frames enumeration and fix compiled assets.
* [FL-2209] Add Dolphin Deeds points and many more
* Remove excess frame_rate
* Change dolphin assets directory
* Scripts: add internal resource support to dolphin compiler
* Scripts: add internal assets generation, renaming
* Scripts: correct assert, renaming
* Code cleanup, documentation, fixes
* Update Levelup animations
* Rename essential -> blocking
* Fix Unlocked hint
* Scripts: rewrite Templite compiller, replace regexps with token parser, split block types into code and variable blocks. Update dolphin templates.
* Documentation: add key combos description and use information
* Scripts: cleanup templit, more debug info and add dev comment
Co-authored-by: あく <alleteam@gmail.com>
2022-01-29 09:20:41 +00:00
|
|
|
#include <furi.h>
|
2021-10-13 15:39:37 +00:00
|
|
|
#include "loader/loader.h"
|
2021-07-18 18:09:00 +00:00
|
|
|
#include "loader_i.h"
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "LoaderSrv"
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
#define LOADER_THREAD_FLAG_SHOW_MENU (1 << 0)
|
|
|
|
#define LOADER_THREAD_FLAG_ALL (LOADER_THREAD_FLAG_SHOW_MENU)
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
static Loader* loader_instance = NULL;
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
static bool
|
|
|
|
loader_start_application(const FlipperApplication* application, const char* arguments) {
|
|
|
|
loader_instance->application = application;
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
furi_assert(loader_instance->application_arguments == NULL);
|
|
|
|
if(arguments && strlen(arguments) > 0) {
|
|
|
|
loader_instance->application_arguments = strdup(arguments);
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_LOG_I(TAG, "Starting: %s", loader_instance->application->name);
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
furi_thread_set_name(loader_instance->application_thread, loader_instance->application->name);
|
|
|
|
furi_thread_set_stack_size(
|
|
|
|
loader_instance->application_thread, loader_instance->application->stack_size);
|
|
|
|
furi_thread_set_context(
|
|
|
|
loader_instance->application_thread, loader_instance->application_arguments);
|
|
|
|
furi_thread_set_callback(
|
|
|
|
loader_instance->application_thread, loader_instance->application->app);
|
|
|
|
|
|
|
|
bool result = furi_thread_start(loader_instance->application_thread);
|
|
|
|
|
|
|
|
if(!result) {
|
|
|
|
loader_instance->application = NULL;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
2022-01-02 21:39:56 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void loader_menu_callback(void* _ctx, uint32_t index) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(index);
|
2022-02-10 11:20:50 +00:00
|
|
|
const FlipperApplication* application = _ctx;
|
|
|
|
|
|
|
|
furi_assert(application->app);
|
|
|
|
furi_assert(application->name);
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
if(!loader_lock(loader_instance)) {
|
|
|
|
FURI_LOG_E(TAG, "Loader is locked");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
loader_start_application(application, NULL);
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
static void loader_submenu_callback(void* context, uint32_t index) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(index);
|
2021-09-28 13:10:13 +00:00
|
|
|
uint32_t view_id = (uint32_t)context;
|
|
|
|
view_dispatcher_switch_to_view(loader_instance->view_dispatcher, view_id);
|
|
|
|
}
|
|
|
|
|
2021-12-24 18:47:48 +00:00
|
|
|
static void loader_cli_print_usage() {
|
|
|
|
printf("Usage:\r\n");
|
|
|
|
printf("loader <cmd> <args>\r\n");
|
|
|
|
printf("Cmd list:\r\n");
|
|
|
|
printf("\tlist\t - List available applications\r\n");
|
|
|
|
printf("\topen <Application Name:string>\t - Open application by name\r\n");
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
static FlipperApplication const* loader_find_application_by_name_in_list(
|
|
|
|
const char* name,
|
|
|
|
const FlipperApplication* list,
|
|
|
|
const uint32_t n_apps) {
|
|
|
|
for(size_t i = 0; i < n_apps; i++) {
|
|
|
|
if(strcmp(name, list[i].name) == 0) {
|
|
|
|
return &list[i];
|
2021-12-24 18:47:48 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-13 20:50:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2021-12-24 18:47:48 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
const FlipperApplication* loader_find_application_by_name(const char* name) {
|
|
|
|
const FlipperApplication* application = NULL;
|
|
|
|
application = loader_find_application_by_name_in_list(name, FLIPPER_APPS, FLIPPER_APPS_COUNT);
|
|
|
|
if(!application) {
|
|
|
|
application =
|
|
|
|
loader_find_application_by_name_in_list(name, FLIPPER_PLUGINS, FLIPPER_PLUGINS_COUNT);
|
2021-12-24 18:47:48 +00:00
|
|
|
}
|
2022-04-13 20:50:25 +00:00
|
|
|
if(!application) {
|
|
|
|
application = loader_find_application_by_name_in_list(
|
|
|
|
name, FLIPPER_SETTINGS_APPS, FLIPPER_SETTINGS_APPS_COUNT);
|
2022-02-10 18:17:41 +00:00
|
|
|
}
|
2022-04-13 20:50:25 +00:00
|
|
|
if(!application) {
|
|
|
|
application = loader_find_application_by_name_in_list(
|
|
|
|
name, FLIPPER_SYSTEM_APPS, FLIPPER_SYSTEM_APPS_COUNT);
|
|
|
|
}
|
2022-04-19 08:43:58 +00:00
|
|
|
if(!application) {
|
2022-04-13 20:50:25 +00:00
|
|
|
application = loader_find_application_by_name_in_list(
|
|
|
|
name, FLIPPER_DEBUG_APPS, FLIPPER_DEBUG_APPS_COUNT);
|
2021-12-24 18:47:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return application;
|
|
|
|
}
|
|
|
|
|
|
|
|
void loader_cli_open(Cli* cli, string_t args, Loader* instance) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(cli);
|
2022-04-15 16:31:25 +00:00
|
|
|
if(loader_is_locked(instance)) {
|
|
|
|
printf("Can't start, furi application is running");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
string_t application_name;
|
|
|
|
string_init(application_name);
|
2021-12-24 18:47:48 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
do {
|
|
|
|
if(!args_read_probably_quoted_string_and_trim(args, application_name)) {
|
|
|
|
printf("No application provided\r\n");
|
|
|
|
break;
|
|
|
|
}
|
2021-12-24 18:47:48 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
const FlipperApplication* application =
|
|
|
|
loader_find_application_by_name(string_get_cstr(application_name));
|
|
|
|
if(!application) {
|
|
|
|
printf("%s doesn't exists\r\n", string_get_cstr(application_name));
|
|
|
|
break;
|
|
|
|
}
|
2021-12-24 18:47:48 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
string_strim(args);
|
|
|
|
if(!loader_start_application(application, string_get_cstr(args))) {
|
|
|
|
printf("Can't start, furi application is running");
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// We must to increment lock counter to keep balance
|
|
|
|
// TODO: rewrite whole thing, it's complex as hell
|
|
|
|
FURI_CRITICAL_ENTER();
|
|
|
|
instance->lock_count++;
|
|
|
|
FURI_CRITICAL_EXIT();
|
|
|
|
}
|
|
|
|
} while(false);
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
string_clear(application_name);
|
2021-12-24 18:47:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loader_cli_list(Cli* cli, string_t args, Loader* instance) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(cli);
|
|
|
|
UNUSED(args);
|
|
|
|
UNUSED(instance);
|
2021-12-24 18:47:48 +00:00
|
|
|
printf("Applications:\r\n");
|
|
|
|
for(size_t i = 0; i < FLIPPER_APPS_COUNT; i++) {
|
|
|
|
printf("\t%s\r\n", FLIPPER_APPS[i].name);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Plugins:\r\n");
|
|
|
|
for(size_t i = 0; i < FLIPPER_PLUGINS_COUNT; i++) {
|
|
|
|
printf("\t%s\r\n", FLIPPER_PLUGINS[i].name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) {
|
|
|
|
printf("Debug:\r\n");
|
|
|
|
for(size_t i = 0; i < FLIPPER_DEBUG_APPS_COUNT; i++) {
|
|
|
|
printf("\t%s\r\n", FLIPPER_DEBUG_APPS[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
static void loader_cli(Cli* cli, string_t args, void* _ctx) {
|
2021-12-24 18:47:48 +00:00
|
|
|
furi_assert(_ctx);
|
|
|
|
Loader* instance = _ctx;
|
|
|
|
|
|
|
|
string_t cmd;
|
|
|
|
string_init(cmd);
|
|
|
|
|
|
|
|
do {
|
|
|
|
if(!args_read_string_and_trim(args, cmd)) {
|
|
|
|
loader_cli_print_usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(string_cmp_str(cmd, "list") == 0) {
|
|
|
|
loader_cli_list(cli, args, instance);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(string_cmp_str(cmd, "open") == 0) {
|
|
|
|
loader_cli_open(cli, args, instance);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
loader_cli_print_usage();
|
|
|
|
} while(false);
|
|
|
|
|
|
|
|
string_clear(cmd);
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 15:39:37 +00:00
|
|
|
LoaderStatus loader_start(Loader* instance, const char* name, const char* args) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(instance);
|
2021-07-18 18:09:00 +00:00
|
|
|
furi_assert(name);
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
const FlipperApplication* application = loader_find_application_by_name(name);
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
if(!application) {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_E(TAG, "Can't find application with name %s", name);
|
2021-10-13 15:39:37 +00:00
|
|
|
return LoaderStatusErrorUnknownApp;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
if(!loader_lock(loader_instance)) {
|
|
|
|
FURI_LOG_E(TAG, "Loader is locked");
|
2021-10-13 15:39:37 +00:00
|
|
|
return LoaderStatusErrorAppStarted;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
if(!loader_start_application(application, args)) {
|
|
|
|
return LoaderStatusErrorInternal;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
return LoaderStatusOk;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool loader_lock(Loader* instance) {
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_CRITICAL_ENTER();
|
|
|
|
bool result = false;
|
|
|
|
if(instance->lock_count == 0) {
|
|
|
|
instance->lock_count++;
|
|
|
|
result = true;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_CRITICAL_EXIT();
|
|
|
|
return result;
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loader_unlock(Loader* instance) {
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_CRITICAL_ENTER();
|
|
|
|
if(instance->lock_count > 0) instance->lock_count--;
|
|
|
|
FURI_CRITICAL_EXIT();
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 15:39:37 +00:00
|
|
|
bool loader_is_locked(Loader* instance) {
|
2022-02-10 11:20:50 +00:00
|
|
|
return instance->lock_count > 0;
|
2021-10-13 15:39:37 +00:00
|
|
|
}
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
static void loader_thread_state_callback(FuriThreadState thread_state, void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
|
|
|
|
Loader* instance = context;
|
2022-01-02 21:39:56 +00:00
|
|
|
LoaderEvent event;
|
2021-07-18 18:09:00 +00:00
|
|
|
|
|
|
|
if(thread_state == FuriThreadStateRunning) {
|
2022-01-02 21:39:56 +00:00
|
|
|
event.type = LoaderEventTypeApplicationStarted;
|
|
|
|
furi_pubsub_publish(loader_instance->pubsub, &event);
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
|
|
|
if(!loader_instance->application->flags & FlipperApplicationFlagInsomniaSafe) {
|
|
|
|
furi_hal_power_insomnia_enter();
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
} else if(thread_state == FuriThreadStateStopped) {
|
|
|
|
FURI_LOG_I(
|
2021-11-12 13:04:35 +00:00
|
|
|
TAG,
|
2022-04-21 15:36:53 +00:00
|
|
|
"Application thread stopped. Free heap: %d. Thread allocation balance: %d.",
|
|
|
|
memmgr_get_free_heap(),
|
2022-02-10 11:20:50 +00:00
|
|
|
furi_thread_get_heap_size(instance->application_thread));
|
|
|
|
|
|
|
|
if(loader_instance->application_arguments) {
|
|
|
|
free(loader_instance->application_arguments);
|
|
|
|
loader_instance->application_arguments = NULL;
|
|
|
|
}
|
|
|
|
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
if(!loader_instance->application->flags & FlipperApplicationFlagInsomniaSafe) {
|
|
|
|
furi_hal_power_insomnia_exit();
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
loader_unlock(instance);
|
2022-01-11 17:45:49 +00:00
|
|
|
|
2022-01-02 21:39:56 +00:00
|
|
|
event.type = LoaderEventTypeApplicationStopped;
|
|
|
|
furi_pubsub_publish(loader_instance->pubsub, &event);
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
static uint32_t loader_hide_menu(void* context) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(context);
|
2021-09-28 13:10:13 +00:00
|
|
|
return VIEW_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t loader_back_to_primary_menu(void* context) {
|
2021-11-24 14:05:23 +00:00
|
|
|
furi_assert(context);
|
|
|
|
Submenu* submenu = context;
|
|
|
|
submenu_set_selected_item(submenu, 0);
|
2021-09-28 13:10:13 +00:00
|
|
|
return LoaderMenuViewPrimary;
|
|
|
|
}
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
static Loader* loader_alloc() {
|
2022-02-18 19:53:46 +00:00
|
|
|
Loader* instance = malloc(sizeof(Loader));
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
instance->application_thread = furi_thread_alloc();
|
|
|
|
furi_thread_enable_heap_trace(instance->application_thread);
|
|
|
|
furi_thread_set_state_context(instance->application_thread, instance);
|
|
|
|
furi_thread_set_state_callback(instance->application_thread, loader_thread_state_callback);
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-01-02 21:39:56 +00:00
|
|
|
instance->pubsub = furi_pubsub_alloc();
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-12-24 18:47:48 +00:00
|
|
|
#ifdef SRV_CLI
|
2021-07-18 18:09:00 +00:00
|
|
|
instance->cli = furi_record_open("cli");
|
2022-04-15 16:31:25 +00:00
|
|
|
cli_add_command(instance->cli, "loader", CliCommandFlagParallelSafe, loader_cli, instance);
|
2022-04-13 20:50:25 +00:00
|
|
|
#else
|
|
|
|
UNUSED(loader_cli);
|
2021-12-24 18:47:48 +00:00
|
|
|
#endif
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
instance->loader_thread = osThreadGetId();
|
|
|
|
|
|
|
|
// Gui
|
|
|
|
instance->gui = furi_record_open("gui");
|
|
|
|
instance->view_dispatcher = view_dispatcher_alloc();
|
|
|
|
view_dispatcher_attach_to_gui(
|
|
|
|
instance->view_dispatcher, instance->gui, ViewDispatcherTypeFullscreen);
|
|
|
|
// Primary menu
|
|
|
|
instance->primary_menu = menu_alloc();
|
|
|
|
view_set_previous_callback(menu_get_view(instance->primary_menu), loader_hide_menu);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher, LoaderMenuViewPrimary, menu_get_view(instance->primary_menu));
|
|
|
|
// Plugins menu
|
|
|
|
instance->plugins_menu = submenu_alloc();
|
2021-11-24 14:05:23 +00:00
|
|
|
view_set_context(submenu_get_view(instance->plugins_menu), instance->plugins_menu);
|
2021-09-28 13:10:13 +00:00
|
|
|
view_set_previous_callback(
|
|
|
|
submenu_get_view(instance->plugins_menu), loader_back_to_primary_menu);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher,
|
|
|
|
LoaderMenuViewPlugins,
|
|
|
|
submenu_get_view(instance->plugins_menu));
|
|
|
|
// Debug menu
|
|
|
|
instance->debug_menu = submenu_alloc();
|
2021-11-24 14:05:23 +00:00
|
|
|
view_set_context(submenu_get_view(instance->debug_menu), instance->debug_menu);
|
2021-09-28 13:10:13 +00:00
|
|
|
view_set_previous_callback(
|
|
|
|
submenu_get_view(instance->debug_menu), loader_back_to_primary_menu);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher, LoaderMenuViewDebug, submenu_get_view(instance->debug_menu));
|
|
|
|
// Settings menu
|
|
|
|
instance->settings_menu = submenu_alloc();
|
2021-11-24 14:05:23 +00:00
|
|
|
view_set_context(submenu_get_view(instance->settings_menu), instance->settings_menu);
|
2021-09-28 13:10:13 +00:00
|
|
|
view_set_previous_callback(
|
|
|
|
submenu_get_view(instance->settings_menu), loader_back_to_primary_menu);
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher,
|
|
|
|
LoaderMenuViewSettings,
|
|
|
|
submenu_get_view(instance->settings_menu));
|
|
|
|
|
|
|
|
view_dispatcher_enable_queue(instance->view_dispatcher);
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void loader_free(Loader* instance) {
|
|
|
|
furi_assert(instance);
|
|
|
|
|
2021-12-24 18:47:48 +00:00
|
|
|
if(instance->cli) {
|
|
|
|
furi_record_close("cli");
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-01-02 21:39:56 +00:00
|
|
|
furi_pubsub_free(instance->pubsub);
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
furi_thread_free(instance->application_thread);
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
menu_free(loader_instance->primary_menu);
|
|
|
|
view_dispatcher_remove_view(loader_instance->view_dispatcher, LoaderMenuViewPrimary);
|
|
|
|
submenu_free(loader_instance->plugins_menu);
|
|
|
|
view_dispatcher_remove_view(loader_instance->view_dispatcher, LoaderMenuViewPlugins);
|
|
|
|
submenu_free(loader_instance->debug_menu);
|
|
|
|
view_dispatcher_remove_view(loader_instance->view_dispatcher, LoaderMenuViewDebug);
|
|
|
|
submenu_free(loader_instance->settings_menu);
|
|
|
|
view_dispatcher_remove_view(loader_instance->view_dispatcher, LoaderMenuViewSettings);
|
|
|
|
view_dispatcher_free(loader_instance->view_dispatcher);
|
|
|
|
|
|
|
|
furi_record_close("gui");
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
free(instance);
|
2021-09-28 13:10:13 +00:00
|
|
|
instance = NULL;
|
|
|
|
}
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
static void loader_build_menu() {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Building main menu");
|
2021-09-28 13:10:13 +00:00
|
|
|
size_t i;
|
|
|
|
for(i = 0; i < FLIPPER_APPS_COUNT; i++) {
|
|
|
|
menu_add_item(
|
|
|
|
loader_instance->primary_menu,
|
|
|
|
FLIPPER_APPS[i].name,
|
2021-12-15 12:23:16 +00:00
|
|
|
FLIPPER_APPS[i].icon,
|
2021-09-28 13:10:13 +00:00
|
|
|
i,
|
|
|
|
loader_menu_callback,
|
|
|
|
(void*)&FLIPPER_APPS[i]);
|
|
|
|
}
|
2021-12-24 18:47:48 +00:00
|
|
|
if(FLIPPER_PLUGINS_COUNT != 0) {
|
|
|
|
menu_add_item(
|
|
|
|
loader_instance->primary_menu,
|
|
|
|
"Plugins",
|
|
|
|
&A_Plugins_14,
|
|
|
|
i++,
|
|
|
|
loader_submenu_callback,
|
|
|
|
(void*)LoaderMenuViewPlugins);
|
|
|
|
}
|
2021-12-15 12:23:16 +00:00
|
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) {
|
|
|
|
menu_add_item(
|
|
|
|
loader_instance->primary_menu,
|
2022-04-11 11:54:38 +00:00
|
|
|
"Debug Tools",
|
2021-12-15 12:23:16 +00:00
|
|
|
&A_Debug_14,
|
|
|
|
i++,
|
|
|
|
loader_submenu_callback,
|
|
|
|
(void*)LoaderMenuViewDebug);
|
|
|
|
}
|
2021-09-28 13:10:13 +00:00
|
|
|
menu_add_item(
|
|
|
|
loader_instance->primary_menu,
|
|
|
|
"Settings",
|
2021-12-15 12:23:16 +00:00
|
|
|
&A_Settings_14,
|
2021-09-28 13:10:13 +00:00
|
|
|
i++,
|
|
|
|
loader_submenu_callback,
|
|
|
|
(void*)LoaderMenuViewSettings);
|
2021-12-15 12:23:16 +00:00
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-12-15 12:23:16 +00:00
|
|
|
static void loader_build_submenu() {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Building plugins menu");
|
2021-12-15 12:23:16 +00:00
|
|
|
size_t i;
|
2021-09-28 13:10:13 +00:00
|
|
|
for(i = 0; i < FLIPPER_PLUGINS_COUNT; i++) {
|
|
|
|
submenu_add_item(
|
|
|
|
loader_instance->plugins_menu,
|
|
|
|
FLIPPER_PLUGINS[i].name,
|
|
|
|
i,
|
|
|
|
loader_menu_callback,
|
|
|
|
(void*)&FLIPPER_PLUGINS[i]);
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Building debug menu");
|
2021-09-28 13:10:13 +00:00
|
|
|
for(i = 0; i < FLIPPER_DEBUG_APPS_COUNT; i++) {
|
|
|
|
submenu_add_item(
|
|
|
|
loader_instance->debug_menu,
|
|
|
|
FLIPPER_DEBUG_APPS[i].name,
|
|
|
|
i,
|
|
|
|
loader_menu_callback,
|
|
|
|
(void*)&FLIPPER_DEBUG_APPS[i]);
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Building settings menu");
|
2021-09-28 13:10:13 +00:00
|
|
|
for(i = 0; i < FLIPPER_SETTINGS_APPS_COUNT; i++) {
|
|
|
|
submenu_add_item(
|
|
|
|
loader_instance->settings_menu,
|
|
|
|
FLIPPER_SETTINGS_APPS[i].name,
|
|
|
|
i,
|
|
|
|
loader_menu_callback,
|
|
|
|
(void*)&FLIPPER_SETTINGS_APPS[i]);
|
|
|
|
}
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
void loader_show_menu() {
|
|
|
|
furi_assert(loader_instance);
|
|
|
|
osThreadFlagsSet(loader_instance->loader_thread, LOADER_THREAD_FLAG_SHOW_MENU);
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
2021-12-15 12:23:16 +00:00
|
|
|
void loader_update_menu() {
|
2022-01-21 17:32:03 +00:00
|
|
|
menu_reset(loader_instance->primary_menu);
|
2021-12-15 12:23:16 +00:00
|
|
|
loader_build_menu();
|
|
|
|
}
|
|
|
|
|
2021-08-07 16:54:42 +00:00
|
|
|
int32_t loader_srv(void* p) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(p);
|
2022-04-18 23:09:11 +00:00
|
|
|
FURI_LOG_I(TAG, "Executing system start hooks");
|
|
|
|
for(size_t i = 0; i < FLIPPER_ON_SYSTEM_START_COUNT; i++) {
|
|
|
|
FLIPPER_ON_SYSTEM_START[i]();
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2022-04-18 23:09:11 +00:00
|
|
|
FURI_LOG_I(TAG, "Starting");
|
2021-07-18 18:09:00 +00:00
|
|
|
loader_instance = loader_alloc();
|
|
|
|
|
|
|
|
loader_build_menu();
|
2021-12-15 12:23:16 +00:00
|
|
|
loader_build_submenu();
|
2021-07-18 18:09:00 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Started");
|
2021-07-18 18:09:00 +00:00
|
|
|
|
|
|
|
furi_record_create("loader", loader_instance);
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
#ifdef LOADER_AUTOSTART
|
|
|
|
loader_start(loader_instance, LOADER_AUTOSTART, NULL);
|
|
|
|
#endif
|
|
|
|
|
2021-07-18 18:09:00 +00:00
|
|
|
while(1) {
|
2021-09-28 13:10:13 +00:00
|
|
|
uint32_t flags = osThreadFlagsWait(LOADER_THREAD_FLAG_ALL, osFlagsWaitAny, osWaitForever);
|
|
|
|
if(flags & LOADER_THREAD_FLAG_SHOW_MENU) {
|
2021-09-29 04:18:28 +00:00
|
|
|
menu_set_selected_item(loader_instance->primary_menu, 0);
|
2021-09-28 13:10:13 +00:00
|
|
|
view_dispatcher_switch_to_view(
|
|
|
|
loader_instance->view_dispatcher, LoaderMenuViewPrimary);
|
|
|
|
view_dispatcher_run(loader_instance->view_dispatcher);
|
|
|
|
}
|
2021-07-18 18:09:00 +00:00
|
|
|
}
|
|
|
|
|
[FL-2183] [FL-2209] Dolphin Deeds, Level up, assets generation, refactoring (#965)
* Desktop: cleanup headers
* Get loader pubsub via record
* [FL-2183] Dolphin refactoring 2022.01
* Restruct animations assets structure
* Rename assets
* Cleanup headers
* Update Recording animation
* Add BadBattery animation
* Provide loader's pubsub via record
* Fix load/unload animations
* Scripts: add flipper format support, initial dolphin packager rework. Assets: internal and external dolphin.
* Sync internal meta.txt and manifest.txt
* Reorder, rename dolphin assets
* Split essential generated assets
* Add ReadMe for dolphin assets
* Separate essential blocking animations
* Scripts: full dolphin validation before packaging
* Assets, Scripts: dolphin external resources packer
* Github: update codeowners
* Scripts: proper slots handling in dolphin animation meta
* Scripts: correct frames enumeration and fix compiled assets.
* [FL-2209] Add Dolphin Deeds points and many more
* Remove excess frame_rate
* Change dolphin assets directory
* Scripts: add internal resource support to dolphin compiler
* Scripts: add internal assets generation, renaming
* Scripts: correct assert, renaming
* Code cleanup, documentation, fixes
* Update Levelup animations
* Rename essential -> blocking
* Fix Unlocked hint
* Scripts: rewrite Templite compiller, replace regexps with token parser, split block types into code and variable blocks. Update dolphin templates.
* Documentation: add key combos description and use information
* Scripts: cleanup templit, more debug info and add dev comment
Co-authored-by: あく <alleteam@gmail.com>
2022-01-29 09:20:41 +00:00
|
|
|
furi_record_destroy("loader");
|
2021-07-18 18:09:00 +00:00
|
|
|
loader_free(loader_instance);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2022-01-02 21:39:56 +00:00
|
|
|
|
[FL-2183] [FL-2209] Dolphin Deeds, Level up, assets generation, refactoring (#965)
* Desktop: cleanup headers
* Get loader pubsub via record
* [FL-2183] Dolphin refactoring 2022.01
* Restruct animations assets structure
* Rename assets
* Cleanup headers
* Update Recording animation
* Add BadBattery animation
* Provide loader's pubsub via record
* Fix load/unload animations
* Scripts: add flipper format support, initial dolphin packager rework. Assets: internal and external dolphin.
* Sync internal meta.txt and manifest.txt
* Reorder, rename dolphin assets
* Split essential generated assets
* Add ReadMe for dolphin assets
* Separate essential blocking animations
* Scripts: full dolphin validation before packaging
* Assets, Scripts: dolphin external resources packer
* Github: update codeowners
* Scripts: proper slots handling in dolphin animation meta
* Scripts: correct frames enumeration and fix compiled assets.
* [FL-2209] Add Dolphin Deeds points and many more
* Remove excess frame_rate
* Change dolphin assets directory
* Scripts: add internal resource support to dolphin compiler
* Scripts: add internal assets generation, renaming
* Scripts: correct assert, renaming
* Code cleanup, documentation, fixes
* Update Levelup animations
* Rename essential -> blocking
* Fix Unlocked hint
* Scripts: rewrite Templite compiller, replace regexps with token parser, split block types into code and variable blocks. Update dolphin templates.
* Documentation: add key combos description and use information
* Scripts: cleanup templit, more debug info and add dev comment
Co-authored-by: あく <alleteam@gmail.com>
2022-01-29 09:20:41 +00:00
|
|
|
FuriPubSub* loader_get_pubsub(Loader* instance) {
|
|
|
|
return instance->pubsub;
|
2022-04-15 16:31:25 +00:00
|
|
|
}
|