2021-01-08 04:42:48 +00:00
|
|
|
#include "view_i.h"
|
|
|
|
|
|
|
|
View* view_alloc() {
|
2022-02-18 19:53:46 +00:00
|
|
|
View* view = malloc(sizeof(View));
|
2021-05-19 09:43:15 +00:00
|
|
|
view->orientation = ViewOrientationHorizontal;
|
2021-01-08 04:42:48 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_free(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
view_free_model(view);
|
|
|
|
free(view);
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:00:56 +00:00
|
|
|
void view_tie_icon_animation(View* view, IconAnimation* icon_animation) {
|
|
|
|
furi_assert(view);
|
|
|
|
icon_animation_set_update_callback(icon_animation, view_icon_animation_callback, view);
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
void view_set_draw_callback(View* view, ViewDrawCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
furi_assert(view->draw_callback == NULL);
|
|
|
|
view->draw_callback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_set_input_callback(View* view, ViewInputCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
furi_assert(view->input_callback == NULL);
|
|
|
|
view->input_callback = callback;
|
|
|
|
}
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
void view_set_custom_callback(View* view, ViewCustomCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
furi_assert(callback);
|
|
|
|
view->custom_callback = callback;
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
void view_set_previous_callback(View* view, ViewNavigationCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->previous_callback = callback;
|
|
|
|
}
|
|
|
|
|
2021-02-04 12:05:46 +00:00
|
|
|
void view_set_enter_callback(View* view, ViewCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->enter_callback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_set_exit_callback(View* view, ViewCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->exit_callback = callback;
|
|
|
|
}
|
|
|
|
|
2021-04-01 12:03:02 +00:00
|
|
|
void view_set_update_callback(View* view, ViewUpdateCallback callback) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->update_callback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_set_update_callback_context(View* view, void* context) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->update_callback_context = context;
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
void view_set_context(View* view, void* context) {
|
|
|
|
furi_assert(view);
|
|
|
|
furi_assert(context);
|
|
|
|
view->context = context;
|
|
|
|
}
|
|
|
|
|
2021-05-19 09:43:15 +00:00
|
|
|
void view_set_orientation(View* view, ViewOrientation orientation) {
|
|
|
|
furi_assert(view);
|
|
|
|
view->orientation = orientation;
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
void view_allocate_model(View* view, ViewModelType type, size_t size) {
|
|
|
|
furi_assert(view);
|
|
|
|
furi_assert(size > 0);
|
|
|
|
furi_assert(view->model_type == ViewModelTypeNone);
|
|
|
|
furi_assert(view->model == NULL);
|
|
|
|
view->model_type = type;
|
|
|
|
if(view->model_type == ViewModelTypeLockFree) {
|
2022-02-18 19:53:46 +00:00
|
|
|
view->model = malloc(size);
|
2021-01-08 04:42:48 +00:00
|
|
|
} else if(view->model_type == ViewModelTypeLocking) {
|
2022-02-18 19:53:46 +00:00
|
|
|
ViewModelLocking* model = malloc(sizeof(ViewModelLocking));
|
2022-07-20 10:56:33 +00:00
|
|
|
model->mutex = furi_mutex_alloc(FuriMutexTypeNormal);
|
2021-01-08 04:42:48 +00:00
|
|
|
furi_check(model->mutex);
|
2022-02-18 19:53:46 +00:00
|
|
|
model->data = malloc(size);
|
2021-01-08 04:42:48 +00:00
|
|
|
view->model = model;
|
|
|
|
} else {
|
2022-12-26 12:13:30 +00:00
|
|
|
furi_crash(NULL);
|
2021-01-08 04:42:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_free_model(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->model_type == ViewModelTypeNone) {
|
|
|
|
return;
|
|
|
|
} else if(view->model_type == ViewModelTypeLockFree) {
|
|
|
|
free(view->model);
|
|
|
|
} else if(view->model_type == ViewModelTypeLocking) {
|
|
|
|
ViewModelLocking* model = view->model;
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_mutex_free(model->mutex);
|
2021-01-08 04:42:48 +00:00
|
|
|
free(model->data);
|
|
|
|
free(model);
|
|
|
|
view->model = NULL;
|
|
|
|
} else {
|
2022-12-26 12:13:30 +00:00
|
|
|
furi_crash(NULL);
|
2021-01-08 04:42:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* view_get_model(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->model_type == ViewModelTypeLocking) {
|
|
|
|
ViewModelLocking* model = (ViewModelLocking*)(view->model);
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_check(furi_mutex_acquire(model->mutex, FuriWaitForever) == FuriStatusOk);
|
2021-01-08 04:42:48 +00:00
|
|
|
return model->data;
|
|
|
|
}
|
|
|
|
return view->model;
|
|
|
|
}
|
|
|
|
|
2021-02-10 09:06:29 +00:00
|
|
|
void view_commit_model(View* view, bool update) {
|
2021-01-11 12:20:29 +00:00
|
|
|
furi_assert(view);
|
|
|
|
view_unlock_model(view);
|
2021-04-01 12:03:02 +00:00
|
|
|
if(update && view->update_callback) {
|
|
|
|
view->update_callback(view, view->update_callback_context);
|
2021-01-11 12:20:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-02 17:00:56 +00:00
|
|
|
void view_icon_animation_callback(IconAnimation* instance, void* context) {
|
2022-05-06 13:37:10 +00:00
|
|
|
UNUSED(instance);
|
2021-10-02 17:00:56 +00:00
|
|
|
furi_assert(context);
|
|
|
|
View* view = context;
|
|
|
|
if(view->update_callback) {
|
|
|
|
view->update_callback(view, view->update_callback_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 12:20:29 +00:00
|
|
|
void view_unlock_model(View* view) {
|
2021-01-08 04:42:48 +00:00
|
|
|
furi_assert(view);
|
|
|
|
if(view->model_type == ViewModelTypeLocking) {
|
|
|
|
ViewModelLocking* model = (ViewModelLocking*)(view->model);
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_check(furi_mutex_release(model->mutex) == FuriStatusOk);
|
2021-01-08 04:42:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_draw(View* view, Canvas* canvas) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->draw_callback) {
|
|
|
|
void* data = view_get_model(view);
|
|
|
|
view->draw_callback(canvas, data);
|
2021-01-11 12:20:29 +00:00
|
|
|
view_unlock_model(view);
|
2021-01-08 04:42:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool view_input(View* view, InputEvent* event) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->input_callback) {
|
|
|
|
return view->input_callback(event, view->context);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-30 17:43:29 +00:00
|
|
|
bool view_custom(View* view, uint32_t event) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->custom_callback) {
|
|
|
|
return view->custom_callback(event, view->context);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
uint32_t view_previous(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->previous_callback) {
|
|
|
|
return view->previous_callback(view->context);
|
|
|
|
} else {
|
|
|
|
return VIEW_IGNORE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 12:05:46 +00:00
|
|
|
void view_enter(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->enter_callback) view->enter_callback(view->context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_exit(View* view) {
|
|
|
|
furi_assert(view);
|
|
|
|
if(view->exit_callback) view->exit_callback(view->context);
|
|
|
|
}
|