// Copyright 2010 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. package com.google.android.stardroid.util.smoothers; import com.google.android.stardroid.ApplicationConstants; import com.google.android.stardroid.control.AstronomerModel; import com.google.android.stardroid.units.Vector3; import com.google.android.stardroid.util.MiscUtil; import android.hardware.SensorListener; import android.hardware.SensorManager; import android.util.Log; /** * Adapts sensor output for use with the astronomer model. * * @author John Taylor */ public class PlainSmootherModelAdaptor implements SensorListener { private static final String TAG = MiscUtil.getTag(PlainSmootherModelAdaptor.class); private Vector3 magneticValues = ApplicationConstants.INITIAL_SOUTH; private Vector3 acceleration = ApplicationConstants.INITIAL_DOWN; private AstronomerModel model; public PlainSmootherModelAdaptor(AstronomerModel model) { this.model = model; } @Override public void onSensorChanged(int sensor, float[] values) { if (sensor == SensorManager.SENSOR_ACCELEROMETER) { acceleration.x = values[0]; acceleration.y = values[1]; acceleration.z = values[2]; } else if (sensor == SensorManager.SENSOR_MAGNETIC_FIELD) { magneticValues.x = values[0]; magneticValues.y = values[1]; // The z direction for the mag magneticField sensor is in the opposite // direction to that for accelerometer. // TODO(johntaylor): this might not be the best place to reverse this. magneticValues.z = -values[2]; } else { Log.e(TAG, "Pump is receiving values that aren't accel or magnetic"); } model.setPhoneSensorValues(acceleration, magneticValues); } @Override public void onAccuracyChanged(int sensor, int accuracy) { // Do nothing, at present. } }