mattercontrol/PartPreviewWindow/Object3DTreeBuilder.cs

185 lines
5.6 KiB
C#
Raw Normal View History

/*
Copyright (c) 2018, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MatterHackers.Agg.Image;
using MatterHackers.Agg.UI;
using MatterHackers.DataConverters3D;
2018-06-05 11:17:02 -07:00
using MatterHackers.Localizations;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.MatterControl.DesignTools.Operations;
using MatterHackers.MatterControl.Library;
using MatterHackers.MatterControl.PartPreviewWindow.View3D;
namespace MatterHackers.MatterControl.PartPreviewWindow
{
public static class Object3DTreeBuilder
{
public static TreeNode BuildTree(IObject3D rootItem, ThemeConfig theme)
{
return AddTree(BuildItemView(rootItem), null, theme);
}
private static TreeNode AddTree(ObjectView item, TreeNode parent, ThemeConfig theme)
{
// Suppress MeshWrapper and OperationSource nodes in tree
bool shouldCollapseToParent = item.Source is ModifiedMeshObject3D || item.Source is OperationSourceObject3D;
var contextNode = (shouldCollapseToParent && parent != null) ? parent : AddItem(item, parent, theme);
using (contextNode.LayoutLock())
{
if (!(item.Source is IVisualLeafNode))
{
foreach (var child in item.Children)
{
AddTree(BuildItemView(child), contextNode, theme);
}
}
}
return contextNode;
}
private static TreeNode AddItem(ObjectView item, TreeNode parentNode, ThemeConfig theme)
{
if(item.Source is InsertionGroupObject3D insertionGroup)
2018-06-05 11:17:02 -07:00
{
2018-07-12 09:22:28 -07:00
return new TreeNode(theme)
2018-06-05 11:17:02 -07:00
{
Text = "Loading".Localize(),
Tag = item.Source,
2018-06-05 11:17:02 -07:00
TextColor = theme.Colors.PrimaryTextColor,
PointSize = theme.DefaultFontSize,
};
}
2018-07-12 09:22:28 -07:00
var node = new TreeNode(theme)
{
2018-06-07 16:26:58 -07:00
Text = GetName(item),
Tag = item.Source,
TextColor = theme.Colors.PrimaryTextColor,
PointSize = theme.DefaultFontSize,
};
// Check for operation resulting in the given type
if (ApplicationController.Instance.Thumbnails.OperationIcons.TryGetValue(item.Source.GetType(), out ImageBuffer icon))
{
// If exists, use the operation icon
node.Image = icon;
}
else
{
node.Load += (s, e) =>
{
string contentID = item.Source.MeshRenderId().ToString();
var thumbnail = ApplicationController.Instance.Thumbnails.LoadCachedImage(contentID, 16, 16);
node.Image = thumbnail ?? ApplicationController.Instance.Thumbnails.DefaultThumbnail();
};
}
if (parentNode != null)
{
parentNode.Nodes.Add(node);
parentNode.Expanded = true;
}
return node;
}
private static string GetName(ObjectView item)
{
2018-06-07 16:26:58 -07:00
return !string.IsNullOrEmpty(item.Name) ? $"{item.Name}" : $"{item.GetType().Name}";
}
private static ObjectView BuildItemView(IObject3D item)
{
switch (item)
{
case TransformWrapperObject3D fitToBounds3D:
return new ObjectView()
{
Children = new IObject3D[] { fitToBounds3D.SourceItem },
Name = item.Name,
Source = item
};
case ArrayLinearObject3D arrayLinear3D:
return new ObjectView()
{
Children = item.Children.OfType<OperationSourceObject3D>().ToList(),
Name = $"{arrayLinear3D.Name} ({arrayLinear3D.Count})",
Source = item
};
case ArrayAdvancedObject3D arrayAdvanced3D:
return new ObjectView()
{
Children = item.Children.OfType<OperationSourceObject3D>().ToList(),
Name = $"{arrayAdvanced3D.Name} ({arrayAdvanced3D.Count})",
Source = item
};
// TODO: array operations should only expose OperationSource
case ArrayRadialObject3D arrayRadial3D:
return new ObjectView()
{
Children = item.Children.OfType<OperationSourceObject3D>().ToList(),
Name = $"{arrayRadial3D.Name} ({arrayRadial3D.Count})",
Source = item
};
default:
return new ObjectView(item);
}
}
private class ObjectView
{
public ObjectView()
{
}
public ObjectView(IObject3D source)
{
this.Source = source;
this.Children = this.Source.Children;
this.Name = this.Source.Name;
}
public IEnumerable<IObject3D> Children { get; set; }
public string Name { get; set; }
public IObject3D Source { get; set; }
}
}
}