Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1002 / extensions / extCAD / src / com / iver / cit / gvsig / gui / cad / tools / ExploitCADTool.java @ 12070

History | View | Annotate | Download (12.9 KB)

1
/* 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
import java.awt.Graphics;
44
import java.awt.event.InputEvent;
45
import java.awt.geom.PathIterator;
46
import java.awt.geom.Point2D;
47
import java.io.IOException;
48
import java.util.ArrayList;
49

    
50
import com.iver.andami.PluginServices;
51
import com.iver.cit.gvsig.CADExtension;
52
import com.iver.cit.gvsig.fmap.core.DefaultFeature;
53
import com.iver.cit.gvsig.fmap.core.FGeometryCollection;
54
import com.iver.cit.gvsig.fmap.core.FShape;
55
import com.iver.cit.gvsig.fmap.core.GeneralPathX;
56
import com.iver.cit.gvsig.fmap.core.IGeometry;
57
import com.iver.cit.gvsig.fmap.core.ShapeFactory;
58
import com.iver.cit.gvsig.fmap.core.v02.FConverter;
59
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
60
import com.iver.cit.gvsig.fmap.edition.DefaultRowEdited;
61
import com.iver.cit.gvsig.fmap.edition.EditionEvent;
62
import com.iver.cit.gvsig.fmap.edition.IRowEdited;
63
import com.iver.cit.gvsig.fmap.edition.VectorialEditableAdapter;
64
import com.iver.cit.gvsig.gui.cad.DefaultCADTool;
65
import com.iver.cit.gvsig.gui.cad.exception.CommandException;
66
import com.iver.cit.gvsig.gui.cad.tools.smc.ExploitCADToolContext;
67
import com.iver.cit.gvsig.layers.VectorialLayerEdited;
68

    
69

    
70
/**
71
 * Elimina la geometr?a compuesta y a?ade todas la geometr?as simples que la
72
 * componen, implementado para plol?neas y pol?gonos.
73
 *
74
 * @author Vicente Caballero Navarro
75
 */
