-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMainViewModel.cs
523 lines (475 loc) · 17.4 KB
/
MainViewModel.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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MainViewModel.cs" company="Helix Toolkit">
// Copyright (c) 2014 Helix Toolkit contributors
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace rpkg
{
using HelixToolkit.Wpf.SharpDX;
using HelixToolkit.Wpf.SharpDX.Animations;
using HelixToolkit.Wpf.SharpDX.Assimp;
using HelixToolkit.Wpf.SharpDX.Controls;
using HelixToolkit.Wpf.SharpDX.Model;
using HelixToolkit.Wpf.SharpDX.Model.Scene;
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Linq;
using SharpDX;
using Point3D = System.Windows.Media.Media3D.Point3D;
public class MainViewModel : BaseViewModel
{
private string OpenFileFilter = $"{HelixToolkit.Wpf.SharpDX.Assimp.Importer.SupportedFormatsString}";
private string ExportFileFilter = $"{HelixToolkit.Wpf.SharpDX.Assimp.Exporter.SupportedFormatsString}";
private bool showWireframe = false;
public string path = "";
public List<string> paths = new List<string>();
public List<int> lods = new List<int>();
public bool ShowWireframe
{
set
{
if (SetValue(ref showWireframe, value))
{
ShowWireframeFunct(value);
}
}
get
{
return showWireframe;
}
}
private bool renderFlat = false;
public bool RenderFlat
{
set
{
if (SetValue(ref renderFlat, value))
{
RenderFlatFunct(value);
}
}
get
{
return renderFlat;
}
}
private bool renderEnvironmentMap = false;
public bool RenderEnvironmentMap
{
set
{
if (SetValue(ref renderEnvironmentMap, value) && scene != null && scene.Root != null)
{
foreach (var node in scene.Root.Traverse())
{
if (node is MaterialGeometryNode m && m.Material is PBRMaterialCore material)
{
material.RenderEnvironmentMap = value;
}
}
}
}
get => renderEnvironmentMap;
}
public ICommand OpenFileCommand
{
get; set;
}
public ICommand ResetCameraCommand
{
set; get;
}
public ICommand ExportCommand { private set; get; }
public ICommand CopyAsBitmapCommand { private set; get; }
public ICommand CopyAsHiresBitmapCommand { private set; get; }
private bool isLoading = false;
public bool IsLoading
{
private set => SetValue(ref isLoading, value);
get => isLoading;
}
private bool isPlaying = false;
public bool IsPlaying
{
private set => SetValue(ref isPlaying, value);
get => isPlaying;
}
private float startTime;
public float StartTime
{
private set => SetValue(ref startTime, value);
get => startTime;
}
private float endTime;
public float EndTime
{
private set => SetValue(ref endTime, value);
get => endTime;
}
private float currAnimationTime = 0;
public float CurrAnimationTime
{
set
{
if (EndTime == 0)
{ return; }
if (SetValue(ref currAnimationTime, value % EndTime + StartTime))
{
animationUpdater?.Update(value, 1);
}
}
get => currAnimationTime;
}
public ObservableCollection<IAnimationUpdater> Animations { get; } = new ObservableCollection<IAnimationUpdater>();
public SceneNodeGroupModel3D GroupModel { get; } = new SceneNodeGroupModel3D();
private IAnimationUpdater selectedAnimation = null;
public IAnimationUpdater SelectedAnimation
{
set
{
if (SetValue(ref selectedAnimation, value))
{
StopAnimation();
CurrAnimationTime = 0;
if (value != null)
{
animationUpdater = value;
animationUpdater.Reset();
animationUpdater.RepeatMode = AnimationRepeatMode.Loop;
StartTime = value.StartTime;
EndTime = value.EndTime;
}
else
{
animationUpdater = null;
StartTime = EndTime = 0;
}
}
}
get
{
return selectedAnimation;
}
}
private float speed = 1.0f;
public float Speed
{
set
{
SetValue(ref speed, value);
}
get => speed;
}
private Point3D modelCentroid = default;
public Point3D ModelCentroid
{
private set => SetValue(ref modelCentroid, value);
get => modelCentroid;
}
private BoundingBox modelBound = new BoundingBox();
public BoundingBox ModelBound
{
private set => SetValue(ref modelBound, value);
get => modelBound;
}
public TextureModel EnvironmentMap { get; }
public ICommand PlayCommand { get; }
private SynchronizationContext context = SynchronizationContext.Current;
public HelixToolkitScene scene;
private IAnimationUpdater animationUpdater;
private List<BoneSkinMeshNode> boneSkinNodes = new List<BoneSkinMeshNode>();
private List<BoneSkinMeshNode> skeletonNodes = new List<BoneSkinMeshNode>();
private CompositionTargetEx compositeHelper = new CompositionTargetEx();
private long initTimeStamp = 0;
private MainWindow mainWindow = null;
public MainViewModel(MainWindow window)
{
mainWindow = window;
this.OpenFileCommand = new DelegateCommand(this.OpenFile);
EffectsManager = new DefaultEffectsManager();
Camera = new OrthographicCamera()
{
LookDirection = new System.Windows.Media.Media3D.Vector3D(0, -10, -10),
Position = new System.Windows.Media.Media3D.Point3D(0, 10, 10),
UpDirection = new System.Windows.Media.Media3D.Vector3D(0, 1, 0),
FarPlaneDistance = 5000,
NearPlaneDistance = 0.1f
};
ResetCameraCommand = new DelegateCommand(() =>
{
(Camera as OrthographicCamera).Reset();
(Camera as OrthographicCamera).FarPlaneDistance = 5000;
(Camera as OrthographicCamera).NearPlaneDistance = 0.1f;
});
ExportCommand = new DelegateCommand(() => { ExportFile(); });
CopyAsBitmapCommand = new DelegateCommand(() => { CopyAsBitmapToClipBoard(mainWindow.view); });
CopyAsHiresBitmapCommand = new DelegateCommand(() => { CopyAsHiResBitmapToClipBoard(mainWindow.view); });
PlayCommand = new DelegateCommand(() =>
{
if (!IsPlaying && SelectedAnimation != null)
{
StartAnimation();
}
else
{
StopAnimation();
}
});
}
private void CopyAsBitmapToClipBoard(Viewport3DX viewport)
{
var bitmap = ViewportExtensions.RenderBitmap(viewport);
try
{
Clipboard.Clear();
Clipboard.SetImage(bitmap);
}
catch (Exception e)
{
Debug.WriteLine(e);
}
}
private void CopyAsHiResBitmapToClipBoard(Viewport3DX viewport)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
var bitmap = ViewportExtensions.RenderBitmap(viewport, 1920, 1080);
try
{
Clipboard.Clear();
Clipboard.SetImage(bitmap);
stopwatch.Stop();
Debug.WriteLine($"creating bitmap needs {stopwatch.ElapsedMilliseconds} ms");
}
catch (Exception e)
{
Debug.WriteLine(e);
}
}
private void OpenFile()
{
if (isLoading)
{
return;
}
if (path == null)
{
return;
}
StopAnimation();
var syncContext = SynchronizationContext.Current;
IsLoading = true;
Task.Run(() =>
{
var loader = new Importer();
var scene = loader.Load(path);
Matrix matrixBackup = scene.Root.ModelMatrix;
matrixBackup.Column2 = scene.Root.ModelMatrix.Column3;
matrixBackup.Column3 = -scene.Root.ModelMatrix.Column2;
scene.Root.ModelMatrix = matrixBackup;
scene.Root.Attach(EffectsManager); // Pre attach scene graph
scene.Root.UpdateAllTransformMatrix();
if (scene.Root.TryGetBound(out var bound))
{
/// Must use UI thread to set value back.
syncContext.Post((o) => { ModelBound = bound; }, null);
}
if (scene.Root.TryGetCentroid(out var centroid))
{
/// Must use UI thread to set value back.
syncContext.Post((o) => { ModelCentroid = centroid.ToPoint3D(); }, null);
}
return scene;
}).ContinueWith((result) =>
{
IsLoading = false;
if (result.IsCompleted)
{
scene = result.Result;
Animations.Clear();
var oldNode = GroupModel.SceneNode.Items.ToArray();
GroupModel.Clear(false);
Task.Run(() =>
{
foreach (var node in oldNode)
{ node.Dispose(); }
});
if (scene != null)
{
if (scene.Root != null)
{
foreach (var node in scene.Root.Traverse())
{
if (node is MaterialGeometryNode m)
{
//m.Geometry.SetAsTransient();
if (m.Material is PBRMaterialCore pbr)
{
pbr.RenderEnvironmentMap = RenderEnvironmentMap;
}
else if (m.Material is PhongMaterialCore phong)
{
phong.RenderEnvironmentMap = RenderEnvironmentMap;
}
}
}
}
GroupModel.AddNode(scene.Root);
if (scene.HasAnimation)
{
var dict = scene.Animations.CreateAnimationUpdaters();
foreach (var ani in dict.Values)
{
Animations.Add(ani);
}
}
foreach (var n in scene.Root.Traverse())
{
if (n.Name.Contains(".PRIM_"))
{
string[] data = n.Name.Split('_');
int index = 0;
int.TryParse(data[1], out index);
if (index < lods.Count())
{
n.Tag = new AttachedNodeViewModel(n, lods[index], scene);
}
}
else
{
n.Tag = new AttachedNodeViewModel(n, -1, scene);
}
}
FocusCameraToScene();
List<string> deletedPaths = new List<string>();
foreach (string filePath in paths)
{
File.Delete(filePath);
deletedPaths.Add(filePath);
}
foreach (string filePath in deletedPaths)
{
if (paths.Contains(filePath))
{
paths.Remove(filePath);
}
}
}
}
else if (result.IsFaulted && result.Exception != null)
{
MessageBox.Show(result.Exception.Message);
}
}, TaskScheduler.FromCurrentSynchronizationContext());
}
public void StartAnimation()
{
initTimeStamp = Stopwatch.GetTimestamp();
compositeHelper.Rendering += CompositeHelper_Rendering;
IsPlaying = true;
}
public void StopAnimation()
{
IsPlaying = false;
compositeHelper.Rendering -= CompositeHelper_Rendering;
}
private void CompositeHelper_Rendering(object sender, System.Windows.Media.RenderingEventArgs e)
{
if (animationUpdater != null)
{
var elapsed = (Stopwatch.GetTimestamp() - initTimeStamp) * speed;
CurrAnimationTime = elapsed / Stopwatch.Frequency;
}
}
private void FocusCameraToScene()
{
var maxWidth = Math.Max(Math.Max(modelBound.Width, modelBound.Height), modelBound.Depth);
var pos = modelBound.Center + new Vector3(0, 0, maxWidth);
Camera.Position = pos.ToPoint3D();
Camera.LookDirection = (modelBound.Center - pos).ToVector3D();
Camera.UpDirection = Vector3.UnitY.ToVector3D();
if (Camera is OrthographicCamera orthCam)
{
orthCam.Width = maxWidth;
}
}
private void ExportFile()
{
var index = SaveFileDialog(ExportFileFilter, out var path);
if (!string.IsNullOrEmpty(path) && index >= 0)
{
var id = HelixToolkit.Wpf.SharpDX.Assimp.Exporter.SupportedFormats[index].FormatId;
var exporter = new HelixToolkit.Wpf.SharpDX.Assimp.Exporter();
exporter.ExportToFile(path, scene, id);
return;
}
}
private string OpenFileDialog(string filter)
{
var d = new OpenFileDialog();
d.CustomPlaces.Clear();
d.Filter = filter;
if (!d.ShowDialog().Value)
{
return null;
}
return d.FileName;
}
private int SaveFileDialog(string filter, out string path)
{
var d = new SaveFileDialog();
d.Filter = filter;
if (d.ShowDialog() == true)
{
path = d.FileName;
return d.FilterIndex - 1;//This is tarting from 1. So must minus 1
}
else
{
path = "";
return -1;
}
}
private void ShowWireframeFunct(bool show)
{
foreach (var node in GroupModel.GroupNode.Items.PreorderDFT((node) =>
{
return node.IsRenderable;
}))
{
if (node is MeshNode m)
{
m.RenderWireframe = show;
}
}
}
private void RenderFlatFunct(bool show)
{
foreach (var node in GroupModel.GroupNode.Items.PreorderDFT((node) =>
{
return node.IsRenderable;
}))
{
if (node is MeshNode m)
{
if (m.Material is PhongMaterialCore phong)
{
phong.EnableFlatShading = show;
}
else if (m.Material is PBRMaterialCore pbr)
{
pbr.EnableFlatShading = show;
}
}
}
}
}
}