1db839597f8e05f0ade863cfa4a03f3f160612c4
[fw/altos] / ao-tools / altosui / AltosSiteMap.java
1 /*
2  * Copyright © 2010 Anthony Towns <aj@erisian.com.au>
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 altosui;
19
20 import java.awt.*;
21 import java.awt.image.*;
22 import java.awt.event.*;
23 import javax.swing.*;
24 import javax.swing.event.MouseInputAdapter;
25 import javax.imageio.ImageIO;
26 import javax.swing.table.*;
27 import java.io.*;
28 import java.util.*;
29 import java.text.*;
30 import java.util.prefs.*;
31 import java.lang.Math;
32 import java.awt.geom.Point2D;
33 import java.awt.geom.Line2D;
34
35 public class AltosSiteMap extends JScrollPane implements AltosFlightDisplay {
36     public void reset() {
37         // nothing
38     }
39     public void show(AltosState state, int crc_errors) {
40         for (int x = 0; x < mapTiles.length; x++) {
41             mapTiles[x].show(state, crc_errors);
42         }
43     }
44   
45     AltosSiteMapTile [] mapTiles = new AltosSiteMapTile[9];
46
47     class GrabNDrag extends MouseInputAdapter {
48         private JComponent scroll;
49         private Point startPt = new Point();
50
51         public GrabNDrag(JComponent parent) {
52             scroll = parent;
53         }
54
55         public void mousePressed(MouseEvent e) {
56             startPt.setLocation(e.getPoint());
57         }
58         public void mouseDragged(MouseEvent e) {
59             int xd = e.getX() - startPt.x;
60             int yd = e.getY() - startPt.y;
61
62             Rectangle r = scroll.getVisibleRect();
63             r.x -= xd;
64             r.y -= yd;
65             scroll.scrollRectToVisible(r);
66         }
67     }
68
69     public AltosSiteMap() {
70         JComponent comp = new JComponent() {
71             GrabNDrag scroller = new GrabNDrag(this);
72             {
73                 addMouseMotionListener(scroller);
74                 addMouseListener(scroller);
75                 setAutoscrolls(true);
76             }
77         };
78
79         GridBagLayout layout = new GridBagLayout();
80         comp.setLayout(layout);
81
82         GridBagConstraints c = new GridBagConstraints();
83         c.anchor = GridBagConstraints.CENTER;
84         c.fill = GridBagConstraints.BOTH;
85
86         for (int x = 0; x < 9; x++) {
87             c.gridx = x % 3; c.gridy = x / 3;
88             mapTiles[x] = new AltosSiteMapTile((x%3)-1, (x/3)-1);
89             layout.setConstraints(mapTiles[x], c);
90             comp.add(mapTiles[x]);
91         }
92         setViewportView(comp);
93     }
94 }
95