6cecbdf1aa9b8203b20ce33109bd0ec1cce6f136
[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 import android.view.View;
24
25 public class GoNoGoLights {
26         private Boolean state;
27         private Boolean missing;
28         private Boolean set;
29
30         private ImageView red;
31         private ImageView green;
32
33         private Drawable dRed;
34         private Drawable dGreen;
35         private Drawable dGray;
36
37         public GoNoGoLights(ImageView in_red, ImageView in_green, Resources r) {
38                 red = in_red;
39                 green = in_green;
40                 state = false;
41                 missing = true;
42                 set = false;
43
44                 dRed   = r.getDrawable(R.drawable.redled);
45                 dGreen = r.getDrawable(R.drawable.greenled);
46                 dGray  = r.getDrawable(R.drawable.grayled);
47         }
48
49         public void set(Boolean s, Boolean m) {
50                 if (set && s == state && m == missing) return;
51                 state = s;
52                 missing = m;
53                 set = true;
54                 if (missing) {
55                         red.setImageDrawable(dGray);
56                         green.setImageDrawable(dGray);
57                 } else if (state) {
58                         red.setImageDrawable(dGray);
59                         green.setImageDrawable(dGreen);
60                 } else {
61                         red.setImageDrawable(dRed);
62                         green.setImageDrawable(dGray);
63                 }
64         }
65 }