-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccelerometerManager.java
More file actions
242 lines (204 loc) · 6.61 KB
/
AccelerometerManager.java
File metadata and controls
242 lines (204 loc) · 6.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
import java.lang.reflect.*;
import java.util.List;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
/**
* Android Accelerometer Sensor Manager Archetype
* @author antoine vianey
* under GPL v3 : http://www.gnu.org/licenses/gpl-3.0.html
*/
public class AccelerometerManager {
/** Accuracy configuration */
private float threshold = 0.2f;
private int interval = 1000;
private Sensor sensor;
private SensorManager sensorManager;
// you could use an OrientationListener array instead
// if you plans to use more than one listener
// private AccelerometerListener listener;
Method shakeEventMethod;
Method accelerationEventMethod;
/** indicates whether or not Accelerometer Sensor is supported */
private Boolean supported;
/** indicates whether or not Accelerometer Sensor is running */
private boolean running = false;
Context context;
public AccelerometerManager(Context parent) {
this.context = parent;
try {
shakeEventMethod =
parent.getClass().getMethod("shakeEvent", new Class[] { Float.TYPE });
} catch (Exception e) {
// no such method, or an error.. which is fine, just ignore
}
try {
accelerationEventMethod =
parent.getClass().getMethod("accelerationEvent", new Class[] { Float.TYPE, Float.TYPE, Float.TYPE });
} catch (Exception e) {
// no such method, or an error.. which is fine, just ignore
}
// System.out.println("shakeEventMethod is " + shakeEventMethod);
// System.out.println("accelerationEventMethod is " + accelerationEventMethod);
resume();
}
public AccelerometerManager(Context context, int threshold, int interval) {
this(context);
this.threshold = threshold;
this.interval = interval;
}
public void resume() {
if (isSupported()) {
startListening();
}
}
public void pause() {
if (isListening()) {
stopListening();
}
}
/**
* Returns true if the manager is listening to orientation changes
*/
public boolean isListening() {
return running;
}
/**
* Unregisters listeners
*/
public void stopListening() {
running = false;
try {
if (sensorManager != null && sensorEventListener != null) {
sensorManager.unregisterListener(sensorEventListener);
}
}
catch (Exception e) {
}
}
/**
* Returns true if at least one Accelerometer sensor is available
*/
public boolean isSupported() {
if (supported == null) {
sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);
List<Sensor> sensors = sensorManager.getSensorList(Sensor.TYPE_ACCELEROMETER);
supported = new Boolean(sensors.size() > 0);
}
return supported;
}
// /**
// * Configure the listener for shaking
// * @param threshold
// * minimum acceleration variation for considering shaking
// * @param interval
// * minimum interval between to shake events
// */
// public static void configure(int threshold, int interval) {
// AccelerometerManager.threshold = threshold;
// AccelerometerManager.interval = interval;
// }
/**
* Registers a listener and start listening
* @param accelerometerListener callback for accelerometer events
*/
public void startListening() {
// AccelerometerListener accelerometerListener = (AccelerometerListener) context;
sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE);
List<Sensor> sensors = sensorManager.getSensorList(Sensor.TYPE_ACCELEROMETER);
if (sensors.size() > 0) {
sensor = sensors.get(0);
running = sensorManager.registerListener(sensorEventListener, sensor, SensorManager.SENSOR_DELAY_GAME);
// listener = accelerometerListener;
}
}
// /**
// * Configures threshold and interval
// * And registers a listener and start listening
// * @param accelerometerListener
// * callback for accelerometer events
// * @param threshold
// * minimum acceleration variation for considering shaking
// * @param interval
// * minimum interval between to shake events
// */
// public void startListening(int threshold, int interval) {
// configure(threshold, interval);
// startListening();
// }
/**
* The listener that listen to events from the accelerometer listener
*/
//private static SensorEventListener sensorEventListener = new SensorEventListener() {
private SensorEventListener sensorEventListener = new SensorEventListener() {
private long now = 0;
private long timeDiff = 0;
private long lastUpdate = 0;
private long lastShake = 0;
private float x = 0;
private float y = 0;
private float z = 0;
private float lastX = 0;
private float lastY = 0;
private float lastZ = 0;
private float force = 0;
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
public void onSensorChanged(SensorEvent event) {
// use the event timestamp as reference
// so the manager precision won't depends
// on the AccelerometerListener implementation
// processing time
now = event.timestamp;
x = event.values[0];
y = event.values[1];
z = event.values[2];
// if not interesting in shake events
// just remove the whole if then else bloc
if (lastUpdate == 0) {
lastUpdate = now;
lastShake = now;
lastX = x;
lastY = y;
lastZ = z;
} else {
timeDiff = now - lastUpdate;
if (timeDiff > 0) {
force = Math.abs(x + y + z - lastX - lastY - lastZ)
/ timeDiff;
if (force > threshold) {
if (now - lastShake >= interval) {
// trigger shake event
// listener.onShake(force);
if (shakeEventMethod != null) {
try {
shakeEventMethod.invoke(context, new Object[] { new Float(force) });
} catch (Exception e) {
e.printStackTrace();
shakeEventMethod = null;
}
}
}
lastShake = now;
}
lastX = x;
lastY = y;
lastZ = z;
lastUpdate = now;
}
}
// trigger change event
// listener.onAccelerationChanged(x, y, z);
if (accelerationEventMethod != null) {
try {
accelerationEventMethod.invoke(context, new Object[] { x, y, z });
} catch (Exception e) {
e.printStackTrace();
accelerationEventMethod = null;
}
}
}
};
}