gesture.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief ui service interface
  9. */
  10. #define LOG_MODULE_CUSTOMER
  11. #include <os_common_api.h>
  12. #include <view_manager.h>
  13. #include <input_manager.h>
  14. #include <ui_service.h>
  15. #include <ui_math.h>
  16. LOG_MODULE_REGISTER(view_scrl, LOG_LEVEL_INF);
  17. #ifdef CONFIG_VIEW_SCROLL_TRACKING_FINGER
  18. #define GESTURE_DROP_START_THRESHOLD 100
  19. #else
  20. #define GESTURE_DROP_START_THRESHOLD 400
  21. #endif
  22. #define GESTURE_DROP_THRESHOLD 100
  23. #define GESTURE_MOVE_THRESHOLD 10
  24. #define GESTURE_ANIM_SPEED 32 /* pixels per 16 ms */
  25. /* gesture moving snap to edge anim enable flag */
  26. #define USE_GESTURE_MOVE_SNAP_ANIM 0
  27. /* gesture long view snap to edge anim enable flag */
  28. #define USE_GESTURE_LONGVIEW_SNAP_ANIM 0
  29. /* gesture animation config */
  30. #define USE_GESTURE_ANIM_PATH_COS 1
  31. #define USE_GESTURE_ANIM_PATH_BEZIER 0
  32. #if USE_GESTURE_ANIM_PATH_COS
  33. static int32_t _animation_path_cos(int32_t elaps);
  34. #elif USE_GESTURE_ANIM_PATH_BEZIER
  35. static int32_t _animation_update_bezier(int32_t elaps);
  36. #endif
  37. static const uint8_t opposite_gestures[] = {
  38. 0, GESTURE_DROP_UP, GESTURE_DROP_DOWN, GESTURE_DROP_RIGHT, GESTURE_DROP_LEFT,
  39. };
  40. #if USE_GESTURE_MOVE_SNAP_ANIM == 0 || USE_GESTURE_LONGVIEW_SNAP_ANIM == 0
  41. static void _reposition_region_in_display(ui_region_t *region)
  42. {
  43. ui_region_t cont = {
  44. .x1 = 0,
  45. .y1 = 0,
  46. .x2 = view_manager_get_disp_xres() - 1,
  47. .y2 = view_manager_get_disp_yres() - 1,
  48. };
  49. ui_region_fit_in(region, &cont);
  50. }
  51. #endif
  52. static int gesture_scroll_begin(input_dev_t * pointer_dev)
  53. {
  54. input_dev_runtime_t *runtime = &pointer_dev->proc;
  55. point_t *act_point = &runtime->types.pointer.act_point;
  56. int16_t x_res = view_manager_get_disp_xres();
  57. int16_t y_res = view_manager_get_disp_yres();
  58. uint16_t focus_id;
  59. uint8_t focus_attr;
  60. bool towards_screen = false;
  61. runtime->view_id = view_manager_get_draggable_view(runtime->scroll_dir, &towards_screen);
  62. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  63. if (runtime->view_id == VIEW_INVALID_ID) {
  64. return -1;
  65. }
  66. #endif
  67. focus_id = view_manager_get_focused_view();
  68. if (focus_id == VIEW_INVALID_ID) {
  69. return -1;
  70. }
  71. focus_attr = view_get_drag_attribute(focus_id);
  72. if (focus_id != runtime->view_id && focus_attr > 0) {
  73. return -1;
  74. }
  75. runtime->types.pointer.scroll_to_screen = towards_screen;
  76. runtime->types.pointer.scroll_start = *act_point;
  77. runtime->types.pointer.last_scroll_off = 0;
  78. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  79. if (view_has_move_attribute(runtime->view_id))
  80. #else
  81. if (runtime->view_id == VIEW_INVALID_ID || view_has_move_attribute(runtime->view_id))
  82. #endif
  83. { /* move */
  84. runtime->last_view_id = focus_id;
  85. runtime->pre_view_id = view_manager_get_draggable_view(opposite_gestures[runtime->scroll_dir], NULL);
  86. #if USE_GESTURE_MOVE_SNAP_ANIM
  87. if (runtime->view_id == VIEW_INVALID_ID && runtime->pre_view_id == VIEW_INVALID_ID) {
  88. return -2;
  89. }
  90. #endif
  91. } else { /* drop */
  92. int16_t offset = 0;
  93. switch (runtime->scroll_dir) {
  94. case GESTURE_DROP_DOWN:
  95. offset = act_point->y;
  96. #ifdef CONFIG_VIEW_SCROLL_TRACKING_FINGER
  97. runtime->types.pointer.scroll_start.y = 0;
  98. #endif
  99. break;
  100. case GESTURE_DROP_UP:
  101. offset = y_res - 1 - act_point->y;
  102. #ifdef CONFIG_VIEW_SCROLL_TRACKING_FINGER
  103. runtime->types.pointer.scroll_start.y = y_res - 1;
  104. #endif
  105. break;
  106. case GESTURE_DROP_RIGHT:
  107. offset = act_point->x;
  108. #ifdef CONFIG_VIEW_SCROLL_TRACKING_FINGER
  109. runtime->types.pointer.scroll_start.x = 0;
  110. #endif
  111. break;
  112. case GESTURE_DROP_LEFT:
  113. offset = x_res - 1 - act_point->x;
  114. #ifdef CONFIG_VIEW_SCROLL_TRACKING_FINGER
  115. runtime->types.pointer.scroll_start.x = x_res - 1;
  116. #endif
  117. break;
  118. default:
  119. break;
  120. }
  121. if (offset >= GESTURE_DROP_START_THRESHOLD)
  122. return -1;
  123. runtime->last_view_id = VIEW_INVALID_ID;
  124. runtime->pre_view_id = VIEW_INVALID_ID;
  125. }
  126. runtime->current_view_id = runtime->view_id;
  127. runtime->related_view_id = runtime->last_view_id;
  128. SYS_LOG_INF("gesture begin %d, start (%d %d), view %u, last_view %u, pre_view %u\n",
  129. runtime->scroll_dir, act_point->x, act_point->y, runtime->view_id,
  130. runtime->last_view_id, runtime->pre_view_id);
  131. return 0;
  132. }
  133. static void gesture_scroll(input_dev_t * pointer_dev)
  134. {
  135. input_dev_runtime_t *runtime = &pointer_dev->proc;
  136. point_t *act_point = &runtime->types.pointer.act_point;
  137. int16_t x_res = view_manager_get_disp_xres();
  138. int16_t y_res = view_manager_get_disp_yres();
  139. bool is_vscroll = (runtime->scroll_dir <= GESTURE_DROP_UP);
  140. ui_point_t drag_pos = { 0, 0 };
  141. ui_region_t rel_region = { 0, 0, x_res - 1, y_res - 1 };
  142. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  143. if (view_has_move_attribute(runtime->current_view_id))
  144. #else
  145. if (runtime->current_view_id == VIEW_INVALID_ID || view_has_move_attribute(runtime->current_view_id))
  146. #endif
  147. {
  148. if (runtime->view_id == runtime->related_view_id) { /* long view */
  149. view_get_region(runtime->view_id, &rel_region);
  150. if (is_vscroll) {
  151. ui_region_set_y(&rel_region, rel_region.y1 + runtime->types.pointer.vect.y);
  152. } else {
  153. ui_region_set_x(&rel_region, rel_region.x1 + runtime->types.pointer.vect.x);
  154. }
  155. #if USE_GESTURE_LONGVIEW_SNAP_ANIM == 0
  156. _reposition_region_in_display(&rel_region);
  157. #endif
  158. view_set_drag_pos(runtime->view_id, rel_region.x1, rel_region.y1);
  159. } else {
  160. int16_t drop_sign;
  161. int16_t scroll_off;
  162. if (is_vscroll) {
  163. scroll_off = act_point->y - runtime->types.pointer.scroll_start.y;
  164. drag_pos.y = (runtime->scroll_dir == GESTURE_DROP_DOWN) ? -y_res : y_res;
  165. drop_sign = (runtime->scroll_dir == GESTURE_DROP_DOWN) ? 1 : -1;
  166. } else {
  167. scroll_off = act_point->x - runtime->types.pointer.scroll_start.x;
  168. drag_pos.x = (runtime->scroll_dir == GESTURE_DROP_RIGHT) ? -x_res : x_res;
  169. drop_sign = (runtime->scroll_dir == GESTURE_DROP_RIGHT) ? 1 : -1;
  170. }
  171. /* check move direction compared to the origin */
  172. if (scroll_off * drop_sign > 0) {
  173. if (runtime->view_id != runtime->current_view_id) {
  174. view_set_drag_pos(runtime->view_id, -drag_pos.x, -drag_pos.y);
  175. runtime->view_id = runtime->current_view_id;
  176. }
  177. } else if (scroll_off * drop_sign < 0) {
  178. drag_pos.x = -drag_pos.x;
  179. drag_pos.y = -drag_pos.y;
  180. if (runtime->view_id == runtime->current_view_id) {
  181. view_set_drag_pos(runtime->view_id, drag_pos.x, drag_pos.y);
  182. runtime->view_id = runtime->pre_view_id;
  183. }
  184. }
  185. runtime->types.pointer.last_scroll_off = scroll_off;
  186. if (runtime->view_id != VIEW_INVALID_ID) {
  187. if (is_vscroll) {
  188. drag_pos.y += runtime->types.pointer.scroll_sum.y;
  189. } else {
  190. drag_pos.x += runtime->types.pointer.scroll_sum.x;
  191. }
  192. view_set_drag_pos(runtime->view_id, drag_pos.x, drag_pos.y);
  193. }
  194. if (runtime->related_view_id != VIEW_INVALID_ID) {
  195. if (is_vscroll) {
  196. ui_region_set_y(&rel_region, runtime->types.pointer.scroll_sum.y);
  197. } else {
  198. ui_region_set_x(&rel_region, runtime->types.pointer.scroll_sum.x);
  199. }
  200. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  201. if (runtime->view_id == VIEW_INVALID_ID) {
  202. _reposition_region_in_display(&rel_region);
  203. }
  204. #endif
  205. view_set_drag_pos(runtime->related_view_id, rel_region.x1, rel_region.y1);
  206. }
  207. SYS_LOG_DBG("scroll_off %d, view %u pos (%d,%d), related_view %u (%d,%d)\n",
  208. scroll_off, runtime->view_id, drag_pos.x, drag_pos.y,
  209. runtime->related_view_id, rel_region.x1, rel_region.y1);
  210. }
  211. } else {
  212. int16_t scroll_off;
  213. if (is_vscroll) {
  214. scroll_off = act_point->y - runtime->types.pointer.scroll_start.y;
  215. } else {
  216. scroll_off = act_point->x - runtime->types.pointer.scroll_start.x;
  217. }
  218. switch (runtime->scroll_dir) {
  219. case GESTURE_DROP_DOWN:
  220. scroll_off = UI_MAX(scroll_off, 0);
  221. drag_pos.y = runtime->types.pointer.scroll_to_screen ?
  222. (scroll_off - y_res) : scroll_off;
  223. break;
  224. case GESTURE_DROP_UP:
  225. scroll_off = UI_MIN(scroll_off, 0);
  226. drag_pos.y = runtime->types.pointer.scroll_to_screen ?
  227. (scroll_off + y_res) : scroll_off;
  228. break;
  229. case GESTURE_DROP_RIGHT:
  230. scroll_off = UI_MAX(scroll_off, 0);
  231. drag_pos.x = runtime->types.pointer.scroll_to_screen ?
  232. (scroll_off - x_res) : scroll_off;
  233. break;
  234. case GESTURE_DROP_LEFT:
  235. default:
  236. scroll_off = UI_MIN(scroll_off, 0);
  237. drag_pos.x = runtime->types.pointer.scroll_to_screen ?
  238. (scroll_off + x_res) : scroll_off;
  239. break;
  240. }
  241. runtime->types.pointer.last_scroll_off = scroll_off;
  242. view_set_drag_pos(runtime->view_id, drag_pos.x, drag_pos.y);
  243. }
  244. }
  245. static void gesture_fixed(input_dev_runtime_t *runtime)
  246. {
  247. uint16_t temp_view_id;
  248. /* must both are vertical or horizontal direction */
  249. if (runtime->last_scroll_dir == 0 || runtime->last_scroll_dir == runtime->scroll_dir ||
  250. (runtime->last_scroll_dir < GESTURE_DROP_LEFT) != (runtime->scroll_dir < GESTURE_DROP_LEFT)) {
  251. return;
  252. }
  253. runtime->scroll_dir = runtime->last_scroll_dir;
  254. temp_view_id = runtime->related_view_id;
  255. runtime->related_view_id = runtime->view_id;
  256. runtime->view_id = temp_view_id;
  257. }
  258. static void gesture_scroll_end(input_dev_t * pointer_dev)
  259. {
  260. static const uint8_t slidein_anim[] = {
  261. 0, UI_ANIM_SLIDE_IN_DOWN, UI_ANIM_SLIDE_IN_UP,
  262. UI_ANIM_SLIDE_IN_LEFT, UI_ANIM_SLIDE_IN_RIGHT,
  263. };
  264. static const uint8_t slideout_anim[] = {
  265. 0, UI_ANIM_SLIDE_OUT_UP, UI_ANIM_SLIDE_OUT_DOWN,
  266. UI_ANIM_SLIDE_OUT_RIGHT, UI_ANIM_SLIDE_OUT_LEFT,
  267. };
  268. input_dev_runtime_t *runtime = &pointer_dev->proc;
  269. int16_t animation_type = -1;
  270. int16_t scroll_off = UI_ABS(runtime->types.pointer.last_scroll_off);
  271. bool is_longview = false;
  272. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  273. if (view_has_move_attribute(runtime->current_view_id))
  274. #else
  275. if (runtime->current_view_id == VIEW_INVALID_ID || view_has_move_attribute(runtime->current_view_id))
  276. #endif
  277. {
  278. if (runtime->view_id == runtime->related_view_id) { /* long view */
  279. is_longview = true;
  280. } else if (runtime->view_id == runtime->current_view_id &&
  281. #if USE_GESTURE_MOVE_SNAP_ANIM == 0
  282. 1
  283. #else
  284. runtime->current_view_id != VIEW_INVALID_ID
  285. #endif
  286. ) {
  287. if (scroll_off >= GESTURE_MOVE_THRESHOLD) {
  288. gesture_fixed(runtime);
  289. animation_type = slidein_anim[runtime->scroll_dir];
  290. } else {
  291. animation_type = slideout_anim[runtime->scroll_dir];
  292. }
  293. } else {
  294. if (runtime->view_id != VIEW_INVALID_ID) {
  295. if (scroll_off >= GESTURE_MOVE_THRESHOLD) {
  296. gesture_fixed(runtime);
  297. animation_type = slidein_anim[opposite_gestures[runtime->scroll_dir]];
  298. } else {
  299. animation_type = slideout_anim[opposite_gestures[runtime->scroll_dir]];
  300. }
  301. } else {
  302. runtime->view_id = runtime->related_view_id;
  303. runtime->related_view_id = VIEW_INVALID_ID;
  304. animation_type = slidein_anim[opposite_gestures[runtime->scroll_dir]];
  305. }
  306. }
  307. } else {
  308. if (runtime->types.pointer.scroll_to_screen) {
  309. if (scroll_off >= GESTURE_DROP_THRESHOLD) {
  310. animation_type = slidein_anim[runtime->scroll_dir];
  311. } else {
  312. animation_type = slideout_anim[runtime->scroll_dir];
  313. }
  314. } else {
  315. if (scroll_off >= GESTURE_DROP_THRESHOLD) {
  316. animation_type = slideout_anim[opposite_gestures[runtime->scroll_dir]];
  317. } else {
  318. animation_type = slidein_anim[opposite_gestures[runtime->scroll_dir]];
  319. }
  320. }
  321. }
  322. SYS_LOG_INF("gesture end %d, view %u, related_view %u, scroll_off %d, point (%d %d), anim %d\n",
  323. runtime->scroll_dir, runtime->view_id, runtime->related_view_id,
  324. runtime->types.pointer.last_scroll_off, runtime->types.pointer.last_point.x,
  325. runtime->types.pointer.last_point.y, animation_type);
  326. if (runtime->view_id != VIEW_INVALID_ID) {
  327. ui_view_anim_cfg_t cfg;
  328. memset(&cfg, 0, sizeof(cfg));
  329. if (is_longview) {
  330. view_manager_get_drag_animation_config(runtime->view_id, &cfg, runtime);
  331. } else {
  332. view_manager_get_slide_animation_config(runtime->view_id, &cfg, animation_type);
  333. }
  334. if (cfg.duration == 0) {
  335. uint16_t step_x = UI_ABS(cfg.stop.x - cfg.start.x);
  336. uint16_t step_y = UI_ABS(cfg.stop.y - cfg.start.y);
  337. cfg.duration = (UI_MAX(step_x, step_y) * 16 + GESTURE_ANIM_SPEED - 1) / GESTURE_ANIM_SPEED;
  338. }
  339. if (cfg.path_cb == NULL) { /* default is linear */
  340. #if USE_GESTURE_ANIM_PATH_COS
  341. cfg.path_cb = _animation_path_cos;
  342. #elif USE_GESTURE_ANIM_PATH_BEZIER
  343. cfg.path_cb = _animation_path_bezier;
  344. #endif
  345. }
  346. if (is_longview) {
  347. view_manager_drag_animation_start(runtime->view_id, &cfg);
  348. } else {
  349. view_manager_slide_animation_start(runtime->view_id, runtime->related_view_id, animation_type, &cfg);
  350. }
  351. }
  352. }
  353. #if USE_GESTURE_ANIM_PATH_COS
  354. static int32_t _animation_path_cos(int32_t elaps)
  355. {
  356. uint32_t angle = ui_map(elaps, 0, UI_VIEW_ANIM_RANGE, 900, 1800);
  357. int32_t cos_value = -sw_cos30(angle) / UI_VIEW_ANIM_RANGE;
  358. return ui_map(cos_value, 0, -sw_cos30(1800) / UI_VIEW_ANIM_RANGE, 0, UI_VIEW_ANIM_RANGE);
  359. }
  360. #elif USE_GESTURE_ANIM_PATH_BEZIER
  361. static int32_t _animation_path_bezier(int32_t elaps)
  362. {
  363. return ui_bezier3(elaps, 0, 900, 950, UI_VIEW_ANIM_RANGE);
  364. }
  365. #endif /* USE_GESTURE_ANIM_PATH_COS */
  366. static const ui_gesture_callback_t gesture_callback = {
  367. .scroll_begin = gesture_scroll_begin,
  368. .scroll = gesture_scroll,
  369. .scroll_end = gesture_scroll_end,
  370. };
  371. int ui_service_register_gesture_default_callback(void)
  372. {
  373. return ui_service_register_gesture_callback(&gesture_callback);
  374. }