-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDock.cs
189 lines (165 loc) · 5.98 KB
/
Dock.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
// <copyright file="Dock.cs" company="Pixel Precision LLC">
// Copyright (c) 2020 All Rights Reserved
// </copyright>
// <author>William Leu</author>
// <date>04/12/2020</date>
// <summary>
// Holds the definition of the Dock datastructure.
// </summary>
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PxPre.UIDock
{
/// <summary>
/// The tree datastructure used to represented the layout
/// of Docked UIDock.Windows.
/// </summary>
public class Dock
{
/// <summary>
/// The
/// </summary>
public enum Type
{
// Default value to detect unset dock types.
Void,
// Will always be a leaf node
Window,
// Will always have at least 2 children, and none
// of those will be another horizontal.
Horizontal,
// Will always have at least 2 children, and none
// of those will be another vertical.
Vertical,
// Will always have at least 2 children, and they
// will always be windows.
Tab
}
/// <summary>
/// The parent node.
/// </summary>
public Dock parent;
/// <summary>
/// Only used for doc types. Which window is shown?
/// </summary>
public Dock activeTab = null;
/// <summary>
/// The type of node the Dock is.
/// </summary>
public Type dockType = Type.Void;
/// <summary>
/// If the type is a Window, the value of the window.
/// Else, null.
/// </summary>
public Window window = null;
/// <summary>
/// If the type is a container (Horizontal, Vertical, or
/// Tab, the children within the node
/// </summary>
public List<Dock> children = null;
/// <summary>
/// The cached in the UI.
///
/// Takes into account
/// </summary>
public Rect cachedPlace;
/// <summary>
/// The minimum size the window can be, taking into
/// account the children.
/// </summary>
public Vector2 minSize = Vector2.zero;
/// <summary>
/// Constructor for the Window type.
/// </summary>
/// <param name="window">The window to manage.</param>
/// <param name="cacheDim">If true, the cached dimension
/// is set to the window's current dimensions.</param>
public Dock(Window window, bool cacheDim = true)
{
this.window = window;
this.dockType = Type.Window;
if(cacheDim == true)
cachedPlace.size = window.Win.rect.size;
}
/// <summary>
/// Constructor for container types.
/// </summary>
/// <param name="type">The type. This is expected to be a container
/// type.</param>
/// <param name="children">The children. The array is expected to have
/// at least 2 items.</param>
public Dock(Type type, params Dock [] children)
{
this.window = null;
this.children = new List<Dock>(children);
this.dockType = type;
foreach(Dock d in children)
d.parent = this;
}
public Vector2 CalculateMinsize(DockProps dp, bool cache = true)
{
Vector2 ret = this.CalculateMinsizeImpl(dp, cache);
if(cache == true)
this.minSize = ret;
return ret;
}
/// <summary>
/// Recursively calculate the minimum size.
/// </summary>
/// <param name="dp">
/// The properties with the minium size information of leaf nodes.</param>
/// <returns>The calculated minimum size. It also takes into account
/// the size needed for sashes.</returns>
private Vector2 CalculateMinsizeImpl(DockProps dp, bool cache = true)
{
switch( dockType)
{
case Type.Horizontal:
{
Vector2 reth = Vector2.zero;
bool alo = false; // At least once
foreach(Dock d in this.children)
{
Vector2 vd = d.CalculateMinsize(dp, cache);
reth.x += vd.x;
reth.y = Mathf.Max(reth.y, vd.y);
if(alo == false)
alo = true;
else
reth.x += dp.sashWidth;
}
return reth;
}
case Type.Vertical:
{
Vector2 retv = Vector2.zero;
bool alo = false;
foreach(Dock d in this.children)
{
Vector2 vd = d.CalculateMinsize(dp, cache);
retv.x = Mathf.Max(retv.x, vd.x);
retv.y += vd.y;
if(alo == false)
alo = true;
else
retv.y += dp.sashWidth;
}
return retv;
}
case Type.Tab:
return dp.minsizeTabs;
case Type.Window:
return dp.minsizeWindow;
}
return Vector2.zero;
}
public bool IsContainerType()
{
return
this.dockType == Type.Horizontal ||
this.dockType == Type.Vertical ||
this.dockType == Type.Tab;
}
}
}