GameFinder
.NET library for finding games.
Install / Use
/learn @erri120/GameFinderREADME
GameFinder
.NET library for finding games. The following launchers are supported:
The following launchers are not yet supported or support has been dropped:
If you are interested in understanding how GameFinder finds these games, check the wiki for more information.
Additionally, the following Linux tools are supported:
Example
The example project uses every available store handler and can be used as a reference. You can go to the GitHub Actions Page and click on one of the latest CI workflow runs to download a build of this project.
Usage
All store handlers inherit from AHandler<TGame, TId> and implement FindAllGames() which returns IEnumerable<OneOf<TGame, ErrorMessage>>. The OneOf struct is a F# style union and is guaranteed to only contain one of the following: a TGame or an ErrorMessage. I recommended checking out the OneOf library, if you want to learn more.
Some important things to remember:
- All store handler methods are pure, meaning they do not change the internal state of the store handler because they don't have any. This also means that the results are not cached and you shouldn't call the same method multiple times. It's up to the library consumer to cache the results somewhere.
- Ids are store dependent. Each store handler has their own type of id and figuring out the right id for your game might require some testing. You can find useful resources in this README for some store handlers.
Basic Usage
var results = handler.FindAllGames();
foreach (var result in results)
{
// using the switch method
result.Switch(game =>
{
Console.WriteLine($"Found {game}");
}, error =>
{
Console.WriteLine(error);
});
// using the provided extension functions
if (result.TryGetGame(out var game))
{
Console.WriteLine($"Found {game}");
} else
{
Console.WriteLine(result.AsError());
}
}
Finding a single game
If you're working on an application that only needs to find 1 game, then you can use the FindOneGameById method instead. IMPORTANT NOTE: the results are not cached. If you call this method multiple, the store handler will do the same thing multiple times, which is search for every game installed. Do not call this method if you need to find multiple games.
var game = handler.FindOneGameById(someId, out var errors);
// I highly recommend logging errors regardless of whether or not the game was found.
foreach (var error in errors)
{
Console.WriteLine(error);
}
if (game is null)
{
Console.WriteLine("Unable to find game");
} else
{
Console.WriteLine($"Found {game}");
}
Finding multiple games
If you need to find multiple games at once, you can use the FindAllGamesById method instead. This returns an IReadOnlyDictionary<TId, TGame> which you can use to lookup games by id. IMPORTANT NOTE: the results are not cached. You have to do that yourself.
var games = handler.FindAllGamesById(out var errors);
// I highly recommend always logging errors.
foreach (var error in errors)
{
Console.WriteLine(error);
}
if (games.TryGetValue(someId, out var game))
{
Console.WriteLine($"Found {game}");
} else
{
Console.WriteLine($"Unable to find game with the id {someId}");
}
Supported Launchers
Steam
Steam is supported natively on Windows and Linux. Use SteamDB to find the ID of a game.
Usage (cross-platform):
var handler = new SteamHandler(FileSystem.Shared, OperatingSystem.IsWindows() ? WindowsRegistry.Shared : null);
GOG Galaxy
GOG Galaxy is supported natively on Windows, and with Wine on Linux. Use the GOG Database to find the ID of a game.
Usage (native on Windows):
var handler = new GOGHandler(WindowsRegistry.Shared, FileSystem.Shared);
Usage (Wine on Linux):
See Wine for more information.
// requires a valid prefix
var wineFileSystem = winePrefix.CreateOverlayFileSystem(FileSystem.Shared);
var wineRegistry = winePrefix.CreateRegistry(FileSystem.Shared);
var handler = new GOGHandler(wineRegistry, wineFileSystem);
Epic Games Store
The Epic Games Store is supported natively on Windows, and with Wine on Linux. Use the Epic Games Store Database to find the ID of a game (WIP).
Usage (native on Windows):
var handler = new EGSHandler(WindowsRegistry.Shared, FileSystem.Shared);
Usage (Wine on Linux):
See Wine for more information.
// requires a valid prefix
var wineFileSystem = winePrefix.CreateOverlayFileSystem(FileSystem.Shared);
var wineRegistry = winePrefix.CreateRegistry(FileSystem.Shared);
var handler = new EGSHandler(wineRegistry, wineFileSystem);
Origin
Origin is supported natively on Windows, and with Wine on Linux. Note: EA is deprecating Origin and will replace it with EA Desktop.
Usage (native on Windows):
var handler = new OriginHandler(FileSystem.Shared);
Usage (Wine on Linux):
See Wine for more information.
// requires a valid prefix
var wineFileSystem = winePrefix.CreateOverlayFileSystem(FileSystem.Shared);
var handler = new OriginHandler(wineFileSystem);
EA Desktop
EA Desktop is the replacement for Origin: See EA is deprecating Origin. This is by far, the most complicated Store Handler. You should read the wiki entry. My implementation decrypts the encrypted file, created by EA Desktop. You should be aware that the key used to encrypt the file is derived from hardware information. If the user changes their hardware, the decryption process might fail because they key has changed.
EA Desktop is only supported on Windows.
Usage:
var handler = new EADesktopHandler(FileSystem.Shared, new HardwareInfoProvider());
Xbox Game Pass
This package used to be deprecated, but I've re-added support in GameFinder 3.0.0. Xbox Game Pass used to install games inside a SYSTEM protected folder, making modding not feasible for the average user. You can read more about this here.
Xbox Game Pass is only supported on Windows.
Usage:
var handler = new XboxHandler(FileSystem.Shared);
Bethesda.net
As of May 11, 2022, the Bethesda.net launcher is no longer in use. The package GameFinder.StoreHandlers.BethNet has been deprecated and marked as legacy.
Wine
Wine is a compatibility layer capable of running Windows applications on Linux. Wine uses prefixes to create and store virtual C: drives. A user can install and run Windows program inside these prefixes, and applications running inside the prefixes likely won't even notice they are not actually running on Windows.
Since GameFinder is all about finding games, it also has to be able to find games inside Wine prefixes to provide good Linux support. The package NexusMods.Paths from NexusMods.App provides a file system abstraction IFileSystem which enables path re-mappings:
AWinePrefix prefix = //...
// creates a new IFileSystem, with path mappings into the wine prefix
IFileSystem wineFileSystem = prefix.CreateOverlayFileSystem(FileSystem.Shared);
// this wineFileSystem can be used instead of FileSystem.Shared:
var handler = new OriginHandler(wineFileSystem);
Related Skills
node-connect
343.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
92.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
