img2d_map.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file img2d_map.h
  8. *
  9. */
  10. #ifndef FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_IMG2D_MAP_H_
  11. #define FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_IMG2D_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 IMG2D_MAP_USE_BLIT_WAR 1
  26. enum {
  27. IMG2D_FACE_NONE = 0x0,
  28. IMG2D_FACE_FRONT = 0x1,
  29. IMG2D_FACE_BACK = 0x2,
  30. };
  31. typedef uint8_t img2d_face_t;
  32. /**********************
  33. * TYPEDEFS
  34. **********************/
  35. /** Data of rotate image */
  36. typedef struct {
  37. lv_obj_t obj;
  38. img2d_face_t face;
  39. img2d_face_t cull_faces;
  40. vg_lite_buffer_t image;
  41. vg_lite_matrix_t matrix_3d;
  42. #if IMG2D_MAP_USE_BLIT_WAR
  43. int16_t path_data[13];
  44. vg_lite_path_t path;
  45. #endif
  46. /* image transformed area (relative to the top-left of the object) */
  47. lv_area_t trans_area;
  48. /* Transformation center of the image, relative to the top-left corner of the image */
  49. float pivot_x;
  50. float pivot_y;
  51. float pivot_z;
  52. /* Camera coords for perspective transformation */
  53. float camera_x; /* The camera x coordinate */
  54. float camera_y; /* < The camera y coordinate */
  55. float camera_dist; /* The camera distance */
  56. /* Euler angles in ZYX order from world coordinate to camera coordinate in 0.1 degree [0, 3600) */
  57. uint16_t angle_x; /* Rotation angle around fixed x-axis */
  58. uint16_t angle_y; /* Rotation angle around fixed y-axis */
  59. uint16_t angle_z; /* Rotation angle around fixed z-axis */
  60. uint8_t angle_order; /* Rotation order, see @rotate_order_e, ROT_ZYX by default */
  61. uint16_t zoom;
  62. const lv_img_dsc_t *src_dsc;
  63. lv_img_dsc_t decoded_img;
  64. } img2d_map_t;
  65. extern const lv_obj_class_t img2d_map_class;
  66. /**********************
  67. * GLOBAL PROTOTYPES
  68. **********************/
  69. /**
  70. * Create an simple image objects
  71. * @param parent pointer to an object, it will be the parent of the new image object
  72. * @return pointer to the created image object
  73. */
  74. lv_obj_t * img2d_map_create(lv_obj_t * parent);
  75. /*=====================
  76. * Setter functions
  77. *====================*/
  78. /**
  79. * Set the pixel map to display by the image
  80. * @param obj pointer to an image object
  81. * @param src pointer to an image source variable
  82. */
  83. void img2d_map_set_src(lv_obj_t *obj, const lv_img_dsc_t * src);
  84. /**
  85. * Set the rotation center of the image.
  86. * The image will be rotated around this point
  87. * @param obj pointer to an image object
  88. * @param pivot_x rotation/zoom center x of the image
  89. * @param pivot_y rotation/zoom center y of the image
  90. * @param pivot_z rotation/zoom center z of the image
  91. */
  92. void img2d_map_set_pivot(lv_obj_t * obj, float pivot_x, float pivot_y, float pivot_z);
  93. /**
  94. * Set the rotation angle around x-axis.
  95. * The image will be rotated around the set pivot set by `img2d_map_set_pivot()`
  96. * @param obj pointer to an image object
  97. * @param angle rotation angle in degree with 0.1 degree resolution
  98. */
  99. void img2d_map_set_angle_x(lv_obj_t * obj, int16_t angle);
  100. /**
  101. * Set the rotation angle around y-axis.
  102. * The image will be rotated around the set pivot set by `img2d_map_set_pivot()`
  103. * @param obj pointer to an image object
  104. * @param angle rotation angle in degree with 0.1 degree resolution
  105. */
  106. void img2d_map_set_angle_y(lv_obj_t * obj, int16_t angle);
  107. /**
  108. * Set the rotation angle around z-axis.
  109. * The image will be rotated around the set pivot set by `img2d_map_set_pivot()`
  110. * @param obj pointer to an image object
  111. * @param angle rotation angle in degree with 0.1 degree resolution
  112. */
  113. void img2d_map_set_angle_z(lv_obj_t * obj, int16_t angle);
  114. /**
  115. * Set the rotation angle.
  116. * @param obj pointer to an image object
  117. * @param angle_x rotation angle around x-axis in degree with 0.1 degree resolution
  118. * @param angle_y rotation angle around y-axis in degree with 0.1 degree resolution
  119. * @param angle_z rotation angle around z-axis in degree with 0.1 degree resolution
  120. */
  121. void img2d_map_set_angle(lv_obj_t * obj, int16_t angle_x, int16_t angle_y, int16_t angle_z);
  122. /**
  123. * Set axis rotation order
  124. * @param obj pointer to an image object
  125. * @param order axis rotation order
  126. */
  127. void img2d_map_set_rotation_order(lv_obj_t * obj, uint8_t order);
  128. /**
  129. * Set the zoom factor of the image.
  130. * @param obj pointer to an image object
  131. * @param zoom the zoom factor.
  132. * @example 256 or LV_ZOOM_IMG_NONE for no zoom
  133. * @example <256: scale down
  134. * @example >256 scale up
  135. * @example 128 half size
  136. * @example 512 double size
  137. */
  138. void img2d_map_set_zoom(lv_obj_t * obj, uint16_t zoom);
  139. /**
  140. * Cull face.
  141. * @param obj pointer to an image object
  142. * @param face face to cull, initial value is IMG2D_FACE_NONE.
  143. */
  144. void img2d_map_set_cull(lv_obj_t * obj, img2d_face_t face);
  145. /*=====================
  146. * Getter functions
  147. *====================*/
  148. /**
  149. * Query the image is visible or not
  150. * @param obj pointer to an image object
  151. * @return visible or not
  152. */
  153. bool img2d_map_is_visible(lv_obj_t * obj);
  154. /**
  155. * Query which face is visible
  156. * @param obj pointer to an image object
  157. * @return face ID
  158. */
  159. img2d_face_t img2d_map_get_visible_face(lv_obj_t * obj);
  160. /**
  161. * Get the source of the image
  162. * @param obj pointer to an image object
  163. * @return the image source (symbol, file name or C array)
  164. */
  165. const void * img2d_map_get_src(lv_obj_t * obj);
  166. /*=====================
  167. * Other functions
  168. *====================*/
  169. /**********************
  170. * MACROS
  171. **********************/
  172. #ifdef __cplusplus
  173. } /* extern "C" */
  174. #endif
  175. #endif /* CONFIG_VG_LITE */
  176. #endif /*FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_WIDGETS_IMG2D_MAP_H_*/