76
public class ExploitCADTool extends DefaultCADTool {
77
    private ExploitCADToolContext _fsm;
78

    
79
    /**
80
     * Crea un nuevo ExploitCADTool.
81
     */
82
    public ExploitCADTool() {
83
    }
84

    
85
    /**
86
     * M?todo de inicio, para poner el c?digo de todo lo que se requiera de una
87
     * carga previa a la utilizaci?n de la herramienta.
88
     */
89
    public void init() {
90
        _fsm = new ExploitCADToolContext(this);
91
    }
92

    
93
    /* (non-Javadoc)
94
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, double, double)
95
     */
96
    public void transition(double x, double y, InputEvent event) {
97
        _fsm.addPoint(x, y, event);
98
    }
99

    
100
    /* (non-Javadoc)
101
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, double)
102
     */
103
    public void transition(double d) {
104
        _fsm.addValue(d);
105
    }
106

    
107
    /* (non-Javadoc)
108
     * @see com.iver.cit.gvsig.gui.cad.CADTool#transition(com.iver.cit.gvsig.fmap.layers.FBitSet, java.lang.String)
109
     */
110
    public void transition(String s) throws CommandException {
111
            if (!super.changeCommand(s)){
112
                    _fsm.addOption(s);
113
            }
114
    }
115

    
116
    /**
117
     * DOCUMENT ME!
118
     */
119
    public void selection() {
120
       ArrayList selectedRows=getSelectedRows();
121
        if (selectedRows.size() == 0 && !CADExtension.getCADTool().getClass().getName().equals("com.iver.cit.gvsig.gui.cad.tools.SelectionCADTool")) {
122
            CADExtension.setCADTool("_selection",false);
123
            ((SelectionCADTool) CADExtension.getCADTool()).setNextTool(
124
                "_exploit");
125
        }
126
    }
127

    
128
    /**
129
     * Equivale al transition del prototipo pero sin pasarle como par?metro el
130
     * editableFeatureSource que ya estar? creado.
131
     *
132
     * @param x par?metro x del punto que se pase en esta transici?n.
133
     * @param y par?metro y del punto que se pase en esta transici?n.
134
     */
135
    public void addPoint(double x, double y,InputEvent event) {
136
    }
137

    
138
    /**
139
     * M?todo para dibujar la lo necesario para el estado en el que nos
140
     * encontremos.
141
     *
142
     * @param g Graphics sobre el que dibujar.
143
     * @param x par?metro x del punto que se pase para dibujar.
144
     * @param y par?metro x del punto que se pase para dibujar.
145
     */
146
    public void drawOperation(Graphics g, double x, double y) {
147
    }
148
    public void exploit() {
149
                ArrayList selectedRow = getSelectedRows();
150
                ArrayList selectedRowAux = new ArrayList();
151
                VectorialLayerEdited vle = getVLE();
152
                VectorialEditableAdapter vea = vle.getVEA();
153
                try {
154
                        vea.startComplexRow();
155
                        for (int i = 0; i < selectedRow.size(); i++) {
156
                                DefaultRowEdited dre = (DefaultRowEdited) selectedRow.get(i);
157
                                DefaultFeature df = (DefaultFeature) dre.getLinkedRow()
158
                                                .cloneRow();
159
                                IGeometry geom=df.getGeometry();
160
                                if (geom instanceof FGeometryCollection) {
161
                                        exploitGeometryCollection(dre,selectedRowAux);
162
                                }else {
163
                                        if (geom.getGeometryType()==FShape.LINE) {
164
                                                exploitLine(dre,selectedRowAux);
165
                                        }else if (geom.getGeometryType()==FShape.POLYGON) {
166
                                                exploitPolygon(dre,selectedRowAux);
167
                                        }
168
                                }
169
                                vea.removeRow(dre.getIndex(), getName(), EditionEvent.GRAPHIC);
170
                        }
171
                        vea.endComplexRow(getName());
172
                        vle.setSelectionCache(selectedRowAux);
173
                        //clearSelection();
174
                        //selectedRow.addAll(selectedRowAux);
175
                } catch (IOException e) {
176
                        e.printStackTrace();
177
                } catch (DriverIOException e) {
178
                        e.printStackTrace();
179
                }
180
        }
181
    private void exploitGeometryCollection(DefaultRowEdited dre,ArrayList selectedRowAux) {
182
            DefaultFeature df = (DefaultFeature) dre.getLinkedRow()
183
                        .cloneRow();
184
            IGeometry geom=df.getGeometry();
185
                FGeometryCollection gc=(FGeometryCollection)geom;
186
                IGeometry[] geoms=gc.getGeometries();
187
                for (int i=0;i<geoms.length;i++) {
188
                        DefaultFeature dfAux=(DefaultFeature)df.cloneRow();
189
                        int index = addGeometry(geoms[i], dfAux.getAttributes());
190
                        selectedRowAux.add(new DefaultRowEdited(dfAux,
191
                                        IRowEdited.STATUS_ADDED, index));
192
                }
193
                getCadToolAdapter().getMapControl().drawMap(false);
194
        }
195
    private void exploitLine(DefaultRowEdited dre,ArrayList selectedRowAux) throws IOException, DriverIOException {
196
            GeneralPathX newGp1 = new GeneralPathX();
197
            DefaultFeature df = (DefaultFeature) dre.getLinkedRow()
198
                        .cloneRow();
199
//            Point2D firstPoint=null;
200
//            Point2D lastPoint=null;
201
            PathIterator theIterator = df.getGeometry().getPathIterator(null,FConverter.FLATNESS);
202
                double[] theData = new double[6];
203
                int theType;
204
                int numParts = 0;
205
                while (!theIterator.isDone()) {
206
                        theType = theIterator.currentSegment(theData);
207
                        switch (theType) {
208

    
209
                        case PathIterator.SEG_MOVETO:
210
                                numParts++;
211
                                newGp1 = new GeneralPathX();
212
//                                firstPoint=new Point2D.Double(theData[0], theData[1]);
213
                                newGp1.moveTo(theData[0], theData[1]);
214
//                                lastPoint=new Point2D.Double(theData[0], theData[1]);
215
                                break;
216

    
217
                        case PathIterator.SEG_LINETO:
218
                                newGp1.lineTo(theData[0], theData[1]);
219
                                IGeometry geomLine = ShapeFactory
220
                                                .createPolyline2D(newGp1);
221
                                DefaultFeature dfLine = (DefaultFeature) df.cloneRow();
222
                                dfLine.setGeometry(geomLine);
223
                                int indexLine = addGeometry(geomLine, dfLine
224
                                                .getAttributes());
225
                                selectedRowAux.add(new DefaultRowEdited(dfLine,
226
                                                IRowEdited.STATUS_ADDED, indexLine));
227
                                newGp1 = new GeneralPathX();
228
                                newGp1.moveTo(theData[0], theData[1]);
229
//                                lastPoint=new Point2D.Double(theData[0], theData[1]);
230
                                break;
231

    
232
                /*        case PathIterator.SEG_QUADTO:
233
                                Point2D current=newGp1.getCurrentPoint();
234
                                newGp1.quadTo(theData[0], theData[1], theData[2],
235
                                                theData[3]);
236
                                IGeometry geomQuad = ShapeFactory
237
                                                .createArc(current,new Point2D.Double(theData[0], theData[1]),new Point2D.Double(theData[2], theData[3]));
238
                                DefaultFeature dfQuad = (DefaultFeature) df.cloneRow();
239
                                dfQuad.setGeometry(geomQuad);
240
                                int indexQuad = addGeometry(geomQuad, dfQuad
241
                                                .getAttributes());
242
                                selectedRowAux.add(new DefaultRowEdited(dfQuad,
243
                                                IRowEdited.STATUS_ADDED, indexQuad));
244
                                newGp1 = new GeneralPathX();
245
                                newGp1.moveTo(theData[0], theData[1]);
246
//                                lastPoint=new Point2D.Double(theData[0], theData[1]);
247
                                break;
248
                        case PathIterator.SEG_CUBICTO:
249
                                newGp1.curveTo(theData[0], theData[1], theData[2],
250
                                                theData[3], theData[4], theData[5]);
251
                                IGeometry geomCurve = ShapeFactory
252
                                                .createArc(new Point2D.Double(theData[0], theData[1]),new Point2D.Double(theData[2], theData[3]),new Point2D.Double(theData[4], theData[5]));
253
                                DefaultFeature dfCurve = (DefaultFeature) df.cloneRow();
254
                                dfCurve.setGeometry(geomCurve);
255
                                int indexCurve = addGeometry(geomCurve, dfCurve
256
                                                .getAttributes());
257
                                selectedRowAux.add(new DefaultRowEdited(dfCurve,
258
                                                IRowEdited.STATUS_ADDED, indexCurve));
259
                                newGp1 = new GeneralPathX();
260
                                newGp1.moveTo(theData[0], theData[1]);
261
//                                lastPoint=new Point2D.Double(theData[0], theData[1]);
262
                                break;
263
                        case PathIterator.SEG_CLOSE:
264
//                                if (firstPoint!=null) {
265
//                                        newGp1=new GeneralPathX();
266
//                                        newGp1.moveTo(firstPoint.getX(),firstPoint.getY());
267
//                                        newGp1.lineTo(lastPoint.getX(),lastPoint.getY());
268
//                                        IGeometry geomClose = ShapeFactory
269
//                                                        .createPolyline2D(newGp1);
270
//                                        DefaultFeature dfClose = (DefaultFeature) df.cloneRow();
271
//                                        dfClose.setGeometry(geomClose);
272
//                                        int indexClose = addGeometry(geomClose, dfClose
273
//                                                        .getAttributes());
274
//                                        selectedRowAux.add(new DefaultRowEdited(dfClose,
275
//                                                        IRowEdited.STATUS_ADDED, indexClose));
276
//                                        newGp1 = new GeneralPathX();
277
//                                        newGp1.moveTo(theData[0], theData[1]);
278
//                                }
279
                                // if (isFirstPart)
280
                                // newGp1.closePath();
281
                                // else
282
                                // newGp2.closePath();
283
                                break;
284
                                */
285
                        } // end switch
286

    
287
                        theIterator.next();
288
                } // end while loop
289
                getCadToolAdapter().getMapControl().drawMap(false);
290
    }
291
    private void exploitPolygon(DefaultRowEdited dre,ArrayList selectedRowAux) throws IOException, DriverIOException {
292
            GeneralPathX newGp1 = null;
293
            DefaultFeature df = (DefaultFeature) dre.getLinkedRow()
294
                        .cloneRow();
295
            PathIterator theIterator = df.getGeometry().getPathIterator(null,FConverter.FLATNESS);
296
                double[] theData = new double[6];
297
                int theType;
298
                int numParts = 0;
299
                while (!theIterator.isDone()) {
300
                        theType = theIterator.currentSegment(theData);
301
                        switch (theType) {
302

    
303
                        case PathIterator.SEG_MOVETO:
304
                                numParts++;
305
                                if (newGp1!=null) {
306
                                        IGeometry geomLine = ShapeFactory
307
                                                .createPolygon2D(newGp1);
308
                                        DefaultFeature dfLine = (DefaultFeature) df.cloneRow();
309
                                        dfLine.setGeometry(geomLine);
310
                                        int indexLine = addGeometry(geomLine, dfLine
311
                                                        .getAttributes());
312
                                        selectedRowAux.add(new DefaultRowEdited(dfLine,
313
                                        IRowEdited.STATUS_ADDED, indexLine));
314
                                }
315
                                newGp1 = new GeneralPathX();
316
                                newGp1.moveTo(theData[0], theData[1]);
317
                                break;
318

    
319
                        case PathIterator.SEG_LINETO:
320
                                newGp1.lineTo(theData[0], theData[1]);
321
                                //newGp1 = new GeneralPathX();
322
                                //newGp1.moveTo(theData[0], theData[1]);
323
                                break;
324

    
325
                        case PathIterator.SEG_QUADTO:
326
                                newGp1.quadTo(theData[0], theData[1], theData[2],
327
                                                theData[3]);
328
                                //newGp1 = new GeneralPathX();
329
                                //newGp1.moveTo(theData[0], theData[1]);
330
                                break;
331
                        case PathIterator.SEG_CUBICTO:
332
                                newGp1.curveTo(theData[0], theData[1], theData[2],
333
                                                theData[3], theData[4], theData[5]);
334
                                //newGp1 = new GeneralPathX();
335
                                //newGp1.moveTo(theData[0], theData[1]);
336
                                break;
337
                        case PathIterator.SEG_CLOSE:
338
                                System.out.println("aqu?");
339
                                // if (isFirstPart)
340
                                // newGp1.closePath();
341
                                // else
342
                                // newGp2.closePath();
343
                                break;
344
                        } // end switch
345

    
346
                        theIterator.next();
347
                } // end while loop
348
                if (newGp1!=null) {
349
                        IGeometry geomLine = ShapeFactory
350
                                .createPolygon2D(newGp1);
351
                        DefaultFeature dfLine = (DefaultFeature) df.cloneRow();
352
                        dfLine.setGeometry(geomLine);
353
                        int indexLine = addGeometry(geomLine, dfLine
354
                                        .getAttributes());
355
                        selectedRowAux.add(new DefaultRowEdited(dfLine,
356
                        IRowEdited.STATUS_ADDED, indexLine));
357
                }
358
                getCadToolAdapter().getMapControl().drawMap(false);
359
    }
360
    /**
361
         * Add a diferent option.
362
         *
363
         * @param s
364
         *            Diferent option.
365
         */
366
    public void addOption(String s) {
367
    }
368

    
369
    /*
370
         * (non-Javadoc)
371
         *
372
         * @see com.iver.cit.gvsig.gui.cad.CADTool#addvalue(double)
373
         */
374
    public void addValue(double d) {
375

    
376
    }
377

    
378
        public String getName() {
379
                return PluginServices.getText(this,"exploit_");
380
        }
381

    
382
        public String toString() {
383
                return "_exploit";
384
        }
385
        public boolean isApplicable(int shapeType) {
386
                switch (shapeType) {
387
                case FShape.POINT:
388
                case FShape.CIRCLE:
389
                case FShape.ARC:
390
                case FShape.ELLIPSE:
391
                case FShape.MULTIPOINT:
392
                        return false;
393
                }
394
                return true;
395
        }
396
}