forked from chuongmep/CadPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectionSet.cs
More file actions
481 lines (406 loc) · 16.8 KB
/
SelectionSet.cs
File metadata and controls
481 lines (406 loc) · 16.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
//
// (C) Copyright 2006 by Autodesk, Inc.
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use, duplication, or disclosure by the U.S. Government is subject to
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software), as applicable.
//
using System;
using System.Collections;
using System.Diagnostics;
using System.Windows.Forms;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Geometry;
using Autodesk.AutoCAD.Runtime;
using AcadApp = Autodesk.AutoCAD.ApplicationServices;
namespace MgdDbg.Prompts {
public partial class SelectionSet : Form {
enum SelectionMethod {
kUser = 0,
kAll,
kImplied,
kCrossing,
kCrossingPolygon,
kFence,
kLast,
kPrevious,
kWindow,
kWindowPolygon,
};
private Editor m_editor;
private ArrayList m_entityClasses = new ArrayList();
public
SelectionSet()
{
m_editor = AcadApp.Application.DocumentManager.MdiActiveDocument.Editor;
InitializeComponent();
m_puMainSelectionMethod.SelectedIndex = 0; // Select user mode by default
GetClassesDerivedFrom((RXClass)SystemObjects.ClassDictionary["AcDbEntity"], m_entityClasses, true);
foreach (RXClass tmpClass in m_entityClasses) {
m_puClassType.Items.Add(tmpClass.Name);
}
m_puClassType.SelectedItem = "AcDbEntity"; // have this be the default class
}
private void
OnRunTest(object sender, EventArgs e)
{
/// start user interaction object so that this form
/// does not interfere with user selection in editor
EditorUserInteraction userInteraction = m_editor.StartUserInteraction(this);
SelectionMethod selMethod = (SelectionMethod)m_puMainSelectionMethod.SelectedIndex;
if (selMethod == SelectionMethod.kUser)
SelectionUser();
else if (selMethod == SelectionMethod.kAll)
SelectionAll();
else if (selMethod == SelectionMethod.kImplied)
SelectionImplied();
else if (selMethod == SelectionMethod.kCrossing)
SelectionCrossing();
else if (selMethod == SelectionMethod.kCrossingPolygon)
SelectionCrossingPolygon();
else if (selMethod == SelectionMethod.kFence)
SelectionFence();
else if (selMethod == SelectionMethod.kLast)
SelectionLast();
else if (selMethod == SelectionMethod.kPrevious)
SelectionPrevious();
else if (selMethod == SelectionMethod.kWindow)
SelectionWindow();
else if (selMethod == SelectionMethod.kWindowPolygon)
SelectionWindowPolygon();
else {
Debug.Assert(false);
}
userInteraction.End();
}
#region Selection Methods
private void
SelectionUser()
{
PromptSelectionOptions selOpts = new PromptSelectionOptions();
selOpts.AllowSubSelections = m_cbAllowSubSelections.Checked;
selOpts.ForceSubSelections = m_cbForceSubSelections.Checked;
if (m_cbAllowDuplicates.Checked) { // only if not in combination with the others
if ((selOpts.AllowSubSelections == false) && (selOpts.ForceSubSelections == false))
selOpts.AllowDuplicates = true;
}
selOpts.RejectObjectsFromNonCurrentSpace = m_cbRejectNonCurrentSpace.Checked;
selOpts.RejectObjectsOnLockedLayers = m_cbFilterLockedLayers.Checked;
selOpts.RejectPaperspaceViewport = m_cbRejectPaperSpaceViewport.Checked;
selOpts.SelectEverythingInAperture = m_cbSelectEverythingInAperature.Checked;
selOpts.SingleOnly = m_cbSingleOnly.Checked;
selOpts.SinglePickInSpace = m_cbSinglePickInSpace.Checked;
if (m_cbMsgAdd.Checked)
selOpts.MessageForAdding = m_ebMsgAdd.Text;
if (m_cbMsgRemove.Checked)
selOpts.MessageForRemoval = m_ebMsgRemove.Text;
if (m_cbKeywordEvent.Checked) {
selOpts.Keywords.Add("Red");
selOpts.Keywords.Add("Green");
selOpts.Keywords.Add("Blue");
selOpts.KeywordInput += new SelectionTextInputEventHandler(event_KeywordInput);
}
if (m_cbUnknownEvent.Checked) {
selOpts.UnknownInput += new SelectionTextInputEventHandler(event_UnknownInput);
}
selOpts.PrepareOptionalDetails = true; // always turn this on so we get all info available for the test
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.GetSelection(selOpts, GetSelectionFilter());
else
result = m_editor.GetSelection(selOpts);
ShowPromptResult("Select: User", result);
}
/// <summary>
/// Callback function for our keywords
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void
event_KeywordInput(object sender, SelectionTextInputEventArgs e)
{
MessageBox.Show(string.Format("Keyword event: {0}", e.Input), "KeywordInput Event");
}
/// <summary>
/// Callback function for when we get input that isn't recognized as anything else
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void
event_UnknownInput(object sender, SelectionTextInputEventArgs e)
{
MessageBox.Show(string.Format("Unknown event: {0}", e.Input), "UnknownInput Event");
}
private void
SelectionImplied()
{
PromptSelectionResult result = m_editor.SelectImplied();
ShowPromptResult("Select: Implied", result);
}
private void
SelectionCrossing()
{
Point3d pt1, pt2;
if (Utils.AcadUi.GetCorners(out pt1, out pt2)) {
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectCrossingWindow(pt1, pt2, GetSelectionFilter());
else
result = m_editor.SelectCrossingWindow(pt1, pt2);
ShowPromptResult("Select: Crossing Window", result);
}
}
private void
SelectionCrossingPolygon()
{
Point3dCollection pts = new Point3dCollection();
if (Utils.AcadUi.GetPline3dCollection(pts)) {
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectCrossingPolygon(pts, GetSelectionFilter());
else
result = m_editor.SelectCrossingPolygon(pts);
ShowPromptResult("Select: Crossing Polygon", result);
}
}
private void
SelectionFence()
{
Point3dCollection pts = new Point3dCollection();
if (Utils.AcadUi.GetPline3dCollection(pts)) {
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectFence(pts, GetSelectionFilter());
else
result = m_editor.SelectFence(pts);
ShowPromptResult("Select: Fence", result);
}
}
private void
SelectionLast()
{
PromptSelectionResult result = m_editor.SelectLast();
ShowPromptResult("Select: Last", result);
}
private void
SelectionPrevious()
{
PromptSelectionResult result = m_editor.SelectPrevious();
ShowPromptResult("Select: Previous", result);
}
private void
SelectionWindow()
{
Point3d pt1, pt2;
if (Utils.AcadUi.GetCorners(out pt1, out pt2)) {
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectWindow(pt1, pt2, GetSelectionFilter());
else
result = m_editor.SelectWindow(pt1, pt2);
ShowPromptResult("Select: Window", result);
}
}
private void
SelectionWindowPolygon()
{
Point3dCollection pts = new Point3dCollection();
if (Utils.AcadUi.GetPline3dCollection(pts)) {
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectWindowPolygon(pts, GetSelectionFilter());
else
result = m_editor.SelectWindowPolygon(pts);
ShowPromptResult("Select: Window Polygon", result);
}
}
private void
SelectionAll()
{
PromptSelectionResult result;
if (m_cbApplyFilter.Checked)
result = m_editor.SelectAll(GetSelectionFilter());
else
result = m_editor.SelectAll();
ShowPromptResult("Select: All", result);
}
#endregion
private void
ShowPromptResult(string dboxTitle, PromptSelectionResult result)
{
if (result.Status == PromptStatus.OK) {
Snoop.Forms.Objects dbox = new Snoop.Forms.Objects(result.Value);
dbox.Text = dboxTitle;
AcadApp.Application.ShowModalDialog(dbox);
}
else {
MessageBox.Show(string.Format("Prompt status: {0}", result.Status.ToString()), "PromptSelectionResult");
}
}
private void
OnSelectionMethodChanged(object sender, EventArgs e)
{
SelectionMethod selMethod = (SelectionMethod)m_puMainSelectionMethod.SelectedIndex;
if (selMethod == SelectionMethod.kUser) {
SetFlagModes(true);
SetKeywordModes(true);
SetPromptModes(true);
SetFilterModes(true);
}
else if ((selMethod == SelectionMethod.kLast) ||
(selMethod == SelectionMethod.kImplied) ||
(selMethod == SelectionMethod.kPrevious)) {
SetFlagModes(false);
SetKeywordModes(false);
SetPromptModes(false);
SetFilterModes(false);
}
else {
SetFlagModes(false);
SetKeywordModes(false);
SetPromptModes(false);
SetFilterModes(true);
}
}
private void
SetFlagModes(bool allowed)
{
m_grpFlags.Enabled = allowed;
if (allowed) {
if ((m_cbAllowSubSelections.Checked) || (m_cbForceSubSelections.Checked)) {
m_cbAllowDuplicates.Enabled = false; // can't combine Duplicates and sub-entity
}
}
}
private void
SetKeywordModes(bool allowed)
{
m_grpEvents.Enabled = allowed;
}
private void
SetPromptModes(bool allowed)
{
if (allowed == false) {
m_grpMessages.Enabled = false;
}
else {
m_grpMessages.Enabled = true;
m_cbMsgAdd.Enabled = true;
m_cbMsgRemove.Enabled = true;
m_ebMsgAdd.Enabled = m_cbMsgAdd.Checked;
m_ebMsgRemove.Enabled = m_cbMsgRemove.Checked;
}
}
private void
SetFilterModes(bool allowed)
{
if (allowed == false) {
m_grpFilter.Enabled = false;
}
else {
m_grpFilter.Enabled = true;
m_cbApplyFilter.Enabled = true;
m_puClassType.Enabled = m_cbApplyFilter.Checked;
m_txtClassType.Enabled = m_cbApplyFilter.Checked;
m_cbDoIsKindOfTest.Enabled = m_cbApplyFilter.Checked;
}
}
private void
OnApplyFilterChecked(object sender, EventArgs e)
{
m_puClassType.Enabled = m_cbApplyFilter.Checked;
m_txtClassType.Enabled = m_cbApplyFilter.Checked;
m_cbDoIsKindOfTest.Enabled = m_cbApplyFilter.Checked;
}
private void
OnMessageAddChecked(object sender, EventArgs e)
{
m_ebMsgAdd.Enabled = m_cbMsgAdd.Checked;
}
private void
OnMessageRemoveChecked(object sender, EventArgs e)
{
m_ebMsgRemove.Enabled = m_cbMsgRemove.Checked;
}
private void
OnAllowSubSelectionChecked(object sender, EventArgs e)
{
if ((m_cbAllowSubSelections.Checked) || (m_cbForceSubSelections.Checked))
m_cbAllowDuplicates.Enabled = false; // can't combine Duplicates and sub-entity
else
m_cbAllowDuplicates.Enabled = true;
}
private void
GetClassesDerivedFrom(RXClass searchClassType, ArrayList derivedClasses, bool allowClassesWithoutDxfName)
{
Debug.Assert(derivedClasses != null);
Dictionary dict = SystemObjects.ClassDictionary;
if (dict != null) {
IEnumerable enumerable = dict as IEnumerable;
if (enumerable != null) {
IEnumerator enumerator = enumerable.GetEnumerator();
while (enumerator.MoveNext()) {
RXClass rxClass = (RXClass)((DictionaryEntry)enumerator.Current).Value;
if (rxClass.IsDerivedFrom(searchClassType)) {
if (!allowClassesWithoutDxfName && ((rxClass.DxfName == null) || (rxClass.DxfName == string.Empty))) {
// skip it
}
else {
if (derivedClasses.Contains(rxClass) == false)
derivedClasses.Add(rxClass);
}
}
}
}
}
}
private SelectionFilter
GetSelectionFilter()
{
RXClass selectedClass = (RXClass)SystemObjects.ClassDictionary[(string)m_puClassType.SelectedItem];
if (selectedClass != null) {
// see if they want this class plus all derived classes
if (m_cbDoIsKindOfTest.Checked == false) {
// just this class, use a simple filter
TypedValue[] fitlerPairs = {
new TypedValue((int)DxfCode.Start, selectedClass.DxfName),
};
return new SelectionFilter(fitlerPairs);
}
else {
// look up all derived classes and use a big "OR" statement
ArrayList filterClasses = new ArrayList();
GetClassesDerivedFrom(selectedClass, filterClasses, false /* don't allow classes without a DXF name*/);
int i=0;
TypedValue[] values = new TypedValue[filterClasses.Count+2];
values[i++] = new TypedValue((int)DxfCode.Operator, "<or");
foreach (RXClass tmpClass in filterClasses) {
values[i++] = new TypedValue((int)DxfCode.Start, tmpClass.DxfName);
}
values[i] = new TypedValue((int)DxfCode.Operator, "or>");
// in case you want to see what the filter looks like
//foreach (TypedValue tv in values) {
// m_editor.WriteMessage(string.Format("\nFilter Pair: {0}", tv.ToString()));
//}
return new SelectionFilter(values);
}
}
return null;
}
}
}