forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnityMainToolbar.cs
470 lines (387 loc) · 19 KB
/
UnityMainToolbar.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor.Web;
using UnityEditor.Connect;
using UnityEditorInternal;
using UnityEditor.EditorTools;
namespace UnityEditor
{
[MainToolbar("Default")]
class UnityMainToolbar : EditorToolbar
{
// Number of buttons present in the tools toolbar.
const int k_ToolCount = 7;
// Count of the transform tools + custom editor tool.
const int k_TransformToolCount = 6;
void InitializeToolIcons()
{
if (s_ToolIcons != null)
return;
s_ToolIcons = new GUIContent[k_TransformToolCount * 2];
int index = 0;
s_ToolIcons[index++] = EditorGUIUtility.TrIconContent("MoveTool", "Move Tool");
s_ToolIcons[index++] = EditorGUIUtility.TrIconContent("RotateTool", "Rotate Tool");
s_ToolIcons[index++] = EditorGUIUtility.TrIconContent("ScaleTool", "Scale Tool");
s_ToolIcons[index++] = EditorGUIUtility.TrIconContent("RectTool", "Rect Tool");
s_ToolIcons[index++] = EditorGUIUtility.TrIconContent("TransformTool", "Move, Rotate or Scale selected objects.");
s_ToolIcons[index++] = EditorGUIUtility.TrTextContent("Editor tool");
s_ToolIcons[index++] = EditorGUIUtility.IconContent("MoveTool On");
s_ToolIcons[index++] = EditorGUIUtility.IconContent("RotateTool On");
s_ToolIcons[index++] = EditorGUIUtility.IconContent("ScaleTool On");
s_ToolIcons[index++] = EditorGUIUtility.IconContent("RectTool On");
s_ToolIcons[index++] = EditorGUIUtility.IconContent("TransformTool On");
s_ToolIcons[index] = EditorGUIUtility.TrTextContent("Editor tool");
s_CustomToolIcon = EditorGUIUtility.TrIconContent("CustomTool", "Available Custom Editor Tools");
index = 0;
s_ToolControlNames = new string[k_ToolCount];
s_ToolControlNames[index++] = "ToolbarPersistentToolsPan";
s_ToolControlNames[index++] = "ToolbarPersistentToolsTranslate";
s_ToolControlNames[index++] = "ToolbarPersistentToolsRotate";
s_ToolControlNames[index++] = "ToolbarPersistentToolsScale";
s_ToolControlNames[index++] = "ToolbarPersistentToolsRect";
s_ToolControlNames[index++] = "ToolbarPersistentToolsTransform";
s_ToolControlNames[index] = "ToolbarPersistentToolsCustom";
s_ShownToolIcons = new GUIContent[k_ToolCount];
string viewToolsTooltipText = "Hand Tool";
s_ViewToolIcons = new GUIContent[]
{
EditorGUIUtility.TrIconContent("ViewToolOrbit", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolMove", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolZoom", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolOrbit", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolOrbit", "Orbit the Scene view."),
EditorGUIUtility.TrIconContent("ViewToolOrbit On", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolMove On", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolZoom On", viewToolsTooltipText),
EditorGUIUtility.TrIconContent("ViewToolOrbit On"),
EditorGUIUtility.TrIconContent("ViewToolOrbit On", viewToolsTooltipText)
};
s_ViewToolOnOffset = s_ViewToolIcons.Length / 2;
s_LayerContent = EditorGUIUtility.TrTextContent("Layers", "Which layers are visible in the Scene views.");
s_PlayIcons = new GUIContent[]
{
EditorGUIUtility.TrIconContent("PlayButton", "Play"),
EditorGUIUtility.TrIconContent("PauseButton", "Pause"),
EditorGUIUtility.TrIconContent("StepButton", "Step"),
EditorGUIUtility.TrIconContent("PlayButtonProfile", "Profiler Play"),
EditorGUIUtility.IconContent("PlayButton On"),
EditorGUIUtility.IconContent("PauseButton On"),
EditorGUIUtility.IconContent("StepButton On"),
EditorGUIUtility.IconContent("PlayButtonProfile On")
};
s_CloudIcon = EditorGUIUtility.IconContent("CloudConnect");
s_AccountContent = EditorGUIUtility.TrTextContent("Account");
}
static GUIContent[] s_ToolIcons;
static string[] s_ToolControlNames;
static GUIContent[] s_ViewToolIcons;
static GUIContent s_LayerContent;
static GUIContent[] s_PlayIcons;
static GUIContent s_CustomToolIcon;
static int s_ViewToolOnOffset;
static GUIContent s_AccountContent;
static GUIContent s_CloudIcon;
static class Styles
{
public static readonly GUIStyle dropdown = "Dropdown";
public static readonly GUIStyle appToolbar = "AppToolbar";
public static readonly GUIStyle command = "AppCommand";
public static readonly GUIStyle buttonLeft = "AppToolbarButtonLeft";
public static readonly GUIStyle buttonRight = "AppToolbarButtonRight";
public static readonly GUIStyle commandLeft = "AppCommandLeft";
public static readonly GUIStyle commandLeftOn = "AppCommandLeftOn";
public static readonly GUIStyle commandMid = "AppCommandMid";
public static readonly GUIStyle commandRight = "AppCommandRight";
public static GUIContent[] snapToGridIcons = new GUIContent[]
{
EditorGUIUtility.TrIconContent("SceneViewSnap-Off", "Toggle Grid Snapping on and off. Available when you set tool handle rotation to Global."),
EditorGUIUtility.TrIconContent("SceneViewSnap-On", "Toggle Grid Snapping on and off. Available when you set tool handle rotation to Global.")
};
}
protected void OnEnable()
{
EditorApplication.modifierKeysChanged += Repaint;
// when undo or redo is done, we need to reset global tools rotation
Undo.undoRedoPerformed += OnSelectionChange;
UnityConnect.instance.StateChanged += OnUnityConnectStateChanged;
}
protected void OnDisable()
{
EditorApplication.modifierKeysChanged -= Repaint;
Undo.undoRedoPerformed -= OnSelectionChange;
UnityConnect.instance.StateChanged -= OnUnityConnectStateChanged;
}
// The actual array we display. We build this every frame to make sure it looks correct i.r.t. selection :)
static GUIContent[] s_ShownToolIcons;
public static Toolbar get = null;
static List<SubToolbar> s_SubToolbars = new List<SubToolbar>();
void OnSelectionChange()
{
Tools.OnSelectionChange();
Repaint();
}
protected void OnUnityConnectStateChanged(ConnectInfo state)
{
RepaintToolbar();
}
void ReserveWidthLeft(float width, ref Rect pos)
{
pos.x -= width;
pos.width = width;
}
void ReserveWidthRight(float width, ref Rect pos)
{
pos.x += pos.width;
pos.width = width;
}
public override void OnGUI()
{
const float space = 8;
const float standardButtonWidth = 32;
const float dropdownWidth = 80;
const float playPauseStopWidth = 140;
InitializeToolIcons();
bool isOrWillEnterPlaymode = EditorApplication.isPlayingOrWillChangePlaymode;
GUI.color = isOrWillEnterPlaymode ? HostView.kPlayModeDarken : Color.white;
if (Event.current.type == EventType.Repaint)
Styles.appToolbar.Draw(new Rect(0, 0, position.width, position.height), false, false, false, false);
// Position left aligned controls controls - start from left to right.
Rect pos = new Rect(0, 0, 0, 0);
ReserveWidthRight(space, ref pos);
ReserveWidthRight(standardButtonWidth * s_ShownToolIcons.Length, ref pos);
DoToolButtons(EditorToolGUI.GetThickArea(pos));
ReserveWidthRight(space, ref pos);
int playModeControlsStart = Mathf.RoundToInt((position.width - playPauseStopWidth) / 2);
pos.x += pos.width;
const float pivotButtonsWidth = 128;
pos.width = pivotButtonsWidth;
DoToolSettings(EditorToolGUI.GetThickArea(pos));
pos.width = pivotButtonsWidth;
ReserveWidthRight(standardButtonWidth, ref pos);
DoSnapButtons(EditorToolGUI.GetThickArea(pos));
// Position centered controls.
pos = new Rect(playModeControlsStart, 0, 240, 0);
if (ModeService.HasCapability(ModeCapability.Playbar, true))
{
GUILayout.BeginArea(EditorToolGUI.GetThickArea(pos));
GUILayout.BeginHorizontal();
{
if (!ModeService.Execute("gui_playbar", isOrWillEnterPlaymode))
DoPlayButtons(isOrWillEnterPlaymode);
}
GUILayout.EndHorizontal();
GUILayout.EndArea();
}
// Position right aligned controls controls - start from right to left.
pos = new Rect(position.width, 0, 0, 0);
// Right spacing side
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(dropdownWidth, ref pos);
if (ModeService.HasCapability(ModeCapability.LayoutWindowMenu, true))
DoLayoutDropDown(EditorToolGUI.GetThinArea(pos));
if (ModeService.HasCapability(ModeCapability.Layers, true))
{
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(dropdownWidth, ref pos);
DoLayersDropDown(EditorToolGUI.GetThinArea(pos));
}
if (Unity.MPE.ProcessService.level == Unity.MPE.ProcessLevel.UMP_MASTER)
{
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(dropdownWidth, ref pos);
if (EditorGUI.DropdownButton(EditorToolGUI.GetThinArea(pos), s_AccountContent, FocusType.Passive, Styles.dropdown))
{
ShowUserMenu(EditorToolGUI.GetThinArea(pos));
}
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(standardButtonWidth, ref pos);
if (GUI.Button(EditorToolGUI.GetThinArea(pos), s_CloudIcon, Styles.command))
UnityConnectServiceCollection.instance.ShowService(HubAccess.kServiceName, true, "cloud_icon"); // Should show hub when it's done
}
foreach (SubToolbar subToolbar in s_SubToolbars)
{
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(subToolbar.Width, ref pos);
subToolbar.OnGUI(EditorToolGUI.GetThinArea(pos));
}
if (Unsupported.IsDeveloperBuild() && ModeService.hasSwitchableModes)
{
EditorGUI.BeginChangeCheck();
ReserveWidthLeft(space, ref pos);
ReserveWidthLeft(dropdownWidth, ref pos);
var selectedModeIndex = EditorGUI.Popup(EditorToolGUI.GetThinArea(pos), ModeService.currentIndex, ModeService.modeNames, Styles.dropdown);
if (EditorGUI.EndChangeCheck())
{
EditorApplication.delayCall += () => ModeService.ChangeModeByIndex(selectedModeIndex);
GUIUtility.ExitGUI();
}
}
EditorGUI.ShowRepaints();
}
void ShowUserMenu(Rect dropDownRect)
{
var menu = new GenericMenu();
if (!UnityConnect.instance.online || UnityConnect.instance.isDisableUserLogin)
{
menu.AddDisabledItem(EditorGUIUtility.TrTextContent("Go to account"));
menu.AddDisabledItem(EditorGUIUtility.TrTextContent("Sign in..."));
if (!Application.HasProLicense())
{
menu.AddSeparator("");
menu.AddDisabledItem(EditorGUIUtility.TrTextContent("Upgrade to Unity Plus or Pro"));
}
}
else
{
string accountUrl = UnityConnect.instance.GetConfigurationURL(CloudConfigUrl.CloudPortal);
if (UnityConnect.instance.loggedIn)
menu.AddItem(EditorGUIUtility.TrTextContent("Go to account"), false, () => UnityConnect.instance.OpenAuthorizedURLInWebBrowser(accountUrl));
else
menu.AddDisabledItem(EditorGUIUtility.TrTextContent("Go to account"));
if (UnityConnect.instance.loggedIn)
{
string name = "Sign out " + UnityConnect.instance.userInfo.displayName;
menu.AddItem(new GUIContent(name), false, () => { UnityConnect.instance.Logout(); });
}
else
menu.AddItem(EditorGUIUtility.TrTextContent("Sign in..."), false, () => { UnityConnect.instance.ShowLogin(); });
if (!Application.HasProLicense())
{
menu.AddSeparator("");
// Debug.log()
menu.AddItem(EditorGUIUtility.TrTextContent("Upgrade to Unity Plus or Pro"), false, () => Application.OpenURL("https://store.unity.com/"));
}
}
menu.DropDown(dropDownRect);
}
void DoToolButtons(Rect rect)
{
const int builtinIconsLength = 6;
// Handle temporary override with ALT
GUI.changed = false;
int displayTool = Tools.viewToolActive ? 0 : (int)Tools.current;
for (int i = 1; i < builtinIconsLength; i++)
{
s_ShownToolIcons[i] = s_ToolIcons[i - 1 + (i == displayTool ? s_ShownToolIcons.Length - 1 : 0)];
s_ShownToolIcons[i].tooltip = s_ToolIcons[i - 1].tooltip;
}
var lastCustomTool = EditorToolContext.GetLastCustomTool();
if (lastCustomTool != null)
s_ShownToolIcons[builtinIconsLength] = lastCustomTool.toolbarIcon ?? s_CustomToolIcon;
else
s_ShownToolIcons[builtinIconsLength] = s_CustomToolIcon;
s_ShownToolIcons[0] = s_ViewToolIcons[(int)Tools.viewTool + (displayTool == 0 ? s_ViewToolOnOffset : 0)];
displayTool = GUI.Toolbar(rect, displayTool, s_ShownToolIcons, s_ToolControlNames, Styles.command, GUI.ToolbarButtonSize.FitToContents);
if (GUI.changed)
{
var evt = Event.current;
if (displayTool == (int)Tool.Custom &&
(
EditorToolContext.GetLastCustomTool() == null
|| evt.button == 1
|| (evt.button == 0 && evt.modifiers == EventModifiers.Alt))
)
{
EditorToolGUI.DoToolContextMenu();
}
else
{
Tools.current = (Tool)displayTool;
Tools.ResetGlobalHandleRotation();
}
}
}
void DoToolSettings(Rect rect)
{
rect = EditorToolGUI.GetThinArea(rect);
EditorToolGUI.DoBuiltinToolSettings(rect, Styles.buttonLeft, Styles.buttonRight);
}
void DoSnapButtons(Rect rect)
{
using (new EditorGUI.DisabledScope(!EditorSnapSettings.activeToolSupportsGridSnap))
{
var snap = EditorSnapSettings.gridSnapEnabled;
var icon = snap ? Styles.snapToGridIcons[1] : Styles.snapToGridIcons[0];
rect = EditorToolGUI.GetThickArea(rect);
EditorSnapSettings.gridSnapEnabled = GUI.Toggle(rect, snap, icon, Styles.command);
}
}
void DoPlayButtons(bool isOrWillEnterPlaymode)
{
// Enter / Exit Playmode
bool isPlaying = EditorApplication.isPlaying;
GUI.changed = false;
int buttonOffset = isPlaying ? 4 : 0;
Color c = GUI.color + new Color(.01f, .01f, .01f, .01f);
GUI.contentColor = new Color(1.0f / c.r, 1.0f / c.g, 1.0f / c.g, 1.0f / c.a);
GUI.SetNextControlName("ToolbarPlayModePlayButton");
GUILayout.Toggle(isOrWillEnterPlaymode, s_PlayIcons[buttonOffset], isPlaying ? Styles.commandLeftOn : Styles.commandLeft);
GUI.backgroundColor = Color.white;
if (GUI.changed)
{
TogglePlaying();
GUIUtility.ExitGUI();
}
// Pause game
GUI.changed = false;
buttonOffset = EditorApplication.isPaused ? 4 : 0;
GUI.SetNextControlName("ToolbarPlayModePauseButton");
bool isPaused = GUILayout.Toggle(EditorApplication.isPaused, s_PlayIcons[buttonOffset + 1], Styles.commandMid);
if (GUI.changed)
{
EditorApplication.isPaused = isPaused;
GUIUtility.ExitGUI();
}
using (new EditorGUI.DisabledScope(!isPlaying))
{
// Step playmode
GUI.SetNextControlName("ToolbarPlayModeStepButton");
if (GUILayout.Button(s_PlayIcons[2], Styles.commandRight))
{
EditorApplication.Step();
GUIUtility.ExitGUI();
}
}
}
void DoLayersDropDown(Rect rect)
{
if (EditorGUI.DropdownButton(rect, s_LayerContent, FocusType.Passive, Styles.dropdown))
{
if (LayerVisibilityWindow.ShowAtPosition(rect))
{
GUIUtility.ExitGUI();
}
}
}
void DoLayoutDropDown(Rect rect)
{
// Layout DropDown
if (EditorGUI.DropdownButton(rect, GUIContent.Temp(Toolbar.lastLoadedLayoutName), FocusType.Passive, Styles.dropdown))
{
Vector2 temp = GUIUtility.GUIToScreenPoint(new Vector2(rect.x, rect.y));
rect.x = temp.x;
rect.y = temp.y;
EditorUtility.Internal_DisplayPopupMenu(rect, "Window/Layouts", this, 0);
}
}
static void TogglePlaying()
{
bool willPlay = !EditorApplication.isPlaying;
EditorApplication.isPlaying = willPlay;
InternalEditorUtility.RepaintAllViews();
}
internal static void AddSubToolbar(SubToolbar subToolbar)
{
s_SubToolbars.Add(subToolbar);
}
internal static void RepaintToolbar()
{
if (get != null)
get.Repaint();
}
}
}