-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathNewProject.xaml.cs
More file actions
1354 lines (1134 loc) · 55.8 KB
/
Copy pathNewProject.xaml.cs
File metadata and controls
1354 lines (1134 loc) · 55.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
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using UnityLauncherPro.Data;
using UnityLauncherPro.Helpers;
using UnityLauncherPro.Properties;
namespace UnityLauncherPro
{
public partial class NewProject : Window
{
public static string newProjectName = null;
public static string newVersion = null;
public static string newName = null;
public static string templateZipPath = null;
public static string selectedPlatform = null;
public static bool forceDX11 = false;
public static string[] platformsForThisUnity = null;
bool isInitializing = true; // to keep OnChangeEvent from firing too early
int previousSelectedTemplateIndex = -1;
int previousSelectedModuleIndex = -1;
bool loadOnlineTemplates = true;
public static string targetFolder { get; private set; } = null;
private CancellationTokenSource _templateLoadCancellation;
const string githubTokenCreationURL = "https://github.com/settings/tokens/new?description=UnityLauncherPro+Setup+Project+Access&default_expires_at=90&scopes=repo#Remember_to_Copy_Token!";
void UpdateOrgUiState()
{
bool orgsEnabled = chkEnableOrgs.IsChecked == true;
btnCreateNewProjectAndRepo.Content = orgsEnabled ? "New Project+Repo at Org" : "New Project+Repo";
}
public NewProject(string unityVersion, string suggestedName, string targetFolder, bool nameIsLocked = false, bool fetchOnlineTemplates = false)
{
isInitializing = true;
InitializeComponent();
loadOnlineTemplates = fetchOnlineTemplates;
btnFetchTemplates.Visibility = fetchOnlineTemplates ? Visibility.Collapsed : Visibility.Visible;
NewProject.targetFolder = targetFolder;
LoadSettings();
// get version
newVersion = unityVersion;
newName = suggestedName;
txtNewProjectName.IsEnabled = !nameIsLocked;
txtNewProjectName.Text = newName;
// git
txtRepoName.Text = newName;
txtNewProjectFolder.Text = targetFolder;
UpdateCreateButtonsEnabledState();
if (MainWindow.unityInstallationsSource.Count == 0)
{
Tools.SetStatus("No Unity installations found! Please add Unity installations first.");
isInitializing = false;
btnCreateNewProject.IsEnabled = false;
btnCreateNewProjectAndRepo.IsEnabled = false;
txtNewProjectStatus.Text = "No Unity installations found! Please add Unity installations first.";
return;
}
// fill available versions, only replace if it's a different collection instance
if (!ReferenceEquals(gridAvailableVersions.ItemsSource, MainWindow.unityInstallationsSource))
{
gridAvailableVersions.ItemsSource = MainWindow.unityInstallationsSource;
}
// we have that version installed
if (MainWindow.unityInstalledVersions.ContainsKey(unityVersion) == true)
{
// find this unity version, TODO theres probably easier way than looping all
if (MainWindow.unityInstallationsSource != null)
{
for (int i = 0; i < MainWindow.unityInstallationsSource.Count; i++)
{
if (MainWindow.unityInstallationsSource[i].Version == newVersion)
{
gridAvailableVersions.SelectedIndex = i;
gridAvailableVersions.ScrollIntoView(gridAvailableVersions.SelectedItem);
string baseVersion = Tools.GetBaseVersion(newVersion);
if (fetchOnlineTemplates) _ = LoadOnlineTemplatesAsync(baseVersion);
break;
}
}
}
if (gridAvailableVersions.SelectedItem != null)
{
UpdateTemplatesDropDown((gridAvailableVersions.SelectedItem as UnityInstallation).Path);
UpdateModulesDropdown(newVersion);
}
}
else // we dont have requested unity version, select first item then
{
var path = MainWindow.unityInstallationsSource[0].Path;
gridAvailableVersions.SelectedIndex = 0;
gridAvailableVersions.ScrollIntoView(gridAvailableVersions.Items[0]);
UpdateTemplatesDropDown(path);
}
// select projectname text so can overwrite if needed
newProjectName = txtNewProjectName.Text;
if (nameIsLocked)
{
Tools.SetFocusToGrid(gridAvailableVersions);
}
else
{
txtNewProjectName.Focus();
txtNewProjectName.SelectAll();
}
isInitializing = false;
} // NewProject
private async void LoadSettings()
{
chkEnableVersionControl.IsChecked = Settings.Default.gitEnableVersionControl;
chkForceDX11.IsChecked = Settings.Default.forceDX11;
chkEnableLfs.IsChecked = Settings.Default.gitIEnableLFS;
chkEnableLfs.IsEnabled = chkEnableVersionControl.IsChecked == true;
chkInitialCommit.IsChecked = Settings.Default.gitInitialCommit;
chkInitialCommit.IsEnabled = chkEnableVersionControl.IsChecked == true;
chkAddReadme.IsChecked = Settings.Default.gitAddReadme;
chkAddUnityGitIgnore.IsChecked = Settings.Default.gitAddIgnore;
chkEnableOrgs.IsChecked = Settings.Default.gitEnableOrgs;
UpdateOrgUiState();
expVersionControl.IsExpanded = Settings.Default.gitPanelExpanded || chkEnableVersionControl.IsChecked == true;
string token = GitHubTokenStore.LoadToken();
string username = GitHubTokenStore.LoadUsername();
if (string.IsNullOrWhiteSpace(token))
{
ShowGitAuthorizedUI(false);
return;
}
// TODO no need to validate on every load..
GitHubTokenValidationResult result = await GitHubAuth.ValidateTokenAsync(token);
if (result.IsValid)
{
ShowGitAuthorizedUI(true);
await LoadGithubOrgsAsync(token);
}
else
{
GitHubTokenStore.DeleteToken();
Settings.Default.Save();
ShowGitAuthorizedUI(false);
}
} // LoadSettings
void UpdateTemplatesDropDown(string unityPath)
{
// scan available templates, TODO could cache this at least per session?
cmbNewProjectTemplate.ItemsSource = Tools.ScanTemplates(unityPath);
cmbNewProjectTemplate.SelectedIndex = 0;
lblTemplateTitleAndCount.Content = "Templates: (" + (cmbNewProjectTemplate.Items.Count - 1) + ")";
}
void UpdateModulesDropdown(string version)
{
// get modules and stick into combobox, NOTE we already have this info from GetProjects.Scan, so could access it
platformsForThisUnity = Tools.GetPlatformsForUnityVersion(version);
cmbNewProjectPlatform.ItemsSource = platformsForThisUnity;
var lastUsedPlatform = Properties.Settings.Default.newProjectPlatform;
for (int i = 0; i < platformsForThisUnity.Length; i++)
{
// set default platform (win64) if never used this setting before
if ((string.IsNullOrEmpty(lastUsedPlatform) && platformsForThisUnity[i].ToLower() == "win64") || platformsForThisUnity[i] == lastUsedPlatform)
{
cmbNewProjectPlatform.SelectedIndex = i;
break;
}
}
// if nothing found, use win64
if (cmbNewProjectPlatform.SelectedIndex == -1)
{
//cmbNewProjectPlatform.SelectedIndex = cmbNewProjectPlatform.Items.Count > 1 ? 1 : 0;
for (int i = 0; i < platformsForThisUnity.Length; i++)
{
if (platformsForThisUnity[i].ToLower() == "win64")
{
cmbNewProjectPlatform.SelectedIndex = i;
break;
}
}
// if still nothing, use first
if (cmbNewProjectPlatform.SelectedIndex == -1) cmbNewProjectPlatform.SelectedIndex = 0;
//lblTemplateTitleAndCount.Content = "Templates: (" + (cmbNewProjectTemplate.Items.Count - 1) + ")";
}
}
bool isCreatingProject = false;
private async void BtnCreateNewProject_Click(object sender, RoutedEventArgs e)
{
await CreateNewProject(withRepo: false);
}
private async void btnCreateNewProjectAndRepo_Click(object sender, RoutedEventArgs e)
{
await CreateNewProject(withRepo: true);
}
private async Task CreateNewProject(bool withRepo)
{
if (isCreatingProject) return;
isCreatingProject = true;
btnCreateNewProject.IsEnabled = false;
btnCreateNewProjectAndRepo.IsEnabled = false;
try
{
// check if projectname already exists (only if should be automatically created name)
var targetPath = Path.Combine(targetFolder, txtNewProjectName.Text);
if (txtNewProjectName.IsEnabled == true && Directory.Exists(targetPath) == true)
{
Tools.SetStatus("Project already exists: " + txtNewProjectName.Text);
isCreatingProject = false;
return;
}
// Check if online template is selected
if (listOnlineTemplates.SelectedItem is OnlineTemplateItem selectedOnlineTemplate)
{
// Use online template path
string appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string templatesPath = Path.Combine(appDataPath, "UnityHub", "Templates");
if (!string.IsNullOrEmpty(selectedOnlineTemplate.TarBallURL))
{
string fileName = Path.GetFileName(new Uri(selectedOnlineTemplate.TarBallURL).LocalPath);
if (string.IsNullOrEmpty(fileName))
{
string safeFileName = string.Join("_", selectedOnlineTemplate.Name.Split(Path.GetInvalidFileNameChars()));
fileName = $"{safeFileName}.tgz";
}
templateZipPath = Path.Combine(templatesPath, fileName);
// Verify the file exists
if (!File.Exists(templateZipPath))
{
Tools.SetStatus("Selected online template is not downloaded. Please download it first.");
isCreatingProject = false;
return;
}
}
else
{
Tools.SetStatus("Invalid online template URL");
isCreatingProject = false;
return;
}
}
else
{
// Use built-in template from dropdown
if (cmbNewProjectTemplate.SelectedValue != null) templateZipPath = ((KeyValuePair<string, string>)cmbNewProjectTemplate.SelectedValue).Value;
}
if (cmbNewProjectTemplate.SelectedValue != null)
{
selectedPlatform = cmbNewProjectPlatform.SelectedValue.ToString();
UpdateSelectedVersion();
// save last used value for platform
Settings.Default.newProjectPlatform = cmbNewProjectPlatform.SelectedValue.ToString();
Settings.Default.Save();
}
var repoOwner = GitHubTokenStore.LoadUsername();
if (withRepo && chkEnableVersionControl.IsChecked == true)
{
// setup local git
try
{
string projectPath = await GithubActions.InitRepositoryAsync(baseDir: txtNewProjectFolder.Text, projectName: txtNewProjectName.Text, initGitLfs: (chkEnableLfs.IsChecked == true), defaultBranch: "main");
txtNewProjectStatus.Text = "Git repository initialized at: " + projectPath;
}
catch (Exception ex)
{
txtNewProjectStatus.Text = "Git init failed: " + ex.Message;
}
// create online repo
try
{
string token = GitHubTokenStore.LoadToken();
// if invalid repo, add DDMMYYY_HHMMSS
if (lblRepoNameInvalid.Visibility == Visibility.Visible)
{
txtRepoName.Text += "_" + DateTime.Now.ToString("ddMMyyyy_HHmmss");
}
string selectedOrg = null;
if (chkEnableOrgs.IsChecked == true)
{
selectedOrg = cmbGithubOrgs.SelectedItem as string;
if (string.IsNullOrWhiteSpace(selectedOrg)) selectedOrg = null;
}
repoOwner = selectedOrg ?? repoOwner;
GitHubCreateRepoResult result = await GithubActions.CreateRepositoryAsync(token: token, repoName: txtRepoName.Text, description: txtRepoDescription.Text, isPrivate: rbPrivate.IsChecked == true, autoInit: false, organization: selectedOrg);
if (result.Success)
{
Console.WriteLine("Created repo successfully.");
string remoteUrl = $"https://github.com/{repoOwner}/{txtRepoName.Text}.git";
await GithubActions.RunGitAsync(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text), $"remote add origin {remoteUrl}");
}
else
{
Console.WriteLine("Failed to create repo..");
txtNewProjectStatus.Text = "GitHub repo creation failed: " + (string.IsNullOrWhiteSpace(result.Error) ? "Unknown GitHub error." : result.Error);
}
}
catch (Exception ex)
{
txtNewProjectStatus.Text += " | GitHub repo creation failed: " + ex.Message;
}
// create .gitattributes if LFS enabled?
if (chkEnableLfs.IsChecked == true)
{
//var gitAttributesUrl = "https://raw.githubusercontent.com/gitattributes/gitattributes/refs/heads/master/Unity.gitattributes";
// load from resources
try
{
var assembly = typeof(NewProject).Assembly;
var resourceName = $"{typeof(NewProject).Namespace}.Resources..gitattributes";
using var stream = assembly.GetManifestResourceStream(resourceName);
if (stream == null) return;
var gitattributesPath = Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text, ".gitattributes");
using var fileStream = File.Create(gitattributesPath);
stream.CopyTo(fileStream);
}
catch
{
Tools.SetStatus("Failed to create .gitattributes file for this project.");
}
}
} // if version control enabled
// create readme if enabled
if (withRepo && chkAddReadme.IsChecked == true)
{
var readmePath = Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text, "README.md");
try
{
if (Directory.Exists(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text)) == false)
{
Directory.CreateDirectory(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text));
}
File.WriteAllText(readmePath, "# " + txtRepoName.Text + "\n\n" + txtRepoDescription.Text);
}
catch (Exception ex)
{
Tools.SetStatus("Failed to create README file for this project: " + ex.Message);
}
}
// download .gitignore if enabled
if (withRepo && chkAddUnityGitIgnore.IsChecked == true)
{
//var gitIgnoreUrl = "https://raw.githubusercontent.com/github/gitignore/refs/heads/main/Unity.gitignore";
// load from resources
try
{
var assembly = typeof(NewProject).Assembly;
var resourceName = $"{typeof(NewProject).Namespace}.Resources..gitignore";
using var stream = assembly.GetManifestResourceStream(resourceName);
if (stream == null) return;
var gitignorePath = Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text, ".gitignore");
using var fileStream = File.Create(gitignorePath);
stream.CopyTo(fileStream);
}
catch
{
Tools.SetStatus("Failed to create .gitignore file for this project.");
}
} // if add gitignore
if (withRepo && chkEnableVersionControl.IsChecked == true)
{
if (chkInitialCommit.IsChecked == true)
{
try
{
await GithubActions.RunGitAsync(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text), "add .");
await GithubActions.RunGitAsync(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text), "commit -m \"Initial commit from " + MainWindow.appName + "\"");
await GithubActions.RunGitAsync(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text), "push -u origin main");
Console.WriteLine(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text) + " add .");
Console.WriteLine(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text) + " commit -m \"Initial commit from " + MainWindow.appName + "\"");
txtNewProjectStatus.Text += " | Initial commit created";
}
catch (Exception ex)
{
txtNewProjectStatus.Text += " | Initial commit failed: " + ex.Message;
Console.WriteLine("failed commit");
}
}
Tools.OpenURL("https://github.com/" + repoOwner + "/" + txtRepoName.Text);
} // if version control enabled
}
finally
{
isCreatingProject = false;
UpdateCreateButtonsEnabledState();
}
DialogResult = true;
}
private void UpdateCreateButtonsEnabledState()
{
bool folderExists = Directory.Exists(txtNewProjectFolder.Text);
bool projectNameAvailable = txtNewProjectName.IsEnabled==false || (!string.IsNullOrWhiteSpace(txtNewProjectName.Text) && !Directory.Exists(Path.Combine(targetFolder, txtNewProjectName.Text)));
bool onlineTemplateReady = !(listOnlineTemplates.SelectedItem is OnlineTemplateItem selectedOnlineTemplate) || selectedOnlineTemplate.IsDownloaded;
bool versionControlEnabled = chkEnableVersionControl.IsChecked == true;
bool gitFolderExists = Directory.Exists(Path.Combine(txtNewProjectFolder.Text, txtNewProjectName.Text, ".git"));
btnCreateNewProject.IsEnabled = folderExists && projectNameAvailable && onlineTemplateReady && !isCreatingProject;
btnCreateNewProjectAndRepo.IsEnabled = btnCreateNewProject.IsEnabled && versionControlEnabled && !gitFolderExists;
if (folderExists == false) txtNewProjectStatus.Text = "Folder does not exist.";
if (projectNameAvailable == false && txtNewProjectName.IsEnabled == true) txtNewProjectStatus.Text = "Project name is empty or already exists.";
if (onlineTemplateReady == false) txtNewProjectStatus.Text = "Selected online template is not downloaded.";
if (gitFolderExists == true) txtNewProjectStatus.Text = "Git repository already exists in the project folder.";
}
private void BtnCancelNewProject_Click(object sender, RoutedEventArgs e)
{
DialogResult = false;
}
private async void Window_PreviewKeyDown(object sender, KeyEventArgs e)
{
switch (e.Key)
{
case Key.Tab:
// manually tab into next component (automatic tabstops not really working here)
TraversalRequest tRequest = new TraversalRequest(FocusNavigationDirection.Next);
UIElement keyboardFocus = Keyboard.FocusedElement as UIElement;
if (keyboardFocus != null)
{
keyboardFocus.MoveFocus(tRequest);
}
break;
case Key.F2: // select project name field
txtNewProjectName.Focus();
txtNewProjectName.SelectAll();
break;
case Key.F3: // next platform
cmbNewProjectPlatform.SelectedIndex = ++cmbNewProjectPlatform.SelectedIndex % cmbNewProjectPlatform.Items.Count;
break;
case Key.F4: // next template
case Key.Oem5: // select next template §-key
cmbNewProjectTemplate.SelectedIndex = ++cmbNewProjectTemplate.SelectedIndex % cmbNewProjectTemplate.Items.Count;
e.Handled = true; // override writing to textbox
break;
case Key.Enter: // enter, create proj
await CreateNewProject(withRepo: false);
e.Handled = true;
break;
case Key.Escape: // esc cancel
// if pressed esc while combobox is open, close that one instead of closing window
if (cmbNewProjectTemplate.IsDropDownOpen)
{
cmbNewProjectTemplate.IsDropDownOpen = false;
if (previousSelectedTemplateIndex > -1) cmbNewProjectTemplate.SelectedIndex = previousSelectedTemplateIndex;
return;
}
if (cmbNewProjectPlatform.IsDropDownOpen)
{
cmbNewProjectPlatform.IsDropDownOpen = false;
if (previousSelectedModuleIndex > -1) cmbNewProjectPlatform.SelectedIndex = previousSelectedModuleIndex;
return;
}
DialogResult = false;
e.Handled = true;
break;
default:
break;
}
}
void UpdateSelectedVersion()
{
var k = gridAvailableVersions.SelectedItem as UnityInstallation;
if (k != null && k.Version != newVersion)
{
newVersion = k.Version;
}
}
private void TxtNewProjectName_TextChanged(object sender, TextChangedEventArgs e)
{
if (isInitializing == true) return;
// warning yellow if contains space at start or end
if (txtNewProjectName.Text.StartsWith(" ") || txtNewProjectName.Text.EndsWith(" "))
{
// NOTE txtbox outline didnt work
txtNewProjectName.Background = Brushes.Yellow;
txtNewProjectStatus.Text = "Warning: Project name starts or ends with SPACE character";
txtNewProjectStatus.Foreground = Brushes.Orange;
}
else
{
// NOTE this element is not using themes yet, so can set white
txtNewProjectName.Background = Brushes.White;
txtNewProjectStatus.Foreground = Brushes.White;
txtNewProjectStatus.Text = "";
}
// validate new projectname that it doesnt exists already
var targetPath = Path.Combine(targetFolder, txtNewProjectName.Text);
if (Directory.Exists(targetPath) == true)
{
System.Console.WriteLine("Project already exists");
txtNewProjectName.BorderBrush = Brushes.Red; // not visible if focused
txtNewProjectName.ToolTip = "Project folder already exists";
}
else
{
txtNewProjectName.BorderBrush = null;
txtNewProjectName.ToolTip = "";
}
UpdateCreateButtonsEnabledState();
//System.Console.WriteLine("newProjectName: " + txtNewProjectName.Text);
newProjectName = txtNewProjectName.Text;
if (chkEnableVersionControl.IsChecked == true) txtRepoName.Text = newProjectName;
}
private void TxtNewProjectName_PreviewKeyDown(object sender, KeyEventArgs e)
{
switch (e.Key)
{
case Key.PageUp:
case Key.PageDown:
case Key.Up:
case Key.Down:
Tools.SetFocusToGrid(gridAvailableVersions);
break;
default:
break;
}
}
void GenerateNewName()
{
var newProj = Tools.GetSuggestedProjectName(newVersion, txtNewProjectFolder.Text.ToString());
txtNewProjectName.Text = newProj;
}
// FIXME this gets called when list is updated?
private void GridAvailableVersions_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (gridAvailableVersions.SelectedItem == null || isInitializing == true) return;
// new row selected, generate new project name for this version
var k = gridAvailableVersions.SelectedItem as UnityInstallation;
newVersion = k.Version;
// no new name, if field is locked (because its folder name then)
if (txtNewProjectName.IsEnabled == true) GenerateNewName();
// update templates list for selected unity version
UpdateTemplatesDropDown(k.Path);
UpdateModulesDropdown(k.Version);
// hide forceDX11 checkbox if version is below 6000
bool is6000 = k.Version.Contains("6000");
lblOverride.Visibility = chkForceDX11.Visibility = is6000 ? Visibility.Visible : Visibility.Collapsed;
//chkForceDX11.IsChecked = chkForceDX11.Visibility == Visibility.Visible ? forceDX11 : false;
forceDX11 = Settings.Default.forceDX11 && is6000;
listOnlineTemplates.ItemsSource = null; // clear previous items
if (loadOnlineTemplates)
{
string baseVersion = Tools.GetBaseVersion(k.Version);
// Cancel previous request
_templateLoadCancellation?.Cancel();
_templateLoadCancellation = new CancellationTokenSource();
_ = LoadOnlineTemplatesAsync(baseVersion, _templateLoadCancellation.Token);
}
}
private void GridAvailableVersions_Loaded(object sender, RoutedEventArgs e)
{
// set initial default row color
DataGridRow row = (DataGridRow)gridAvailableVersions.ItemContainerGenerator.ContainerFromIndex(gridAvailableVersions.SelectedIndex);
// if no unitys available
if (row == null) return;
//row.Background = Brushes.Green;
row.Foreground = Brushes.White;
row.FontWeight = FontWeights.Bold;
}
private void CmbNewProjectTemplate_DropDownOpened(object sender, System.EventArgs e)
{
// on open, take current selection, so can undo later
previousSelectedTemplateIndex = cmbNewProjectTemplate.SelectedIndex;
}
private void CmbNewProjectPlatform_DropDownOpened(object sender, System.EventArgs e)
{
previousSelectedModuleIndex = cmbNewProjectPlatform.SelectedIndex;
}
private async void gridAvailableVersions_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
// check that we clicked actually on a row
var src = VisualTreeHelper.GetParent((DependencyObject)e.OriginalSource);
var srcType = src.GetType();
if (srcType == typeof(ContentPresenter))
{
await CreateNewProject(withRepo: false);
}
}
private void chkForceDX11_Checked(object sender, RoutedEventArgs e)
{
if (isInitializing) return; // Don't save during initialization
Settings.Default.forceDX11 = forceDX11;
Settings.Default.Save();
}
private void chkEnableVersionControl_Checked(object sender, RoutedEventArgs e)
{
bool state = chkEnableVersionControl.IsChecked == true;
UpdateCreateButtonsEnabledState();
if (isInitializing) return;
// lock controls
rbPrivate.IsEnabled = state;
rbPublic.IsEnabled = state;
txtRepoName.IsEnabled = state;
txtRepoDescription.IsEnabled = state;
chkEnableLfs.IsEnabled = state;
chkInitialCommit.IsEnabled = state;
//chkAddUnityGitIgnore.IsEnabled = state;
//chkAddReadme.IsEnabled = state;
Settings.Default.gitEnableVersionControl = state;
Settings.Default.Save();
}
private void btnBrowseForProjectFolder_Click(object sender, RoutedEventArgs e)
{
string defaultFolder = null;
if (txtNewProjectFolder.Text != null)
{
if (Directory.Exists(txtNewProjectFolder.Text) == true)
{
defaultFolder = txtNewProjectFolder.Text;
}
else
{
// find closest existing parent folder
var dir = new DirectoryInfo(txtNewProjectFolder.Text);
while (dir.Parent != null)
{
dir = dir.Parent;
if (Directory.Exists(dir.FullName) == true)
{
defaultFolder = dir.FullName;
break;
}
}
}
}
var folder = Tools.BrowseForOutputFolder("Select New Project folder", defaultFolder);
if (string.IsNullOrEmpty(folder) == false && Directory.Exists(folder) == true)
{
txtNewProjectFolder.Text = folder;
}
}
private void txtNewProjectFolder_TextChanged(object sender, TextChangedEventArgs e)
{
// validate that folder exists
if (Directory.Exists(txtNewProjectFolder.Text) == false)
{
txtNewProjectFolder.BorderBrush = Brushes.Red; // not visible if focused
btnCreateMissingFolder.IsEnabled = true;
}
else
{
txtNewProjectFolder.BorderBrush = null;
targetFolder = txtNewProjectFolder.Text;
btnCreateMissingFolder.IsEnabled = false;
}
UpdateCreateButtonsEnabledState();
}
private void btnCreateMissingFolder_Click(object sender, RoutedEventArgs e)
{
try
{
Directory.CreateDirectory(txtNewProjectFolder.Text);
txtNewProjectFolder.BorderBrush = null;
btnCreateNewProject.IsEnabled = true;
targetFolder = txtNewProjectFolder.Text;
}
catch (Exception ex)
{
Tools.SetStatus("Failed to create folder: " + ex.Message);
}
}
private static readonly HttpClient _httpClient = new HttpClient();
private async Task LoadGithubOrgsAsync(string token)
{
cmbGithubOrgs.IsEnabled = chkEnableOrgs.IsChecked == true;
if (chkEnableOrgs.IsChecked != true) return;
var orgs = await GithubActions.GetUserOrganizationsAsync(token);
cmbGithubOrgs.ItemsSource = orgs;
var lastOrg = Settings.Default.gitLastOrg;
if (!string.IsNullOrWhiteSpace(lastOrg) && orgs.Contains(lastOrg))
{
cmbGithubOrgs.SelectedItem = lastOrg;
}
else if (orgs.Count > 0)
{
cmbGithubOrgs.SelectedIndex = 0;
}
else
{
cmbGithubOrgs.SelectedIndex = -1;
}
}
private void cmbGithubOrgs_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (isInitializing) return;
var selectedOrg = cmbGithubOrgs.SelectedItem as string;
if (string.IsNullOrWhiteSpace(selectedOrg)) return;
Settings.Default.gitLastOrg = selectedOrg;
Settings.Default.Save();
}
private async Task LoadOnlineTemplatesAsync(string baseVersion, CancellationToken cancellationToken = default)
{
try
{
_httpClient.DefaultRequestHeaders.Remove("Accept");
_httpClient.DefaultRequestHeaders.Add("Accept", "application/json");
var graphqlJson = "{\"query\":\"fragment TemplateEntity on Template { __typename name packageName description type buildPlatforms renderPipeline previewImage { url } versions { name tarball { url } } } query HUB__getTemplates($limit: Int! $skip: Int! $orderBy: TemplateOrder! $supportedUnityEditorVersions: [String!]!) { getTemplates(limit: $limit skip: $skip orderBy: $orderBy supportedUnityEditorVersions: $supportedUnityEditorVersions) { edges { node { ...TemplateEntity } } } }\",\"variables\":{\"limit\":40,\"skip\":0,\"orderBy\":\"WEIGHTED_DESC\",\"supportedUnityEditorVersions\":[\"" + baseVersion + "\"]}}";
var content = new StringContent(graphqlJson, Encoding.UTF8, "application/json");
// Check for cancellation before making request
if (cancellationToken.IsCancellationRequested) return;
var response = await _httpClient.PostAsync("https://live-platform-api.prd.ld.unity3d.com/graphql", content, cancellationToken);
// Check for cancellation after request
if (cancellationToken.IsCancellationRequested) return;
if (response.IsSuccessStatusCode)
{
var responseString = await response.Content.ReadAsStringAsync();
// Check for cancellation before parsing
if (cancellationToken.IsCancellationRequested) return;
var templates = ParseTemplatesFromJson(responseString);
// Download preview images to bypass WPF's ClickOnce security check on HTTPS URIs
foreach (var template in templates)
{
if (cancellationToken.IsCancellationRequested) return;
try
{
if (!string.IsNullOrEmpty(template.PreviewImageURL) && !template.PreviewImageURL.StartsWith("pack://"))
{
var imageData = await _httpClient.GetByteArrayAsync(template.PreviewImageURL);
var bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.StreamSource = new MemoryStream(imageData);
bitmap.EndInit();
if (bitmap.CanFreeze) bitmap.Freeze();
template.PreviewImage = bitmap;
}
}
catch
{
// Failed to download preview image, leave PreviewImage as null
}
}
// Update UI on dispatcher thread only if not cancelled
if (!cancellationToken.IsCancellationRequested)
{
Dispatcher.Invoke(() =>
{
// Only set ItemsSource, don't touch Items
listOnlineTemplates.ItemsSource = templates;
});
}
}
else
{
Console.WriteLine($"GraphQL request failed: {response.StatusCode}");
}
}
catch (OperationCanceledException)
{
// Request was cancelled, this is expected
Console.WriteLine("Template loading cancelled");
}
catch (Exception ex)
{
if (!cancellationToken.IsCancellationRequested)
{
Console.WriteLine($"Error loading online templates: {ex.Message}");
}
}
}
private void LoadFallbackTemplates()
{
var templates = new List<OnlineTemplateItem>
{
new OnlineTemplateItem
{
Name = "3D Template",
Description = "A great starting point for 3D projects using the Universal Render Pipeline (URP).",
PreviewImageURL = "pack://application:,,,/Images/icon.png",
Type = "CORE",
RenderPipeline = "URP"
}
};
Dispatcher.Invoke(() =>
{
// Only set ItemsSource, don't use Items.Clear()
listOnlineTemplates.ItemsSource = templates;
});
}
private List<OnlineTemplateItem> ParseTemplatesFromJson(string json)
{
var templates = new List<OnlineTemplateItem>();
try
{
// Get templates directory path
string appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string templatesPath = Path.Combine(appDataPath, "UnityHub", "Templates");
// Find the edges array
int edgesStart = json.IndexOf("\"edges\":");
if (edgesStart == -1) return templates;
// Find all node objects
int currentPos = edgesStart;
while (true)
{
int nodeStart = json.IndexOf("{\"__typename\":\"Template\"", currentPos);
if (nodeStart == -1) break;
// Find the end of this node object (simplified - find matching brace)
int nodeEnd = JsonParser.FindMatchingBrace(json, nodeStart);
if (nodeEnd == -1) break;
string nodeJson = json.Substring(nodeStart, nodeEnd - nodeStart + 1);
// Parse individual fields
var tarballUrl = JsonParser.ExtractNestedJsonString(nodeJson, "\"tarball\"", "\"url\"");
var rawDescription = JsonParser.ExtractJsonString(nodeJson, "\"description\"");
var splitDescription = Tools.SplitTextToRows(rawDescription, 3);
var template = new OnlineTemplateItem
{
Name = JsonParser.ExtractJsonString(nodeJson, "\"name\""),
Description = splitDescription,
Type = JsonParser.ExtractJsonString(nodeJson, "\"type\""),
RenderPipeline = JsonParser.ExtractJsonString(nodeJson, "\"renderPipeline\""),
PreviewImageURL = JsonParser.ExtractNestedJsonString(nodeJson, "\"previewImage\"", "\"url\"") ?? "pack://application:,,,/Images/icon.png",
TarBallURL = tarballUrl,
IsDownloaded = false
};
// Check if template file already exists
if (!string.IsNullOrEmpty(tarballUrl) && Directory.Exists(templatesPath))
{
try
{
string fileName = Path.GetFileName(new Uri(tarballUrl).LocalPath);
if (!string.IsNullOrEmpty(fileName))
{
string filePath = Path.Combine(templatesPath, fileName);
template.IsDownloaded = File.Exists(filePath);
}
}
catch
{
// If URL parsing fails, keep IsDownloaded as false
}
}
templates.Add(template);
currentPos = nodeEnd + 1;
}
}
catch (Exception ex)
{
Console.WriteLine($"Error parsing templates: {ex.Message}");
}
return templates;
}
private void listOnlineTemplates_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
// Get the item that was clicked
var listBox = sender as ListBox;
if (listBox == null) return;
// Find the ListBoxItem that was clicked
var clickedElement = e.OriginalSource as DependencyObject;
while (clickedElement != null && clickedElement != listBox)
{
if (clickedElement is ListBoxItem)
{
var clickedItem = clickedElement as ListBoxItem;