Android Open Source - flingbox Preferences






From Project

Back to project page flingbox.

License

The source code is released under:

GNU General Public License

If you think the Android project flingbox listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 *  Flingbox - An OpenSource physics sandbox for Google's Android
 *  Copyright (C) 2009  Jon Ander Pealba & Endika Gutirrez
 */*  ww  w.j a va  2s. c om*/
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package edu.eside.flingbox;

import android.os.Bundle;

public class Preferences {
  public static float[] backgroundColor = new float[] {0.563f, 0.707f, 0.778f, 1.0f };

  public static boolean useAcelerometerBasedGravity = true;
  public static float gravity;
  
  private static final String KEY_DENSITY = "PREFERENCES_DENSITY";
  public static float defaultDensity = 1.0f;
  private static final String KEY_RESTIT_COEF = "PREFERENCES_RESTIT_COEF";
  public static float defaultRestitutionCoeficient = 0.7f;
  
  private static final String KEY_DYNAMIC_FRICTION = "PREFERENCES_DYNAMIC_FRICTION";
  public static float defaultDynamicFrictionCoeficient = 0.35f;
  private static final String KEY_STATIC_FRICTION = "PREFERENCES_STATIC_FRICTION";
  public static float defaultStaticFrictionCoeficient = 0.5f;
  
  /** Haptic feedback will be performed by Preferences */
  public static long hapticFeedbackTime = 50;
  public static boolean doHapticFeedback = true;
  
  /**
   * Preferences can't be created. It's static
   */
  private Preferences() { }
  
  public static void onSavePreferences(Bundle preferencesToSave) {
    preferencesToSave.putFloat(KEY_DENSITY, defaultDensity);
    preferencesToSave.putFloat(KEY_RESTIT_COEF, defaultRestitutionCoeficient);
  }
  
  public static void onLoadPreferences(Bundle savedPreferences) {
    defaultDensity = savedPreferences.getFloat(KEY_DENSITY);
    defaultRestitutionCoeficient = savedPreferences.getFloat(KEY_RESTIT_COEF);
    defaultStaticFrictionCoeficient = savedPreferences.getFloat(KEY_STATIC_FRICTION);
    defaultDynamicFrictionCoeficient = savedPreferences.getFloat(KEY_DYNAMIC_FRICTION);
  }
  
}




Java Source Code List

edu.eside.flingbox.BodySettingsDialog.java
edu.eside.flingbox.FlingboxActivity.java
edu.eside.flingbox.PreferencesActivity.java
edu.eside.flingbox.Preferences.java
edu.eside.flingbox.bodies.Body.java
edu.eside.flingbox.bodies.Polygon.java
edu.eside.flingbox.graphics.RenderBody.java
edu.eside.flingbox.graphics.RenderCamera.java
edu.eside.flingbox.graphics.RenderPolygon.java
edu.eside.flingbox.graphics.SceneRenderer.java
edu.eside.flingbox.input.SceneGestureDetector.java
edu.eside.flingbox.math.Intersect.java
edu.eside.flingbox.math.Matrix22.java
edu.eside.flingbox.math.PolygonUtils.java
edu.eside.flingbox.math.Vector2D.java
edu.eside.flingbox.physics.PhysicAtomicBody.java
edu.eside.flingbox.physics.PhysicBody.java
edu.eside.flingbox.physics.PhysicPolygon.java
edu.eside.flingbox.physics.ScenePhysics.java
edu.eside.flingbox.physics.collisions.Arbiter.java
edu.eside.flingbox.physics.collisions.ColliderPolygon.java
edu.eside.flingbox.physics.collisions.Collider.java
edu.eside.flingbox.physics.collisions.ContactSolver.java
edu.eside.flingbox.physics.collisions.Contact.java
edu.eside.flingbox.physics.gravity.GravitySource.java
edu.eside.flingbox.scene.DrawingBody.java
edu.eside.flingbox.scene.DrawingPolygon.java
edu.eside.flingbox.scene.Scene.java
edu.eside.flingbox.utils.PositionComparator.java
edu.eside.flingbox.xml.InvalidXmlException.java
edu.eside.flingbox.xml.XmlExporter.java
edu.eside.flingbox.xml.XmlImporter.java