🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

251 lines
7.4 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_sensor.h
  20. *
  21. * Include file for SDL sensor event handling
  22. *
  23. */
  24. #ifndef SDL_sensor_h_
  25. #define SDL_sensor_h_
  26. #include "SDL_stdinc.h"
  27. #include "SDL_error.h"
  28. #include "begin_code.h"
  29. /* Set up for C function definitions, even when using C++ */
  30. #ifdef __cplusplus
  31. /* *INDENT-OFF* */
  32. extern "C" {
  33. /* *INDENT-ON* */
  34. #endif
  35. /**
  36. * \brief SDL_sensor.h
  37. *
  38. * In order to use these functions, SDL_Init() must have been called
  39. * with the ::SDL_INIT_SENSOR flag. This causes SDL to scan the system
  40. * for sensors, and load appropriate drivers.
  41. */
  42. struct _SDL_Sensor;
  43. typedef struct _SDL_Sensor SDL_Sensor;
  44. /**
  45. * This is a unique ID for a sensor for the time it is connected to the system,
  46. * and is never reused for the lifetime of the application.
  47. *
  48. * The ID value starts at 0 and increments from there. The value -1 is an invalid ID.
  49. */
  50. typedef Sint32 SDL_SensorID;
  51. /* The different sensors defined by SDL
  52. *
  53. * Additional sensors may be available, using platform dependent semantics.
  54. *
  55. * Hare are the additional Android sensors:
  56. * https://developer.android.com/reference/android/hardware/SensorEvent.html#values
  57. */
  58. typedef enum
  59. {
  60. SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */
  61. SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */
  62. SDL_SENSOR_ACCEL, /**< Accelerometer */
  63. SDL_SENSOR_GYRO /**< Gyroscope */
  64. } SDL_SensorType;
  65. /**
  66. * Accelerometer sensor
  67. *
  68. * The accelerometer returns the current acceleration in SI meters per
  69. * second squared. This includes gravity, so a device at rest will have
  70. * an acceleration of SDL_STANDARD_GRAVITY straight down.
  71. *
  72. * values[0]: Acceleration on the x axis
  73. * values[1]: Acceleration on the y axis
  74. * values[2]: Acceleration on the z axis
  75. *
  76. * For phones held in portrait mode, the axes are defined as follows:
  77. * -X ... +X : left ... right
  78. * -Y ... +Y : bottom ... top
  79. * -Z ... +Z : farther ... closer
  80. *
  81. * The axis data is not changed when the phone is rotated.
  82. *
  83. * \sa SDL_GetDisplayOrientation()
  84. */
  85. #define SDL_STANDARD_GRAVITY 9.80665f
  86. /**
  87. * Gyroscope sensor
  88. *
  89. * The gyroscope returns the current rate of rotation in radians per second.
  90. * The rotation is positive in the counter-clockwise direction. That is,
  91. * an observer looking from a positive location on one of the axes would
  92. * see positive rotation on that axis when it appeared to be rotating
  93. * counter-clockwise.
  94. *
  95. * values[0]: Angular speed around the x axis
  96. * values[1]: Angular speed around the y axis
  97. * values[2]: Angular speed around the z axis
  98. *
  99. * For phones held in portrait mode, the axes are defined as follows:
  100. * -X ... +X : left ... right
  101. * -Y ... +Y : bottom ... top
  102. * -Z ... +Z : farther ... closer
  103. *
  104. * The axis data is not changed when the phone is rotated.
  105. *
  106. * \sa SDL_GetDisplayOrientation()
  107. */
  108. /* Function prototypes */
  109. /**
  110. * \brief Count the number of sensors attached to the system right now
  111. */
  112. extern DECLSPEC int SDLCALL SDL_NumSensors(void);
  113. /**
  114. * \brief Get the implementation dependent name of a sensor.
  115. *
  116. * This can be called before any sensors are opened.
  117. *
  118. * \return The sensor name, or NULL if device_index is out of range.
  119. */
  120. extern DECLSPEC const char *SDLCALL SDL_SensorGetDeviceName(int device_index);
  121. /**
  122. * \brief Get the type of a sensor.
  123. *
  124. * This can be called before any sensors are opened.
  125. *
  126. * \return The sensor type, or SDL_SENSOR_INVALID if device_index is out of range.
  127. */
  128. extern DECLSPEC SDL_SensorType SDLCALL SDL_SensorGetDeviceType(int device_index);
  129. /**
  130. * \brief Get the platform dependent type of a sensor.
  131. *
  132. * This can be called before any sensors are opened.
  133. *
  134. * \return The sensor platform dependent type, or -1 if device_index is out of range.
  135. */
  136. extern DECLSPEC int SDLCALL SDL_SensorGetDeviceNonPortableType(int device_index);
  137. /**
  138. * \brief Get the instance ID of a sensor.
  139. *
  140. * This can be called before any sensors are opened.
  141. *
  142. * \return The sensor instance ID, or -1 if device_index is out of range.
  143. */
  144. extern DECLSPEC SDL_SensorID SDLCALL SDL_SensorGetDeviceInstanceID(int device_index);
  145. /**
  146. * \brief Open a sensor for use.
  147. *
  148. * The index passed as an argument refers to the N'th sensor on the system.
  149. *
  150. * \return A sensor identifier, or NULL if an error occurred.
  151. */
  152. extern DECLSPEC SDL_Sensor *SDLCALL SDL_SensorOpen(int device_index);
  153. /**
  154. * Return the SDL_Sensor associated with an instance id.
  155. */
  156. extern DECLSPEC SDL_Sensor *SDLCALL SDL_SensorFromInstanceID(SDL_SensorID instance_id);
  157. /**
  158. * \brief Get the implementation dependent name of a sensor.
  159. *
  160. * \return The sensor name, or NULL if the sensor is NULL.
  161. */
  162. extern DECLSPEC const char *SDLCALL SDL_SensorGetName(SDL_Sensor *sensor);
  163. /**
  164. * \brief Get the type of a sensor.
  165. *
  166. * This can be called before any sensors are opened.
  167. *
  168. * \return The sensor type, or SDL_SENSOR_INVALID if the sensor is NULL.
  169. */
  170. extern DECLSPEC SDL_SensorType SDLCALL SDL_SensorGetType(SDL_Sensor *sensor);
  171. /**
  172. * \brief Get the platform dependent type of a sensor.
  173. *
  174. * This can be called before any sensors are opened.
  175. *
  176. * \return The sensor platform dependent type, or -1 if the sensor is NULL.
  177. */
  178. extern DECLSPEC int SDLCALL SDL_SensorGetNonPortableType(SDL_Sensor *sensor);
  179. /**
  180. * \brief Get the instance ID of a sensor.
  181. *
  182. * This can be called before any sensors are opened.
  183. *
  184. * \return The sensor instance ID, or -1 if the sensor is NULL.
  185. */
  186. extern DECLSPEC SDL_SensorID SDLCALL SDL_SensorGetInstanceID(SDL_Sensor *sensor);
  187. /**
  188. * Get the current state of an opened sensor.
  189. *
  190. * The number of values and interpretation of the data is sensor dependent.
  191. *
  192. * \param sensor The sensor to query
  193. * \param data A pointer filled with the current sensor state
  194. * \param num_values The number of values to write to data
  195. *
  196. * \return 0 or -1 if an error occurred.
  197. */
  198. extern DECLSPEC int SDLCALL SDL_SensorGetData(SDL_Sensor * sensor, float *data, int num_values);
  199. /**
  200. * Close a sensor previously opened with SDL_SensorOpen()
  201. */
  202. extern DECLSPEC void SDLCALL SDL_SensorClose(SDL_Sensor * sensor);
  203. /**
  204. * Update the current state of the open sensors.
  205. *
  206. * This is called automatically by the event loop if sensor events are enabled.
  207. *
  208. * This needs to be called from the thread that initialized the sensor subsystem.
  209. */
  210. extern DECLSPEC void SDLCALL SDL_SensorUpdate(void);
  211. /* Ends C function definitions when using C++ */
  212. #ifdef __cplusplus
  213. /* *INDENT-OFF* */
  214. }
  215. /* *INDENT-ON* */
  216. #endif
  217. #include "close_code.h"
  218. #endif /* SDL_sensor_h_ */
  219. /* vi: set ts=4 sw=4 expandtab: */