altosdroid: Switch trackers automatically when changing freq or baud
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / AltosDroid.java
1 /*
2  * Copyright © 2012-2013 Mike Beattie <mike@ethernal.org>
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
18 package org.altusmetrum.AltosDroid;
19
20 import java.lang.ref.WeakReference;
21 import java.util.ArrayList;
22 import java.util.Timer;
23 import java.util.TimerTask;
24 import java.text.*;
25
26 import android.app.Activity;
27 import android.app.PendingIntent;
28 import android.bluetooth.BluetoothAdapter;
29 import android.bluetooth.BluetoothDevice;
30 import android.content.Intent;
31 import android.content.Context;
32 import android.content.ComponentName;
33 import android.content.ServiceConnection;
34 import android.content.DialogInterface;
35 import android.os.IBinder;
36 import android.os.Bundle;
37 import android.os.Handler;
38 import android.os.Message;
39 import android.os.Messenger;
40 import android.os.RemoteException;
41 import android.content.res.Resources;
42 import android.support.v4.app.FragmentActivity;
43 import android.support.v4.app.FragmentManager;
44 import android.util.DisplayMetrics;
45 import android.view.*;
46 import android.widget.*;
47 import android.app.AlertDialog;
48 import android.location.Location;
49 import android.hardware.usb.*;
50 import android.graphics.*;
51 import android.graphics.drawable.*;
52
53 import org.altusmetrum.altoslib_7.*;
54
55 public class AltosDroid extends FragmentActivity implements AltosUnitsListener {
56
57         // Actions sent to the telemetry server at startup time
58
59         public static final String ACTION_BLUETOOTH = "org.altusmetrum.AltosDroid.BLUETOOTH";
60         public static final String ACTION_USB = "org.altusmetrum.AltosDroid.USB";
61
62         // Message types received by our Handler
63
64         public static final int MSG_STATE           = 1;
65         public static final int MSG_UPDATE_AGE      = 2;
66
67         // Intent request codes
68         public static final int REQUEST_CONNECT_DEVICE = 1;
69         public static final int REQUEST_ENABLE_BT      = 2;
70         public static final int REQUEST_PRELOAD_MAPS   = 3;
71         public static final int REQUEST_MAP_TYPE       = 4;
72
73         public int map_type = AltosMap.maptype_hybrid;
74
75         public static FragmentManager   fm;
76
77         private BluetoothAdapter mBluetoothAdapter = null;
78
79         // Flight state values
80         private TextView mCallsignView;
81         private TextView mRSSIView;
82         private TextView mSerialView;
83         private TextView mFlightView;
84         private RelativeLayout mStateLayout;
85         private TextView mStateView;
86         private TextView mAgeView;
87         private boolean  mAgeViewOld;
88         private int mAgeNewColor;
89         private int mAgeOldColor;
90
91         // field to display the version at the bottom of the screen
92         private TextView mVersion;
93
94         private double frequency;
95         private int telemetry_rate;
96
97         // Tabs
98         TabHost         mTabHost;
99         AltosViewPager  mViewPager;
100         TabsAdapter     mTabsAdapter;
101         ArrayList<AltosDroidTab> mTabs = new ArrayList<AltosDroidTab>();
102         int             tabHeight;
103
104         // Timer and Saved flight state for Age calculation
105         private Timer timer;
106         AltosState saved_state;
107         TelemetryState  telemetry_state;
108         Integer[]       serials;
109
110         UsbDevice       pending_usb_device;
111         boolean         start_with_usb;
112
113         // Service
114         private boolean mIsBound   = false;
115         private Messenger mService = null;
116         final Messenger mMessenger = new Messenger(new IncomingHandler(this));
117
118         // Text to Speech
119         private AltosVoice mAltosVoice = null;
120
121         // The Handler that gets information back from the Telemetry Service
122         static class IncomingHandler extends Handler {
123                 private final WeakReference<AltosDroid> mAltosDroid;
124                 IncomingHandler(AltosDroid ad) { mAltosDroid = new WeakReference<AltosDroid>(ad); }
125
126                 @Override
127                 public void handleMessage(Message msg) {
128                         AltosDroid ad = mAltosDroid.get();
129
130                         switch (msg.what) {
131                         case MSG_STATE:
132                                 AltosDebug.debug("MSG_STATE");
133                                 if (msg.obj == null) {
134                                         AltosDebug.debug("telemetry_state null!");
135                                         return;
136                                 }
137                                 ad.update_state((TelemetryState) msg.obj);
138                                 break;
139                         case MSG_UPDATE_AGE:
140                                 AltosDebug.debug("MSG_UPDATE_AGE");
141                                 ad.update_age();
142                                 break;
143                         }
144                 }
145         };
146
147
148         private ServiceConnection mConnection = new ServiceConnection() {
149                 public void onServiceConnected(ComponentName className, IBinder service) {
150                         mService = new Messenger(service);
151                         try {
152                                 Message msg = Message.obtain(null, TelemetryService.MSG_REGISTER_CLIENT);
153                                 msg.replyTo = mMessenger;
154                                 mService.send(msg);
155                         } catch (RemoteException e) {
156                                 // In this case the service has crashed before we could even do anything with it
157                         }
158                         if (pending_usb_device != null) {
159                                 try {
160                                         mService.send(Message.obtain(null, TelemetryService.MSG_OPEN_USB, pending_usb_device));
161                                         pending_usb_device = null;
162                                 } catch (RemoteException e) {
163                                 }
164                         }
165                 }
166
167                 public void onServiceDisconnected(ComponentName className) {
168                         // This is called when the connection with the service has been unexpectedly disconnected - process crashed.
169                         mService = null;
170                 }
171         };
172
173         void doBindService() {
174                 bindService(new Intent(this, TelemetryService.class), mConnection, Context.BIND_AUTO_CREATE);
175                 mIsBound = true;
176         }
177
178         void doUnbindService() {
179                 if (mIsBound) {
180                         // If we have received the service, and hence registered with it, then now is the time to unregister.
181                         if (mService != null) {
182                                 try {
183                                         Message msg = Message.obtain(null, TelemetryService.MSG_UNREGISTER_CLIENT);
184                                         msg.replyTo = mMessenger;
185                                         mService.send(msg);
186                                 } catch (RemoteException e) {
187                                         // There is nothing special we need to do if the service has crashed.
188                                 }
189                         }
190                         // Detach our existing connection.
191                         unbindService(mConnection);
192                         mIsBound = false;
193                 }
194         }
195
196         public void registerTab(AltosDroidTab mTab) {
197                 mTabs.add(mTab);
198         }
199
200         public void unregisterTab(AltosDroidTab mTab) {
201                 mTabs.remove(mTab);
202         }
203
204         public void units_changed(boolean imperial_units) {
205                 for (AltosDroidTab mTab : mTabs)
206                         mTab.units_changed(imperial_units);
207         }
208
209         void update_title(TelemetryState telemetry_state) {
210                 switch (telemetry_state.connect) {
211                 case TelemetryState.CONNECT_CONNECTED:
212                         if (telemetry_state.config != null) {
213                                 String str = String.format("S/N %d %6.3f MHz", telemetry_state.config.serial,
214                                                            telemetry_state.frequency);
215                                 if (telemetry_state.telemetry_rate != AltosLib.ao_telemetry_rate_38400)
216                                         str = str.concat(String.format(" %d bps",
217                                                                        AltosLib.ao_telemetry_rate_values[telemetry_state.telemetry_rate]));
218                                 setTitle(str);
219                         } else {
220                                 setTitle(R.string.title_connected_to);
221                         }
222                         break;
223                 case TelemetryState.CONNECT_CONNECTING:
224                         if (telemetry_state.address != null)
225                                 setTitle(String.format("Connecting to %s...", telemetry_state.address.name));
226                         else
227                                 setTitle("Connecting to something...");
228                         break;
229                 case TelemetryState.CONNECT_DISCONNECTED:
230                 case TelemetryState.CONNECT_NONE:
231                         setTitle(R.string.title_not_connected);
232                         break;
233                 }
234         }
235
236         void start_timer() {
237                 if (timer == null) {
238                         timer = new Timer();
239                         timer.scheduleAtFixedRate(new TimerTask(){ public void run() {onTimerTick();}}, 1000L, 1000L);
240                 }
241         }
242
243         void stop_timer() {
244                 if (timer != null) {
245                         timer.cancel();
246                         timer.purge();
247                         timer = null;
248                 }
249         }
250
251         int     current_serial;
252         long    switch_time;
253
254         void set_switch_time() {
255                 switch_time = System.currentTimeMillis();
256         }
257
258         boolean registered_units_listener;
259
260         void update_state(TelemetryState new_telemetry_state) {
261
262                 if (new_telemetry_state != null)
263                         telemetry_state = new_telemetry_state;
264
265                 if (current_serial == 0)
266                         current_serial = telemetry_state.latest_serial;
267
268                 if (!registered_units_listener) {
269                         registered_units_listener = true;
270                         AltosPreferences.register_units_listener(this);
271                 }
272
273                 serials = telemetry_state.states.keySet().toArray(new Integer[0]);
274
275                 update_title(telemetry_state);
276
277                 AltosState      state = null;
278                 boolean         aged = true;
279
280                 if (telemetry_state.states.containsKey(current_serial)) {
281                         state = telemetry_state.states.get(current_serial);
282                         int age = state_age(state);
283                         if (age < 20)
284                                 aged = false;
285                         if (switch_time != 0 && (switch_time - state.received_time) > 0)
286                                 aged = true;
287                 }
288
289                 if (aged) {
290                         AltosState      newest_state = null;
291                         int             newest_age = 0;
292
293                         for (int serial : telemetry_state.states.keySet()) {
294                                 AltosState      existing = telemetry_state.states.get(serial);
295                                 int             existing_age = state_age(existing);
296
297                                 if (newest_state == null || existing_age < newest_age) {
298                                         newest_state = existing;
299                                         newest_age = existing_age;
300                                 }
301                         }
302
303                         if (newest_state != null)
304                                 state = newest_state;
305                 }
306
307                 update_ui(telemetry_state, state, telemetry_state.location);
308
309                 start_timer();
310         }
311
312         boolean same_string(String a, String b) {
313                 if (a == null) {
314                         if (b == null)
315                                 return true;
316                         return false;
317                 } else {
318                         if (b == null)
319                                 return false;
320                         return a.equals(b);
321                 }
322         }
323
324
325         private int blend_component(int a, int b, double r, int shift, int mask) {
326                 return ((int) (((a >> shift) & mask) * r + ((b >> shift) & mask) * (1 - r)) & mask) << shift;
327         }
328         private int blend_color(int a, int b, double r) {
329                 return (blend_component(a, b, r, 0, 0xff) |
330                         blend_component(a, b, r, 8, 0xff) |
331                         blend_component(a, b, r, 16, 0xff) |
332                         blend_component(a, b, r, 24, 0xff));
333         }
334
335         int state_age(AltosState state) {
336                 return (int) ((System.currentTimeMillis() - state.received_time + 500) / 1000);
337         }
338
339         void set_screen_on(int age) {
340                 if (age < 60)
341                         getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
342                 else
343                         getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
344         }
345
346         void update_age() {
347                 if (saved_state != null) {
348                         int age = state_age(saved_state);
349
350                         double age_scale = age / 100.0;
351
352                         if (age_scale > 1.0)
353                                 age_scale = 1.0;
354
355                         mAgeView.setTextColor(blend_color(mAgeOldColor, mAgeNewColor, age_scale));
356
357                         set_screen_on(age);
358
359                         String  text;
360                         if (age < 60)
361                                 text = String.format("%ds", age);
362                         else if (age < 60 * 60)
363                                 text = String.format("%dm", age / 60);
364                         else if (age < 60 * 60 * 24)
365                                 text = String.format("%dh", age / (60 * 60));
366                         else
367                                 text = String.format("%dd", age / (24 * 60 * 60));
368                         mAgeView.setText(text);
369                 }
370         }
371
372         void update_ui(TelemetryState telem_state, AltosState state, Location location) {
373
374                 int prev_state = AltosLib.ao_flight_invalid;
375
376                 AltosGreatCircle from_receiver = null;
377
378                 if (saved_state != null)
379                         prev_state = saved_state.state;
380
381                 if (state != null) {
382                         set_screen_on(state_age(state));
383
384                         if (state.state == AltosLib.ao_flight_stateless) {
385                                 boolean prev_locked = false;
386                                 boolean locked = false;
387
388                                 if(state.gps != null)
389                                         locked = state.gps.locked;
390                                 if (saved_state != null && saved_state.gps != null)
391                                         prev_locked = saved_state.gps.locked;
392                                 if (prev_locked != locked) {
393                                         String currentTab = mTabHost.getCurrentTabTag();
394                                         if (locked) {
395                                                 if (currentTab.equals("pad")) mTabHost.setCurrentTabByTag("descent");
396                                         } else {
397                                                 if (currentTab.equals("descent")) mTabHost.setCurrentTabByTag("pad");
398                                         }
399                                 }
400                         } else {
401                                 if (prev_state != state.state) {
402                                         String currentTab = mTabHost.getCurrentTabTag();
403                                         switch (state.state) {
404                                         case AltosLib.ao_flight_boost:
405                                                 if (currentTab.equals("pad")) mTabHost.setCurrentTabByTag("ascent");
406                                                 break;
407                                         case AltosLib.ao_flight_drogue:
408                                                 if (currentTab.equals("ascent")) mTabHost.setCurrentTabByTag("descent");
409                                                 break;
410                                         case AltosLib.ao_flight_landed:
411                                                 if (currentTab.equals("descent")) mTabHost.setCurrentTabByTag("landed");
412                                                 break;
413                                         case AltosLib.ao_flight_stateless:
414                                                 if (currentTab.equals("pad")) mTabHost.setCurrentTabByTag("descent");
415                                                 break;
416                                         }
417                                 }
418                         }
419
420                         if (location != null && state.gps != null && state.gps.locked) {
421                                 double altitude = 0;
422                                 if (location.hasAltitude())
423                                         altitude = location.getAltitude();
424                                 from_receiver = new AltosGreatCircle(location.getLatitude(),
425                                                                      location.getLongitude(),
426                                                                      altitude,
427                                                                      state.gps.lat,
428                                                                      state.gps.lon,
429                                                                      state.gps.alt);
430                         }
431
432                         if (saved_state == null || !same_string(saved_state.callsign, state.callsign)) {
433                                 mCallsignView.setText(state.callsign);
434                         }
435                         if (saved_state == null || state.serial != saved_state.serial) {
436                                 mSerialView.setText(String.format("%d", state.serial));
437                         }
438                         if (saved_state == null || state.flight != saved_state.flight) {
439                                 if (state.flight == AltosLib.MISSING)
440                                         mFlightView.setText("");
441                                 else
442                                         mFlightView.setText(String.format("%d", state.flight));
443                         }
444                         if (saved_state == null || state.state != saved_state.state) {
445                                 if (state.state == AltosLib.ao_flight_stateless) {
446                                         mStateLayout.setVisibility(View.GONE);
447                                 } else {
448                                         mStateView.setText(state.state_name());
449                                         mStateLayout.setVisibility(View.VISIBLE);
450                                 }
451                         }
452                         if (saved_state == null || state.rssi != saved_state.rssi) {
453                                 mRSSIView.setText(String.format("%d", state.rssi));
454                         }
455                 }
456
457                 for (AltosDroidTab mTab : mTabs)
458                         mTab.update_ui(telem_state, state, from_receiver, location, mTab == mTabsAdapter.currentItem());
459
460                 if (state != null && mAltosVoice != null)
461                         mAltosVoice.tell(state, from_receiver);
462
463                 saved_state = state;
464         }
465
466         private void onTimerTick() {
467                 try {
468                         mMessenger.send(Message.obtain(null, MSG_UPDATE_AGE));
469                 } catch (RemoteException e) {
470                 }
471         }
472
473         static String pos(double p, String pos, String neg) {
474                 String  h = pos;
475                 if (p == AltosLib.MISSING)
476                         return "";
477                 if (p < 0) {
478                         h = neg;
479                         p = -p;
480                 }
481                 int deg = (int) Math.floor(p);
482                 double min = (p - Math.floor(p)) * 60.0;
483                 return String.format("%d°%9.4f\" %s", deg, min, h);
484         }
485
486         static String number(String format, double value) {
487                 if (value == AltosLib.MISSING)
488                         return "";
489                 return String.format(format, value);
490         }
491
492         static String integer(String format, int value) {
493                 if (value == AltosLib.MISSING)
494                         return "";
495                 return String.format(format, value);
496         }
497
498         private View create_tab_view(String label) {
499                 LayoutInflater inflater = (LayoutInflater) this.getLayoutInflater();
500                 View tab_view = inflater.inflate(R.layout.tab_layout, null);
501                 TextView text_view = (TextView) tab_view.findViewById (R.id.tabLabel);
502                 text_view.setText(label);
503                 return tab_view;
504         }
505
506         @Override
507         public void onCreate(Bundle savedInstanceState) {
508                 super.onCreate(savedInstanceState);
509                 AltosDebug.init(this);
510                 AltosDebug.debug("+++ ON CREATE +++");
511
512                 fm = getSupportFragmentManager();
513
514                 // Set up the window layout
515                 setContentView(R.layout.altosdroid);
516
517                 // Create the Tabs and ViewPager
518                 mTabHost = (TabHost)findViewById(android.R.id.tabhost);
519                 mTabHost.setup();
520
521                 mViewPager = (AltosViewPager)findViewById(R.id.pager);
522                 mViewPager.setOffscreenPageLimit(4);
523
524                 mTabsAdapter = new TabsAdapter(this, mTabHost, mViewPager);
525
526                 mTabsAdapter.addTab(mTabHost.newTabSpec("pad").setIndicator(create_tab_view("Pad")), TabPad.class, null);
527                 mTabsAdapter.addTab(mTabHost.newTabSpec("ascent").setIndicator(create_tab_view("Ascent")), TabAscent.class, null);
528                 mTabsAdapter.addTab(mTabHost.newTabSpec("descent").setIndicator(create_tab_view("Descent")), TabDescent.class, null);
529                 mTabsAdapter.addTab(mTabHost.newTabSpec("landed").setIndicator(create_tab_view("Landed")), TabLanded.class, null);
530                 mTabsAdapter.addTab(mTabHost.newTabSpec("map").setIndicator(create_tab_view("Map")), TabMap.class, null);
531                 mTabsAdapter.addTab(mTabHost.newTabSpec("offmap").setIndicator(create_tab_view("OffMap")), TabMapOffline.class, null);
532
533                 // Display the Version
534                 mVersion = (TextView) findViewById(R.id.version);
535                 mVersion.setText("Version: " + BuildInfo.version +
536                                  "  Built: " + BuildInfo.builddate + " " + BuildInfo.buildtime + " " + BuildInfo.buildtz +
537                                  "  (" + BuildInfo.branch + "-" + BuildInfo.commitnum + "-" + BuildInfo.commithash + ")");
538
539                 mCallsignView  = (TextView) findViewById(R.id.callsign_value);
540                 mRSSIView      = (TextView) findViewById(R.id.rssi_value);
541                 mSerialView    = (TextView) findViewById(R.id.serial_value);
542                 mFlightView    = (TextView) findViewById(R.id.flight_value);
543                 mStateLayout   = (RelativeLayout) findViewById(R.id.state_container);
544                 mStateView     = (TextView) findViewById(R.id.state_value);
545                 mAgeView       = (TextView) findViewById(R.id.age_value);
546                 mAgeNewColor   = mAgeView.getTextColors().getDefaultColor();
547                 mAgeOldColor   = getResources().getColor(R.color.old_color);
548         }
549
550         private boolean ensureBluetooth() {
551                 // Get local Bluetooth adapter
552                 mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
553
554                 // If the adapter is null, then Bluetooth is not supported
555                 if (mBluetoothAdapter == null) {
556                         Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
557                         return false;
558                 }
559
560                 if (!mBluetoothAdapter.isEnabled()) {
561                         Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
562                         startActivityForResult(enableIntent, AltosDroid.REQUEST_ENABLE_BT);
563                 }
564
565                 return true;
566         }
567
568         private boolean check_usb() {
569                 UsbDevice       device = AltosUsb.find_device(this, AltosLib.product_basestation);
570
571                 if (device != null) {
572                         Intent          i = new Intent(this, AltosDroid.class);
573                         PendingIntent   pi = PendingIntent.getActivity(this, 0, new Intent("hello world", null, this, AltosDroid.class), 0);
574
575                         if (AltosUsb.request_permission(this, device, pi)) {
576                                 connectUsb(device);
577                         }
578                         start_with_usb = true;
579                         return true;
580                 }
581
582                 start_with_usb = false;
583
584                 return false;
585         }
586
587         private void noticeIntent(Intent intent) {
588
589                 /* Ok, this is pretty convenient.
590                  *
591                  * When a USB device is plugged in, and our 'hotplug'
592                  * intent registration fires, we get an Intent with
593                  * EXTRA_DEVICE set.
594                  *
595                  * When we start up and see a usb device and request
596                  * permission to access it, that queues a
597                  * PendingIntent, which has the EXTRA_DEVICE added in,
598                  * along with the EXTRA_PERMISSION_GRANTED field as
599                  * well.
600                  *
601                  * So, in both cases, we get the device name using the
602                  * same call. We check to see if access was granted,
603                  * in which case we ignore the device field and do our
604                  * usual startup thing.
605                  */
606
607                 UsbDevice device = (UsbDevice) intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
608                 boolean granted = intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, true);
609
610                 AltosDebug.debug("intent %s device %s granted %s", intent, device, granted);
611
612                 if (!granted)
613                         device = null;
614
615                 if (device != null) {
616                         AltosDebug.debug("intent has usb device " + device.toString());
617                         connectUsb(device);
618                 } else {
619
620                         /* 'granted' is only false if this intent came
621                          * from the request_permission call and
622                          * permission was denied. In which case, we
623                          * don't want to loop forever...
624                          */
625                         if (granted) {
626                                 AltosDebug.debug("check for a USB device at startup");
627                                 if (check_usb())
628                                         return;
629                         }
630                         AltosDebug.debug("Starting by looking for bluetooth devices");
631                         if (ensureBluetooth())
632                                 return;
633                         finish();
634                 }
635         }
636
637         @Override
638         public void onStart() {
639                 super.onStart();
640                 AltosDebug.debug("++ ON START ++");
641
642                 noticeIntent(getIntent());
643
644                 // Start Telemetry Service
645                 String  action = start_with_usb ? ACTION_USB : ACTION_BLUETOOTH;
646
647                 startService(new Intent(action, null, AltosDroid.this, TelemetryService.class));
648
649                 doBindService();
650
651                 if (mAltosVoice == null)
652                         mAltosVoice = new AltosVoice(this);
653
654         }
655
656         @Override
657         public void onNewIntent(Intent intent) {
658                 super.onNewIntent(intent);
659                 AltosDebug.debug("onNewIntent");
660                 noticeIntent(intent);
661         }
662
663         @Override
664         public void onResume() {
665                 super.onResume();
666                 AltosDebug.debug("+ ON RESUME +");
667         }
668
669         @Override
670         public void onPause() {
671                 super.onPause();
672                 AltosDebug.debug("- ON PAUSE -");
673         }
674
675         @Override
676         public void onStop() {
677                 super.onStop();
678                 AltosDebug.debug("-- ON STOP --");
679
680                 doUnbindService();
681                 if (mAltosVoice != null) {
682                         mAltosVoice.stop();
683                         mAltosVoice = null;
684                 }
685         }
686
687         @Override
688         public void onDestroy() {
689                 super.onDestroy();
690                 AltosDebug.debug("--- ON DESTROY ---");
691
692                 if (mAltosVoice != null) mAltosVoice.stop();
693                 stop_timer();
694         }
695
696         protected void onActivityResult(int requestCode, int resultCode, Intent data) {
697                 AltosDebug.debug("onActivityResult " + resultCode);
698                 switch (requestCode) {
699                 case REQUEST_CONNECT_DEVICE:
700                         // When DeviceListActivity returns with a device to connect to
701                         if (resultCode == Activity.RESULT_OK) {
702                                 connectDevice(data);
703                         }
704                         break;
705                 case REQUEST_ENABLE_BT:
706                         // When the request to enable Bluetooth returns
707                         if (resultCode == Activity.RESULT_OK) {
708                                 // Bluetooth is now enabled, so set up a chat session
709                                 //setupChat();
710                         } else {
711                                 // User did not enable Bluetooth or an error occured
712                                 AltosDebug.error("BT not enabled");
713                                 stopService(new Intent(AltosDroid.this, TelemetryService.class));
714                                 Toast.makeText(this, R.string.bt_not_enabled, Toast.LENGTH_SHORT).show();
715                                 finish();
716                         }
717                         break;
718                 case REQUEST_MAP_TYPE:
719                         if (resultCode == Activity.RESULT_OK)
720                                 set_map_type(data);
721                         break;
722                 }
723         }
724
725         private void connectUsb(UsbDevice device) {
726                 if (mService == null)
727                         pending_usb_device = device;
728                 else {
729                         // Attempt to connect to the device
730                         try {
731                                 mService.send(Message.obtain(null, TelemetryService.MSG_OPEN_USB, device));
732                                 AltosDebug.debug("Sent OPEN_USB message");
733                         } catch (RemoteException e) {
734                                 AltosDebug.debug("connect device message failed");
735                         }
736                 }
737         }
738
739         private void connectDevice(Intent data) {
740                 // Attempt to connect to the device
741                 try {
742                         String address = data.getExtras().getString(DeviceListActivity.EXTRA_DEVICE_ADDRESS);
743                         String name = data.getExtras().getString(DeviceListActivity.EXTRA_DEVICE_NAME);
744
745                         AltosDebug.debug("Connecting to " + address + " " + name);
746                         DeviceAddress   a = new DeviceAddress(address, name);
747                         mService.send(Message.obtain(null, TelemetryService.MSG_CONNECT, a));
748                         AltosDebug.debug("Sent connecting message");
749                 } catch (RemoteException e) {
750                         AltosDebug.debug("connect device message failed");
751                 }
752         }
753
754         private void disconnectDevice() {
755                 try {
756                         mService.send(Message.obtain(null, TelemetryService.MSG_DISCONNECT, null));
757                 } catch (RemoteException e) {
758                 }
759         }
760
761         private void set_map_type(Intent data) {
762                 int type = data.getIntExtra(MapTypeActivity.EXTRA_MAP_TYPE, -1);
763
764                 AltosDebug.debug("intent set_map_type %d\n", type);
765                 if (type != -1) {
766                         map_type = type;
767                         for (AltosDroidTab mTab : mTabs)
768                                 mTab.set_map_type(map_type);
769                 }
770         }
771
772         @Override
773         public boolean onCreateOptionsMenu(Menu menu) {
774                 MenuInflater inflater = getMenuInflater();
775                 inflater.inflate(R.menu.option_menu, menu);
776                 return true;
777         }
778
779         void setFrequency(double freq) {
780                 try {
781                         mService.send(Message.obtain(null, TelemetryService.MSG_SETFREQUENCY, freq));
782                         set_switch_time();
783                 } catch (RemoteException e) {
784                 }
785         }
786
787         void setFrequency(String freq) {
788                 try {
789                         setFrequency (AltosParse.parse_double_net(freq.substring(11, 17)));
790                 } catch (ParseException e) {
791                 }
792         }
793
794         void setBaud(int baud) {
795                 try {
796                         mService.send(Message.obtain(null, TelemetryService.MSG_SETBAUD, baud));
797                         set_switch_time();
798                 } catch (RemoteException e) {
799                 }
800         }
801
802         void setBaud(String baud) {
803                 try {
804                         int     value = Integer.parseInt(baud);
805                         int     rate = AltosLib.ao_telemetry_rate_38400;
806                         switch (value) {
807                         case 2400:
808                                 rate = AltosLib.ao_telemetry_rate_2400;
809                                 break;
810                         case 9600:
811                                 rate = AltosLib.ao_telemetry_rate_9600;
812                                 break;
813                         case 38400:
814                                 rate = AltosLib.ao_telemetry_rate_38400;
815                                 break;
816                         }
817                         setBaud(rate);
818                 } catch (NumberFormatException e) {
819                 }
820         }
821
822         void select_tracker(int serial) {
823                 int i;
824                 for (i = 0; i < serials.length; i++)
825                         if (serials[i] == serial)
826                                 break;
827                 if (i == serials.length)
828                         return;
829
830                 current_serial = serial;
831                 update_state(null);
832         }
833
834         void delete_track(int serial) {
835                 try {
836                         mService.send(Message.obtain(null, TelemetryService.MSG_DELETE_SERIAL, (Integer) serial));
837                 } catch (Exception ex) {
838                 }
839         }
840
841         @Override
842         public boolean onOptionsItemSelected(MenuItem item) {
843                 Intent serverIntent = null;
844                 switch (item.getItemId()) {
845                 case R.id.connect_scan:
846                         if (ensureBluetooth()) {
847                                 // Launch the DeviceListActivity to see devices and do scan
848                                 serverIntent = new Intent(this, DeviceListActivity.class);
849                                 startActivityForResult(serverIntent, REQUEST_CONNECT_DEVICE);
850                         }
851                         return true;
852                 case R.id.disconnect:
853                         /* Disconnect the device
854                          */
855                         disconnectDevice();
856                         return true;
857                 case R.id.quit:
858                         AltosDebug.debug("R.id.quit");
859                         disconnectDevice();
860                         finish();
861                         return true;
862                 case R.id.select_freq:
863                         // Set the TBT radio frequency
864
865                         final String[] frequencies = {
866                                 "Channel 0 (434.550MHz)",
867                                 "Channel 1 (434.650MHz)",
868                                 "Channel 2 (434.750MHz)",
869                                 "Channel 3 (434.850MHz)",
870                                 "Channel 4 (434.950MHz)",
871                                 "Channel 5 (435.050MHz)",
872                                 "Channel 6 (435.150MHz)",
873                                 "Channel 7 (435.250MHz)",
874                                 "Channel 8 (435.350MHz)",
875                                 "Channel 9 (435.450MHz)"
876                         };
877
878                         AlertDialog.Builder builder_freq = new AlertDialog.Builder(this);
879                         builder_freq.setTitle("Pick a frequency");
880                         builder_freq.setItems(frequencies,
881                                          new DialogInterface.OnClickListener() {
882                                                  public void onClick(DialogInterface dialog, int item) {
883                                                          setFrequency(frequencies[item]);
884                                                  }
885                                          });
886                         AlertDialog alert_freq = builder_freq.create();
887                         alert_freq.show();
888                         return true;
889                 case R.id.select_rate:
890                         // Set the TBT baud rate
891
892                         final String[] rates = {
893                                 "38400",
894                                 "9600",
895                                 "2400",
896                         };
897
898                         AlertDialog.Builder builder_rate = new AlertDialog.Builder(this);
899                         builder_rate.setTitle("Pick a baud rate");
900                         builder_rate.setItems(rates,
901                                          new DialogInterface.OnClickListener() {
902                                                  public void onClick(DialogInterface dialog, int item) {
903                                                          setBaud(rates[item]);
904                                                  }
905                                          });
906                         AlertDialog alert_rate = builder_rate.create();
907                         alert_rate.show();
908                         return true;
909                 case R.id.change_units:
910                         boolean imperial = AltosPreferences.imperial_units();
911                         AltosPreferences.set_imperial_units(!imperial);
912                         return true;
913                 case R.id.preload_maps:
914                         serverIntent = new Intent(this, PreloadMapActivity.class);
915                         startActivityForResult(serverIntent, REQUEST_PRELOAD_MAPS);
916                         return true;
917                 case R.id.map_type:
918                         serverIntent = new Intent(this, MapTypeActivity.class);
919                         startActivityForResult(serverIntent, REQUEST_MAP_TYPE);
920                         return true;
921                 case R.id.select_tracker:
922                         if (serials != null) {
923                                 String[] trackers = new String[serials.length];
924                                 for (int i = 0; i < serials.length; i++)
925                                         trackers[i] = String.format("%d", serials[i]);
926                                 AlertDialog.Builder builder_serial = new AlertDialog.Builder(this);
927                                 builder_serial.setTitle("Select a tracker");
928                                 builder_serial.setItems(trackers,
929                                                         new DialogInterface.OnClickListener() {
930                                                                 public void onClick(DialogInterface dialog, int item) {
931                                                                         select_tracker(serials[item]);
932                                                                 }
933                                                         });
934                                 AlertDialog alert_serial = builder_serial.create();
935                                 alert_serial.show();
936
937                         }
938                         return true;
939                 case R.id.delete_track:
940                         if (serials != null) {
941                                 String[] trackers = new String[serials.length];
942                                 for (int i = 0; i < serials.length; i++)
943                                         trackers[i] = String.format("%d", serials[i]);
944                                 AlertDialog.Builder builder_serial = new AlertDialog.Builder(this);
945                                 builder_serial.setTitle("Delete a track");
946                                 builder_serial.setItems(trackers,
947                                                         new DialogInterface.OnClickListener() {
948                                                                 public void onClick(DialogInterface dialog, int item) {
949                                                                         delete_track(serials[item]);
950                                                                 }
951                                                         });
952                                 AlertDialog alert_serial = builder_serial.create();
953                                 alert_serial.show();
954
955                         }
956                         return true;
957                 }
958                 return false;
959         }
960 }