License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-adaptor.git] / adaptors / tizen / public-api / adaptor-framework / common / tilt-sensor.h
1 #ifndef __DALI_TILT_SENSOR_H__
2 #define __DALI_TILT_SENSOR_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <boost/function.hpp>
23
24 #include <dali/public-api/object/base-handle.h>
25 #include <dali/public-api/signals/dali-signal-v2.h>
26
27 namespace Dali DALI_IMPORT_API
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 namespace Adaptor
33 {
34 class TiltSensor;
35 }
36 }
37
38 /**
39  * TiltSensor provides pitch & roll values when the device is tilted.
40  * The basic usage is shown below:
41  *
42  * @code
43  *
44  *  void Example()
45  *  {
46  *    TiltSensor sensor = TiltSensor::Get();
47  *
48  *    // Try to enable the sensor
49  *    if ( sensor.Enable() )
50  *    {
51  *      // Query the current values
52  *      std::cout << "Roll = " << sensor.GetRoll() << ", Pitch = " << sensor.GetPitch() << std::endl;
53  *
54  *      // Get notifications when the device is tilted
55  *      sensor.SignalTilted().Connect( &OnTilted );
56  *    }
57  *  }
58  *
59  *  void OnTilted()
60  *  {
61  *    // Query the new values
62  *    std::cout << "Roll = " << sensor.GetRoll() << ", Pitch = " << sensor.GetPitch() << std::endl;
63  *  }
64  *
65  * @endcode
66  *
67  * While the tilt sensor is enabled, it will periodically poll for the latest pitch & roll values.
68  * For performance & power-saving, applications should disable this polling when no longer needed:
69  *
70  * @code
71  *
72  *  void EndExample()
73  *  {
74  *    // Disable the sensor when no longer needed
75  *    TiltSensor::Get().Disable();
76  *  }
77  *
78  * @endcode
79  */
80 class TiltSensor : public BaseHandle
81 {
82 public:
83
84   typedef SignalV2< void (const TiltSensor&) > TiltedSignalV2;
85
86   // Signal Names
87   static const char* const SIGNAL_TILTED;
88
89   static const float DEFAULT_UPDATE_FREQUENCY; // 60 hertz
90
91   /**
92    * Create an uninitialized handle.
93    * This can be initialized by calling TiltSensor::Get().
94    */
95   TiltSensor();
96
97   /**
98    * Create an initialized handle to the TiltSensor.
99    * @return A handle to a newly allocated Dali resource.
100    */
101   static TiltSensor Get();
102
103   /**
104    * Virtual Destructor.
105    */
106   virtual ~TiltSensor();
107
108   /**
109    * Attempt to enable the tilt-sensor. This will fail if the underlying sensor hardware is powered-down,
110    * typically this occurs when the device is set to "sleep" mode.
111    * @return True if the tilt-sensor is enabled.
112    */
113   bool Enable();
114
115   /**
116    * Disable the tilt-sensor.
117    */
118   void Disable();
119
120   /**
121    * Query whether the tilt-sensor is disabled.
122    * The sensor may be disabled automatically; typically this occurs when the device is set to "sleep" mode.
123    * @return True if the tilt-sensor is enabled.
124    */
125   bool IsEnabled() const;
126
127   /**
128    * Query the roll value. This is in the range -1 to 1.
129    * When the device is lying face-up on a flat surface, this method will return a value close to zero.
130    * A value close to 1 indicates that the right-side of the device is pointing upwards.
131    * A value close to -1 indicates that the right-side of the device is pointing downwards.
132    * @pre The tilt-sensor is enabled.
133    * @return The roll value.
134    */
135   float GetRoll() const;
136
137   /**
138    * Query the pitch value. This is in the range -1 to 1.
139    * When the device is lying face-up on a flat surface, this method will return a value close to zero.
140    * A value close to 1 indicates that the top of the device is pointing upwards.
141    * A value close to -1 indicates that the top of the device is pointing downwards.
142    * @pre The tilt-sensor is enabled.
143    * @return The pitch value.
144    */
145   float GetPitch() const;
146
147   /**
148    * Retrieve the rotation of the device.
149    * When the device is lying face-up on a flat surface, the rotation angle will be approximately zero.
150    * The roll & pitch of the device is considered to be a rotation around the Y and X axes respectively.
151    * @pre The tilt-sensor is enabled.
152    * @return The rotation in quaternion format.
153    */
154   Quaternion GetRotation() const;
155
156   /**
157    * This signal will be emitted when the device is tilted, if the tilt-sensor is enabled.
158    * The frequency of the signals can be controlled using SetUpdateFrequency().
159    * @return The signal to connect to.
160    */
161   TiltedSignalV2& TiltedSignal();
162
163   /**
164    * Set the sensor update frequency.
165    * The default is TiltSensor::DEFAULT_UPDATE_FREQUENCY.
166    * @param[in] frequencyHertz The frequency in hertz.
167    */
168   void SetUpdateFrequency( float frequencyHertz );
169
170   /**
171    * Query the sensor update frequency.
172    * @return The frequency in hertz.
173    */
174   float GetUpdateFrequency() const;
175
176   /**
177    * Set the threshold value for rotation in Radians, above which TiltedSignal should be emitted.
178    * The default is 0.0f in Radians (i.e) it will be emitted always at the frequency set.
179    * Example tiltSensor.SetRotationThreshold( Radian(Degree(10) ) // A rotation threshold of 10 degrees
180    * @param[in] rotationThreshold The threshold value for rotation.
181    */
182   void SetRotationThreshold( Radian rotationThreshold );
183
184   /**
185    * Query the rotation threshold above which TiltedSignal will be emitted.
186    * @return The rotation degree threshold in Radians.
187    */
188   Radian GetRotationThreshold() const;
189
190 public: // Not intended for application developers
191
192   /**
193    * This constructor is used by TiltSensor::Get().
194    * @param[in] sensor A pointer to the tilt sensor.
195    */
196   TiltSensor( Internal::Adaptor::TiltSensor* sensor );
197 };
198
199 } // namespace Dali
200
201 #endif // __DALI_TILT_SENSOR_H__