mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* SdCard HAL refactored (#135) - Refactor SdCard HAL - introduce Lockable * Screenshot and FatFS improvements (#136) - Fix screenshots on ESP32 - Improve Screenshot service - Convert Screenshot app to class-based instead of structs - Screenshot app now automatically updates when task is finished - Enable FatFS long filename support * Re-use common log messages (#138) For consistency and binary size reduction * Toolbar spinner should get margin to the right * More TactilityC features (#139) * Rewrote Loader - Simplified Loader by removing custom threa - Created DispatcherThread - Move auto-starting apps to Boot app - Fixed Dispatcher bug where it could get stuck not processing new messages * Hide AP settings if the AP is not saved * Missing from previous commit * Replace LV_EVENT_CLICKED with LV_EVENT_SHORT_CLICKED * Refactored files app and created InputDialog (#140) - Changed Files app so that it has a View and State - Files app now allows for long-pressing on files to perform actions - Files app now has rename and delete actions - Created InputDialog app - Improved AlertDialog app layout
109 lines
2.8 KiB
C++
109 lines
2.8 KiB
C++
#include "tt_app_manifest.h"
|
|
|
|
#include <Check.h>
|
|
#include <Log.h>
|
|
#include <app/ElfApp.h>
|
|
|
|
#define TAG "tt_app"
|
|
|
|
AppOnStart elfOnStart = nullptr;
|
|
AppOnStop elfOnStop = nullptr;
|
|
AppOnShow elfOnShow = nullptr;
|
|
AppOnHide elfOnHide = nullptr;
|
|
AppOnResult elfOnResult = nullptr;
|
|
|
|
static void onStartWrapper(tt::app::AppContext& context) {
|
|
if (elfOnStart != nullptr) {
|
|
TT_LOG_I(TAG, "onStartWrapper");
|
|
elfOnStart(&context);
|
|
} else {
|
|
TT_LOG_W(TAG, "onStartWrapper not set");
|
|
}
|
|
}
|
|
|
|
static void onStopWrapper(tt::app::AppContext& context) {
|
|
if (elfOnStop != nullptr) {
|
|
TT_LOG_I(TAG, "onStopWrapper");
|
|
elfOnStop(&context);
|
|
} else {
|
|
TT_LOG_W(TAG, "onStopWrapper not set");
|
|
}
|
|
}
|
|
|
|
static void onShowWrapper(tt::app::AppContext& context, lv_obj_t* parent) {
|
|
if (elfOnShow != nullptr) {
|
|
TT_LOG_I(TAG, "onShowWrapper");
|
|
elfOnShow(&context, parent);
|
|
} else {
|
|
TT_LOG_W(TAG, "onShowWrapper not set");
|
|
}
|
|
}
|
|
|
|
static void onHideWrapper(tt::app::AppContext& context) {
|
|
if (elfOnHide != nullptr) {
|
|
TT_LOG_I(TAG, "onHideWrapper");
|
|
elfOnHide(&context);
|
|
} else {
|
|
TT_LOG_W(TAG, "onHideWrapper not set");
|
|
}
|
|
}
|
|
|
|
static void onResultWrapper(tt::app::AppContext& context, tt::app::Result result, const tt::Bundle& resultData) {
|
|
if (elfOnResult != nullptr) {
|
|
TT_LOG_I(TAG, "onResultWrapper");
|
|
Result convertedResult = AppResultError;
|
|
switch (result) {
|
|
case tt::app::ResultOk:
|
|
convertedResult = AppResultOk;
|
|
break;
|
|
case tt::app::ResultCancelled:
|
|
convertedResult = AppResultCancelled;
|
|
break;
|
|
case tt::app::ResultError:
|
|
convertedResult = AppResultError;
|
|
break;
|
|
}
|
|
elfOnResult(&context, convertedResult, (BundleHandle)&resultData);
|
|
} else {
|
|
TT_LOG_W(TAG, "onResultWrapper not set");
|
|
}
|
|
}
|
|
|
|
tt::app::AppManifest manifest = {
|
|
.id = "ElfWrapperInTactilityC",
|
|
.name = "",
|
|
.icon = "",
|
|
.onStart = onStartWrapper,
|
|
.onStop = onStopWrapper,
|
|
.onShow = onShowWrapper,
|
|
.onHide = onHideWrapper,
|
|
.onResult = onResultWrapper
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void tt_set_app_manifest(
|
|
const char* name,
|
|
const char* _Nullable icon,
|
|
AppOnStart onStart,
|
|
AppOnStop _Nullable onStop,
|
|
AppOnShow _Nullable onShow,
|
|
AppOnHide _Nullable onHide,
|
|
AppOnResult _Nullable onResult
|
|
) {
|
|
#ifdef ESP_PLATFORM
|
|
manifest.name = name;
|
|
manifest.icon = icon ? icon : "";
|
|
elfOnStart = onStart;
|
|
elfOnStop = onStop;
|
|
elfOnShow = onShow;
|
|
elfOnHide = onHide;
|
|
elfOnResult = onResult;
|
|
tt::app::setElfAppManifest(manifest);
|
|
#else
|
|
tt_crash("TactilityC is intended for PC/Simulator");
|
|
#endif
|
|
}
|
|
|
|
}
|