-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAssetPackLoaderSystem.cs
621 lines (555 loc) · 24.8 KB
/
AssetPackLoaderSystem.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
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Colossal.PSI.Common;
using Colossal.PSI.Environment;
using Game;
using Colossal.UI;
using Game.Prefabs;
using Game.PSI;
using Game.SceneFlow;
using Game.UI.Localization;
using Game.UI.Menu;
using UnityEngine;
namespace AssetPacksManager
{
public partial class AssetPackLoaderSystem : GameSystemBase
{
private static PrefabSystem _prefabSystem;
private static NotificationUISystem _notificationUISystem;
// Each mod has a dict entry that contains the missing cid prefabs
private static readonly string[] SupportedThumbnailExtensions = { ".png", ".svg", ".jpg" };
private static readonly string ThumbnailDir = EnvPath.kUserDataPath + "/ModsData/AssetPacksManager/thumbnails";
private static ApmLogger Logger;
public static AssetPackLoaderSystem Instance;
private static MonoComponent _monoComponent;
private readonly GameObject _monoObject = new();
public static bool AssetsLoaded;
private static string LoadedAssetPacksText { get; set; } = "";
private static string LocalAssetsText { get; set; } = "";
private static NotificationUISystem.NotificationInfo _adaptiveAssetsNotification;
private static readonly List<AssetPack> AssetPacks = new();
private static readonly List<string> LocalAssets = new();
private static int _eaiAssets;
protected override void OnCreate()
{
base.OnCreate();
Instance = this;
Enabled = false;
_prefabSystem = World.GetOrCreateSystemManaged<PrefabSystem>();
_notificationUISystem = World.GetOrCreateSystemManaged<NotificationUISystem>();
_monoComponent = _monoObject.AddComponent<MonoComponent>();
Logger = ApmLogger.Instance;
// VERY old CustomAssets folder migration, shouldn't be needed anymore, but just in case
CheckForMigration();
_notificationUISystem.AddOrUpdateNotification(
$"APM-NoLoad",
title: "Asset Packs Manager not loaded",
text: "Click here to load Asset Packs Manager.",
progressState: ProgressState.Indeterminate,
progress: 0,
thumbnail: "coui://apm/game_crash_warning.svg",
onClicked: Initialize
);
if (!Directory.Exists(ThumbnailDir))
Directory.CreateDirectory(ThumbnailDir);
UIManager.defaultUISystem.AddHostLocation("customassets", ThumbnailDir, false);
if (Setting.Instance.ShowWarningForLocalAssets)
{
FindLocalAssets($"{EnvPath.kUserDataPath}");
if (LocalAssets.Count != 0)
{
NotificationSystem.Pop("APM-local", getHideDelay(), "Local Assets Found",
$"Found {LocalAssets.Count} local assets in the user folder. These are loaded automatically.");
}
}
GameManager.instance.RegisterUpdater(Initialize);
}
private static float getHideDelay()
{
if (Setting.Instance.AutoHideNotifications)
return 30f;
return 100000f;
}
/// <summary>
/// First time initialization of the AssetPackLoaderSystem, loads asset packs if enabled
/// </summary>
private void Initialize()
{
_notificationUISystem.RemoveNotification("APM-NoLoad");
Logger.Info("Initializing Asset Pack Loader System");
if (Setting.Instance.EnableAssetPackLoadingOnStartup)
{
Logger.Info("Loading Asset Packs on Startup");
LoadAssetPacks();
}
else
{
Logger.Info("Asset Pack Loading on Startup is disabled");
}
}
/// <summary>
/// If player still has the old CustomAssets folder, move it to the desktop and notify the player.
/// This is to prevent the game from loading these assets by itself.
/// </summary>
private void CheckForMigration()
{
try
{
string customAssetsDir = $"{EnvPath.kUserDataPath}/CustomAssets";
if (Directory.Exists(customAssetsDir))
{
var migrationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
"CustomAssets_backup");
Directory.Move(customAssetsDir, migrationPath);
NotificationSystem.Push("APM-legacy", "Custom Assets folder migrated, restart game",
"The Custom Assets is no longer being used and has been moved to Desktop. Please restart the game");
Logger.Error("Closing game due to APM-legacy migration");
CloseGame();
}
}
catch (Exception x)
{
var migrationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
"CustomAssets_backup");
NotificationSystem.Push("APM-legacy", "Error migrating Custom Assets folder",
$"Please delete {migrationPath} manually.");
Logger.Error("Error moving Custom Assets folder: " + x.Message);
}
}
public static LocalizedString GetLoadedAssetPacksText()
{
return LocalizedString.IdWithFallback("APM-LoadedAssetPacks", LoadedAssetPacksText);
}
public static LocalizedString GetLocalAssetsText()
{
return LocalizedString.IdWithFallback("APM-LocalAssets", LocalAssetsText);
}
public void LoadAssetPacks()
{
if (AssetsLoaded)
{
Logger.Info("Assets are already loaded, skipping...");
return;
}
_monoComponent.StartCoroutine(CollectAssets());
AssetsLoaded = true;
}
public static void DeleteModsWithMissingCid()
{
int successfulDeletions = 0;
foreach (var pack in AssetPacks)
{
if (pack.MissingCids.Count == 0)
continue;
foreach (string key in pack.MissingCids)
{
try
{
string path = $"{EnvPath.kUserDataPath}/.cache/Mods/mods_subscribed/{key}";
if (Directory.Exists(path))
{
Directory.Delete(path, true);
Logger.Info($"Deleted mod cache for {key}");
successfulDeletions++;
}
}
catch (Exception x)
{
Logger.Error($"Error deleting mod cache for mod {{key}}: {x.Message}");
}
}
}
NotificationSystem.Push("APM-delete", "Deleted Mods",
$"Deleted {successfulDeletions} mods with missing CID. Click to close game.",
onClicked: CloseGame);
}
private static void FindLocalAssets(string currentDir)
{
var currentDirectory = new DirectoryInfo(currentDir);
if (currentDirectory.Name.StartsWith("."))
return;
if (!Directory.Exists(currentDir))
{
return;
}
foreach (var dir in Directory.GetDirectories(currentDir))
{
FindLocalAssets(dir);
}
foreach (var file in Directory.GetFiles(currentDir))
{
if (file.EndsWith(".Prefab"))
{
string localPath = file.Replace(EnvPath.kUserDataPath, "").Replace("\\", "/");
if (localPath.Contains("ModsData/ExtraAssetsImporter"))
_eaiAssets++;
else
LocalAssets.Add(localPath);
}
}
}
public static void OpenLogFile()
{
Logger.OpenLogFile();
}
private static IEnumerator CollectAssets()
{
var notificationInfo = _notificationUISystem.AddOrUpdateNotification(
$"{nameof(AssetPacksManager)}.{nameof(AssetPackLoaderSystem)}.{nameof(CollectAssets)}",
title: "Collecting Asset Packs",
progressState: ProgressState.Indeterminate,
thumbnail: "coui://apm/notify_icon.png",
progress: 0);
int currentIndex = 0;
int packsFound = 0;
int assetCount = 0;
var assetFinderStartTime = DateTime.Now;
foreach (var modInfo in GameManager.instance.modManager)
{
var assemblyName = modInfo.name.Split(',')[0];
Logger.Debug($"Checking mod {assemblyName}");
var modDir = Path.GetDirectoryName(modInfo.asset.path);
var modId = $"{modInfo.asset.subPath.Split('/')[1].Split('_')[0]}";
var mod = new DirectoryInfo(modDir);
if (modDir == null)
continue;
if (assemblyName == "CustomAssetPack")
{
Logger.Warn($"Mod {modInfo.asset.name} is using default name");
NotificationSystem.Push(Guid.NewGuid().ToString(), title: $"Mod {mod.Name} is using default name",
text:
$"Please contact the developer of this mod to change the assembly name to something unique");
}
if (modInfo.asset.isEnabled)
{
var assetDir = new DirectoryInfo(Path.Combine(modDir, "assets"));
if (assetDir.Exists)
{
if (!Setting.Instance.DisableLoadingNotification)
{
notificationInfo = _notificationUISystem.AddOrUpdateNotification(
$"{nameof(AssetPacksManager)}.{nameof(AssetPackLoaderSystem)}.{nameof(CollectAssets)}",
title: "Collecting Asset Packs",
text: $"Collecting: {modInfo.asset.name}",
progressState: ProgressState.Progressing,
thumbnail: "coui://apm/notify_icon.png",
progress: (int)(currentIndex / (float)GameManager.instance.modManager.Count() * 100));
}
AssetPack currentPack = new AssetPack()
{
Path = modDir,
AssetPath = assetDir.FullName,
Name = assemblyName,
};
if (int.TryParse(modId, out int id))
{
currentPack.ID = id;
}
var localModsPath = Path.Combine(EnvPath.kUserDataPath, "Mods").Replace("/", "\\");
if (modDir.Contains(localModsPath))
{
currentPack.Type = AssetPackType.Local;
}
Logger.Debug($"Collecting assets from {currentPack.Name} (" + currentPack.ID + ")");
assetCount += currentPack.AddAssetFiles(GetPrefabsFromDirectoryRecursively(currentPack.AssetPath, currentPack));
AssetPacks.Add(currentPack);
Logger.Debug($"Found {currentPack.AssetFiles.Count} assets from mod {currentPack.Name}");
packsFound++;
}
//var modTimeEnd = DateTime.Now - modTime;
//Logger.Info("Mod Time: " + modTimeEnd.TotalMilliseconds + "ms");
}
else
{
Logger.Debug($"Skipping disabled mod {modInfo.name} (" + modInfo.name + ")");
}
currentIndex++;
yield return null;
}
SkyveInterface.CheckPlaysetStatus(AssetPacks);
foreach(AssetPack pack in AssetPacks)
{
if (pack.Stability == PackageStability.Local)
{
pack.Type = AssetPackType.Local;
}
if (pack.Stability == PackageStability.Broken)
{
ShowAssetPackWarning(pack);
}
}
WriteLoadedPacksText();
Setting.LoadedAssetPacksTextVersion++;
WriteLocalAssetsText();
Setting.LocalAssetsTextVersion++;
_notificationUISystem.RemoveNotification(
identifier: notificationInfo.id,
delay: 30f,
text: $"Asset Pack collection complete. Found {packsFound} Asset Packs",
progressState: ProgressState.Complete,
progress: 100
);
var assetFinderEndTime = DateTime.Now - assetFinderStartTime;
Logger.Info("Asset Collection Time: " + assetFinderEndTime.TotalMilliseconds + "ms");
foreach (var pack in AssetPacks)
{
if (pack.MissingCids.Count == 0)
continue;
NotificationSystem.Pop($"MissingCID_{pack.ID}", getHideDelay(), title: $"Missing CID for {pack.MissingCids.Count} prefabs",
text: $"{pack.Name} has {pack.MissingCids.Count} missing CIDs. Click to delete cache",
onClicked: DeleteModsWithMissingCid);
}
_monoComponent.StartCoroutine(CheckPrefabs());
}
private static IEnumerator CheckPrefabs()
{
var notificationInfo = _notificationUISystem.AddOrUpdateNotification(
$"{nameof(AssetPacksManager)}.{nameof(AssetPackLoaderSystem)}.{nameof(CheckPrefabs)}",
title: "Checking Prefab Data",
progressState: ProgressState.Indeterminate,
thumbnail: "coui://apm/notify_icon.png",
progress: 0);
// Create empty for or empty it if it exists
File.WriteAllText(Path.Combine(EnvPath.kUserDataPath, "ModsData", "AssetPacksManager", "Unserializable.txt"), "");
foreach (var pack in AssetPacks)
{
foreach (var asset in pack.AssetFiles)
{
CheckPrefabData(asset);
}
yield return null;
}
if (prefabIssues == 0)
{
_notificationUISystem.RemoveNotification(
identifier: notificationInfo.id,
delay: getHideDelay(),
text: $"Prefab Data Check complete. No issues found",
progressState: ProgressState.Complete,
thumbnail: "coui://apm/notify_icon.png",
progress: 100
);
}
else
{
_notificationUISystem.RemoveNotification(identifier: notificationInfo.id);
_notificationUISystem.AddOrUpdateNotification(
identifier: notificationInfo.id,
title: $"Prefab Data Check found {prefabIssues} issues",
text: $"Click to show details",
onClicked: () => OpenUnserializeableFile(),
progressState: ProgressState.Warning,
thumbnail: "coui://apm/notify_icon.png",
progress: 0
);
}
}
private static void OpenUnserializeableFile()
{
Process.Start(Path.Combine(EnvPath.kUserDataPath, "ModsData", "AssetPacksManager", "Unserializable.txt"));
}
private static readonly string[] unwantedSubstrings = { "\"m_LargeIcon\"", "\"m_FireHazardModifier\"" };
private static int prefabIssues = 0;
private static void CheckPrefabData(FileInfo assetPath)
{
try
{
string content = File.ReadAllText(assetPath.FullName);
foreach (string substring in unwantedSubstrings)
{
if (content.Contains(substring))
{
Logger.Warn($"Report to Asset Creator: Found unserializable {substring} in {assetPath.FullName}");
prefabIssues++;
using StreamWriter sw = File.AppendText(Path.Combine(EnvPath.kUserDataPath, "ModsData", "AssetPacksManager", "Unserializable.txt"));
var path = assetPath.FullName; // Cut everything before "Cities Skylines II"
path = path.Substring(path.IndexOf("Cities Skylines II", StringComparison.Ordinal));
var text = path + " contains unserializable substring " + substring;
sw.WriteLine(text);
}
}
}
catch (Exception ex)
{
// Do nothing
}
}
private static string ConvertCamelCaseToSpaces(string input)
{
input = input.Replace("_", "");
return Regex.Replace(input, "(?<!^)([A-Z][a-z]|(?<=[a-z])[A-Z])", " $1");
}
private static void ShowAssetPackWarning(AssetPack pack)
{
Logger.Warn($"Broken asset pack detected: {pack.Name} ({pack.ID}). No support will be provided unless this pack is removed from the playset.");
_notificationUISystem.AddOrUpdateNotification(
$"Broken_{pack.ID}",
title: "Broken Asset Pack",
text: $"{pack.Name} is {pack.Stability}, no support will be provided",
progressState: ProgressState.Warning,
onClicked:() => _notificationUISystem.RemoveNotification($"Broken_{pack.ID}"));
}
private static void WriteLoadedPacksText()
{
List<AssetPack> sortedPacks = new(AssetPacks);
sortedPacks.Sort((a, b) => string.Compare(a.Name, b.Name, StringComparison.Ordinal));
foreach (var pack in sortedPacks)
{
string id = "";
if (pack.Type == AssetPackType.Local)
{
id = "Local";
if (pack.ID != 0)
id += " " + pack.ID;
}
else
{
if (pack.ID != 0)
id = pack.ID.ToString();
else
id = "Local";
}
LoadedAssetPacksText += $"[{pack.Stability}] {ConvertCamelCaseToSpaces(pack.Name)} ({id}) ({pack.AssetFiles.Count} Assets)\n";
}
Logger.Info($"Loaded Asset Packs: \n{LoadedAssetPacksText}");
}
private static void WriteLocalAssetsText()
{
LocalAssets.Sort();
LocalAssetsText = "";
if (_eaiAssets > 0)
LocalAssetsText += $"{_eaiAssets} Assets found in Extra Asset Importer folder, these are handled by EAI\n";
foreach (var pack in LocalAssets)
{
LocalAssetsText += $"{pack}\n";
}
Logger.Info($"Local Assets Text: \n{LocalAssetsText}");
}
/// <summary>
/// Checks if the asset has a CID file. If not, it will try to restore it from the backup
/// Creates a backup file if it doesn't exist.
///
/// This is only needed because PDX Mods deleted CID files when disabling a mod while ingame.
/// </summary>
/// <param name="file">Asset file to be checked</param>
/// <param name="pack">Current pack</param>
/// <returns></returns>
private static bool CheckCid(FileInfo file, AssetPack pack)
{
//AnalyzeAsset(file, modName);
if (!File.Exists(file.FullName + ".cid"))
{
if (File.Exists(file.FullName + ".cid.backup"))
{
File.Copy(file.FullName + ".cid.backup", file.FullName + ".cid");
Logger.Info($"Restored CID for {file.FullName}");
return true;
}
Logger.Warn($"Asset has no CID: {file.FullName}. No CID Backup was found");
pack.MissingCids.Add(file.Name);
return false;
}
// Back up CID
if (!File.Exists(file.FullName + ".cid.backup"))
File.Copy(file.FullName + ".cid", file.FullName + ".cid.backup", true);
return true;
}
private static readonly List<string> AdditionalCidChecks = [".Geometry", ".Surface", ".Texture"];
private static List<FileInfo> GetPrefabsFromDirectoryRecursively(string directory, AssetPack currentPack)
{
List<FileInfo> files = new();
var dir = new DirectoryInfo(directory);
if (!dir.Exists)
Logger.Error($"Source directory not found: {dir.FullName}");
DirectoryInfo[] dirs = dir.GetDirectories();
foreach (FileInfo file in dir.GetFiles())
{
if (file.Extension == ".Prefab")
{
if (CheckCid(file, currentPack))
files.Add(file);
}
else if (AdditionalCidChecks.Contains(file.Extension))
{
CheckCid(file, currentPack);
}
if (SupportedThumbnailExtensions.Contains(file.Extension))
{
CopyThumbnail(file, currentPack.Name);
}
}
foreach (DirectoryInfo subDir in dirs)
{
files.AddRange(GetPrefabsFromDirectoryRecursively(subDir.FullName, currentPack));
}
return files;
}
private static void CopyThumbnail(FileInfo file, string modName)
{
try
{
var fullPath = file.FullName.Replace('\\', '/');
// Get all after /assets/ to get the relative path
var relativePath = fullPath.Substring(fullPath.IndexOf("/assets/", StringComparison.Ordinal) + 8);
FileInfo target = new FileInfo(Path.Combine(ThumbnailDir, relativePath));
if (target.Directory != null && !target.Directory.Exists)
target.Directory.Create();
File.Copy(file.FullName, target.FullName, true);
}
catch (Exception e)
{
Logger.Error($"Error copying thumbnail for {file.Name}: {e.Message}. Details: {file.FullName} should have been copied to mod name {modName}");
}
}
public static void CloseGame()
{
Logger.Info("Closing Game...");
Application.Quit(0);
}
public static void DeleteCachedAssetPacks()
{
var foldersToDelete = new[]
{
Path.Combine(EnvPath.kUserDataPath, ".cache", "Mods", "mods_unmanaged"),
Path.Combine(EnvPath.kUserDataPath, ".cache", "Mods", "mods_workInProgress")
};
Logger.Info("Deleting Mods Cache");
foreach (var folder in foldersToDelete)
{
if (Directory.Exists(folder))
{
Directory.Delete(folder, true);
Logger.Info($"Deleted folder: {folder}");
}
}
var modsSubscribed = new DirectoryInfo(Path.Combine(EnvPath.kUserDataPath, ".cache", "Mods", "mods_subscribed"));
foreach (DirectoryInfo di in modsSubscribed.GetDirectories())
{
Logger.Debug("Looking for assets folder in " + di.FullName);
foreach (DirectoryInfo subfolder in di.GetDirectories())
{
if (subfolder.Name == "assets")
{
Logger.Debug($"Found assets folder in {di.FullName}");
Directory.Delete(di.FullName, true);
Logger.Info($"Deleted folder: {di.FullName}");
break;
/*if (FindLocalAssets(di.FullName) > 0)
{
Directory.Delete(di.FullName, true);
Logger.Info($"Deleted folder: {di.FullName}");
}*/
}
}
}
}
protected override void OnUpdate()
{
}
}
}