-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUbisoftGameFactory.cs
213 lines (179 loc) · 6.46 KB
/
UbisoftGameFactory.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
using Gamelib.Core.Util;
using GameLib.Core;
using GameLib.Plugin.Ubisoft.Model;
using Microsoft.Win32;
namespace GameLib.Plugin.Ubisoft;
internal static class UbisoftGameFactory
{
/// <summary>
/// Get games installed for the Ubisoft launcher
/// </summary>
public static IEnumerable<UbisoftGame> GetGames(ILauncher launcher, CancellationToken cancellationToken = default)
{
using var regKey = RegistryUtil.GetKey(RegistryHive.LocalMachine, @"SOFTWARE\Ubisoft\Launcher\Installs", true);
if (regKey is null)
{
return Enumerable.Empty<UbisoftGame>();
}
UbisoftCatalog? localCatalog = GetCatalog(launcher);
return regKey.GetSubKeyNames()
.AsParallel()
.WithCancellation(cancellationToken)
.Select(LoadFromRegistry)
.Where(game => game is not null)
.Select(game => AddLauncherId(launcher, game!))
.Select(game => AddExecutables(launcher, game!))
.Select(game => AddCatalogData(game!, localCatalog))
.ToList();
}
/// <summary>
/// Add launcher ID to Game
/// </summary>
private static UbisoftGame AddLauncherId(ILauncher launcher, UbisoftGame game)
{
game.LauncherId = launcher.Id;
return game;
}
/// <summary>
/// Find executables within the install directory
/// </summary>
private static UbisoftGame AddExecutables(ILauncher launcher, UbisoftGame game)
{
if (launcher.LauncherOptions.SearchExecutables)
{
var executables = PathUtil.GetExecutables(game.InstallDir);
executables.AddRange(game.Executables);
game.Executables = executables.Distinct(StringComparer.OrdinalIgnoreCase).ToList();
}
return game;
}
/// <summary>
/// Load steam local catalog data
/// </summary>
private static UbisoftCatalog? GetCatalog(ILauncher launcher)
{
UbisoftCatalog? localCatalog = null;
if (launcher.LauncherOptions.LoadLocalCatalogData)
{
try
{
localCatalog = new UbisoftCatalog(launcher.InstallDir);
}
catch { /* ignored */ }
}
return localCatalog;
}
/// <summary>
/// Load the Ubisoft game registry entry into a <see cref="UbisoftGame"/> object
/// </summary>
private static UbisoftGame? LoadFromRegistry(string gameId)
{
using var regKey = RegistryUtil.GetKey(RegistryHive.LocalMachine, $@"SOFTWARE\Ubisoft\Launcher\Installs\{gameId}");
if (regKey is null)
{
return null;
}
var game = new UbisoftGame()
{
Id = gameId,
InstallDir = PathUtil.Sanitize((string?)regKey.GetValue("InstallDir")) ?? string.Empty,
Language = (string)regKey.GetValue("Language", string.Empty)!,
};
game.Name = Path.GetFileName(game.InstallDir) ?? string.Empty;
game.InstallDate = PathUtil.GetCreationTime(game.InstallDir) ?? DateTime.MinValue;
game.WorkingDir = game.InstallDir;
game.LaunchString = $"uplay://launch/{game.Id}";
return game;
}
/// <summary>
/// Get the executable and game name from the catalog
/// </summary>
private static UbisoftGame AddCatalogData(UbisoftGame game, UbisoftCatalog? catalog = null)
{
if (catalog?.Catalog
.Where(p => p.UplayId.ToString() == game.Id)
.FirstOrDefault(defaultValue: null) is not UbisoftCatalogItem catalogItem)
{
return game;
}
// get executable, executable path and working dir
List<UbisoftProductInformation.Executable>? exeList = null;
exeList ??= catalogItem.GameInfo?.root?.start_game?.offline?.executables;
exeList ??= catalogItem.GameInfo?.root?.start_game?.online?.executables;
if (exeList is not null)
{
foreach (var exe in exeList
.Where(p => !string.IsNullOrEmpty(p.path?.relative)))
{
game.Executable = PathUtil.Sanitize(Path.Combine(game.InstallDir, exe.path!.relative!))!;
game.Name = exe.shortcut_name ?? game.Name;
game.WorkingDir = Path.GetDirectoryName(game.Executable) ?? string.Empty;
if (exe.working_directory?.register?.StartsWith("HKEY") == false)
{
game.WorkingDir = PathUtil.Sanitize(exe.working_directory.register)!;
}
if (!PathUtil.IsExecutable(game.Executable))
{
continue;
}
break;
}
}
// get Game name
string? tmpVal = catalogItem.GameInfo?.root?.name;
if (!string.IsNullOrEmpty(tmpVal))
{
tmpVal = GetLocalizedValue(catalogItem, tmpVal, tmpVal);
}
if (tmpVal is "NAME" or "GAMENAME")
{
tmpVal = null;
}
if (string.IsNullOrEmpty(tmpVal))
{
tmpVal = catalogItem.GameInfo?.root?.installer?.game_identifier;
}
if (!string.IsNullOrEmpty(tmpVal))
{
game.Name = tmpVal;
}
// get help URL
tmpVal = catalogItem.GameInfo?.root?.help_url;
if (!string.IsNullOrEmpty(tmpVal))
{
game.HelpUrl = GetLocalizedValue(catalogItem, tmpVal, tmpVal);
}
// get Facebook URL
tmpVal = catalogItem.GameInfo?.root?.facebook_url;
if (!string.IsNullOrEmpty(tmpVal))
{
game.FacebookUrl = GetLocalizedValue(catalogItem, tmpVal, tmpVal);
}
// get homepage URL
tmpVal = catalogItem.GameInfo?.root?.homepage_url;
if (!string.IsNullOrEmpty(tmpVal))
{
game.HomepageUrl = GetLocalizedValue(catalogItem, tmpVal, tmpVal);
}
// get forum URL
tmpVal = catalogItem.GameInfo?.root?.forum_url;
if (!string.IsNullOrEmpty(tmpVal))
{
game.ForumUrl = GetLocalizedValue(catalogItem, tmpVal, tmpVal);
}
return game;
}
private static string GetLocalizedValue(UbisoftCatalogItem catalogItem, string name, string defaultValue)
{
try
{
var value = catalogItem.GameInfo?.localizations?.@default?[name];
if (!string.IsNullOrEmpty(value))
{
return value;
}
}
catch { /* ignored */ }
return defaultValue;
}
}