AssetMenuItems.cs
7.8 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
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
using UnityEngine;
using UnityEditor;
using Codice.CM.Common;
using Codice.Client.BaseCommands.EventTracking;
using PlasticGui;
using PlasticGui.WorkspaceWindow.Items;
using Unity.PlasticSCM.Editor.UI;
namespace Unity.PlasticSCM.Editor.AssetMenu
{
internal class AssetMenuItems
{
internal static void Enable()
{
if (sIsEnabled)
return;
sIsEnabled = true;
sOperations = new AssetMenuRoutingOperations();
sAssetSelection = new ProjectViewAssetSelection(UpdateFilterMenuItems);
sFilterMenuBuilder = new AssetFilesFilterPatternsMenuBuilder(
sOperations,
IGNORE_MENU_ITEMS_PRIORITY,
HIDDEN_MENU_ITEMS_PRIORITY);
AddMenuItems();
}
internal static void Disable()
{
sIsEnabled = false;
RemoveMenuItems();
if (sAssetSelection != null)
sAssetSelection.Dispose();
}
static void AddMenuItems()
{
// TODO: Try removing this
// Somehow first item always disappears. So this is a filler item
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.PendingChangesPlasticMenu),
PENDING_CHANGES_MENU_ITEM_PRIORITY,
PendingChanges, ValidatePendingChanges);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.PendingChangesPlasticMenu),
PENDING_CHANGES_MENU_ITEM_PRIORITY,
PendingChanges, ValidatePendingChanges);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.AddPlasticMenu),
ADD_MENU_ITEM_PRIORITY,
Add, ValidateAdd);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.CheckoutPlasticMenu),
CHECKOUT_MENU_ITEM_PRIORITY,
Checkout, ValidateCheckout);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.CheckinPlasticMenu),
CHECKIN_MENU_ITEM_PRIORITY,
Checkin, ValidateCheckin);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.UndoPlasticMenu),
UNDO_MENU_ITEM_PRIORITY,
Undo, ValidateUndo);
UpdateFilterMenuItems();
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.DiffPlasticMenu),
GetPlasticShortcut.ForAssetDiff(),
DIFF_MENU_ITEM_PRIORITY,
Diff, ValidateDiff);
HandleMenuItem.AddMenuItem(
GetPlasticMenuItemName(PlasticLocalization.Name.HistoryPlasticMenu),
GetPlasticShortcut.ForHistory(),
HISTORY_MENU_ITEM_PRIORITY,
History, ValidateHistory);
HandleMenuItem.UpdateAllMenus();
}
static void UpdateFilterMenuItems()
{
SelectedPathsGroupInfo info = AssetsSelection.GetSelectedPathsGroupInfo(
((AssetOperations.IAssetSelection)sAssetSelection).GetSelectedAssets(),
PlasticPlugin.AssetStatusCache);
sFilterMenuBuilder.UpdateMenuItems(FilterMenuUpdater.GetMenuActions(info));
}
static string GetPlasticMenuItemName(PlasticLocalization.Name name)
{
return string.Format("{0}/{1}",
PlasticLocalization.GetString(PlasticLocalization.Name.PrefixPlasticMenu),
PlasticLocalization.GetString(name));
}
static void PendingChanges()
{
ShowWindow.Plastic();
((IAssetMenuOperations)sOperations).ShowPendingChanges();
}
static bool ValidatePendingChanges()
{
return true;
}
static void Add()
{
((IAssetMenuOperations)sOperations).Add();
}
static bool ValidateAdd()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.Add);
}
static void Checkout()
{
((IAssetMenuOperations)sOperations).Checkout();
}
static bool ValidateCheckout()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.Checkout);
}
static void Checkin()
{
WorkspaceInfo wkInfo = FindWorkspace.InfoForApplicationPath(
Application.dataPath,
PlasticApp.PlasticAPI);
if (wkInfo != null)
{
TrackFeatureUseEvent.For(
PlasticGui.Plastic.API.GetRepositorySpec(wkInfo),
TrackFeatureUseEvent.Features.ContextMenuCheckinOption);
}
((IAssetMenuOperations)sOperations).Checkin();
}
static bool ValidateCheckin()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.Checkin);
}
static void Undo()
{
((IAssetMenuOperations)sOperations).Undo();
}
static bool ValidateUndo()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.Undo);
}
static void Diff()
{
((IAssetMenuOperations)sOperations).ShowDiff();
}
static bool ValidateDiff()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.Diff);
}
static void History()
{
ShowWindow.Plastic();
((IAssetMenuOperations)sOperations).ShowHistory();
}
static bool ValidateHistory()
{
return ShouldMenuItemBeEnabled(AssetMenuOperations.History);
}
static bool ShouldMenuItemBeEnabled(AssetMenuOperations operation)
{
if (sOperations == null)
return false;
SelectedAssetGroupInfo selectedGroupInfo = SelectedAssetGroupInfo.
BuildFromAssetList(
((AssetOperations.IAssetSelection)sAssetSelection).GetSelectedAssets(),
PlasticPlugin.AssetStatusCache);
AssetMenuOperations operations = AssetMenuUpdater.
GetAvailableMenuOperations(selectedGroupInfo);
return operations.HasFlag(operation);
}
static void RemoveMenuItems()
{
sFilterMenuBuilder.RemoveMenuItems();
HandleMenuItem.RemoveMenuItem(
PlasticLocalization.GetString(PlasticLocalization.Name.PrefixPlasticMenu));
HandleMenuItem.UpdateAllMenus();
}
static AssetMenuRoutingOperations sOperations;
static ProjectViewAssetSelection sAssetSelection;
static AssetFilesFilterPatternsMenuBuilder sFilterMenuBuilder;
static bool sIsEnabled;
const int BASE_MENU_ITEM_PRIORITY = 19; // Puts Plastic SCM right below Create menu
// incrementing the "order" param by 11 causes the menu system to add a separator
const int PENDING_CHANGES_MENU_ITEM_PRIORITY = BASE_MENU_ITEM_PRIORITY;
const int ADD_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 11;
const int CHECKOUT_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 12;
const int CHECKIN_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 13;
const int UNDO_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 14;
const int IGNORE_MENU_ITEMS_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 25;
const int HIDDEN_MENU_ITEMS_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 26;
const int DIFF_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 37;
const int HISTORY_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 38;
}
}