face_map.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file face_map.h
  8. *
  9. */
  10. #ifndef FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_FACE_MAP_H_
  11. #define FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_FACE_MAP_H_
  12. #ifdef CONFIG_VG_LITE
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /*********************
  17. * INCLUDES
  18. *********************/
  19. #include <lvgl/lvgl.h>
  20. #include <vg_lite/vglite_util.h>
  21. /**********************
  22. * TYPEDEFS
  23. **********************/
  24. /** Data of rotate image */
  25. typedef struct {
  26. lv_obj_t obj;
  27. vg_lite_buffer_t images;
  28. vertex_t bg_verts[4];
  29. vertex_t verts[4];
  30. lv_area_t trans_area;
  31. float observe_x;
  32. float observe_y;
  33. float observe_z;
  34. float pivot_x;
  35. float pivot_y;
  36. float pivot_z;
  37. float zoom_x;
  38. float zoom_y;
  39. float observe_zoom;
  40. vg_lite_matrix_t matrix_r;
  41. const lv_img_dsc_t *src_dscs;
  42. vg_lite_uint32_t * palette;
  43. bool visible;
  44. bool normals;
  45. bool b_observe;
  46. bool b_verts;
  47. } face_map_t;
  48. extern const lv_obj_class_t face_map_class;
  49. /**********************
  50. * GLOBAL PROTOTYPES
  51. **********************/
  52. /**
  53. * Create an cube map object
  54. * @param parent pointer to an object, it will be the parent of the new image object
  55. * @return pointer to the created image object
  56. */
  57. lv_obj_t * face_map_create(lv_obj_t * parent);
  58. /*=====================
  59. * Setter functions
  60. *====================*/
  61. /**
  62. * Set the pixel map to display by the image
  63. * @param obj pointer to an image object
  64. * @param src pointer to an image source variable array
  65. */
  66. void face_map_set_src(lv_obj_t *obj, const lv_img_dsc_t * src);
  67. /**
  68. * Set the rotation center of the image.
  69. * The image will be rotated around this point
  70. * @param obj pointer to an image object
  71. * @param pivot_x rotation/zoom center x of the image
  72. * @param pivot_y rotation/zoom center y of the image
  73. * @param pivot_z rotation/zoom center z of the image
  74. */
  75. void face_map_set_pivot(lv_obj_t * obj, float pivot_x, float pivot_y, float pivot_z);
  76. /**
  77. * Set the observe of the image.
  78. * The image will be rotated around this point
  79. * @param obj pointer to an image object
  80. * @param pivot_x observe x of the image
  81. * @param pivot_y observe y of the image
  82. * @param pivot_z observe z of the image
  83. * @param on_off true-on observe
  84. */
  85. void face_map_set_observe(lv_obj_t * obj, float observe_x, float observe_y, float observe_z, bool on_off);
  86. /**
  87. * Set the periphery dot .
  88. * The image will be rotated around this point
  89. * @param obj pointer to an image object
  90. * @param vertex four dots coordinates
  91. */
  92. void face_map_set_periphery_dot(lv_obj_t * obj, vertex_t *vertex);
  93. /**
  94. * Rest periphery dot .
  95. * @param obj pointer to an image object
  96. * @param draw whether draw
  97. */
  98. void face_map_periphery_dot_rest(lv_obj_t * obj,bool draw);
  99. /**
  100. * Set the rotation angle vect.
  101. * The image will be rotated by ZYX order.
  102. * @param obj pointer to an image object
  103. * @param angle_x rotation angle around x-axis in degree with 0.1 degree resolution
  104. * @param angle_y rotation angle around y-axis in degree with 0.1 degree resolution
  105. * @param angle_z rotation angle around z-axis in degree with 0.1 degree resolution
  106. * @param draw whether draw
  107. */
  108. void face_map_set_angle_vect(lv_obj_t * obj, int16_t angle_x, int16_t angle_y, int16_t angle_z ,bool draw);
  109. /**
  110. * Set the whether reverse side no draw.
  111. * The image will be rotated by ZYX order.
  112. * @param obj pointer to an image object
  113. * @param normals whether reverse side no draw
  114. */
  115. void face_map_set_normals(lv_obj_t * obj, bool normals);
  116. /**
  117. * Set the zoom factor of the image.
  118. * @param obj pointer to an image object
  119. * @param zoom the zoom factor XYZ.
  120. * @example 256 or LV_ZOOM_IMG_NONE for no zoom
  121. * @example <256: scale down
  122. * @example >256 scale up
  123. * @example 128 half size
  124. * @example 512 double size
  125. */
  126. void face_map_set_zoom(lv_obj_t * obj, uint16_t zoom);
  127. void face_map_set_zoom_x(lv_obj_t * obj, uint16_t zoom_x);
  128. void face_map_set_zoom_y(lv_obj_t * obj, uint16_t zoom_x);
  129. void face_map_set_observe_zoom(lv_obj_t * obj, uint16_t zoom);
  130. /*=====================
  131. * Getter functions
  132. *====================*/
  133. /**
  134. * Get the source of the image.
  135. * @param obj pointer to an image object
  136. * @return the image source
  137. */
  138. const void * face_map_get_src(lv_obj_t * obj);
  139. /**
  140. * Get the periphery dot .
  141. * The image will be rotated around this point
  142. * @param obj pointer to an image object
  143. * @param vertex four dots coordinates
  144. */
  145. void face_map_get_periphery_dot(lv_obj_t * obj, vertex_t *vertex);
  146. /**
  147. * Get the area.
  148. * Get area Can be used for clicks, etc
  149. * @param obj pointer to an image object
  150. * @param area
  151. */
  152. void face_map_get_area(lv_obj_t * obj, lv_area_t *area);
  153. /*=====================
  154. * Other functions
  155. *====================*/
  156. /**********************
  157. * MACROS
  158. **********************/
  159. #ifdef __cplusplus
  160. } /* extern "C" */
  161. #endif
  162. #endif /* CONFIG_VG_LITE */
  163. #endif /*FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_FACE_MAP_H_*/