transition_anim.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * @file transimition_anim.c
  3. *
  4. */
  5. /*********************
  6. * INCLUDES
  7. *********************/
  8. #include <lvgl/lvgl_memory.h>
  9. #include <memory/mem_cache.h>
  10. #include "transition_anim.h"
  11. /* cache line 32 bytes */
  12. #define IMG_DATA_HW_ALIGN 32U
  13. static transition_anim_t transition_anim;
  14. static void _transition_anim_free_img(transition_anim_t *a)
  15. {
  16. if (a->exit_view_image_dsc.data) {
  17. lv_mem_free((uint8_t *)a->exit_view_image_dsc.data - a->exit_view_image_data_ofs);
  18. a->exit_view_image_dsc.data = NULL;
  19. }
  20. }
  21. static void _transition_anim_status_cb(lv_event_t * e)
  22. {
  23. lv_event_code_t event = lv_event_get_code(e);
  24. transition_anim_t *a = (transition_anim_t *)lv_event_get_user_data(e);
  25. if (event == LV_EVENT_SCREEN_UNLOADED) {
  26. SYS_LOG_INF("transition animation finished\n");
  27. #if CONFIG_LV_USE_SNAPSHOT
  28. _transition_anim_free_img(a);
  29. #endif
  30. }
  31. }
  32. void transition_anim_prepare(view_data_t *exit_view_data)
  33. {
  34. transition_anim_t *a = &transition_anim;
  35. #if CONFIG_LV_USE_SNAPSHOT
  36. if (a->transition_anim_prepared) {
  37. _transition_anim_free_img(a);
  38. }
  39. #endif
  40. memset(a, 0, sizeof(transition_anim_t));
  41. #if CONFIG_LV_USE_SNAPSHOT
  42. // prepare exit view image
  43. lv_obj_t *scr = lv_disp_get_scr_act(exit_view_data->display);
  44. uint32_t buf_size = lv_snapshot_buf_size_needed(scr, LV_IMG_CF_TRUE_COLOR);
  45. uint8_t * buf = lv_mem_alloc(UI_ROUND_UP(buf_size, IMG_DATA_HW_ALIGN) + IMG_DATA_HW_ALIGN);
  46. if (buf != NULL) {
  47. uint8_t * buf_aligned = (void *)UI_ROUND_UP((uintptr_t)buf, IMG_DATA_HW_ALIGN);
  48. mem_dcache_clean(buf_aligned, buf_size);
  49. mem_dcache_sync();
  50. lv_res_t res = lv_snapshot_take_to_buf(scr, LV_IMG_CF_TRUE_COLOR,
  51. &a->exit_view_image_dsc, buf_aligned, buf_size);
  52. if (res == LV_RES_INV) {
  53. SYS_LOG_WRN("snapshot take failed");
  54. lv_mem_free(buf);
  55. } else {
  56. a->transition_anim_prepared = 1;
  57. a->exit_view_image_data_ofs = buf_aligned - buf;
  58. mem_dcache_clean(buf_aligned, buf_size);
  59. mem_dcache_sync();
  60. }
  61. } else {
  62. SYS_LOG_WRN("snapshot buf alloc failed");
  63. }
  64. #endif
  65. }
  66. void transition_anim_unprepare(void)
  67. {
  68. transition_anim_t *a = &transition_anim;
  69. if (a->transition_anim_prepared) {
  70. _transition_anim_free_img(a);
  71. a->transition_anim_prepared = 0;
  72. }
  73. }
  74. void transition_anim_start(view_data_t *view_data, transition_anim_type_t exit_anim_type, transition_anim_type_t enter_anim_type)
  75. {
  76. transition_anim_t *a = &transition_anim;
  77. if (!a->transition_anim_prepared)
  78. return;
  79. lv_disp_set_default(view_data->display);
  80. lv_obj_t * scr_act = lv_scr_act();
  81. a->exit_view_image = lv_img_create(NULL);
  82. lv_img_set_src(a->exit_view_image, &a->exit_view_image_dsc);
  83. lv_obj_add_event_cb(a->exit_view_image, _transition_anim_status_cb, LV_EVENT_SCREEN_UNLOADED, a);
  84. lv_disp_load_scr(a->exit_view_image);
  85. lv_scr_load_anim(scr_act, enter_anim_type, TRANSITION_ANIMATION_DURATION, 0 , true);
  86. a->transition_anim_prepared = 0;
  87. }