| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- using System;
- using System.Collections.Generic;
- using Microsoft.Practices.Prism.Mvvm;
- namespace Modules.BehaviorTreeModule
- {
- public class TreeNodeViewModel: BindableBase
- {
- private static double width = 80;
- private static double height = 50;
- public TreeViewModel TreeViewModel { get; private set; }
- private readonly TreeNodeData data;
- private double x;
- private double y;
- private double connectorX2;
- private double connectorY2;
- private double prelim;
- private double modify;
- private double ancestorModify;
- private bool isFold;
- public TreeNodeViewModel(TreeViewModel treeViewModel, double x, double y)
- {
- this.TreeViewModel = treeViewModel;
- this.x = x;
- this.y = y;
- this.data = new TreeNodeData();
- this.data.Id = ++treeViewModel.AllTreeViewModel.MaxNodeId;
- this.data.TreeId = treeViewModel.TreeId;
- this.data.Parent = 0;
- this.connectorX2 = 0;
- this.connectorY2 = Height / 2;
- }
- public TreeNodeViewModel(TreeViewModel treeViewModel, TreeNodeViewModel parent)
- {
- this.TreeViewModel = treeViewModel;
- this.data = new TreeNodeData();
- this.data.Id = ++treeViewModel.AllTreeViewModel.MaxNodeId;
- this.data.TreeId = treeViewModel.TreeId;
- this.Parent = parent;
- this.connectorX2 = Width + this.Parent.X - this.X;
- this.connectorY2 = Height / 2 + this.Parent.Y - this.Y;
- }
- public TreeNodeViewModel(TreeViewModel treeViewModel, TreeNodeData data)
- {
- this.TreeViewModel = treeViewModel;
- this.data = data;
- if (this.IsRoot)
- {
- this.x = 300;
- this.y = 100;
- this.connectorX2 = 0;
- this.connectorY2 = Height / 2;
- }
- else
- {
- this.connectorX2 = Width + this.Parent.X - this.X;
- this.connectorY2 = Height / 2 + this.Parent.Y - this.Y;
- }
- }
- public TreeNodeData Data
- {
- get
- {
- return this.data;
- }
- }
- public int Id
- {
- get
- {
- return this.data.Id;
- }
- set
- {
- if (this.data.Id == value)
- {
- return;
- }
- this.data.Id = value;
- this.OnPropertyChanged("Id");
- }
- }
- public string Comment
- {
- get
- {
- return this.data.Comment;
- }
- set
- {
- if (this.data.Comment == value)
- {
- return;
- }
- this.data.Comment = value;
- this.OnPropertyChanged("Comment");
- }
- }
- public static double Width
- {
- get
- {
- return width;
- }
- set
- {
- width = value;
- }
- }
- public static double Height
- {
- get
- {
- return height;
- }
- set
- {
- height = value;
- }
- }
- public bool IsRoot
- {
- get
- {
- return this.Parent == null;
- }
- }
- public double Prelim
- {
- get
- {
- return this.prelim;
- }
- set
- {
- this.prelim = value;
- }
- }
- public double Modify
- {
- get
- {
- return this.modify;
- }
- set
- {
- this.modify = value;
- }
- }
- public double X
- {
- get
- {
- return this.x;
- }
- set
- {
- if (Math.Abs(this.x - value) < 0.1)
- {
- return;
- }
- this.x = value;
- this.OnPropertyChanged("X");
- if (this.Parent != null)
- {
- this.ConnectorX2 = Width / 2 + this.Parent.X - this.X;
- }
- foreach (var childId in this.Children)
- {
- TreeNodeViewModel child = this.TreeViewModel.Get(childId);
- child.ConnectorX2 = Width / 2 + this.X - child.X;
- }
- }
- }
- public double Y
- {
- get
- {
- return this.y;
- }
- set
- {
- if (Math.Abs(this.Y - value) < 0.1)
- {
- return;
- }
- this.y = value;
- this.OnPropertyChanged("Y");
- if (this.Parent != null)
- {
- this.ConnectorY2 = Height + this.Parent.Y - this.Y;
- }
- foreach (var childId in this.Children)
- {
- TreeNodeViewModel child = this.TreeViewModel.Get(childId);
- child.ConnectorY2 = Height + this.Y - child.Y;
- }
- }
- }
- public double ConnectorX1
- {
- get
- {
- return Width / 2;
- }
- }
- public double ConnectorY1
- {
- get
- {
- return 0;
- }
- }
- public double ConnectorX2
- {
- get
- {
- return this.IsRoot? Width / 2 : this.connectorX2;
- }
- set
- {
- this.SetProperty(ref this.connectorX2, value);
- }
- }
- public double ConnectorY2
- {
- get
- {
- return this.IsRoot? 0 : this.connectorY2;
- }
- set
- {
- this.SetProperty(ref this.connectorY2, value);
- }
- }
- public int Type
- {
- get
- {
- return this.data.Type;
- }
- set
- {
- if (this.data.Type == value)
- {
- return;
- }
- this.data.Type = value;
- this.OnPropertyChanged("Type");
- }
- }
- public List<string> Args
- {
- get
- {
- return this.data.Args;
- }
- set
- {
- if (this.data.Args == value)
- {
- return;
- }
- this.data.Args = value;
- this.OnPropertyChanged("Args");
- }
- }
- public int TreeId
- {
- get
- {
- return this.data.TreeId;
- }
- }
- public TreeNodeViewModel Parent
- {
- get
- {
- if (this.data.Parent == 0)
- {
- return null;
- }
- TreeNodeViewModel parent = this.TreeViewModel.Get(this.data.Parent);
- return parent;
- }
- set
- {
- if (value == null)
- {
- this.data.Parent = 0;
- }
- this.data.Parent = value.Id;
- }
- }
- /// <summary>
- /// 节点是否折叠
- /// </summary>
- public bool IsFold
- {
- get
- {
- return this.isFold;
- }
- set
- {
- if (this.isFold == value)
- {
- return;
- }
- this.isFold = value;
- this.OnPropertyChanged("IsFold");
- }
- }
- public List<int> Children
- {
- get
- {
- if (this.isFold)
- {
- return new List<int>();
- }
- return this.data.Children;
- }
- }
- public TreeNodeViewModel LeftSibling
- {
- get
- {
- if (this.IsRoot)
- {
- return null;
- }
- int index = this.Parent.Children.IndexOf(this.Id);
- return index == 0? null : this.TreeViewModel.Get(this.Parent.Children[index - 1]);
- }
- }
- public TreeNodeViewModel LastChild
- {
- get
- {
- if (this.Children.Count == 0)
- {
- return null;
- }
- int maxIndex = this.Children.Count - 1;
- return this.TreeViewModel.Get(this.Children[maxIndex]);
- }
- }
- public TreeNodeViewModel FirstChild
- {
- get
- {
- return this.Children.Count == 0? null : this.TreeViewModel.Get(this.Children[0]);
- }
- }
- public bool IsLeaf
- {
- get
- {
- return this.Children.Count == 0;
- }
- }
- public double AncestorModify
- {
- get
- {
- return this.ancestorModify;
- }
- set
- {
- this.ancestorModify = value;
- }
- }
- }
- }
|