-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMainWindow.axaml.cs
478 lines (387 loc) · 12.6 KB
/
MainWindow.axaml.cs
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
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Platform.Storage;
using Avalonia.Threading;
namespace example.Views;
// example-0019
// sphere vertex render and hittest scalability test
//
// - enable hittest
// - move mouse on the figure to see hitted triangles
// - increase divisions
//
// NOTE : hit test doesn't apply any optimization on hit test ( worst case ) : all figures evaluated
public partial class MainWindow : Window, INotifyPropertyChanged
{
#region property changed
public new event PropertyChangedEventHandler? PropertyChanged;
/// <summary>
/// invoke this method to forward propertchanged event notification.
/// note: not needed to specify propertyName set by compiler service to called property.
/// </summary>
protected void OnPropertyChanged([CallerMemberName] string? propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
GLModel glModel;
#region GLControlSplit
private AvaloniaGLControlSplit? _GLControlSplit = null;
/// <summary>
/// GLControlSplit
/// </summary>
public AvaloniaGLControlSplit? GLControlSplit
{
get => _GLControlSplit;
set
{
var changed = value != _GLControlSplit;
if (changed)
{
_GLControlSplit = value;
OnPropertyChanged();
}
}
}
#endregion
#region FocusedControl
private GLControl? _FocusedControl = null;
/// <summary>
/// FocusedControl
/// </summary>
public GLControl? FocusedControl
{
get => _FocusedControl;
set
{
var changed = value != _FocusedControl;
if (changed)
{
_FocusedControl = value;
OnPropertyChanged();
}
}
}
#endregion
#region Radius
private float _Radius = 10;
/// <summary>
/// Radius
/// </summary>
public float Radius
{
get => _Radius;
set
{
var changed = value != _Radius;
if (changed)
{
_Radius = value;
OnPropertyChanged();
}
}
}
#endregion
#region SurfaceDivisions
private int _SurfaceDivisions = 3;
/// <summary>
/// SurfaceDivisions
/// </summary>
public int SurfaceDivisions
{
get => _SurfaceDivisions;
set
{
var changed = value != _SurfaceDivisions;
if (changed)
{
_SurfaceDivisions = value;
OnPropertyChanged();
}
}
}
#endregion
#region RamUsed
private string _RamUsed = "";
/// <summary>
/// RamUsed
/// </summary>
public string RamUsed
{
get => _RamUsed;
set
{
var changed = value != _RamUsed;
if (changed)
{
_RamUsed = value;
OnPropertyChanged();
}
}
}
#endregion
#region TypeSphere
private bool _TypeSphere = true;
/// <summary>
/// TypeSphere
/// </summary>
public bool TypeSphere
{
get => _TypeSphere;
set
{
var changed = value != _TypeSphere;
if (changed)
{
_TypeSphere = value;
if (value) TypePlate = false;
OnPropertyChanged();
}
}
}
#endregion
#region TypePlate
private bool _TypePlate = false;
/// <summary>
/// TypePlate
/// </summary>
public bool TypePlate
{
get => _TypePlate;
set
{
var changed = value != _TypePlate;
if (changed)
{
_TypePlate = value;
if (value) TypeSphere = false;
OnPropertyChanged();
}
}
}
#endregion
#region HitTest
private bool _HitTest = false;
/// <summary>
/// HitTest
/// </summary>
public bool HitTest
{
get => _HitTest;
set
{
var changed = value != _HitTest;
if (changed)
{
_HitTest = value;
OnPropertyChanged();
}
}
}
#endregion
GLTriangleFigure? triFig = null;
public MainWindow()
{
InitializeComponent();
Width = 1600;
Height = 1024;
var q = this.Resources;
Title = AppDomain.CurrentDomain.FriendlyName;
var glCtx = new GLContext();
glModel = new GLModel(glCtx);
Task.Run(async () =>
{
while (true)
{
RamUsed = $"{GC.GetTotalAllocatedBytes().HumanReadable()}";
await Task.Delay(1000);
}
});
glModel.BuildModel = (glCtl, isInitial) =>
{
void syncedBuild()
{
glModel.Clear(clearPointLights: true);
glModel.PointLights.Add(new GLPointLight(
new Vector3(0 * Radius, 0 * Radius, 2f * Radius), showPoint: true));
glModel.PointLights.Add(new GLPointLight(
new Vector3(-2f * Radius, 0 * Radius, 0 * Radius), Color.Red, showPoint: true));
// -----------------------
Debug.WriteLine($"Generating [{(TypeSphere ? "sphere" : "plate")}] with Radius:{Radius} Divisions:{SurfaceDivisions}");
if (TypeSphere)
{
var q = new UVSphere(Vector3.Zero, Radius).Triangles(SurfaceDivisions);
triFig = new UVSphere(Vector3.Zero, Radius).Figure(SurfaceDivisions);
}
else
{
var tris = new List<GLTriangle>();
var step = Radius / SurfaceDivisions;
for (int sx = 0; sx < SurfaceDivisions; ++sx)
{
for (int sy = 0; sy < SurfaceDivisions; ++sy)
{
var p1 = new Vector3(sx * step, sy * step, 0);
var p2 = p1 + new Vector3(step, 0, 0);
var p3 = p2 + new Vector3(0, step, 0);
tris.Add(new GLTriangle(p1, p2, p3));
var p4 = p1 + new Vector3(0, step, 0);
tris.Add(new GLTriangle(p1, p3, p4));
}
}
triFig = new GLTriangleFigure(tris);
}
glModel.AddFigure(triFig);
glModel.SetupLightAttenuation();
}
if (isInitial)
syncedBuild();
else
{
// running separate thread
Task.Run(async () =>
{
// work on model
syncedBuild();
// await the invalidate ( render ) to work on model
await Dispatcher.UIThread.InvokeAsync(() =>
{
GLControlSplit?.Invalidate();
});
});
}
};
var hitTris = new HashSet<GLTriangle>();
this.PointerMoved += (a, b) =>
{
if (!HitTest) return;
var glView = GLControlSplit?.FocusedControl;
if (glView is null) return;
var glCtl = glView.AvaloniaGLControl.GLControl;
var cp = b.GetCurrentPoint(glView);
var lraycast = glCtl.RayCastLocal(screen: cp.Position.ToVector2());
var newHitTris = new HashSet<GLTriangle>();
var existingHitTris = 0;
var figures = glModel.Figures.ToList();
foreach (var fig in figures)
{
Line oraycast;
if (fig.ObjectMatrixIsIdentity) // no transform required if fig object matrix already an identity
oraycast = lraycast;
else
oraycast = lraycast.Transform(fig.ObjectMatrix.Inverse());
foreach (var tri in fig.Primitives.OfType<GLTriangle>())
{
var q = oraycast.Intersect(tri.Plane);
if (q is not null && tri.Contains(q.Value))
{
if (hitTris.Contains(tri)) ++existingHitTris;
newHitTris.Add(tri);
}
}
}
if (newHitTris.Count != hitTris.Count || existingHitTris != hitTris.Count)
{
foreach (var tri in hitTris)
{
tri.SetColor(DEFAULT_MaterialColor);
tri.Order = DEFAULT_FigureOrder;
}
foreach (var tri in newHitTris)
{
tri.SetColor(Color.Yellow);
tri.Order = 1;
}
this.GLControlSplit?.Invalidate();
}
hitTris = newHitTris;
};
this.AttachGLControlSplit(grGL, glModel,
setGLControlSplit: glSplit => GLControlSplit = glSplit,
onFocusedControlChanged: (glSplit, avaloniaGlControl, isInitial) =>
{
FocusedControl = avaloniaGlControl?.GLControl;
if (isInitial)
{
isInitial = false;
GLControlSplit?.LoadViewLayout();
}
},
onControlCreated: avaloniaGLControl =>
{
var glCtl = avaloniaGLControl.GLControl;
glCtl.PropertyChanged += AvaloniaGLControl_PropertyChanged;
},
onControlRemoved: avaloniaGLControl =>
{
var glCtl = avaloniaGLControl.GLControl;
glCtl.PropertyChanged -= AvaloniaGLControl_PropertyChanged;
});
//! [DebounceExample]
var debouncedInvalidate = new DebounceAction<object?>(TimeSpan.FromMilliseconds(500), (args) =>
{
Dispatcher.UIThread.Post(() =>
{
// invalidating the model imply recall of the BuildModel
// at the first time the control will be invalidated too
glModel.InvalidateModel();
GLControlSplit?.Invalidate();
});
});
this.PropertyChanged += (sender, e) =>
{
if (
e.PropertyName == nameof(Radius) || e.PropertyName == nameof(SurfaceDivisions) ||
e.PropertyName == nameof(TypeSphere) || e.PropertyName == nameof(TypePlate))
{
debouncedInvalidate.Hit(null);
}
};
//! [DebounceExample]
}
private void AvaloniaGLControl_PropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (sender is GLControl glCtl)
{
if (e.PropertyName == nameof(GLControl.IsControlInvalidated))
{
if (glCtl.IsControlInvalidated)
glCtl.Invalidate();
}
}
}
private async void ExportDxfClick(object? sender, RoutedEventArgs e)
{
var file = await this.StorageProvider.SaveFilePickerAsync(new Avalonia.Platform.Storage.FilePickerSaveOptions
{
FileTypeChoices = new List<FilePickerFileType>()
{
new FilePickerFileType("dxf") { Patterns = new List<string>() { "*.dxf" } }
}
});
if (file is not null)
{
var dxf = new netDxf.DxfDocument();
foreach (var fig in glModel.Figures)
{
if (fig.PrimitiveType == GLPrimitiveType.Triangle)
{
foreach (var tri in fig.Primitives.OfType<GLTriangle>())
{
dxf.Entities.Add(new netDxf.Entities.Face3D(
new netDxf.Vector3(tri.V1.Position.X, tri.V1.Position.Y, tri.V1.Position.Z),
new netDxf.Vector3(tri.V2.Position.X, tri.V2.Position.Y, tri.V2.Position.Z),
new netDxf.Vector3(tri.V3.Position.X, tri.V3.Position.Y, tri.V3.Position.Z)));
}
}
}
dxf.Save(file.Path.AbsolutePath, isBinary: true);
}
}
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (GLControlSplit?.FocusedControl is GLView glView)
glView.AvaloniaGLControl.HandleKeyDown(e);
}
}