Remove ant build files
[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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.AltosDroid;
20
21 import android.content.res.Resources;
22 import android.graphics.drawable.Drawable;
23 import android.widget.ImageView;
24 import android.view.View;
25
26 public class GoNoGoLights {
27         private Boolean state;
28         private Boolean missing;
29         private Boolean set;
30
31         private ImageView red;
32         private ImageView green;
33
34         private Drawable dRed;
35         private Drawable dGreen;
36         private Drawable dGray;
37
38         public GoNoGoLights(ImageView in_red, ImageView in_green, Resources r) {
39                 red = in_red;
40                 green = in_green;
41                 state = false;
42                 missing = true;
43                 set = false;
44
45                 dRed   = r.getDrawable(R.drawable.redled);
46                 dGreen = r.getDrawable(R.drawable.greenled);
47                 dGray  = r.getDrawable(R.drawable.grayled);
48         }
49
50         public void set(Boolean s, Boolean m) {
51                 if (set && s == state && m == missing) return;
52                 state = s;
53                 missing = m;
54                 set = true;
55                 if (missing) {
56                         red.setImageDrawable(dGray);
57                         green.setImageDrawable(dGray);
58                 } else if (state) {
59                         red.setImageDrawable(dGray);
60                         green.setImageDrawable(dGreen);
61                 } else {
62                         red.setImageDrawable(dRed);
63                         green.setImageDrawable(dGray);
64                 }
65         }
66 }