forked from Tunkali/com.unity.xr.management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XRLoaderOrderUI.cs
322 lines (273 loc) · 13 KB
/
XRLoaderOrderUI.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
using System;
using System.Collections.Generic;
using UnityEditorInternal;
using UnityEngine;
using UnityEditor.XR.Management.Metadata;
namespace UnityEditor.XR.Management
{
internal interface IXRLoaderOrderManager
{
List<XRLoaderInfo> AssignedLoaders { get; }
List<XRLoaderInfo> UnassignedLoaders { get; }
void AssignLoader(XRLoaderInfo assignedInfo);
void UnassignLoader(XRLoaderInfo unassignedInfo);
void Update();
}
internal class XRLoaderOrderUI
{
struct LoaderInformation
{
public string packageName;
public string packageId;
public string loaderName;
public string loaderType;
public bool toggled;
public bool stateChanged;
public bool disabled;
public IXRCustomLoaderUI customLoaderUI;
}
const string k_AtNoLoaderInstance = "There are no XR plugins applicable to this platform.";
private List<LoaderInformation> m_LoaderMetadata = null;
ReorderableList m_OrderedList = null;
public BuildTargetGroup CurrentBuildTargetGroup { get; set; }
struct Content
{
public static readonly string k_HelpUri = "https://docs.unity3d.com/Packages/[email protected]/manual/EndUser.html";
public static readonly GUIContent k_LoaderUITitle = EditorGUIUtility.TrTextContent("Plug-in Providers");
public static readonly GUIContent k_HelpContent = new GUIContent("",
EditorGUIUtility.IconContent("_Help@2x").image,
"Selecting an XR Plug-in Provider installs and loads the corresponding package in your project. You can view and manage these packages in the Package Manager.");
}
struct DeprecationInfo
{
public GUIContent icon;
public GUIContent renderContent;
}
static Dictionary<string, DeprecationInfo> s_DeprecationInfo = new Dictionary<string, DeprecationInfo>();
static bool s_DidPopulateDeprecationInfo = false;
#if UNITY_2021_1_OR_NEWER
static string k_DeprecatedWMRLoaderName = "Windows Mixed Reality";
private static string k_DeprecatedLuminLoaderName = "Magic Leap - Note: Lumin Platform will be deprecated in Unity 2021.2!";
#endif //UNITY_2021_1_OR_NEWER
static bool IsDeprecated(string loaderName)
{
#if UNITY_2021_2_OR_NEWER
if (loaderName == k_DeprecatedWMRLoaderName || loaderName == k_DeprecatedLuminLoaderName)
return true;
#endif //UNITY_2021_2_OR_NEWER
return false;
}
static void PopulateDeprecationInfo()
{
if (s_DidPopulateDeprecationInfo)
return;
s_DidPopulateDeprecationInfo = true;
#if UNITY_2021_1_OR_NEWER
s_DeprecationInfo[k_DeprecatedWMRLoaderName] = new DeprecationInfo{
icon = EditorGUIUtility.IconContent("console.warnicon.sml"),
renderContent = new GUIContent("",
EditorGUIUtility.IconContent("console.warnicon.sml").image,
@"Microsoft has transitioned support of Windows MR devices to OpenXR in Unity 2021, and recommends using Unity's OpenXR plugin. As such, this Windows XR plugin is marked as deprecated and will be removed in the 2021.2 release. It will continue to be supported in the 2020 LTS.")
};
s_DeprecationInfo[k_DeprecatedLuminLoaderName] = new DeprecationInfo {
icon = EditorGUIUtility.IconContent("console.warnicon.sml"),
renderContent = new GUIContent("",
EditorGUIUtility.IconContent("console.warnicon.sml").image,
@"Unity 2020 LTS will be the last version of the editor which supports Magic Leap 1.
Developers can continue to build for Magic Leap 1 using Unity 2020 LTS or 2019 LTS.")
};
#endif //UNITY_2021_1_OR_NEWER
}
internal XRLoaderOrderUI()
{
}
void SetDisablesStateOnLoadersFromLoader(LoaderInformation li)
{
for (int i = 0; i < m_LoaderMetadata.Count; i++)
{
var otherLi = m_LoaderMetadata[i];
if (otherLi.loaderType == li.loaderType)
continue;
if (li.customLoaderUI != null && Array.IndexOf(li.customLoaderUI.IncompatibleLoaders, otherLi.loaderType) >= 0)
{
if (li.toggled && otherLi.toggled)
{
otherLi.toggled = false;
otherLi.stateChanged = true;
}
otherLi.disabled = li.toggled;
m_LoaderMetadata[i] = otherLi;
}
}
}
void DrawElementCallback(Rect rect, int index, bool isActive, bool isFocused)
{
var li = m_LoaderMetadata[index];
if (PackageNotificationUtils.registeredPackagesWithNotifications.TryGetValue(li.packageId, out var notificationInfo))
PackageNotificationUtils.DrawNotificationIconUI(notificationInfo, rect);
li.toggled = XRPackageMetadataStore.IsLoaderAssigned(li.loaderType, CurrentBuildTargetGroup);
var preToggledState = li.toggled;
EditorGUI.BeginDisabledGroup(li.disabled);
if (li.customLoaderUI != null)
{
li.customLoaderUI.OnGUI(rect);
li.toggled = li.customLoaderUI.IsLoaderEnabled;
}
else
{
string name = li.loaderName;
if (s_DeprecationInfo.ContainsKey(name))
{
var depInfo = s_DeprecationInfo[name];
var labelRect = rect;
var size = EditorStyles.label.CalcSize(depInfo.icon);
labelRect.width -= size.y + 1;
var imageRect = new Rect(rect);
imageRect.xMin = labelRect.xMax + 1;
imageRect.width = size.y;
li.toggled = EditorGUI.ToggleLeft(labelRect, li.loaderName, preToggledState);
EditorGUI.LabelField(imageRect, depInfo.renderContent);
}
else
{
li.toggled = EditorGUI.ToggleLeft(rect, li.loaderName, preToggledState);
}
}
li.stateChanged = (li.toggled != preToggledState);
m_LoaderMetadata[index] = li;
EditorGUI.EndDisabledGroup();
}
float GetElementHeight(int index)
{
var li = m_LoaderMetadata[index];
if (li.customLoaderUI != null)
{
li.customLoaderUI.SetRenderedLineHeight(m_OrderedList.elementHeight);
return li.customLoaderUI.RequiredRenderHeight;
}
return m_OrderedList.elementHeight;
}
internal bool OnGUI(BuildTargetGroup buildTargetGroup)
{
PopulateDeprecationInfo();
var settings = XRGeneralSettingsPerBuildTarget.XRGeneralSettingsForBuildTarget(buildTargetGroup);
if (buildTargetGroup != CurrentBuildTargetGroup || m_LoaderMetadata == null)
{
CurrentBuildTargetGroup = buildTargetGroup;
if (m_LoaderMetadata == null)
m_LoaderMetadata = new List<LoaderInformation>();
else
m_LoaderMetadata.Clear();
foreach (var pmd in XRPackageMetadataStore.GetLoadersForBuildTarget(buildTargetGroup))
{
if (IsDeprecated(pmd.loaderName))
continue;
var newLi = new LoaderInformation() {
packageName = pmd.packageName,
packageId = pmd.packageId,
loaderName = pmd.loaderName,
loaderType = pmd.loaderType,
toggled = XRPackageMetadataStore.IsLoaderAssigned(pmd.loaderType, buildTargetGroup),
disabled = pmd.disabled,
customLoaderUI = XRCustomLoaderUIManager.GetCustomLoaderUI(pmd.loaderType, buildTargetGroup)
};
if (newLi.customLoaderUI != null)
{
newLi.customLoaderUI.IsLoaderEnabled = newLi.toggled;
newLi.customLoaderUI.ActiveBuildTargetGroup = CurrentBuildTargetGroup;
}
m_LoaderMetadata.Add(newLi);
}
if (settings != null)
{
List<LoaderInformation> loadersWantingToDisableOtherLoaders = new List<LoaderInformation>();
LoaderInformation li;
for (int i = 0; i < m_LoaderMetadata.Count; i++)
{
li = m_LoaderMetadata[i];
if (XRPackageMetadataStore.IsLoaderAssigned(settings.AssignedSettings, li.loaderType))
{
li.toggled = true;
m_LoaderMetadata[i] = li;
if (li.customLoaderUI != null)
{
loadersWantingToDisableOtherLoaders.Add(li);
}
break;
}
}
foreach(var loader in loadersWantingToDisableOtherLoaders)
{
SetDisablesStateOnLoadersFromLoader(loader);
}
}
m_OrderedList = new ReorderableList(m_LoaderMetadata, typeof(LoaderInformation), false, true, false, false);
m_OrderedList.drawHeaderCallback = (rect) =>
{
var labelSize = EditorStyles.label.CalcSize(Content.k_LoaderUITitle);
var labelRect = new Rect(rect);
labelRect.width = labelSize.x;
labelSize = EditorStyles.label.CalcSize(Content.k_HelpContent);
var imageRect = new Rect(rect);
imageRect.xMin = labelRect.xMax + 1;
imageRect.width = labelSize.x;
EditorGUI.LabelField(labelRect, Content.k_LoaderUITitle, EditorStyles.label);
if (GUI.Button(imageRect, Content.k_HelpContent, EditorStyles.label))
{
System.Diagnostics.Process.Start(Content.k_HelpUri);
}
};
m_OrderedList.drawElementCallback = (rect, index, isActive, isFocused) => DrawElementCallback(rect, index, isActive, isFocused);
m_OrderedList.drawElementBackgroundCallback = (rect, index, isActive, isFocused) =>
{
var tex = GUI.skin.label.normal.background;
if (tex == null && GUI.skin.label.normal.scaledBackgrounds.Length > 0) tex = GUI.skin.label.normal.scaledBackgrounds[0];
if (tex == null) return;
GUI.DrawTexture(rect, GUI.skin.label.normal.background);
};
m_OrderedList.drawFooterCallback = (rect) =>
{
var status = XRPackageMetadataStore.GetCurrentStatusDisplayText();
GUI.Label(rect, EditorGUIUtility.TrTextContent(status), EditorStyles.label);
};
m_OrderedList.elementHeightCallback = (index) => GetElementHeight(index);
}
if (m_LoaderMetadata == null || m_LoaderMetadata.Count == 0)
{
EditorGUILayout.HelpBox(k_AtNoLoaderInstance, MessageType.Info);
}
else
{
m_OrderedList.DoLayoutList();
if (settings != null)
{
LoaderInformation li;
for (int i = 0; i < m_LoaderMetadata.Count; i++)
{
li = m_LoaderMetadata[i];
if (li.stateChanged && li.customLoaderUI != null)
SetDisablesStateOnLoadersFromLoader(li);
}
for (int i = 0; i < m_LoaderMetadata.Count; i++)
{
li = m_LoaderMetadata[i];
if (li.stateChanged)
{
if (li.toggled)
{
XRPackageMetadataStore.InstallPackageAndAssignLoaderForBuildTarget(li.packageId, li.loaderType, buildTargetGroup);
}
else
{
XRPackageMetadataStore.RemoveLoader(settings.AssignedSettings, li.loaderType, buildTargetGroup);
}
li.stateChanged = false;
m_LoaderMetadata[i] = li;
}
}
}
}
return false;
}
}
}