cube_map.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file cube_map.h
  8. *
  9. */
  10. #ifndef FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_CUBE_MAP_H_
  11. #define FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_CUBE_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. * DEFINES
  23. *********************/
  24. /* workaround for vg_lite_blit() filter whose center located outside of image */
  25. #define CUBE_MAP_USE_BLIT_WAR 1
  26. #define CUBE_MAP_FRONT 0
  27. #define CUBE_MAP_BACK 1
  28. #define CUBE_MAP_RIGHT 2
  29. #define CUBE_MAP_LEFT 3
  30. #define CUBE_MAP_BOTTOM 4
  31. #define CUBE_MAP_TOP 5
  32. #define NUM_CUBE_FACES 6
  33. #define NUM_CUBE_VERTS 8
  34. /**********************
  35. * TYPEDEFS
  36. **********************/
  37. /** Data of rotate image */
  38. typedef struct {
  39. lv_obj_t obj;
  40. bool visible[NUM_CUBE_FACES];
  41. vg_lite_buffer_t images[NUM_CUBE_FACES];
  42. vertex_t verts[NUM_CUBE_VERTS];
  43. vg_lite_matrix_t extra_rotm;
  44. #if CUBE_MAP_USE_BLIT_WAR
  45. int16_t path_data[13];
  46. vg_lite_path_t path;
  47. #endif
  48. /* image transformed area (relative to the top-left of the object) */
  49. lv_area_t trans_area;
  50. /* Transformation center of the image, relative to the top-left corner of the image */
  51. float pivot_x;
  52. float pivot_y;
  53. float pivot_z;
  54. /* Euler angles in ZYX order from world coordinate to camera coordinate in 0.1 degree [0, 3600) */
  55. uint16_t angle_x; /* Rotation angle around fixed x-axis */
  56. uint16_t angle_y; /* Rotation angle around fixed y-axis */
  57. uint16_t angle_z; /* Rotation angle around fixed z-axis */
  58. uint8_t angle_order; /* Rotation order, see @rotate_order_e, ROT_ZYX by default */
  59. uint16_t zoom;
  60. const lv_img_dsc_t *src_dscs;
  61. lv_img_dsc_t decoded_imgs[NUM_CUBE_FACES];
  62. } cube_map_t;
  63. extern const lv_obj_class_t cube_map_class;
  64. /**********************
  65. * GLOBAL PROTOTYPES
  66. **********************/
  67. /**
  68. * Create an cube map object
  69. * @param parent pointer to an object, it will be the parent of the new image object
  70. * @return pointer to the created image object
  71. */
  72. lv_obj_t * cube_map_create(lv_obj_t * parent);
  73. /*=====================
  74. * Setter functions
  75. *====================*/
  76. /**
  77. * Set the pixel map to display by the image
  78. * @param obj pointer to an image object
  79. * @param src pointer to an image source variable array
  80. */
  81. void cube_map_set_src(lv_obj_t *obj, const lv_img_dsc_t * src);
  82. /**
  83. * Set the rotation center of the image.
  84. * The image will be rotated around this point
  85. * @param obj pointer to an image object
  86. * @param pivot_x rotation/zoom center x of the image
  87. * @param pivot_y rotation/zoom center y of the image
  88. * @param pivot_z rotation/zoom center z of the image
  89. */
  90. void cube_map_set_pivot(lv_obj_t * obj, float pivot_x, float pivot_y, float pivot_z);
  91. /**
  92. * Set the rotation angle around x-axis.
  93. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  94. * @param obj pointer to an image object
  95. * @param angle rotation angle in degree with 0.1 degree resolution
  96. */
  97. void cube_map_set_angle_x(lv_obj_t * obj, int16_t angle);
  98. /**
  99. * Set the rotation angle around y-axis.
  100. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  101. * @param obj pointer to an image object
  102. * @param angle rotation angle in degree with 0.1 degree resolution
  103. */
  104. void cube_map_set_angle_y(lv_obj_t * obj, int16_t angle);
  105. /**
  106. * Set the rotation angle around z-axis.
  107. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  108. * @param obj pointer to an image object
  109. * @param angle rotation angle in degree with 0.1 degree resolution
  110. */
  111. void cube_map_set_angle_z(lv_obj_t * obj, int16_t angle);
  112. /**
  113. * Set the rotation angle.
  114. * The image will be rotated by ZYX order.
  115. * @param obj pointer to an image object
  116. * @param angle_x rotation angle around x-axis in degree with 0.1 degree resolution
  117. * @param angle_y rotation angle around y-axis in degree with 0.1 degree resolution
  118. * @param angle_z rotation angle around z-axis in degree with 0.1 degree resolution
  119. */
  120. void cube_map_set_angle(lv_obj_t * obj, int16_t angle_x, int16_t angle_y, int16_t angle_z);
  121. /**
  122. * Set axis rotation order
  123. * @param obj pointer to an image object
  124. * @param order axis rotation order
  125. */
  126. void cube_map_set_rotation_order(lv_obj_t * obj, uint8_t order);
  127. /**
  128. * Set the zoom factor of the image.
  129. * @param obj pointer to an image object
  130. * @param zoom the zoom factor.
  131. * @example 256 or LV_ZOOM_IMG_NONE for no zoom
  132. * @example <256: scale down
  133. * @example >256 scale up
  134. * @example 128 half size
  135. * @example 512 double size
  136. */
  137. void cube_map_set_zoom(lv_obj_t * obj, uint16_t zoom);
  138. /**
  139. * Reset the appended extra angles.
  140. * @param obj pointer to an image object
  141. */
  142. void cube_map_reset_appended_angles(lv_obj_t * obj);
  143. /**
  144. * Append a extra rotation angle around x-axis after Euler angle rotation.
  145. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  146. * @param obj pointer to an image object
  147. * @param angle rotation angle in degree with 0.1 degree resolution
  148. */
  149. void cube_map_append_angle_x(lv_obj_t * obj, int16_t angle);
  150. /**
  151. * Append a extra rotation angle around y-axis after Euler angle rotation.
  152. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  153. * @param obj pointer to an image object
  154. * @param angle rotation angle in degree with 0.1 degree resolution
  155. */
  156. void cube_map_append_angle_y(lv_obj_t * obj, int16_t angle);
  157. /**
  158. * Append a extra rotation angle around z-axis after Euler angle rotation.
  159. * The image will be rotated around the set pivot set by `cube_map_set_pivot()`
  160. * @param obj pointer to an image object
  161. * @param angle rotation angle in degree with 0.1 degree resolution
  162. */
  163. void cube_map_append_angle_z(lv_obj_t * obj, int16_t angle);
  164. /*=====================
  165. * Getter functions
  166. *====================*/
  167. /**
  168. * Get the source of the image.
  169. * @param obj pointer to an image object
  170. * @param face which image of face to get
  171. * @return the image source (symbol, file name or C array)
  172. */
  173. const void * cube_map_get_src(lv_obj_t * obj, uint8_t face);
  174. /**
  175. * Get the 8 vertices of the image.
  176. * @param obj pointer to an image object
  177. * @param face the image face
  178. * @param verts where to store the vertices (clock-wise sequence started from top-left corner)
  179. * @return N/A
  180. */
  181. void cube_map_get_vertices(lv_obj_t * obj, uint8_t face, vertex_t * verts);
  182. /**
  183. * Query the cube face is visible or not.
  184. * @param obj pointer to an image object
  185. * @param face which image of face to get
  186. * @return visible or not
  187. */
  188. bool cube_map_is_visible(lv_obj_t * obj, uint8_t face);
  189. /*=====================
  190. * Other functions
  191. *====================*/
  192. /**********************
  193. * MACROS
  194. **********************/
  195. #ifdef __cplusplus
  196. } /* extern "C" */
  197. #endif
  198. #endif /* CONFIG_VG_LITE */
  199. #endif /*FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_CUBE_MAP_H_*/