using System.Collections.ObjectModel; using System.ComponentModel.Composition; namespace Modules.BehaviorTree { [Export(contractType: typeof (BehaviorTreeViewModel)), PartCreationPolicy(creationPolicy: CreationPolicy.NonShared)] internal class BehaviorTreeViewModel { private readonly ObservableCollection treeNodes = new ObservableCollection(); public ObservableCollection TreeNodes { get { return this.treeNodes; } } private TreeNodeViewModel Root { get { return this.treeNodes.Count == 0? null : this.treeNodes[0]; } } public void Add(TreeNode treeNode, TreeNodeViewModel parent) { var treeNodeViewModel = new TreeNodeViewModel(treeNode, parent); this.treeNodes.Add(treeNodeViewModel); if (parent != null) { parent.Children.Add(treeNodeViewModel); } BehaviorTreeLayout.ExcuteLayout(this.Root); } private void RecursionRemove(TreeNodeViewModel treeNodeViewModel) { for (int i = treeNodeViewModel.Children.Count - 1; i >= 0; --i) { this.RecursionRemove(treeNodeViewModel.Children[i]); } treeNodeViewModel.Parent.Children.Remove(treeNodeViewModel); this.treeNodes.Remove(treeNodeViewModel); } public void Remove(TreeNodeViewModel treeNodeViewModel) { this.RecursionRemove(treeNodeViewModel); BehaviorTreeLayout.ExcuteLayout(this.Root); } private void RecursionMove(TreeNodeViewModel treeNodeViewModel, double offsetX, double offsetY) { treeNodeViewModel.X += offsetX; treeNodeViewModel.Y += offsetY; foreach (var node in treeNodeViewModel.Children) { this.RecursionMove(node, offsetX, offsetY); } } public void Move(double offsetX, double offsetY) { this.RecursionMove(this.Root, offsetX, offsetY); } } }