altosdroid: Split setup functions to separate dialog
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / AltosDroidPreferences.java
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17 package org.altusmetrum.AltosDroid;
18
19 import java.io.*;
20 import java.util.*;
21 import java.text.*;
22
23 import android.content.Context;
24 import org.altusmetrum.altoslib_10.*;
25
26 public class AltosDroidPreferences extends AltosPreferences {
27
28         /* Active device preference name */
29         final static String activeDeviceAddressPreference = "ACTIVE-DEVICE-ADDRESS";
30         final static String activeDeviceNamePreference = "ACTIVE-DEVICE-NAME";
31
32         static DeviceAddress    active_device_address;
33
34         /* Map source preference name */
35         final static String mapSourcePreference = "MAP-SOURCE";
36
37         static final int        MAP_SOURCE_OFFLINE = 0;
38         static final int        MAP_SOURCE_ONLINE = 1;
39
40         static int      map_source;
41
42         public static void init(Context context) {
43                 if (backend != null)
44                         return;
45
46                 AltosPreferences.init(new AltosDroidPreferencesBackend(context));
47
48                 String address = backend.getString(activeDeviceAddressPreference, null);
49                 String name = backend.getString(activeDeviceNamePreference, null);
50
51                 if (address != null && name != null)
52                         active_device_address = new DeviceAddress (address, name);
53
54                 map_source = backend.getInt(mapSourcePreference, MAP_SOURCE_ONLINE);
55         }
56
57         public static void set_active_device(DeviceAddress address) {
58                 synchronized(backend) {
59                         active_device_address = address;
60                         backend.putString(activeDeviceAddressPreference, active_device_address.address);
61                         backend.putString(activeDeviceNamePreference, active_device_address.name);
62                         flush_preferences();
63                 }
64         }
65
66         public static DeviceAddress active_device() {
67                 synchronized(backend) {
68                         return active_device_address;
69                 }
70         }
71
72         static LinkedList<AltosDroidMapSourceListener> map_source_listeners;
73
74         public static void set_map_source(int map_source) {
75                 synchronized(backend) {
76                         AltosDroidPreferences.map_source = map_source;
77                         backend.putInt(mapSourcePreference, map_source);
78                         flush_preferences();
79                 }
80                 if (map_source_listeners != null) {
81                         for (AltosDroidMapSourceListener l : map_source_listeners) {
82                                 l.map_source_changed(map_source);
83                         }
84                 }
85         }
86
87         public static int map_source() {
88                 synchronized(backend) {
89                         return map_source;
90                 }
91         }
92
93         public static void register_map_source_listener(AltosDroidMapSourceListener l) {
94                 synchronized(backend) {
95                         if (map_source_listeners == null)
96                                 map_source_listeners = new LinkedList<AltosDroidMapSourceListener>();
97                         map_source_listeners.add(l);
98                 }
99         }
100
101         public static void unregister_map_source_listener(AltosDroidMapSourceListener l) {
102                 synchronized(backend) {
103                         map_source_listeners.remove(l);
104                 }
105         }
106 }