Skip to content

Rolv-Apneseth/lib_game_detector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lib_game_detector

Crate License

A Rust library for detecting and parsing data about games installed on the system. Currently only supports Linux.

Description

This is a Rust library intended to be used for programs which need information on currently installed games, such as a games launcher, or mod manager. It can provide information such as what games are installed across multiple launchers (such as Steam and Heroic Games Launcher), where those games are installed, what command will launch them, and more.

Quick start

Install with cargo add lib_game_detector or add the following to your Cargo.toml:

[dependencies]
lib_game_detector = "0.0.6"

Usage

use lib_game_detector::{data::SupportedLaunchers, get_detector};

let detector = get_detector();
let detected_launchers = detector.get_detected_launchers();
let all_games = detector.get_all_detected_games();
let all_games_by_launcher = detector.get_all_detected_games_per_launcher();
let all_games_from_steam = detector.get_all_detected_games_from_specific_launcher(SupportedLaunchers::Steam);

Examples

  • See rofi-games for an example which uses this library to find games and their box art to use for displaying in a launcher
  • Check the examples folder

Currently supported game sources

  • Steam
    • Non-steam games are currently not supported
  • Heroic Games Launcher (Legendary, Nile and GOG)
  • Lutris
  • Bottles
    • Only lists entries included in the Library
  • Modded Minecraft (Prism Launcher, ATLauncher)
    • Titles are given as Minecraft - {instance name}

License

AGPL-3.0

About

A Rust library for detecting and parsing data about games currently installed on the system

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages