ui_math.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file view manager interface
  8. */
  9. #ifndef FRAMEWORK_DISPLAY_INCLUDE_UI_MATH_H_
  10. #define FRAMEWORK_DISPLAY_INCLUDE_UI_MATH_H_
  11. /**
  12. * @defgroup ui_manager_apis app ui Manager APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. #include <stdint.h>
  17. #include <display/sw_math.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /**
  22. * @brief Value of @p x aligned down to the previous multiple of @p align,
  23. * which must be a power of 2.
  24. */
  25. #define UI_ALIGN(x, align) (((x) + (align) - 1) & ~((align) - 1))
  26. /**
  27. * @brief Value of @p x rounded up to the next multiple of @p align,
  28. * which must be a power of 2.
  29. */
  30. #define UI_ROUND_UP(x, align) \
  31. (((unsigned long)(x) + ((unsigned long)(align) - 1)) & \
  32. ~((unsigned long)(align) - 1))
  33. /**
  34. * @brief Value of @p x rounded down to the previous multiple of @p align,
  35. * which must be a power of 2.
  36. */
  37. #define UI_ROUND_DOWN(x, align) \
  38. ((unsigned long)(x) & ~((unsigned long)(align) - 1))
  39. /** @brief Unsigned integer with bit position @p n set */
  40. #define UI_BIT(n) (1UL << (n))
  41. /**
  42. * @brief Bit mask with bits 0 through <tt>n-1</tt> (inclusive) set,
  43. * or 0 if @p n is 0.
  44. */
  45. #define UI_BIT_MASK(n) (UI_BIT(n) - 1)
  46. /** @brief The smaller value between @p a and @p b. */
  47. #define UI_MIN(a, b) ((a) < (b) ? (a) : (b))
  48. /** @brief The larger value between @p a and @p b. */
  49. #define UI_MAX(a, b) ((a) > (b) ? (a) : (b))
  50. /** @brief Absolute value of @p x. */
  51. #define UI_ABS(x) ((x) >= 0 ? (x) : (-(x)))
  52. /** @brief Clamp a value to a given range. */
  53. #define UI_CLAMP(val, low, high) (((val) <= (low)) ? (low) : UI_MIN(val, high))
  54. #define UI_BEZIER_VAL_MAX 1024 /**< Max time in Bezier functions (not [0..1] to use integers)*/
  55. #define UI_BEZIER_VAL_SHIFT 10 /**< log2(UI_BEZIER_VAL_MAX): used to normalize up scaled values*/
  56. /**
  57. * Get the linear mapped of a number given an input and output range
  58. *
  59. * @param x integer which mapped value should be calculated
  60. * @param min_in min input range
  61. * @param max_in max input range
  62. * @param min_out max output range
  63. * @param max_out max output range
  64. *
  65. * @return the mapped number
  66. */
  67. int32_t ui_map(int32_t x, int32_t min_in, int32_t max_in, int32_t min_out, int32_t max_out);
  68. /**
  69. * Calculate a value of a Cubic Bezier function.
  70. * @param t time in range of [0..UI_BEZIER_VAL_MAX]
  71. * @param u0 start values in range of [0..UI_BEZIER_VAL_MAX]
  72. * @param u1 control value 1 values in range of [0..UI_BEZIER_VAL_MAX]
  73. * @param u2 control value 2 in range of [0..UI_BEZIER_VAL_MAX]
  74. * @param u3 end values in range of [0..UI_BEZIER_VAL_MAX]
  75. *
  76. * @return the value calculated from the given parameters in range of [0..UI_BEZIER_VAL_MAX]
  77. */
  78. uint32_t ui_bezier3(uint32_t t, uint32_t u0, uint32_t u1, uint32_t u2, uint32_t u3);
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. /**
  83. * @} end defgroup system_apis
  84. */
  85. #endif /* FRAMEWORK_DISPLAY_INCLUDE_UI_MATH_H_ */