Statistics
| Revision:

root / trunk / extensions / extCAD / src / com / iver / cit / gvsig / gui / cad / tools / ArcCADTool.java @ 6877

History | View | Annotate | Download (6.07 KB)

1 3782 caballero
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package com.iver.cit.gvsig.gui.cad.tools;
42
43 3832 caballero
import java.awt.Graphics;
44
import java.awt.Graphics2D;
45 4313 fjp
import java.awt.event.InputEvent;
46 3832 caballero
import java.awt.geom.Point2D;
47
48 4584 caballero
import com.iver.andami.PluginServices;
49 5170 caballero
import com.iver.cit.gvsig.fmap.core.FShape;
50 3782 caballero
import com.iver.cit.gvsig.fmap.core.IGeometry;
51
import com.iver.cit.gvsig.fmap.core.ShapeFactory;
52
import com.iver.cit.gvsig.gui.cad.CADTool;
53 3832 caballero
import com.iver.cit.gvsig.gui.cad.DefaultCADTool;
54 5735 caballero
import com.iver.cit.gvsig.gui.cad.exception.CommandException;
55 3782 caballero
import com.iver.cit.gvsig.gui.cad.tools.smc.ArcCADToolContext;
56
import com.iver.cit.gvsig.gui.cad.tools.smc.ArcCADToolContext.ArcCADToolState;
57
58
59
/**
60
 * DOCUMENT ME!
61
 *
62
 * @author Vicente Caballero Navarro
63
 */
64
public class ArcCADTool extends DefaultCADTool {
65
    private ArcCADToolContext _fsm;
66
    private Point2D p1;
67
    private Point2D p2;
68
    private Point2D p3;
69
70
    /**
71
     * Crea un nuevo LineCADTool.
72
     */
73
    public ArcCADTool() {
74
    }
75
76
    /**
77
     * M?todo de incio, para poner el c?digo de todo lo que se requiera de una
78
     * carga previa a la utilizaci?n de la herramienta.
79
     */
80
    public void init() {
81 3883 caballero
            _fsm = new ArcCADToolContext(this);
82 3782 caballero
    }
83
84
    /* (non-Javadoc)
85
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, double, double)
86
     */
87 4313 fjp
    public void transition(double x, double y, InputEvent event) {
88 4324 caballero
        _fsm.addPoint(x, y,event);
89 3782 caballero
    }
90
91
    /* (non-Javadoc)
92
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, double)
93
     */
94 5170 caballero
    public void transition(double d){
95 5735 caballero
        _fsm.addValue(d);
96 3782 caballero
    }
97
98
    /* (non-Javadoc)
99
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, java.lang.String)
100
     */
101 5735 caballero
    public void transition(String s) throws CommandException {
102 4892 caballero
            if (!super.changeCommand(s)){
103
                    _fsm.addOption(s);
104
            }
105 3782 caballero
    }
106
107
    /**
108
     * Equivale al transition del prototipo pero sin pasarle como par? metro el
109
     * editableFeatureSource que ya estar? creado.
110
     *
111
     * @param sel Bitset con las geometr?as que est?n seleccionadas.
112
     * @param x par?metro x del punto que se pase en esta transici?n.
113
     * @param y par?metro y del punto que se pase en esta transici?n.
114
     */
115 4365 caballero
    public void addPoint(double x, double y,InputEvent event) {
116 3782 caballero
        ArcCADToolState actualState = (ArcCADToolState) _fsm.getPreviousState();
117
        String status = actualState.getName();
118
119 3978 caballero
        if (status.equals("Arc.FirstPoint")) {
120 3782 caballero
            p1 = new Point2D.Double(x, y);
121 3978 caballero
        } else if (status.equals("Arc.SecondPoint")) {
122 3782 caballero
            p2 = new Point2D.Double(x, y);
123 3978 caballero
        } else if (status.equals("Arc.ThirdPoint")) {
124 3782 caballero
            p3 = new Point2D.Double(x, y);
125
126
            IGeometry ig = ShapeFactory.createArc(p1, p2, p3);
127
128
            if (ig != null) {
129
                addGeometry(ig);
130
            }
131
        }
132
    }
133
134
    /**
135
     * M?todo para dibujar la lo necesario para el estado en el que nos
136
     * encontremos.
137
     *
138
     * @param g Graphics sobre el que dibujar.
139
     * @param selectedGeometries BitSet con las geometr?as seleccionadas.
140
     * @param x par?metro x del punto que se pase para dibujar.
141
     * @param y par?metro x del punto que se pase para dibujar.
142
     */
143 3832 caballero
    public void drawOperation(Graphics g, double x,
144 3782 caballero
        double y) {
145
        ArcCADToolState actualState = _fsm.getState();
146
        String status = actualState.getName();
147
148 3978 caballero
        if (status.equals("Arc.SecondPoint")) {
149 3782 caballero
            drawLine((Graphics2D) g, p1, new Point2D.Double(x, y));
150 3978 caballero
        } else if (status.equals("Arc.ThirdPoint")) {
151 3782 caballero
            Point2D current = new Point2D.Double(x, y);
152
            IGeometry ig = ShapeFactory.createArc(p1, p2, current);
153
154
            if (ig != null) {
155
                ig.draw((Graphics2D) g,
156
                    getCadToolAdapter().getMapControl().getViewPort(),
157
                    CADTool.modifySymbol);
158
            }
159
160
            Point2D p = getCadToolAdapter().getMapControl().getViewPort()
161
                            .fromMapPoint(p1.getX(), p1.getY());
162
            g.drawRect((int) p.getX(), (int) p.getY(), 1, 1);
163
            p = getCadToolAdapter().getMapControl().getViewPort().fromMapPoint(p2.getX(),
164
                    p2.getY());
165
            g.drawRect((int) p.getX(), (int) p.getY(), 1, 1);
166
        }
167
    }
168
169
    /**
170
     * Add a diferent option.
171
     *
172
     * @param sel DOCUMENT ME!
173
     * @param s Diferent option.
174
     */
175 3832 caballero
    public void addOption(String s) {
176 3782 caballero
        // TODO Auto-generated method stub
177
    }
178
179
    /* (non-Javadoc)
180
     * @see com.iver.cit.gvsig.gui.cad.CADTool#addvalue(double)
181
     */
182 3832 caballero
    public void addValue(double d) {
183 3782 caballero
    }
184 3883 caballero
185 4118 caballero
        public String getName() {
186 4584 caballero
                return PluginServices.getText(this,"arc_");
187 4118 caballero
        }
188
189 4892 caballero
        public String toString() {
190
                return "_arc";
191
        }
192
193 5170 caballero
        public boolean isApplicable(int shapeType) {
194
                switch (shapeType) {
195
                case FShape.POINT:
196
                case FShape.POLYGON:
197 6024 caballero
                case FShape.MULTIPOINT:
198 5170 caballero
                        return false;
199
                }
200
                return true;
201
        }
202
203 3782 caballero
}