PlasticPlugin.cs
3.6 KB
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
using System;
using UnityEngine;
using UnityEditor;
using Codice.CM.Common;
using Unity.PlasticSCM.Editor.AssetMenu;
using Unity.PlasticSCM.Editor.AssetUtils.Processor;
using Unity.PlasticSCM.Editor.AssetsOverlays;
using Unity.PlasticSCM.Editor.AssetsOverlays.Cache;
using Unity.PlasticSCM.Editor.CollabMigration;
using Unity.PlasticSCM.Editor.Inspector;
using Unity.PlasticSCM.Editor.ProjectDownloader;
using Unity.PlasticSCM.Editor.UI;
using Unity.PlasticSCM.Editor.SceneView;
namespace Unity.PlasticSCM.Editor
{
/// <summary>
/// The Plastic SCM plugin for Unity editor.
/// </summary>
[InitializeOnLoad]
public static class PlasticPlugin
{
/// <summary>
/// Invoked when notification status changed.
/// </summary>
public static event Action OnNotificationUpdated = delegate { };
internal static IAssetStatusCache AssetStatusCache { get; private set; }
static PlasticPlugin()
{
CloudProjectDownloader.Initialize();
MigrateCollabProject.Initialize();
EditorDispatcher.Initialize();
CooldownWindowDelayer cooldownInitializeAction = new CooldownWindowDelayer(
Enable, UnityConstants.PLUGIN_DELAYED_INITIALIZE_INTERVAL);
cooldownInitializeAction.Ping();
}
/// <summary>
/// Get the plugin icon.
/// </summary>
public static Texture GetPluginIcon()
{
return PlasticNotification.GetIcon(sNotificationStatus);
}
internal static void Enable()
{
if (sIsEnabled)
return;
sIsEnabled = true;
PlasticApp.InitializeIfNeeded();
if (!FindWorkspace.HasWorkspace(Application.dataPath))
return;
EnableForWorkspace();
}
internal static void EnableForWorkspace()
{
if (sIsEnabledForWorkspace)
return;
WorkspaceInfo wkInfo = FindWorkspace.InfoForApplicationPath(
Application.dataPath,
PlasticApp.PlasticAPI);
if (wkInfo == null)
return;
sIsEnabledForWorkspace = true;
PlasticApp.SetWorkspace(wkInfo);
AssetStatusCache = new AssetStatusCache(
wkInfo,
PlasticApp.PlasticAPI.IsGluonWorkspace(wkInfo));
AssetMenuItems.Enable();
AssetsProcessors.Enable();
DrawAssetOverlay.Enable();
DrawInspectorOperations.Enable();
DrawSceneOperations.Enable();
}
internal static void Disable()
{
try
{
PlasticApp.Dispose();
if (!sIsEnabledForWorkspace)
return;
AssetsProcessors.Disable();
AssetMenuItems.Disable();
DrawAssetOverlay.Disable();
DrawInspectorOperations.Disable();
DrawSceneOperations.Disable();
}
finally
{
sIsEnabled = false;
sIsEnabledForWorkspace = false;
}
}
internal static void SetNotificationStatus(
PlasticWindow plasticWindow,
PlasticNotification.Status status)
{
sNotificationStatus = status;
plasticWindow.SetupWindowTitle(status);
if (OnNotificationUpdated!=null) OnNotificationUpdated.Invoke();
}
static PlasticNotification.Status sNotificationStatus;
static bool sIsEnabled;
static bool sIsEnabledForWorkspace;
}
}