-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGogGameFactory.cs
111 lines (97 loc) · 4.22 KB
/
GogGameFactory.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
using Gamelib.Core.Util;
using GameLib.Core;
using GameLib.Plugin.Gog.Model;
using Microsoft.Win32;
using System.Globalization;
namespace GameLib.Plugin.Gog;
internal static class GogGameFactory
{
/// <summary>
/// Get games installed for the GoG launcher
/// </summary>
public static IEnumerable<GogGame> GetGames(ILauncher launcher, CancellationToken cancellationToken = default)
{
using var regKey = RegistryUtil.GetKey(RegistryHive.LocalMachine, @"SOFTWARE\GOG.com\Games", true);
if (regKey is null)
{
return Enumerable.Empty<GogGame>();
}
return regKey.GetSubKeyNames()
.AsParallel()
.WithCancellation(cancellationToken)
.Select(gameId => LoadFromRegistry(launcher, gameId))
.Where(game => game is not null)
.Select(game => AddLauncherId(launcher, game!))
.Select(game => AddExecutables(launcher, game!))
.ToList()!;
}
/// <summary>
/// Add launcher ID to Game
/// </summary>
private static GogGame AddLauncherId(ILauncher launcher, GogGame game)
{
game.LauncherId = launcher.Id;
return game;
}
/// <summary>
/// Find executables within the install directory
/// </summary>
private static GogGame AddExecutables(ILauncher launcher, GogGame 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 the GoG game registry entry into a <see cref="GogGame"/> object
/// </summary>
private static GogGame? LoadFromRegistry(ILauncher launcher, string gameId)
{
using var regKey = RegistryUtil.GetKey(RegistryHive.LocalMachine, $@"SOFTWARE\GOG.com\Games\{gameId}");
if (regKey is null)
{
return null;
}
var game = new GogGame()
{
Id = (string)regKey.GetValue("gameID", string.Empty)!,
Name = (string)regKey.GetValue("gameName", string.Empty)!,
Executable = (string)regKey.GetValue("exe", string.Empty)!,
WorkingDir = (string)regKey.GetValue("workingDir", string.Empty)!,
InstallDate = DateTime.TryParseExact(
(string)regKey.GetValue("INSTALLDATE", string.Empty)!, "yyyy-MM-dd HH:mm:ss",
null, DateTimeStyles.AssumeLocal,
out DateTime tmpInstallDate) ? tmpInstallDate : DateTime.MinValue,
BuildId = (string)regKey.GetValue("BUILDID", string.Empty)!,
DependsOn = (string)regKey.GetValue("dependsOn", string.Empty)!,
Dlc = (string)regKey.GetValue("DLC", string.Empty)!,
InstallerLanguage = (string)regKey.GetValue("installer_language", string.Empty)!,
LangCode = (string)regKey.GetValue("lang_code", string.Empty)!,
Language = (string)regKey.GetValue("language", string.Empty)!,
LaunchCommand = (string)regKey.GetValue("launchCommand", string.Empty)!,
LaunchParam = (string)regKey.GetValue("launchParam", string.Empty)!,
Path = (string)regKey.GetValue("path", string.Empty)!,
ProductId = (string)regKey.GetValue("productID", string.Empty)!,
StartMenu = (string)regKey.GetValue("startMenu", string.Empty)!,
StartMenuLink = (string)regKey.GetValue("startMenuLink", string.Empty)!,
SupportLink = (string)regKey.GetValue("supportLink", string.Empty)!,
UninstallCommand = (string)regKey.GetValue("uninstallCommand", string.Empty)!,
Version = (string)regKey.GetValue("ver", string.Empty)!,
};
if (string.IsNullOrEmpty(game.Id))
{
return null;
}
game.InstallDir = Path.GetDirectoryName(game.Executable) ?? string.Empty;
game.LaunchString = $"\"{launcher.Executable}\" /command=runGame /gameId={game.Id}";
if (!string.IsNullOrEmpty(game.WorkingDir))
{
game.LaunchString += $" /path=\"{game.WorkingDir}\"";
}
return game;
}
}