altoslib: Support binary reading/writing in AltosLink
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / GoNoGoLights.java
1 /*
2  * Copyright © 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 android.content.res.Resources;
21 import android.graphics.drawable.Drawable;
22 import android.widget.ImageView;
23
24 public class GoNoGoLights {
25         private Boolean state;
26         private Boolean missing;
27         private Boolean set;
28
29         private ImageView red;
30         private ImageView green;
31
32         private Drawable dRed;
33         private Drawable dGreen;
34         private Drawable dGray;
35
36         public GoNoGoLights(ImageView in_red, ImageView in_green, Resources r) {
37                 red = in_red;
38                 green = in_green;
39                 state = false;
40                 missing = true;
41                 set = false;
42
43                 dRed   = r.getDrawable(R.drawable.redled);
44                 dGreen = r.getDrawable(R.drawable.greenled);
45                 dGray  = r.getDrawable(R.drawable.grayled);
46         }
47
48         public void set(Boolean s, Boolean m) {
49                 if (set && s == state && m == missing) return;
50                 state = s;
51                 missing = m;
52                 set = true;
53                 if (missing) {
54                         red.setImageDrawable(dGray);
55                         green.setImageDrawable(dGray);
56                 } else if (state) {
57                         red.setImageDrawable(dGray);
58                         green.setImageDrawable(dGreen);
59                 } else {
60                         red.setImageDrawable(dRed);
61                         green.setImageDrawable(dGray);
62                 }
63         }
64 }