Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.editing.app / org.gvsig.editing.app.mainplugin / src / main / java / org / gvsig / editing / gui / cad / tools / smc / SymmetryCADToolContext.java @ 40557

History | View | Annotate | Download (12.8 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24

    
25
//
26
// Vicente Caballero Navarro
27

    
28

    
29
package org.gvsig.editing.gui.cad.tools.smc;
30

    
31
import java.awt.event.InputEvent;
32

    
33
import org.gvsig.andami.PluginServices;
34
import org.gvsig.editing.gui.cad.tools.SymmetryCADTool;
35

    
36

    
37
public final class SymmetryCADToolContext
38
    extends statemap.FSMContext
39
{
40
//---------------------------------------------------------------
41
// Member methods.
42
//
43

    
44
    public SymmetryCADToolContext(SymmetryCADTool owner)
45
    {
46
        super();
47

    
48
        _owner = owner;
49
        setState(Symmetry.FirstPoint);
50
        Symmetry.FirstPoint.Entry(this);
51
    }
52

    
53
    public void addOption(String s)
54
    {
55
        _transition = "addOption";
56
        getState().addOption(this, s);
57
        _transition = "";
58
        return;
59
    }
60

    
61
    public void addPoint(double pointX, double pointY, InputEvent event)
62
    {
63
        _transition = "addPoint";
64
        getState().addPoint(this, pointX, pointY, event);
65
        _transition = "";
66
        return;
67
    }
68

    
69
    public void addValue(double d)
70
    {
71
        _transition = "addValue";
72
        getState().addValue(this, d);
73
        _transition = "";
74
        return;
75
    }
76

    
77
    public SymmetryCADToolState getState()
78
        throws statemap.StateUndefinedException
79
    {
80
        if (_state == null)
81
        {
82
            throw(
83
                new statemap.StateUndefinedException());
84
        }
85

    
86
        return ((SymmetryCADToolState) _state);
87
    }
88

    
89
    protected SymmetryCADTool getOwner()
90
    {
91
        return (_owner);
92
    }
93

    
94
//---------------------------------------------------------------
95
// Member data.
96
//
97

    
98
    transient private SymmetryCADTool _owner;
99

    
100
//---------------------------------------------------------------
101
// Inner classes.
102
//
103

    
104
    public static abstract class SymmetryCADToolState
105
        extends statemap.State
106
    {
107
    //-----------------------------------------------------------
108
    // Member methods.
109
    //
110

    
111
        protected SymmetryCADToolState(String name, int id)
112
        {
113
            super (name, id);
114
        }
115

    
116
        protected void Entry(SymmetryCADToolContext context) {}
117
        protected void Exit(SymmetryCADToolContext context) {}
118

    
119
        protected void addOption(SymmetryCADToolContext context, String s)
120
        {
121
            Default(context);
122
        }
123

    
124
        protected void addPoint(SymmetryCADToolContext context, double pointX, double pointY, InputEvent event)
125
        {
126
            Default(context);
127
        }
128

    
129
        protected void addValue(SymmetryCADToolContext context, double d)
130
        {
131
            Default(context);
132
        }
133

    
134
        protected void Default(SymmetryCADToolContext context)
135
        {
136
            throw (
137
                new statemap.TransitionUndefinedException(
138
                    "State: " +
139
                    context.getState().getName() +
140
                    ", Transition: " +
141
                    context.getTransition()));
142
        }
143

    
144
    //-----------------------------------------------------------
145
    // Member data.
146
    //
147
    }
148

    
149
    /* package */ static abstract class Symmetry
150
    {
151
    //-----------------------------------------------------------
152
    // Member methods.
153
    //
154

    
155
    //-----------------------------------------------------------
156
    // Member data.
157
    //
158

    
159
        //-------------------------------------------------------
160
        // Statics.
161
        //
162
        /* package */ static Symmetry_Default.Symmetry_FirstPoint FirstPoint;
163
        /* package */ static Symmetry_Default.Symmetry_SecondPoint SecondPoint;
164
        /* package */ static Symmetry_Default.Symmetry_CutOrCopy CutOrCopy;
165
        private static Symmetry_Default Default;
166

    
167
        static
168
        {
169
            FirstPoint = new Symmetry_Default.Symmetry_FirstPoint("Symmetry.FirstPoint", 0);
170
            SecondPoint = new Symmetry_Default.Symmetry_SecondPoint("Symmetry.SecondPoint", 1);
171
            CutOrCopy = new Symmetry_Default.Symmetry_CutOrCopy("Symmetry.CutOrCopy", 2);
172
            Default = new Symmetry_Default("Symmetry.Default", -1);
173
        }
174

    
175
    }
176

    
177
    protected static class Symmetry_Default
178
        extends SymmetryCADToolState
179
    {
180
    //-----------------------------------------------------------
181
    // Member methods.
182
    //
183

    
184
        protected Symmetry_Default(String name, int id)
185
        {
186
            super (name, id);
187
        }
188

    
189
        protected void addOption(SymmetryCADToolContext context, String s)
190
        {
191
            SymmetryCADTool ctxt = context.getOwner();
192

    
193
            if (s.equals(PluginServices.getText(this,"cancel")))
194
            {
195
                boolean loopbackFlag =
196
                    context.getState().getName().equals(
197
                        Symmetry.FirstPoint.getName());
198

    
199
                if (loopbackFlag == false)
200
                {
201
                    (context.getState()).Exit(context);
202
                }
203

    
204
                context.clearState();
205
                try
206
                {
207
                    ctxt.end();
208
                }
209
                finally
210
                {
211
                    context.setState(Symmetry.FirstPoint);
212

    
213
                    if (loopbackFlag == false)
214
                    {
215
                        (context.getState()).Entry(context);
216
                    }
217

    
218
                }
219
            }
220
            else
221
            {
222
                boolean loopbackFlag =
223
                    context.getState().getName().equals(
224
                        Symmetry.FirstPoint.getName());
225

    
226
                if (loopbackFlag == false)
227
                {
228
                    (context.getState()).Exit(context);
229
                }
230

    
231
                context.clearState();
232
                try
233
                {
234
                    ctxt.throwOptionException(PluginServices.getText(this,"incorrect_option"), s);
235
                }
236
                finally
237
                {
238
                    context.setState(Symmetry.FirstPoint);
239

    
240
                    if (loopbackFlag == false)
241
                    {
242
                        (context.getState()).Entry(context);
243
                    }
244

    
245
                }
246
            }
247

    
248
            return;
249
        }
250

    
251
        protected void addValue(SymmetryCADToolContext context, double d)
252
        {
253
            SymmetryCADTool ctxt = context.getOwner();
254

    
255
            boolean loopbackFlag =
256
                context.getState().getName().equals(
257
                    Symmetry.FirstPoint.getName());
258

    
259
            if (loopbackFlag == false)
260
            {
261
                (context.getState()).Exit(context);
262
            }
263

    
264
            context.clearState();
265
            try
266
            {
267
                ctxt.throwValueException(PluginServices.getText(this,"incorrect_value"), d);
268
            }
269
            finally
270
            {
271
                context.setState(Symmetry.FirstPoint);
272

    
273
                if (loopbackFlag == false)
274
                {
275
                    (context.getState()).Entry(context);
276
                }
277

    
278
            }
279
            return;
280
        }
281

    
282
        protected void addPoint(SymmetryCADToolContext context, double pointX, double pointY, InputEvent event)
283
        {
284
            SymmetryCADTool ctxt = context.getOwner();
285

    
286
            boolean loopbackFlag =
287
                context.getState().getName().equals(
288
                    Symmetry.FirstPoint.getName());
289

    
290
            if (loopbackFlag == false)
291
            {
292
                (context.getState()).Exit(context);
293
            }
294

    
295
            context.clearState();
296
            try
297
            {
298
                ctxt.throwPointException(PluginServices.getText(this,"incorrect_point"), pointX, pointY);
299
            }
300
            finally
301
            {
302
                context.setState(Symmetry.FirstPoint);
303

    
304
                if (loopbackFlag == false)
305
                {
306
                    (context.getState()).Entry(context);
307
                }
308

    
309
            }
310
            return;
311
        }
312

    
313
    //-----------------------------------------------------------
314
    // Inner classse.
315
    //
316

    
317

    
318
        private static final class Symmetry_FirstPoint
319
            extends Symmetry_Default
320
        {
321
        //-------------------------------------------------------
322
        // Member methods.
323
        //
324

    
325
            private Symmetry_FirstPoint(String name, int id)
326
            {
327
                super (name, id);
328
            }
329

    
330
            protected void Entry(SymmetryCADToolContext context)
331
            {
332
                SymmetryCADTool ctxt = context.getOwner();
333

    
334
                ctxt.selection();
335
                ctxt.setQuestion(PluginServices.getText(this,"insert_first_point"));
336
                ctxt.setDescription(new String[]{"cancel"});
337
                return;
338
            }
339

    
340
            protected void addPoint(SymmetryCADToolContext context, double pointX, double pointY, InputEvent event)
341
            {
342
                SymmetryCADTool ctxt = context.getOwner();
343

    
344

    
345
                (context.getState()).Exit(context);
346
                context.clearState();
347
                try
348
                {
349
                    ctxt.setQuestion(PluginServices.getText(this,"insert_second_point"));
350
                    ctxt.setDescription(new String[]{"cancel"});
351
                    ctxt.addPoint(pointX, pointY, event);
352
                }
353
                finally
354
                {
355
                    context.setState(Symmetry.SecondPoint);
356
                    (context.getState()).Entry(context);
357
                }
358
                return;
359
            }
360

    
361
        //-------------------------------------------------------
362
        // Member data.
363
        //
364
        }
365

    
366
        private static final class Symmetry_SecondPoint
367
            extends Symmetry_Default
368
        {
369
        //-------------------------------------------------------
370
        // Member methods.
371
        //
372

    
373
            private Symmetry_SecondPoint(String name, int id)
374
            {
375
                super (name, id);
376
            }
377

    
378
            protected void addPoint(SymmetryCADToolContext context, double pointX, double pointY, InputEvent event)
379
            {
380
                SymmetryCADTool ctxt = context.getOwner();
381

    
382

    
383
                (context.getState()).Exit(context);
384
                context.clearState();
385
                try
386
                {
387
                    ctxt.setQuestion(PluginServices.getText(this,"del_original_geometries")+" "+
388
                                PluginServices.getText(this,"yes")+
389
                                "["+PluginServices.getText(this,"SymmetryCADTool.yes")+"], "+
390
                                PluginServices.getText(this,"cad.or")+" "+
391
                                PluginServices.getText(this,"no")+
392
                                "["+PluginServices.getText(this,"SymmetryCADTool.no")+"]");
393
                    ctxt.setDescription(new String[]{"cancel", "cut", "copy"});
394
                    ctxt.addPoint(pointX, pointY, event);
395
                }
396
                finally
397
                {
398
                    context.setState(Symmetry.CutOrCopy);
399
                    (context.getState()).Entry(context);
400
                }
401
                return;
402
            }
403

    
404
        //-------------------------------------------------------
405
        // Member data.
406
        //
407
        }
408

    
409
        private static final class Symmetry_CutOrCopy
410
            extends Symmetry_Default
411
        {
412
        //-------------------------------------------------------
413
        // Member methods.
414
        //
415

    
416
            private Symmetry_CutOrCopy(String name, int id)
417
            {
418
                super (name, id);
419
            }
420

    
421
            protected void addOption(SymmetryCADToolContext context, String s)
422
            {
423
                SymmetryCADTool ctxt = context.getOwner();
424

    
425

    
426
                (context.getState()).Exit(context);
427
                context.clearState();
428
                try
429
                {
430
                    ctxt.setDescription(new String[]{"cancel"});
431
                    ctxt.addOption(s);
432
                    ctxt.end();
433
                }
434
                finally
435
                {
436
                    context.setState(Symmetry.FirstPoint);
437
                    (context.getState()).Entry(context);
438
                }
439
                return;
440
            }
441

    
442
        //-------------------------------------------------------
443
        // Member data.
444
        //
445
        }
446

    
447
    //-----------------------------------------------------------
448
    // Member data.
449
    //
450
    }
451
}