File size: 11,129 Bytes
18a519f | 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 | using UnityEditor;
using UnityEngine;
using Codice.Client.Common;
using PlasticGui;
using PlasticGui.WebApi;
using Unity.PlasticSCM.Editor.AssetUtils;
using Unity.PlasticSCM.Editor.UI;
using Unity.PlasticSCM.Editor.Views.CreateWorkspace;
using Unity.PlasticSCM.Editor.UI.Progress;
using Unity.PlasticSCM.Editor.Configuration.CloudEdition.Welcome;
using Codice.Client.BaseCommands;
using Unity.PlasticSCM.Editor.Configuration.TeamEdition;
using Codice.CM.Common;
namespace Unity.PlasticSCM.Editor.Views.Welcome
{
internal class WelcomeView
{
internal WelcomeView(
PlasticWindow parentWindow,
CreateWorkspaceView.ICreateWorkspaceListener createWorkspaceListener,
IPlasticAPI plasticApi,
IPlasticWebRestApi plasticWebRestApi,
CmConnection cmConnection)
{
mParentWindow = parentWindow;
mCreateWorkspaceListener = createWorkspaceListener;
mPlasticApi = plasticApi;
mPlasticWebRestApi = plasticWebRestApi;
mCmConnection = cmConnection;
mGuiMessage = new UnityPlasticGuiMessage();
mConfigureProgress = new ProgressControlsForViews();
mInstallerFile = GetInstallerTmpFileName.ForPlatform();
autoLoginState = AutoLogin.State.Off;
}
internal void Update()
{
if (mCreateWorkspaceView != null)
mCreateWorkspaceView.Update();
mConfigureProgress.UpdateDeterminateProgress(mParentWindow);
}
internal void OnGUI(bool clientNeedsConfiguration)
{
GUILayout.BeginHorizontal();
GUILayout.Space(LEFT_MARGIN);
DoContentViewArea(
clientNeedsConfiguration,
mIsCreateWorkspaceButtonClicked,
mInstallerFile,
mGuiMessage,
mConfigureProgress);
GUILayout.EndHorizontal();
}
internal void OnUserClosedConfigurationWindow()
{
((IProgressControls)mConfigureProgress).HideProgress();
ClientConfig.Reset();
CmConnection.Reset();
ClientHandlers.Register();
}
void DoContentViewArea(
bool clientNeedsConfiguration,
bool isCreateWorkspaceButtonClicked,
string installerFile,
GuiMessage.IGuiMessage guiMessage,
ProgressControlsForViews configureProgress)
{
GUILayout.BeginVertical();
GUILayout.Space(TOP_MARGIN);
if (isCreateWorkspaceButtonClicked)
GetCreateWorkspaceView().OnGUI();
else
DoSetupViewArea(
clientNeedsConfiguration,
mInstallerFile,
mGuiMessage,
mConfigureProgress);
GUILayout.EndVertical();
}
void DoSetupViewArea(
bool clientNeedsConfiguration,
string installerFile,
GuiMessage.IGuiMessage guiMessage,
ProgressControlsForViews configureProgress)
{
DoTitleLabel();
GUILayout.Space(STEPS_TOP_MARGIN);
bool isStep1Completed =
!clientNeedsConfiguration &&
!configureProgress.ProgressData.IsOperationRunning;
DoStepsArea(isStep1Completed, configureProgress.ProgressData);
GUILayout.Space(BUTTON_MARGIN);
DoActionButtonsArea(
isStep1Completed,
installerFile,
guiMessage,
configureProgress);
DoNotificationArea(configureProgress.ProgressData);
}
void DoActionButtonsArea(
bool isStep1Completed,
string installerFile,
GuiMessage.IGuiMessage guiMessage,
ProgressControlsForViews configureProgress)
{
DoActionButton(
isStep1Completed,
installerFile,
guiMessage,
configureProgress);
}
void DoActionButton(
bool isStep1Completed,
string installerFile,
GuiMessage.IGuiMessage guiMessage,
ProgressControlsForViews configureProgress)
{
if (!isStep1Completed)
{
DoConfigureButton(configureProgress);
return;
}
if (GUILayout.Button(
PlasticLocalization.GetString(PlasticLocalization.Name.CreateWorkspace),
GUILayout.Width(BUTTON_WIDTH)))
mIsCreateWorkspaceButtonClicked = true;
}
void DoConfigureButton(ProgressControlsForViews configureProgress)
{
bool isAutoLoginRunning = autoLoginState > AutoLogin.State.Running && autoLoginState <= AutoLogin.State.InitializingPlastic;
GUI.enabled = !(configureProgress.ProgressData.IsOperationRunning || isAutoLoginRunning);
if (GUILayout.Button(PlasticLocalization.GetString(
PlasticLocalization.Name.LoginOrSignUp),
GUILayout.Width(BUTTON_WIDTH)))
{
if (autoLoginState > AutoLogin.State.Off && autoLoginState <= AutoLogin.State.InitializingPlastic)
{
autoLoginState = AutoLogin.State.Running;
AutoLogin autoLogin = new AutoLogin();
autoLogin.Run();
return;
}
((IProgressControls)configureProgress).ShowProgress(string.Empty);
// Login button defaults to Cloud sign up
CloudEditionWelcomeWindow.ShowWindow(
mPlasticWebRestApi,
mCmConnection,
this);
GUIUtility.ExitGUI();
}
// If client configuration cannot be determined, keep login button default as Cloud
// sign in window, but show Enterprise option as well
GUILayout.FlexibleSpace();
var anchorStyle = new GUIStyle(GUI.skin.label);
anchorStyle.normal.textColor = new Color(0.129f, 0.588f, 0.953f);
anchorStyle.hover.textColor = new Color(0.239f, 0.627f, 0.949f);
anchorStyle.active.textColor = new Color(0.239f, 0.627f, 0.949f);
if (GUILayout.Button(
PlasticLocalization.GetString(
PlasticLocalization.Name.NeedEnterprise),
anchorStyle,
GUILayout.Width(BUTTON_WIDTH),
GUILayout.Height(20)))
TeamEditionConfigurationWindow.ShowWindow(mPlasticWebRestApi, this);
GUILayout.Space(BUTTON_MARGIN);
GUI.enabled = true;
}
static void DoStepsArea(
bool isStep1Completed,
ProgressControlsForViews.Data configureProgressData)
{
DoLoginOrSignUpStep(isStep1Completed, configureProgressData);
DoCreatePlasticWorkspaceStep();
}
static void DoLoginOrSignUpStep(
bool isStep1Completed,
ProgressControlsForViews.Data progressData)
{
Texture2D stepImage = (isStep1Completed) ? Images.GetStepOkIcon() : Images.GetStep1Icon();
string stepText = GetConfigurationStepText(progressData, isStep1Completed);
GUIStyle style = new GUIStyle(EditorStyles.label);
style.richText = true;
GUILayout.BeginHorizontal();
DoStepLabel(stepText, stepImage, style);
GUILayout.EndHorizontal();
}
static void DoCreatePlasticWorkspaceStep()
{
GUILayout.BeginHorizontal();
DoStepLabel(
PlasticLocalization.GetString(PlasticLocalization.Name.CreateAUnityVersionControlWorkspace),
Images.GetStep2Icon(),
EditorStyles.label);
GUILayout.EndHorizontal();
}
static void DoStepLabel(
string text,
Texture2D image,
GUIStyle style)
{
GUILayout.Space(STEPS_LEFT_MARGIN);
GUIContent stepLabelContent = new GUIContent(
string.Format(" {0}", text),
image);
GUILayout.Label(
stepLabelContent,
style,
GUILayout.Height(STEP_LABEL_HEIGHT));
}
static void DoTitleLabel()
{
GUIContent labelContent = new GUIContent(
PlasticLocalization.GetString(PlasticLocalization.Name.NextStepsToSetup),
Images.GetInfoIcon());
GUILayout.Label(labelContent, EditorStyles.boldLabel);
}
static void DoNotificationArea(ProgressControlsForViews.Data configureProgressData)
{
if (!string.IsNullOrEmpty(configureProgressData.NotificationMessage))
DrawProgressForViews.ForNotificationArea(configureProgressData);
}
static string GetConfigurationStepText(
ProgressControlsForViews.Data progressData,
bool isStep1Completed)
{
string result = PlasticLocalization.GetString(
PlasticLocalization.Name.LoginOrSignUpUnityVersionControl);
if (isStep1Completed)
return result;
if (!progressData.IsOperationRunning)
return result;
return string.Format("<b>{0}</b>", result);
}
CreateWorkspaceView GetCreateWorkspaceView()
{
if (mCreateWorkspaceView != null)
return mCreateWorkspaceView;
string workspacePath = ProjectPath.FromApplicationDataPath(
ApplicationDataPath.Get());
mCreateWorkspaceView = new CreateWorkspaceView(
mParentWindow,
mCreateWorkspaceListener,
mPlasticApi,
mPlasticWebRestApi,
workspacePath);
return mCreateWorkspaceView;
}
internal AutoLogin.State autoLoginState = AutoLogin.State.Off;
string mInstallerFile;
bool mIsCreateWorkspaceButtonClicked = false;
CreateWorkspaceView mCreateWorkspaceView;
readonly ProgressControlsForViews mConfigureProgress;
readonly GuiMessage.IGuiMessage mGuiMessage;
readonly CmConnection mCmConnection;
readonly IPlasticAPI mPlasticApi;
readonly IPlasticWebRestApi mPlasticWebRestApi;
readonly CreateWorkspaceView.ICreateWorkspaceListener mCreateWorkspaceListener;
readonly PlasticWindow mParentWindow;
const int LEFT_MARGIN = 30;
const int TOP_MARGIN = 20;
const int STEPS_TOP_MARGIN = 5;
const int STEPS_LEFT_MARGIN = 12;
const int BUTTON_MARGIN = 10;
const int STEP_LABEL_HEIGHT = 20;
const int BUTTON_WIDTH = 170;
const string DOWNLOAD_URL = @"https://www.plasticscm.com/download";
}
} |