-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCompass.java
More file actions
128 lines (102 loc) · 3.76 KB
/
Compass.java
File metadata and controls
128 lines (102 loc) · 3.76 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
package com.cobyplain.augmentreality;
import android.app.Activity;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.location.LocationProvider;
import android.os.Bundle;
import android.util.Log;
/*
* Portions (c) 2009 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author Coby Plain coby.plain@gmail.com, Ali Muzaffar ali@muzaffar.me
*/
public class Compass extends Activity {
private static final String TAG = "Compass";
private static boolean DEBUG = false;
private SensorManager mSensorManager;
private Sensor mSensor;
private DrawSurfaceView mDrawView;
LocationManager locMgr;
LocationListener locListener;
private final SensorEventListener mListener = new SensorEventListener() {
private float[] mRotationMatrix = new float[16];
private float[] mValues = new float[3];
public void onSensorChanged(SensorEvent event) {
SensorManager.getRotationMatrixFromVector(mRotationMatrix, event.values);
SensorManager.getOrientation(mRotationMatrix, mValues);
if (DEBUG)
Log.d(TAG, "sensorChanged (" + Math.toDegrees(mValues[0]) + ", " + Math.toDegrees(mValues[1]) + ", " + Math.toDegrees(mValues[2]) + ")");
if (mDrawView != null) {
mDrawView.setOffset((float) Math.toDegrees(mValues[0]));
mDrawView.invalidate();
}
}
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
};
@Override
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR);
setContentView(R.layout.activity_main);
mDrawView = (DrawSurfaceView) findViewById(R.id.drawSurfaceView);
locMgr = (LocationManager) this.getSystemService(LOCATION_SERVICE); // <2>
LocationProvider high = locMgr.getProvider(locMgr.getBestProvider(
LocationUtils.createFineCriteria(), true));
// using high accuracy provider... to listen for updates
locMgr.requestLocationUpdates(high.getName(), 0, 0f, locListener = new LocationListener() {
public void onLocationChanged(Location location) {
// do something here to save this new location
Log.d(TAG, "Location Changed");
mDrawView.setMyLocation(location.getLatitude(), location.getLongitude());
mDrawView.invalidate();
}
public void onStatusChanged(String s, int i, Bundle bundle) {
}
public void onProviderEnabled(String s) {
// try switching to a different provider
}
public void onProviderDisabled(String s) {
// try switching to a different provider
}
});
}
@Override
protected void onResume() {
if (DEBUG)
Log.d(TAG, "onResume");
super.onResume();
mSensorManager.registerListener(mListener, mSensor, SensorManager.SENSOR_DELAY_GAME);
}
@Override
protected void onStop() {
if (DEBUG)
Log.d(TAG, "onStop");
mSensorManager.unregisterListener(mListener);
super.onStop();
}
@Override
protected void onDestroy() {
locMgr.removeUpdates(locListener);
super.onDestroy();
}
}