-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathUIRoot.cs
238 lines (212 loc) · 4.96 KB
/
UIRoot.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
using System.Collections.Generic;
using UnityEngine;
[AddComponentMenu("NGUI/UI/Root")]
[ExecuteInEditMode]
public class UIRoot : MonoBehaviour
{
public enum Scaling
{
Flexible,
Constrained,
ConstrainedOnMobiles
}
public enum Constraint
{
Fit,
Fill,
FitWidth,
FitHeight
}
public static List<UIRoot> list = new List<UIRoot>();
public Scaling scalingStyle;
public int manualWidth = 1280;
public int manualHeight = 720;
public int minimumHeight = 320;
public int maximumHeight = 1536;
public bool fitWidth;
public bool fitHeight = true;
public bool adjustByDPI;
public bool shrinkPortraitUI;
private Transform mTrans;
public Constraint constraint
{
get
{
if (fitWidth)
{
if (fitHeight)
{
return Constraint.Fit;
}
return Constraint.FitWidth;
}
if (fitHeight)
{
return Constraint.FitHeight;
}
return Constraint.Fill;
}
}
public Scaling activeScaling
{
get
{
Scaling scaling = scalingStyle;
if (scaling == Scaling.ConstrainedOnMobiles)
{
return Scaling.Flexible;
}
return scaling;
}
}
public int activeHeight
{
get
{
if (activeScaling == Scaling.Flexible)
{
Vector2 screenSize = NGUITools.screenSize;
float num = screenSize.x / screenSize.y;
if (screenSize.y < (float)minimumHeight)
{
screenSize.y = (float)minimumHeight;
screenSize.x = screenSize.y * num;
}
else if (screenSize.y > (float)maximumHeight)
{
screenSize.y = (float)maximumHeight;
screenSize.x = screenSize.y * num;
}
int num2 = Mathf.RoundToInt((!shrinkPortraitUI || !(screenSize.y > screenSize.x)) ? screenSize.y : (screenSize.y / num));
return (!adjustByDPI) ? num2 : NGUIMath.AdjustByDPI((float)num2);
}
Constraint constraint = this.constraint;
if (constraint != Constraint.FitHeight)
{
Vector2 screenSize2 = NGUITools.screenSize;
float num3 = screenSize2.x / screenSize2.y;
float num4 = (float)manualWidth / (float)manualHeight;
switch (constraint)
{
case Constraint.FitWidth:
return Mathf.RoundToInt((float)manualWidth / num3);
case Constraint.Fit:
return (!(num4 > num3)) ? manualHeight : Mathf.RoundToInt((float)manualWidth / num3);
case Constraint.Fill:
return (!(num4 < num3)) ? manualHeight : Mathf.RoundToInt((float)manualWidth / num3);
default:
return manualHeight;
}
}
return manualHeight;
}
}
public float pixelSizeAdjustment
{
get
{
Vector2 screenSize = NGUITools.screenSize;
int num = Mathf.RoundToInt(screenSize.y);
return (num != -1) ? GetPixelSizeAdjustment(num) : 1f;
}
}
public static float GetPixelSizeAdjustment(GameObject go)
{
UIRoot uIRoot = NGUITools.FindInParents<UIRoot>(go);
return (!(uIRoot != null)) ? 1f : uIRoot.pixelSizeAdjustment;
}
public float GetPixelSizeAdjustment(int height)
{
height = Mathf.Max(2, height);
if (activeScaling == Scaling.Constrained)
{
return (float)activeHeight / (float)height;
}
if (height < minimumHeight)
{
return (float)minimumHeight / (float)height;
}
if (height > maximumHeight)
{
return (float)maximumHeight / (float)height;
}
return 1f;
}
protected virtual void Awake()
{
mTrans = base.transform;
}
protected virtual void OnEnable()
{
list.Add(this);
}
protected virtual void OnDisable()
{
list.Remove(this);
}
protected virtual void Start()
{
UIOrthoCamera componentInChildren = GetComponentInChildren<UIOrthoCamera>();
if (componentInChildren != null)
{
Debug.LogWarning("UIRoot should not be active at the same time as UIOrthoCamera. Disabling UIOrthoCamera.", componentInChildren);
Camera component = componentInChildren.gameObject.GetComponent<Camera>();
componentInChildren.enabled = false;
if (component != null)
{
component.orthographicSize = 1f;
}
}
else
{
Update();
}
}
private void Update()
{
if (mTrans != null)
{
float num = (float)activeHeight;
if (num > 0f)
{
float num2 = 2f / num;
Vector3 localScale = mTrans.localScale;
if (!(Mathf.Abs(localScale.x - num2) <= 1.401298E-45f) || !(Mathf.Abs(localScale.y - num2) <= 1.401298E-45f) || !(Mathf.Abs(localScale.z - num2) <= 1.401298E-45f))
{
mTrans.localScale = new Vector3(num2, num2, num2);
}
}
}
}
public static void Broadcast(string funcName)
{
int i = 0;
for (int count = list.Count; i < count; i++)
{
UIRoot uIRoot = list[i];
if (uIRoot != null)
{
uIRoot.BroadcastMessage(funcName, SendMessageOptions.DontRequireReceiver);
}
}
}
public static void Broadcast(string funcName, object param)
{
if (param == null)
{
Debug.LogError("SendMessage is bugged when you try to pass 'null' in the parameter field. It behaves as if no parameter was specified.");
}
else
{
int i = 0;
for (int count = list.Count; i < count; i++)
{
UIRoot uIRoot = list[i];
if (uIRoot != null)
{
uIRoot.BroadcastMessage(funcName, param, SendMessageOptions.DontRequireReceiver);
}
}
}
}
}